tls-client

Profiles that are attached to catalogs.

  • Override Key: profile
  • Child Objects:
    • Valcred
    • Idcred
  • Scopes:
    • _global
      • _instance: <profileName>V<profileVersion>
    • _organization
      • _instance: <profileName>V<profileVersion>
    • _catalog
    • _instance: <profileName>V<profileVersion>
  • Example: In this example, an empty array for valcred in catalog scope is used. The use of any empty array means the valcreds for TLS profiles in that catalog do not get the global or organizational overrides.
    {
       "tls-client":{
          "_global":{
             "_instance":{
                "my-profileV1.0.0":{
                   "profile":[
                      "summary global-instance-profile-override"
                   ],
                   "valcred":[
                      "summary global-instance-valcred-override"
                   ],
                   "idcred":[
                      "summary global-instance-idcred-override"
                   ]
                }
             },
             "profile":[
                "summary global-profile-override"
             ],
             "valcred":[
                "summary global-valcred-override"
             ],
             "idcred":[
                "summary global-valcred-override"
             ]
          },
          "_organization":{
             "my-org":{
                "profile":[
                   "summary org-profile-override"
                ]
             }
          },
          "_catalog":{
             "my-org":{
                "my-catalog":{
                   "profile":[
                      "summary cat-profile-override"
                   ],
                   "valcred":[
                      
                   ]
                }
             }
          },
          "_instance":{
             "my-org":{
                "my-catalog":{
                   "my-tlsV1.0.0":{
                      "profile":[
                         "summary instance-profile-override"
                      ],
                      "valcred":[
                         "summary instance-valcred-override"
                      ]
                   }
                }
             }
          }
       }
    }