forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Service Fabric Managed Clusters - api version 2022-01-01 (Azure#17227)
* initial commit copy from 2021-11-01-preview * update files with new api 2022-01-01 adding new api to readme * rename operation id * remove location from proxy resource * revert locationForClusterCodeVersions * add x-ms-enum to environment param Co-authored-by: Alfredo Santamaria Gomez <alsantam@microsoft.com>
- Loading branch information
1 parent
78f1d9d
commit b7ceedc
Showing
56 changed files
with
9,645 additions
and
1 deletion.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
...icrosoft.ServiceFabric/stable/2022-01-01/examples/ApplicationDeleteOperation_example.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": { | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "resRg", | ||
"clusterName": "myCluster", | ||
"applicationName": "myApp", | ||
"api-version": "2022-01-01" | ||
}, | ||
"responses": { | ||
"202": { | ||
"headers": { | ||
"Retry-After": "10", | ||
"Location": "http://10.91.140.224/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastus/operationResults/76053752-a423-4a80-b283-1dad1ba5f314?api-version=2022-01-01" | ||
} | ||
}, | ||
"204": {}, | ||
"200": {} | ||
} | ||
} |
59 changes: 59 additions & 0 deletions
59
...r/Microsoft.ServiceFabric/stable/2022-01-01/examples/ApplicationGetOperation_example.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,59 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "resRg", | ||
"clusterName": "myCluster", | ||
"applicationName": "myApp", | ||
"api-version": "2022-01-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"type": "Microsoft.ServiceFabric/managedClusters/applications", | ||
"location": "eastus", | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applications/myApp", | ||
"name": "myApp", | ||
"tags": {}, | ||
"properties": { | ||
"provisioningState": "Updating", | ||
"version": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0", | ||
"parameters": { | ||
"param1": "value1" | ||
}, | ||
"upgradePolicy": { | ||
"applicationHealthPolicy": { | ||
"considerWarningAsError": true, | ||
"maxPercentUnhealthyDeployedApplications": 0, | ||
"defaultServiceTypeHealthPolicy": { | ||
"maxPercentUnhealthyServices": 0, | ||
"maxPercentUnhealthyPartitionsPerService": 0, | ||
"maxPercentUnhealthyReplicasPerPartition": 0 | ||
}, | ||
"serviceTypeHealthPolicyMap": { | ||
"service1": { | ||
"maxPercentUnhealthyReplicasPerPartition": 30, | ||
"maxPercentUnhealthyPartitionsPerService": 30, | ||
"maxPercentUnhealthyServices": 30 | ||
} | ||
} | ||
}, | ||
"rollingUpgradeMonitoringPolicy": { | ||
"failureAction": "Rollback", | ||
"healthCheckRetryTimeout": "00:10:00", | ||
"healthCheckWaitDuration": "00:02:00", | ||
"healthCheckStableDuration": "00:05:00", | ||
"upgradeDomainTimeout": "00:15:00", | ||
"upgradeTimeout": "01:00:00" | ||
}, | ||
"upgradeReplicaSetCheckTimeout": 3600, | ||
"forceRestart": false, | ||
"instanceCloseDelayDuration": 600, | ||
"upgradeMode": "UnmonitoredAuto", | ||
"recreateApplication": false | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
.../Microsoft.ServiceFabric/stable/2022-01-01/examples/ApplicationListOperation_example.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": { | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "resRg", | ||
"clusterName": "myCluster", | ||
"api-version": "2022-01-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"value": [ | ||
{ | ||
"type": "Microsoft.ServiceFabric/managedClusters/applications", | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applications/myApp", | ||
"name": "myApp", | ||
"properties": { | ||
"provisioningState": "Updating", | ||
"version": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0" | ||
} | ||
} | ||
], | ||
"nextLink": "" | ||
} | ||
} | ||
} | ||
} |
66 changes: 66 additions & 0 deletions
66
...Microsoft.ServiceFabric/stable/2022-01-01/examples/ApplicationPatchOperation_example.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,66 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "resRg", | ||
"clusterName": "myCluster", | ||
"applicationName": "myApp", | ||
"api-version": "2022-01-01", | ||
"parameters": { | ||
"tags": { | ||
"a": "b" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"type": "Microsoft.ServiceFabric/managedClusters/applications", | ||
"location": "eastus", | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applications/myApp", | ||
"name": "myApp", | ||
"tags": { | ||
"a": "b" | ||
}, | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"version": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0", | ||
"parameters": { | ||
"param1": "value1" | ||
}, | ||
"upgradePolicy": { | ||
"applicationHealthPolicy": { | ||
"considerWarningAsError": true, | ||
"maxPercentUnhealthyDeployedApplications": 0, | ||
"defaultServiceTypeHealthPolicy": { | ||
"maxPercentUnhealthyServices": 0, | ||
"maxPercentUnhealthyPartitionsPerService": 0, | ||
"maxPercentUnhealthyReplicasPerPartition": 0 | ||
}, | ||
"serviceTypeHealthPolicyMap": { | ||
"service1": { | ||
"maxPercentUnhealthyReplicasPerPartition": 30, | ||
"maxPercentUnhealthyPartitionsPerService": 30, | ||
"maxPercentUnhealthyServices": 30 | ||
} | ||
} | ||
}, | ||
"rollingUpgradeMonitoringPolicy": { | ||
"failureAction": "Rollback", | ||
"healthCheckRetryTimeout": "00:10:00", | ||
"healthCheckWaitDuration": "00:02:00", | ||
"healthCheckStableDuration": "00:05:00", | ||
"upgradeDomainTimeout": "00:15:00", | ||
"upgradeTimeout": "01:00:00" | ||
}, | ||
"upgradeReplicaSetCheckTimeout": 3600, | ||
"forceRestart": false, | ||
"instanceCloseDelayDuration": 600, | ||
"upgradeMode": "UnmonitoredAuto", | ||
"recreateApplication": false | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
156 changes: 156 additions & 0 deletions
156
...crosoft.ServiceFabric/stable/2022-01-01/examples/ApplicationPutOperation_example_max.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,156 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "resRg", | ||
"clusterName": "myCluster", | ||
"applicationName": "myApp", | ||
"api-version": "2022-01-01", | ||
"parameters": { | ||
"location": "eastus", | ||
"tags": { | ||
"a": "b" | ||
}, | ||
"properties": { | ||
"version": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0", | ||
"parameters": { | ||
"param1": "value1" | ||
}, | ||
"upgradePolicy": { | ||
"applicationHealthPolicy": { | ||
"considerWarningAsError": true, | ||
"maxPercentUnhealthyDeployedApplications": 0, | ||
"defaultServiceTypeHealthPolicy": { | ||
"maxPercentUnhealthyServices": 0, | ||
"maxPercentUnhealthyPartitionsPerService": 0, | ||
"maxPercentUnhealthyReplicasPerPartition": 0 | ||
}, | ||
"serviceTypeHealthPolicyMap": { | ||
"myService": { | ||
"maxPercentUnhealthyReplicasPerPartition": 30, | ||
"maxPercentUnhealthyPartitionsPerService": 30, | ||
"maxPercentUnhealthyServices": 30 | ||
} | ||
} | ||
}, | ||
"rollingUpgradeMonitoringPolicy": { | ||
"failureAction": "Rollback", | ||
"healthCheckRetryTimeout": "00:10:00", | ||
"healthCheckWaitDuration": "00:02:00", | ||
"healthCheckStableDuration": "00:05:00", | ||
"upgradeDomainTimeout": "00:15:00", | ||
"upgradeTimeout": "01:00:00" | ||
}, | ||
"upgradeReplicaSetCheckTimeout": 3600, | ||
"forceRestart": false, | ||
"instanceCloseDelayDuration": 600, | ||
"upgradeMode": "UnmonitoredAuto", | ||
"recreateApplication": false | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"type": "Microsoft.ServiceFabric/managedClusters/applications", | ||
"location": "eastus", | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applications/myApp", | ||
"name": "myApp", | ||
"tags": { | ||
"a": "b" | ||
}, | ||
"properties": { | ||
"provisioningState": "Creating", | ||
"version": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0", | ||
"parameters": { | ||
"param1": "value1" | ||
}, | ||
"upgradePolicy": { | ||
"applicationHealthPolicy": { | ||
"considerWarningAsError": true, | ||
"maxPercentUnhealthyDeployedApplications": 0, | ||
"defaultServiceTypeHealthPolicy": { | ||
"maxPercentUnhealthyServices": 0, | ||
"maxPercentUnhealthyPartitionsPerService": 0, | ||
"maxPercentUnhealthyReplicasPerPartition": 0 | ||
}, | ||
"serviceTypeHealthPolicyMap": { | ||
"service1": { | ||
"maxPercentUnhealthyReplicasPerPartition": 30, | ||
"maxPercentUnhealthyPartitionsPerService": 30, | ||
"maxPercentUnhealthyServices": 30 | ||
} | ||
} | ||
}, | ||
"rollingUpgradeMonitoringPolicy": { | ||
"failureAction": "Rollback", | ||
"healthCheckRetryTimeout": "00:10:00", | ||
"healthCheckWaitDuration": "00:02:00", | ||
"healthCheckStableDuration": "00:05:00", | ||
"upgradeDomainTimeout": "00:15:00", | ||
"upgradeTimeout": "01:00:00" | ||
}, | ||
"upgradeReplicaSetCheckTimeout": 3600, | ||
"forceRestart": false, | ||
"instanceCloseDelayDuration": 600, | ||
"upgradeMode": "UnmonitoredAuto", | ||
"recreateApplication": false | ||
} | ||
} | ||
} | ||
}, | ||
"202": { | ||
"headers": { | ||
"Retry-After": "10", | ||
"Location": "http://10.91.140.224/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastus/operationResults/9c2ce367-47ea-43de-b69e-c5a423da4557?api-version=2022-01-01" | ||
}, | ||
"body": { | ||
"type": "Microsoft.ServiceFabric/managedClusters/applications", | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applications/myApp", | ||
"name": "myApp", | ||
"tags": { | ||
"a": "b" | ||
}, | ||
"properties": { | ||
"provisioningState": "Updating", | ||
"version": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0", | ||
"parameters": { | ||
"param1": "value1" | ||
}, | ||
"upgradePolicy": { | ||
"applicationHealthPolicy": { | ||
"considerWarningAsError": true, | ||
"maxPercentUnhealthyDeployedApplications": 0, | ||
"defaultServiceTypeHealthPolicy": { | ||
"maxPercentUnhealthyServices": 0, | ||
"maxPercentUnhealthyPartitionsPerService": 0, | ||
"maxPercentUnhealthyReplicasPerPartition": 0 | ||
}, | ||
"serviceTypeHealthPolicyMap": { | ||
"service1": { | ||
"maxPercentUnhealthyReplicasPerPartition": 30, | ||
"maxPercentUnhealthyPartitionsPerService": 30, | ||
"maxPercentUnhealthyServices": 30 | ||
} | ||
} | ||
}, | ||
"rollingUpgradeMonitoringPolicy": { | ||
"failureAction": "Rollback", | ||
"healthCheckRetryTimeout": "00:10:00", | ||
"healthCheckWaitDuration": "00:02:00", | ||
"healthCheckStableDuration": "00:05:00", | ||
"upgradeDomainTimeout": "00:15:00", | ||
"upgradeTimeout": "01:00:00" | ||
}, | ||
"upgradeReplicaSetCheckTimeout": 3600, | ||
"forceRestart": false, | ||
"instanceCloseDelayDuration": 600, | ||
"upgradeMode": "UnmonitoredAuto", | ||
"recreateApplication": false | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.