Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1320,13 +1320,21 @@
},
"BackendCredentialsContract": {
"properties": {
"certificateIds": {
"type": "array",
"items": {
"type": "string"
},
"maxItems": 32,
"description": "List of Client Certificate Ids."
},
"certificate": {
"type": "array",
"items": {
"type": "string"
},
"maxItems": 32,
"description": "List of Client Certificate Thumbprint."
"description": "List of Client Certificate Thumbprints. Will be ignored if certificatesIds are provided."
},
"query": {
"type": "object",
Expand Down Expand Up @@ -1417,8 +1425,12 @@
},
"BackendServiceFabricClusterProperties": {
"properties": {
"clientCertificateId": {
"description": "The client certificate id for the management endpoint.",
"type": "string"
},
"clientCertificatethumbprint": {
"description": "The client certificate thumbprint for the management endpoint.",
"description": "The client certificate thumbprint for the management endpoint. Will be ignored if certificatesIds are provided",
"type": "string"
},
"maxPartitionResolutionRetries": {
Expand Down Expand Up @@ -1449,8 +1461,7 @@
}
},
"required": [
"managementEndpoints",
"clientCertificatethumbprint"
"managementEndpoints"
],
"description": "Properties of the Service Fabric Type Backend."
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"managementEndpoints": [
"https://somecluster.com"
],
"clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6",
"clientCertificateId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/cert1",
"serverX509Names": [
{
"name": "ServerCommonName1",
Expand Down Expand Up @@ -43,7 +43,7 @@
"managementEndpoints": [
"https://somecluster.com"
],
"clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6",
"clientCertificateId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/cert1",
"serverX509Names": [
{
"name": "ServerCommonName1",
Expand All @@ -70,7 +70,7 @@
"managementEndpoints": [
"https://somecluster.com"
],
"clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6",
"clientCertificateId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/cert1",
"serverX509Names": [
{
"name": "ServerCommonName1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"managementEndpoints": [
"https://somecluster.com"
],
"clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6",
"clientCertificateId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/cert1",
"serverX509Names": [
{
"name": "ServerCommonName1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"managementEndpoints": [
"https://somecluster.com"
],
"clientCertificatethumbprint": "EBA029198AA3E76EF0D70482626E5BCF148594A6",
"clientCertificateId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/cert1",
"serverX509Names": [
{
"name": "ServerCommonName1",
Expand Down