-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding swagger definitions and examples for 2022-05-01-preview API (#…
…6147) * Adding swagger definitions and examples for 2022-05-01-preview API * fixing avacado errors * Change the name of the API to listManagedProxyDetails * Fixing semantic and model validation * Fixing lintDiff * Fixing the description * Adding integer format * fixing the name to ListManagedProxyDetails * Adding description for provisioningState parameter * fixing go-sdk build errors
- Loading branch information
Showing
14 changed files
with
1,016 additions
and
1 deletion.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
...rosoft.HybridConnectivity/preview/2022-05-01-preview/examples/EndpointsDeleteDefault.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"parameters": { | ||
"resourceUri": "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine", | ||
"api-version": "2022-05-01-preview", | ||
"endpointName": "default" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
.../Microsoft.HybridConnectivity/preview/2022-05-01-preview/examples/EndpointsGetCustom.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"parameters": { | ||
"resourceUri": "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine", | ||
"api-version": "2022-05-01-preview", | ||
"endpointName": "custom" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/custom", | ||
"name": "custom", | ||
"type": "Microsoft.HybridConnectivity/endpoints", | ||
"properties": { | ||
"type": "custom", | ||
"resourceId": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.Relay/namespaces/custom-relay-namespace" | ||
} | ||
} | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...Microsoft.HybridConnectivity/preview/2022-05-01-preview/examples/EndpointsGetDefault.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"parameters": { | ||
"resourceUri": "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine", | ||
"api-version": "2022-05-01-preview", | ||
"endpointName": "default" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default", | ||
"name": "default", | ||
"type": "Microsoft.HybridConnectivity/endpoints", | ||
"properties": { | ||
"type": "default" | ||
} | ||
} | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
...nager/Microsoft.HybridConnectivity/preview/2022-05-01-preview/examples/EndpointsList.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"parameters": { | ||
"resourceUri": "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine", | ||
"api-version": "2022-05-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default", | ||
"name": "default", | ||
"type": "Microsoft.HybridConnectivity/endpoints", | ||
"properties": { | ||
"type": "default" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/custom", | ||
"name": "custom", | ||
"type": "Microsoft.HybridConnectivity/endpoints", | ||
"properties": { | ||
"type": "custom", | ||
"resourceId": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.Relay/namespaces/custom-relay-namespace" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
...crosoft.HybridConnectivity/preview/2022-05-01-preview/examples/EndpointsPatchDefault.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"parameters": { | ||
"resourceUri": "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine", | ||
"api-version": "2022-05-01-preview", | ||
"endpointName": "default", | ||
"EndpointResource": { | ||
"properties": { | ||
"type": "default" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default", | ||
"name": "default", | ||
"type": "Microsoft.HybridConnectivity/endpoints", | ||
"properties": { | ||
"type": "default", | ||
"provisioningState": "Succeeded" | ||
} | ||
} | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
....HybridConnectivity/preview/2022-05-01-preview/examples/EndpointsPostListCredentials.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"parameters": { | ||
"resourceUri": "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine", | ||
"api-version": "2022-05-01-preview", | ||
"endpointName": "default", | ||
"expiresin": 10800 | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"relay": { | ||
"namespaceName": "azgnrelay-eastus-l1", | ||
"namespaceNameSuffix": "servicebus.windows.net", | ||
"hybridConnectionName": "microsoft.kubernetes/connectedclusters/a0e1fd7d1d974ddf6b11a952d67679c9f12c006eee16861857a8268da4eb1498/1619989456957411072", | ||
"accessKey": "SharedAccessSignature sr=http%3A%2F%2Fazgnrelay-eastus-l1.servicebus.windows.net%2Fmicrosoft.kubernetes%2Fconnectedclusters%2Fa0e1fd7d1d974ddf6b11a952d67679c9f12c006eee16861857a8268da4eb1498%2F1619989456957411072%2F&sig=WxDwPF6AmmODaMHNnBGDSm773UG%2B%2Be", | ||
"expiresOn": 1620000256 | ||
} | ||
} | ||
} | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
...ivity/preview/2022-05-01-preview/examples/EndpointsPostListIngressGatewayCredentials.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"parameters": { | ||
"resourceUri": "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/arcGroup/providers/Microsoft.ArcPlaceHolder/ProvisionedClusters/cluster0", | ||
"api-version": "2022-05-01-preview", | ||
"endpointName": "default", | ||
"expiresin": 10800 | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"relay": { | ||
"namespaceName": "relaynamespace", | ||
"namespaceNameSuffix": "servicebus.windows.net", | ||
"hybridConnectionName": "microsoft.arcplaceholder/provisionedclusters/000/1619989456957411072", | ||
"accessKey": "SharedAccessSignature sr=http%3A%2F%2Fazgnrelay-eastus-l1.servicebus.windows.net%2Fmicrosoft.provisionedcluster%hci", | ||
"expiresOn": 1620000256 | ||
}, | ||
"ingress": { | ||
"hostname": "clusterhostname", | ||
"aadProfile": { | ||
"serverId": "6256c85f-0aad-4d50-b960-e6e9b21efe35", | ||
"tenantId": "hy657tgh-8d16-42db-81b7-1234hygt67hy5" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...onnectivity/preview/2022-05-01-preview/examples/EndpointsPostListManagedProxyDetails.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"parameters": { | ||
"resourceUri": "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/arcGroup/providers/Microsoft.Compute/virtualMachines/vm00006", | ||
"api-version": "2022-05-01-preview", | ||
"endpointName": "default", | ||
"ManagedProxyRequest": { | ||
"service": "127.0.0.1:65035", | ||
"hostname": "r.proxy.arc.com" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"proxy": "uid.r.proxy.arc.com", | ||
"expiresOn": 1620000256 | ||
} | ||
} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
.../Microsoft.HybridConnectivity/preview/2022-05-01-preview/examples/EndpointsPutCustom.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"parameters": { | ||
"resourceUri": "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine", | ||
"api-version": "2022-05-01-preview", | ||
"endpointName": "custom", | ||
"EndpointResource": { | ||
"properties": { | ||
"type": "custom", | ||
"resourceId": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.Relay/namespaces/custom-relay-namespace" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/custom", | ||
"name": "custom", | ||
"type": "Microsoft.HybridConnectivity/endpoints", | ||
"properties": { | ||
"type": "custom", | ||
"resourceId": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.Relay/namespaces/custom-relay-namespace", | ||
"provisioningState": "Succeeded" | ||
} | ||
} | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
...Microsoft.HybridConnectivity/preview/2022-05-01-preview/examples/EndpointsPutDefault.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"parameters": { | ||
"resourceUri": "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine", | ||
"api-version": "2022-05-01-preview", | ||
"endpointName": "default", | ||
"EndpointResource": { | ||
"properties": { | ||
"type": "default" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default", | ||
"name": "default", | ||
"type": "Microsoft.HybridConnectivity/endpoints", | ||
"properties": { | ||
"type": "default", | ||
"provisioningState": "Succeeded" | ||
} | ||
} | ||
} | ||
} | ||
} |
93 changes: 93 additions & 0 deletions
93
...ager/Microsoft.HybridConnectivity/preview/2022-05-01-preview/examples/OperationsList.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2022-05-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "Microsoft.HybridConnectivity/operations/read", | ||
"isDataAction": false, | ||
"display": { | ||
"provider": "Microsoft.HybridConnectivity", | ||
"resource": "Operations", | ||
"operation": "Get operations", | ||
"description": "Get the list of Operations" | ||
} | ||
}, | ||
{ | ||
"name": "Microsoft.HybridConnectivity/endpoints/read", | ||
"isDataAction": false, | ||
"display": { | ||
"provider": "Microsoft.HybridConnectivity", | ||
"resource": "endpoints", | ||
"operation": "Get/List endpoints", | ||
"description": "Get or list of endpoints to the target resource." | ||
} | ||
}, | ||
{ | ||
"name": "Microsoft.HybridConnectivity/endpoints/write", | ||
"isDataAction": false, | ||
"display": { | ||
"provider": "Microsoft.HybridConnectivity", | ||
"resource": "endpoints", | ||
"operation": "Create/Update endpoint", | ||
"description": "Create or update the endpoint to the target resource." | ||
} | ||
}, | ||
{ | ||
"name": "Microsoft.HybridConnectivity/endpoints/delete", | ||
"isDataAction": false, | ||
"display": { | ||
"provider": "Microsoft.HybridConnectivity", | ||
"resource": "endpoints", | ||
"operation": "Delete endpoint", | ||
"description": "Deletes the endpoint access to the target resource." | ||
} | ||
}, | ||
{ | ||
"name": "Microsoft.HybridConnectivity/endpoints/listCredentials/action", | ||
"isDataAction": false, | ||
"display": { | ||
"provider": "Microsoft.HybridConnectivity", | ||
"resource": "endpoints", | ||
"operation": "List credentials for endpoint access", | ||
"description": "List the endpoint access credentials to the resource." | ||
} | ||
}, | ||
{ | ||
"name": "Microsoft.HybridConnectivity/endpoints/listIngressGatewayCredentials/action", | ||
"isDataAction": false, | ||
"display": { | ||
"provider": "Microsoft.HybridConnectivity", | ||
"resource": "endpoints", | ||
"operation": "List credentials for ingress gateway", | ||
"description": "List the ingress gateway credentials to the resource." | ||
} | ||
}, | ||
{ | ||
"name": "Microsoft.HybridConnectivity/register/action", | ||
"isDataAction": false, | ||
"display": { | ||
"provider": "Microsoft.HybridConnectivity", | ||
"resource": "Microsoft.HybridConnectivity", | ||
"operation": "Register the Microsoft.HybridConnectivity", | ||
"description": "Register the subscription for Microsoft.HybridConnectivity" | ||
} | ||
}, | ||
{ | ||
"name": "Microsoft.HybridConnectivity/unregister/action", | ||
"isDataAction": false, | ||
"display": { | ||
"provider": "Microsoft.HybridConnectivity", | ||
"resource": "Microsoft.HybridConnectivity", | ||
"operation": "Unregister the Microsoft.HybridConnectivity", | ||
"description": "Unregister the subscription for Microsoft.HybridConnectivity" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.