diff --git a/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/CommonDefinitions.json b/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/CommonDefinitions.json index d74fb9991175..1812e9d32be9 100644 --- a/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/CommonDefinitions.json +++ b/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/CommonDefinitions.json @@ -172,7 +172,15 @@ }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", - "type": "string" + "enum": [ + "HTTP", + "HTTPS" + ], + "type": "string", + "x-ms-enum": { + "name": "Scheme", + "modelAsString": true + } } } }, @@ -222,9 +230,9 @@ "type": { "description": "The type of probe.", "enum": [ - "liveness", - "readiness", - "startup" + "Liveness", + "Readiness", + "Startup" ], "type": "string", "x-ms-enum": { diff --git a/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/ContainerApps.json b/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/ContainerApps.json index 4ddf1ed27cb1..4aff2475e7ab 100644 --- a/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/ContainerApps.json +++ b/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/ContainerApps.json @@ -427,8 +427,8 @@ "activeRevisionsMode": { "description": "ActiveRevisionsMode controls how active revisions are handled for the Container app:\nMultiple: multiple revisions can be active. If no value if provided, this is the defaultSingle: Only one revision can be active at a time. Revision weights can not be used in this mode", "enum": [ - "multiple", - "single" + "Multiple", + "Single" ], "type": "string", "x-ms-enum": { diff --git a/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/examples/ContainerApps_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/examples/ContainerApps_CreateOrUpdate.json index a3361fe80a45..a956f82ab4b8 100644 --- a/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/examples/ContainerApps_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/examples/ContainerApps_CreateOrUpdate.json @@ -38,7 +38,7 @@ "name": "testcontainerApp0", "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, @@ -122,7 +122,7 @@ }, "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, @@ -192,7 +192,7 @@ }, "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/AuthConfigs.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/AuthConfigs.json index 114240879a9c..649e44aede95 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/AuthConfigs.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/AuthConfigs.json @@ -64,7 +64,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/authConfigs/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/authConfigs/{authConfigName}": { "get": { "tags": [ "ContainerAppsAuthConfigs" @@ -86,7 +86,7 @@ "type": "string" }, { - "name": "name", + "name": "authConfigName", "in": "path", "description": "Name of the Container App AuthConfig.", "required": true, @@ -138,7 +138,7 @@ "type": "string" }, { - "name": "name", + "name": "authConfigName", "in": "path", "description": "Name of the Container App AuthConfig.", "required": true, @@ -199,7 +199,7 @@ "type": "string" }, { - "name": "name", + "name": "authConfigName", "in": "path", "description": "Name of the Container App AuthConfig.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/CommonDefinitions.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/CommonDefinitions.json index 169dde52642d..8dc19cfa4c1c 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/CommonDefinitions.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/CommonDefinitions.json @@ -172,7 +172,15 @@ }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", - "type": "string" + "enum": [ + "HTTP", + "HTTPS" + ], + "type": "string", + "x-ms-enum": { + "name": "Scheme", + "modelAsString": true + } } } }, @@ -222,9 +230,9 @@ "type": { "description": "The type of probe.", "enum": [ - "liveness", - "readiness", - "startup" + "Liveness", + "Readiness", + "Startup" ], "type": "string", "x-ms-enum": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ContainerApps.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ContainerApps.json index 080cb2828930..877cbec9784b 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ContainerApps.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ContainerApps.json @@ -96,7 +96,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}": { "get": { "tags": [ "ContainerApps" @@ -111,7 +111,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -160,7 +160,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -221,7 +221,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -270,7 +270,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -360,7 +360,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{name}/listSecrets": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/listSecrets": { "post": { "tags": [ "ContainerApps" @@ -378,7 +378,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -425,8 +425,8 @@ "activeRevisionsMode": { "description": "ActiveRevisionsMode controls how active revisions are handled for the Container app:\nMultiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.", "enum": [ - "multiple", - "single" + "Multiple", + "Single" ], "type": "string", "x-ms-enum": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ContainerAppsRevisions.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ContainerAppsRevisions.json index 86d35b503bca..e705ff88f42b 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ContainerAppsRevisions.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ContainerAppsRevisions.json @@ -72,7 +72,7 @@ "x-ms-odata": "#/definitions/Revision" } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}": { "get": { "tags": [ "ContainerAppsRevisions" @@ -94,7 +94,7 @@ "type": "string" }, { - "name": "name", + "name": "revisionName", "in": "path", "description": "Name of the Container App Revision.", "required": true, @@ -125,7 +125,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{name}/activate": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}/activate": { "post": { "tags": [ "ContainerAppsRevisions" @@ -147,7 +147,7 @@ "type": "string" }, { - "name": "name", + "name": "revisionName", "in": "path", "description": "Name of the Container App Revision.", "required": true, @@ -175,7 +175,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{name}/deactivate": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}/deactivate": { "post": { "tags": [ "ContainerAppsRevisions" @@ -197,7 +197,7 @@ "type": "string" }, { - "name": "name", + "name": "revisionName", "in": "path", "description": "Name of the Container App Revision.", "required": true, @@ -225,7 +225,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}/replicas/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}/replicas/{replicaName}": { "get": { "tags": [ "ContainerAppsRevisionReplicas" @@ -254,7 +254,7 @@ "type": "string" }, { - "name": "name", + "name": "replicaName", "in": "path", "description": "Name of the Container App Revision Replica.", "required": true, @@ -338,7 +338,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{name}/restart": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}/restart": { "post": { "tags": [ "ContainerAppsRevisions" @@ -360,7 +360,7 @@ "type": "string" }, { - "name": "name", + "name": "revisionName", "in": "path", "description": "Name of the Container App Revision.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/DaprComponents.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/DaprComponents.json index e66984b2a170..ecf44dc771a9 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/DaprComponents.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/DaprComponents.json @@ -64,7 +64,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/daprComponents/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/daprComponents/{componentName}": { "get": { "tags": [ "DaprComponents" @@ -86,7 +86,7 @@ "type": "string" }, { - "name": "name", + "name": "componentName", "in": "path", "description": "Name of the Dapr Component.", "required": true, @@ -138,7 +138,7 @@ "type": "string" }, { - "name": "name", + "name": "componentName", "in": "path", "description": "Name of the Dapr Component.", "required": true, @@ -200,7 +200,7 @@ "type": "string" }, { - "name": "name", + "name": "componentName", "in": "path", "description": "Name of the Dapr Component.", "required": true, @@ -232,7 +232,7 @@ "x-ms-long-running-operation": false } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/daprComponents/{name}/listSecrets": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/daprComponents/{componentName}/listSecrets": { "post": { "tags": [ "DaprComponents" @@ -254,7 +254,7 @@ "type": "string" }, { - "name": "name", + "name": "componentName", "in": "path", "description": "Name of the Dapr Component.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ManagedEnvironments.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ManagedEnvironments.json index c3b5b73fedf8..12720785d8bb 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ManagedEnvironments.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ManagedEnvironments.json @@ -98,7 +98,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}": { "get": { "tags": [ "ManagedEnvironments" @@ -114,7 +114,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -159,7 +159,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -220,7 +220,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -269,7 +269,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -307,7 +307,7 @@ "x-ms-long-running-operation": true } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{managedEnvironmentName}/certificates": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/certificates": { "get": { "tags": [ "ManagedEnvironments", @@ -323,7 +323,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, @@ -357,7 +357,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{managedEnvironmentName}/certificates/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/certificates/{certificateName}": { "get": { "tags": [ "ManagedEnvironments", @@ -373,14 +373,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "certificateName", "in": "path", "description": "Name of the Certificate.", "required": true, @@ -425,14 +425,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "certificateName", "in": "path", "description": "Name of the Certificate.", "required": true, @@ -485,14 +485,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "certificateName", "in": "path", "description": "Name of the Certificate.", "required": true, @@ -538,14 +538,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "certificateName", "in": "path", "description": "Name of the Certificate.", "required": true, @@ -585,7 +585,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{managedEnvironmentName}/checkNameAvailability": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/checkNameAvailability": { "post": { "tags": [ "ManagedEnvironments" @@ -601,7 +601,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ManagedEnvironmentsStorages.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ManagedEnvironmentsStorages.json index d87c6a2788bb..384b629665ff 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ManagedEnvironmentsStorages.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/ManagedEnvironmentsStorages.json @@ -15,7 +15,7 @@ "application/json" ], "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{envName}/storages": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/storages": { "get": { "tags": [ "ManagedEnvironmentsStorages" @@ -31,7 +31,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "envName", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -62,7 +62,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{envName}/storages/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/storages/{storageName}": { "get": { "tags": [ "ManagedEnvironmentsStorages" @@ -78,14 +78,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "envName", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "storageName", "in": "path", "description": "Name of the storage.", "required": true, @@ -130,14 +130,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "envName", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "storageName", "in": "path", "description": "Name of the storage.", "required": true, @@ -191,14 +191,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "envName", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "storageName", "in": "path", "description": "Name of the storage.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/SourceControls.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/SourceControls.json index 8af4d61f1abd..667d73c3fa6b 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/SourceControls.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/SourceControls.json @@ -82,7 +82,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/sourcecontrols/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/sourcecontrols/{sourceControlName}": { "get": { "tags": [ "ContainerAppsSourceControls" @@ -104,7 +104,7 @@ "type": "string" }, { - "name": "name", + "name": "sourceControlName", "in": "path", "description": "Name of the Container App SourceControl.", "required": true, @@ -156,7 +156,7 @@ "type": "string" }, { - "name": "name", + "name": "sourceControlName", "in": "path", "description": "Name of the Container App SourceControl.", "required": true, @@ -224,7 +224,7 @@ "type": "string" }, { - "name": "name", + "name": "sourceControlName", "in": "path", "description": "Name of the Container App SourceControl.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_CreateOrUpdate.json index 3ff06317e553..a87cbe7cad3f 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_CreateOrUpdate.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "authConfigName": "current", "api-version": "2022-03-01", "authConfigEnvelope": { "properties": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_Delete.json index 63437a757c0c..29fb9dc55017 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_Delete.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "authConfigName": "current", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_Get.json index 35ce520b8852..eeac23109a29 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/AuthConfigs_Get.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "authConfigName": "current", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_CreateOrUpdate.json index 49b28fc53d60..d2dc08b9ea8b 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_CreateOrUpdate.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", - "name": "certificate-firendly-name", + "environmentName": "testcontainerenv", + "certificateName": "certificate-firendly-name", "api-version": "2022-03-01", "certificateEnvelope": { "location": "East US", @@ -22,7 +22,7 @@ "location": "East US", "properties": { "provisioningState": "Succeeded", - "subjectName": "my-subject-name.company.country.net", + "subjectName": "my-subject-name.contoso.com", "issuer": "Issuer Name", "issueDate": "2021-11-06T04:00:00Z", "expirationDate": "2022-11-06T04:00:00Z", diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_Delete.json index 7e25d26b39d7..6e7d3be772a2 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_Delete.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", - "name": "certificate-firendly-name", + "environmentName": "testcontainerenv", + "certificateName": "certificate-firendly-name", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_Get.json index 403fdb7d21ba..8d134c8e670e 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificate_Get.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", - "name": "certificate-firendly-name", + "environmentName": "testcontainerenv", + "certificateName": "certificate-firendly-name", "api-version": "2022-03-01" }, "responses": { @@ -16,7 +16,7 @@ "location": "East US", "properties": { "provisioningState": "Succeeded", - "subjectName": "my-subject-name.company.country.net", + "subjectName": "my-subject-name.contoso.com", "issuer": "Issuer Name", "issueDate": "2021-11-06T04:00:00Z", "expirationDate": "2022-11-06T04:00:00Z", diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_CheckNameAvailability.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_CheckNameAvailability.json index 2788c6f66c02..6f90c2006f23 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_CheckNameAvailability.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_CheckNameAvailability.json @@ -3,7 +3,7 @@ "api-version": "2022-03-01", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", + "environmentName": "testcontainerenv", "checkNameAvailabilityRequest": { "name": "testcertificatename", "type": "Microsoft.App/managedEnvironments/certificates" diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_ListByManagedEnvironment.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_ListByManagedEnvironment.json index c92921d332d4..d1be7f76c5c1 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_ListByManagedEnvironment.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_ListByManagedEnvironment.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", + "environmentName": "testcontainerenv", "api-version": "2022-03-01" }, "responses": { @@ -11,13 +11,13 @@ "body": { "value": [ { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/testcontainerenv/certificate-firendly-name", - "name": "certificate-firendly-name", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/testcontainerenv/certificate-firendly-name1", + "name": "certificate-firendly-name1", "type": "Microsoft.App/ManagedEnvironments/Certificates", "location": "East US", "properties": { "provisioningState": "Succeeded", - "subjectName": "my-subject-name.company.country.net", + "subjectName": "my-subject-name1.contoso.com", "issuer": "Issuer Name", "issueDate": "2021-11-06T04:00:00Z", "expirationDate": "2022-11-06T04:00:00Z", @@ -26,13 +26,13 @@ } }, { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/testcontainerenv/certificate-firendly-name", - "name": "certificate-firendly-name", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/testcontainerenv/certificate-firendly-name2", + "name": "certificate-firendly-name2", "type": "Microsoft.App/ManagedEnvironments/Certificates", "location": "East US", "properties": { "provisioningState": "Succeeded", - "subjectName": "my-subject-name.company.country.net", + "subjectName": "my-subject-name2.contoso.com", "issuer": "Issuer Name", "issueDate": "2021-11-06T04:00:00Z", "expirationDate": "2022-11-06T04:00:00Z", diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_Patch.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_Patch.json index 1b92d47538e1..94a889785114 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_Patch.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Certificates_Patch.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", - "name": "certificate-firendly-name", + "environmentName": "testcontainerenv", + "certificateName": "certificate-firendly-name", "api-version": "2022-03-01", "certificateEnvelope": { "tags": { @@ -25,7 +25,7 @@ }, "properties": { "provisioningState": "Succeeded", - "subjectName": "my-subject-name.company.country.net", + "subjectName": "my-subject-name.contoso.com", "issuer": "Issuer Name", "issueDate": "2021-11-06T04:00:00Z", "expirationDate": "2022-11-06T04:00:00Z", diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_CheckNameAvailability.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_CheckNameAvailability.json index 9ce9037bc6b3..d6f636b2a320 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_CheckNameAvailability.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_CheckNameAvailability.json @@ -3,7 +3,7 @@ "api-version": "2022-03-01", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", + "environmentName": "testcontainerenv", "checkNameAvailabilityRequest": { "name": "testcappname", "type": "Microsoft.App/containerApps" diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_CreateOrUpdate.json index f31bfa2e64d5..bbaee0fdb8bb 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_CreateOrUpdate.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", - "name": "testcontainerApp0", + "containerAppName": "testcontainerApp0", "api-version": "2022-03-01", "containerAppEnvelope": { "location": "East US", @@ -45,7 +45,7 @@ "name": "testcontainerApp0", "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, @@ -140,7 +140,7 @@ }, "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, @@ -221,7 +221,7 @@ }, "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Delete.json index 20b1076be7ba..a53fe7450123 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Delete.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", - "name": "testWorkerApp0", + "containerAppName": "testWorkerApp0", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Get.json index c37083ccdab7..8ad2263501c7 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Get.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", - "name": "testcontainerApp0", + "containerAppName": "testcontainerApp0", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_ListSecrets.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_ListSecrets.json index 9e14e9f54148..3ce88feb36d5 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_ListSecrets.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_ListSecrets.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", - "name": "testcontainerApp0", + "containerAppName": "testcontainerApp0", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Patch.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Patch.json index 96736f870fd9..efba84b222df 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Patch.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ContainerApps_Patch.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", - "name": "testcontainerApp0", + "containerAppName": "testcontainerApp0", "api-version": "2022-03-01", "containerAppEnvelope": { "location": "East US", @@ -48,7 +48,7 @@ "name": "testcontainerApp0", "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_CreateOrUpdate.json index b110ceaf3d33..6157704c71c0 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_CreateOrUpdate.json @@ -3,7 +3,7 @@ "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", "environmentName": "myenvironment", - "name": "reddog", + "componentName": "reddog", "api-version": "2022-03-01", "daprComponentEnvelope": { "properties": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_Delete.json index a7df7688e321..fa433299fd67 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_Delete.json @@ -3,7 +3,7 @@ "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", "environmentName": "myenvironment", - "name": "reddog", + "componentName": "reddog", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_Get.json index fff7f1076301..185c080b66b5 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_Get.json @@ -3,7 +3,7 @@ "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", "environmentName": "myenvironment", - "name": "reddog", + "componentName": "reddog", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_ListSecrets.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_ListSecrets.json index 3d035869e98a..e6588ea518fd 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_ListSecrets.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/DaprComponents_ListSecrets.json @@ -3,7 +3,7 @@ "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", "environmentName": "myenvironment", - "name": "reddog", + "componentName": "reddog", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_CreateOrUpdate.json index 057ef675c2fe..01a6ce19cc6a 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_CreateOrUpdate.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", - "envName": "managedEnv", - "name": "jlaw-demo1", + "environmentName": "managedEnv", + "storageName": "jlaw-demo1", "api-version": "2022-03-01", "storageEnvelope": { "properties": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_Delete.json index 8b57652cd4a2..b6fb20850956 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_Delete.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", - "envName": "managedEnv", - "name": "jlaw-demo1", + "environmentName": "managedEnv", + "storageName": "jlaw-demo1", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_Get.json index c0173bcc426a..697608dc66e9 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_Get.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", - "envName": "managedEnv", - "name": "jlaw-demo1", + "environmentName": "managedEnv", + "storageName": "jlaw-demo1", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_List.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_List.json index 24a69bed4e83..28bbead85fe0 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_List.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironmentsStorages_List.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", - "envName": "managedEnv", + "environmentName": "managedEnv", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_CreateOrUpdate.json index 5b9882c1d245..8acb7777805a 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_CreateOrUpdate.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "name": "testcontainerenv", + "environmentName": "testcontainerenv", "api-version": "2022-03-01", "environmentEnvelope": { "location": "East US", diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Delete.json index 2e30ecf918b3..b3b9c7726af7 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Delete.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "name": "examplekenv", + "environmentName": "examplekenv", "api-version": "2022-03-01", "location": "East US" }, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Get.json index 3c4e18f878f7..9e08dbac75cc 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Get.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", - "name": "jlaw-demo1", + "environmentName": "jlaw-demo1", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Patch.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Patch.json index 4ff0a27b6bca..cbaa78bc0d7d 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Patch.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/ManagedEnvironments_Patch.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "name": "testcontainerenv", + "environmentName": "testcontainerenv", "api-version": "2022-03-01", "environmentEnvelope": { "location": "East US", diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Replicas_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Replicas_Get.json index e22181d1ea4b..ca3ba3d26abc 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Replicas_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Replicas_Get.json @@ -4,7 +4,7 @@ "resourceGroupName": "workerapps-rg-xj", "containerAppName": "myapp", "revisionName": "myapp--0wlqy09", - "name": "myapp--0wlqy09-5d9774cff-5wnd8", + "replicaName": "myapp--0wlqy09-5d9774cff-5wnd8", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Activate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Activate.json index 2c9db2b0ed62..68557da006f5 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Activate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Activate.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", "containerAppName": "testcontainerApp0", - "name": "testcontainerApp0-pjxhsye", + "revisionName": "testcontainerApp0-pjxhsye", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Deactivate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Deactivate.json index 2c9db2b0ed62..68557da006f5 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Deactivate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Deactivate.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", "containerAppName": "testcontainerApp0", - "name": "testcontainerApp0-pjxhsye", + "revisionName": "testcontainerApp0-pjxhsye", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Get.json index 3092e525c708..8c2de360fcfa 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Get.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", "containerAppName": "testcontainerApp0", - "name": "testcontainerApp0-pjxhsye", + "revisionName": "testcontainerApp0-pjxhsye", "api-version": "2021-02-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Restart.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Restart.json index 1bad2b7270cc..3336c0109c26 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Restart.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/Revisions_Restart.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", "containerAppName": "testStaticSite0", - "name": "testcontainerApp0-pjxhsye", + "revisionName": "testcontainerApp0-pjxhsye", "api-version": "2021-02-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_CreateOrUpdate.json index 82ef2efd6ef8..f304e1427005 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_CreateOrUpdate.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "sourceControlName": "current", "api-version": "2022-03-01", "sourceControlEnvelope": { "properties": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_Delete.json index 5264f49b4621..25339e0891b0 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_Delete.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "sourceControlName": "current", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_Get.json index 2e1fa372773c..b2125159ed6f 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-03-01/examples/SourceControls_Get.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "sourceControlName": "current", "api-version": "2022-03-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/AuthConfigs.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/AuthConfigs.json index a7966fb7575d..4b27c65ac374 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/AuthConfigs.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/AuthConfigs.json @@ -64,7 +64,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/authConfigs/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/authConfigs/{authConfigName}": { "get": { "tags": [ "ContainerAppsAuthConfigs" @@ -86,7 +86,7 @@ "type": "string" }, { - "name": "name", + "name": "authConfigName", "in": "path", "description": "Name of the Container App AuthConfig.", "required": true, @@ -138,7 +138,7 @@ "type": "string" }, { - "name": "name", + "name": "authConfigName", "in": "path", "description": "Name of the Container App AuthConfig.", "required": true, @@ -199,7 +199,7 @@ "type": "string" }, { - "name": "name", + "name": "authConfigName", "in": "path", "description": "Name of the Container App AuthConfig.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/CommonDefinitions.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/CommonDefinitions.json index 8da086cd67b1..d80348dcf8b3 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/CommonDefinitions.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/CommonDefinitions.json @@ -172,7 +172,15 @@ }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", - "type": "string" + "enum": [ + "HTTP", + "HTTPS" + ], + "type": "string", + "x-ms-enum": { + "name": "Scheme", + "modelAsString": true + } } } }, @@ -222,9 +230,9 @@ "type": { "description": "The type of probe.", "enum": [ - "liveness", - "readiness", - "startup" + "Liveness", + "Readiness", + "Startup" ], "type": "string", "x-ms-enum": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ContainerApps.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ContainerApps.json index 5ade41f06fad..0787118cb6f2 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ContainerApps.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ContainerApps.json @@ -96,7 +96,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}": { "get": { "tags": [ "ContainerApps" @@ -111,7 +111,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -160,7 +160,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -221,7 +221,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -270,7 +270,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -360,7 +360,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{name}/listSecrets": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/listSecrets": { "post": { "tags": [ "ContainerApps" @@ -378,7 +378,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -425,8 +425,8 @@ "activeRevisionsMode": { "description": "ActiveRevisionsMode controls how active revisions are handled for the Container app:\nMultiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.", "enum": [ - "multiple", - "single" + "Multiple", + "Single" ], "type": "string", "x-ms-enum": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ContainerAppsRevisions.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ContainerAppsRevisions.json index a9fe1a200c1a..455a262a00ee 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ContainerAppsRevisions.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ContainerAppsRevisions.json @@ -72,7 +72,7 @@ "x-ms-odata": "#/definitions/Revision" } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}": { "get": { "tags": [ "ContainerAppsRevisions" @@ -94,7 +94,7 @@ "type": "string" }, { - "name": "name", + "name": "revisionName", "in": "path", "description": "Name of the Container App Revision.", "required": true, @@ -125,7 +125,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{name}/activate": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}/activate": { "post": { "tags": [ "ContainerAppsRevisions" @@ -147,7 +147,7 @@ "type": "string" }, { - "name": "name", + "name": "revisionName", "in": "path", "description": "Name of the Container App Revision.", "required": true, @@ -175,7 +175,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{name}/deactivate": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}/deactivate": { "post": { "tags": [ "ContainerAppsRevisions" @@ -197,7 +197,7 @@ "type": "string" }, { - "name": "name", + "name": "revisionName", "in": "path", "description": "Name of the Container App Revision.", "required": true, @@ -225,7 +225,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}/replicas/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}/replicas/{replicaName}": { "get": { "tags": [ "ContainerAppsRevisionReplicas" @@ -254,7 +254,7 @@ "type": "string" }, { - "name": "name", + "name": "replicaName", "in": "path", "description": "Name of the Container App Revision Replica.", "required": true, @@ -338,7 +338,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{name}/restart": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/revisions/{revisionName}/restart": { "post": { "tags": [ "ContainerAppsRevisions" @@ -360,7 +360,7 @@ "type": "string" }, { - "name": "name", + "name": "revisionName", "in": "path", "description": "Name of the Container App Revision.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/DaprComponents.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/DaprComponents.json index 1bf47d25bc87..139790aae081 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/DaprComponents.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/DaprComponents.json @@ -64,7 +64,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/daprComponents/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/daprComponents/{componentName}": { "get": { "tags": [ "DaprComponents" @@ -86,7 +86,7 @@ "type": "string" }, { - "name": "name", + "name": "componentName", "in": "path", "description": "Name of the Dapr Component.", "required": true, @@ -138,7 +138,7 @@ "type": "string" }, { - "name": "name", + "name": "componentName", "in": "path", "description": "Name of the Dapr Component.", "required": true, @@ -200,7 +200,7 @@ "type": "string" }, { - "name": "name", + "name": "componentName", "in": "path", "description": "Name of the Dapr Component.", "required": true, @@ -232,7 +232,7 @@ "x-ms-long-running-operation": false } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/daprComponents/{name}/listSecrets": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/daprComponents/{componentName}/listSecrets": { "post": { "tags": [ "DaprComponents" @@ -254,7 +254,7 @@ "type": "string" }, { - "name": "name", + "name": "componentName", "in": "path", "description": "Name of the Dapr Component.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/Diagnostics.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/Diagnostics.json index 53a8ffd4cfdc..e107bb4095dd 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/Diagnostics.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/Diagnostics.json @@ -65,7 +65,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/detectors/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/detectors/{detectorName}": { "get": { "tags": [ "ContainerApps", @@ -88,7 +88,7 @@ "type": "string" }, { - "name": "name", + "name": "detectorName", "in": "path", "description": "Name of the Container App Detector.", "required": true, @@ -177,7 +177,7 @@ "x-ms-odata": "#/definitions/Revision" } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/detectorproperties/revisionsApi/revisions/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/detectorproperties/revisionsApi/revisions/{revisionName}": { "get": { "tags": [ "ContainerApps", @@ -200,7 +200,7 @@ "type": "string" }, { - "name": "name", + "name": "revisionName", "in": "path", "description": "Name of the Container App Revision.", "required": true, @@ -231,7 +231,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{name}/detectorproperties/rootApi/": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/detectorproperties/rootApi/": { "get": { "tags": [ "ContainerApps", @@ -247,7 +247,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "containerAppName", "in": "path", "description": "Name of the Container App.", "required": true, @@ -282,7 +282,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{name}/detectors": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/detectors": { "get": { "tags": [ "ManagedEnvironments", @@ -299,7 +299,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -330,7 +330,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{name}/detectors/{detectorName}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/detectors/{detectorName}": { "get": { "tags": [ "ManagedEnvironments", @@ -347,7 +347,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -385,7 +385,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{name}/detectorproperties/rootApi/": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/detectorproperties/rootApi/": { "get": { "tags": [ "ManagedEnvironments", @@ -402,7 +402,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ManagedEnvironments.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ManagedEnvironments.json index 92cbf102dba7..ad9bcc62de6a 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ManagedEnvironments.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ManagedEnvironments.json @@ -98,7 +98,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}": { "get": { "tags": [ "ManagedEnvironments" @@ -114,7 +114,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -159,7 +159,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -220,7 +220,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -269,7 +269,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "name", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -307,7 +307,7 @@ "x-ms-long-running-operation": true } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{managedEnvironmentName}/certificates": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/certificates": { "get": { "tags": [ "ManagedEnvironments", @@ -323,7 +323,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, @@ -357,7 +357,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{managedEnvironmentName}/certificates/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/certificates/{certificateName}": { "get": { "tags": [ "ManagedEnvironments", @@ -373,14 +373,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "certificateName", "in": "path", "description": "Name of the Certificate.", "required": true, @@ -425,14 +425,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "certificateName", "in": "path", "description": "Name of the Certificate.", "required": true, @@ -485,14 +485,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "certificateName", "in": "path", "description": "Name of the Certificate.", "required": true, @@ -538,14 +538,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "certificateName", "in": "path", "description": "Name of the Certificate.", "required": true, @@ -585,7 +585,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{managedEnvironmentName}/checkNameAvailability": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/checkNameAvailability": { "post": { "tags": [ "ManagedEnvironments" @@ -601,7 +601,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "managedEnvironmentName", + "name": "environmentName", "in": "path", "description": "Name of the Managed Environment.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ManagedEnvironmentsStorages.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ManagedEnvironmentsStorages.json index 7545bd646ce2..5352b8bc5330 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ManagedEnvironmentsStorages.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/ManagedEnvironmentsStorages.json @@ -15,7 +15,7 @@ "application/json" ], "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{envName}/storages": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/storages": { "get": { "tags": [ "ManagedEnvironmentsStorages" @@ -31,7 +31,7 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "envName", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, @@ -62,7 +62,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{envName}/storages/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/storages/{storageName}": { "get": { "tags": [ "ManagedEnvironmentsStorages" @@ -78,14 +78,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "envName", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "storageName", "in": "path", "description": "Name of the storage.", "required": true, @@ -130,14 +130,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "envName", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "storageName", "in": "path", "description": "Name of the storage.", "required": true, @@ -191,14 +191,14 @@ "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" }, { - "name": "envName", + "name": "environmentName", "in": "path", "description": "Name of the Environment.", "required": true, "type": "string" }, { - "name": "name", + "name": "storageName", "in": "path", "description": "Name of the storage.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/SourceControls.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/SourceControls.json index 353e4f182de7..95b8900637bb 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/SourceControls.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/SourceControls.json @@ -82,7 +82,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/sourcecontrols/{name}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/sourcecontrols/{sourceControlName}": { "get": { "tags": [ "ContainerAppsSourceControls" @@ -104,7 +104,7 @@ "type": "string" }, { - "name": "name", + "name": "sourceControlName", "in": "path", "description": "Name of the Container App SourceControl.", "required": true, @@ -156,7 +156,7 @@ "type": "string" }, { - "name": "name", + "name": "sourceControlName", "in": "path", "description": "Name of the Container App SourceControl.", "required": true, @@ -224,7 +224,7 @@ "type": "string" }, { - "name": "name", + "name": "sourceControlName", "in": "path", "description": "Name of the Container App SourceControl.", "required": true, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_CreateOrUpdate.json index 3a2b6080024c..2b3dcbd5955e 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_CreateOrUpdate.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "authConfigName": "current", "api-version": "2022-05-01", "authConfigEnvelope": { "properties": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_Delete.json index 07857fb40fb3..411e4e7913ec 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_Delete.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "authConfigName": "current", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_Get.json index 2c68896d2f19..dd087a03cc0e 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/AuthConfigs_Get.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "authConfigName": "current", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_CreateOrUpdate.json index 5c8dad0bdbbc..6a5f76bd8496 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_CreateOrUpdate.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", - "name": "certificate-firendly-name", + "environmentName": "testcontainerenv", + "certificateName": "certificate-firendly-name", "api-version": "2022-05-01", "certificateEnvelope": { "location": "East US", diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_Delete.json index 832864f8188c..d8cc7318fa1a 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_Delete.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", - "name": "certificate-firendly-name", + "environmentName": "testcontainerenv", + "certificateName": "certificate-firendly-name", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_Get.json index ad3f23561f0e..bf55c41de27d 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificate_Get.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", - "name": "certificate-firendly-name", + "environmentName": "testcontainerenv", + "certificateName": "certificate-firendly-name", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_CheckNameAvailability.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_CheckNameAvailability.json index 939e7995ad59..c3e89eb6c81a 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_CheckNameAvailability.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_CheckNameAvailability.json @@ -3,7 +3,7 @@ "api-version": "2022-05-01", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", + "environmentName": "testcontainerenv", "checkNameAvailabilityRequest": { "name": "testcertificatename", "type": "Microsoft.App/managedEnvironments/certificates" diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_ListByManagedEnvironment.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_ListByManagedEnvironment.json index 243b08acd656..47b74a695346 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_ListByManagedEnvironment.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_ListByManagedEnvironment.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", + "environmentName": "testcontainerenv", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_Patch.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_Patch.json index 83b2f28287ad..d73cfe7758e6 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_Patch.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Certificates_Patch.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", - "name": "certificate-firendly-name", + "environmentName": "testcontainerenv", + "certificateName": "certificate-firendly-name", "api-version": "2022-05-01", "certificateEnvelope": { "tags": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerAppsDiagnostics_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerAppsDiagnostics_Get.json index 593cb6c1a399..525efc8304ef 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerAppsDiagnostics_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerAppsDiagnostics_Get.json @@ -3,7 +3,7 @@ "subscriptionId": "f07f3711-b45e-40fe-a941-4e6d93f851e6", "resourceGroupName": "mikono-workerapp-test-rg", "containerAppName": "mikono-capp-stage1", - "name": "cappcontainerappnetworkIO", + "detectorName": "cappcontainerappnetworkIO", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_CheckNameAvailability.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_CheckNameAvailability.json index a664ae189b23..7fa1391abab0 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_CheckNameAvailability.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_CheckNameAvailability.json @@ -3,7 +3,7 @@ "api-version": "2022-05-01", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "managedEnvironmentName": "testcontainerenv", + "environmentName": "testcontainerenv", "checkNameAvailabilityRequest": { "name": "testcappname", "type": "Microsoft.App/containerApps" diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_CreateOrUpdate.json index 455190e18551..3ff1ae9bf090 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_CreateOrUpdate.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", - "name": "testcontainerApp0", + "containerAppName": "testcontainerApp0", "api-version": "2022-05-01", "containerAppEnvelope": { "location": "East US", @@ -45,7 +45,7 @@ "name": "testcontainerApp0", "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, @@ -140,7 +140,7 @@ }, "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, @@ -221,7 +221,7 @@ }, "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Delete.json index b7b793fa9241..4417d1f9877c 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Delete.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", - "name": "testWorkerApp0", + "containerAppName": "testWorkerApp0", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Get.json index 3fcc226cf11e..07583d4ef063 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Get.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", - "name": "testcontainerApp0", + "containerAppName": "testcontainerApp0", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_ListSecrets.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_ListSecrets.json index 3fc64b6f7c46..15a7ba9bb496 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_ListSecrets.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_ListSecrets.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", - "name": "testcontainerApp0", + "containerAppName": "testcontainerApp0", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Patch.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Patch.json index d422b3019b0e..df8f3f61d67c 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Patch.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ContainerApps_Patch.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", - "name": "testcontainerApp0", + "containerAppName": "testcontainerApp0", "api-version": "2022-05-01", "containerAppEnvelope": { "location": "East US", @@ -48,7 +48,7 @@ "name": "testcontainerApp0", "probes": [ { - "type": "liveness", + "type": "Liveness", "httpGet": { "path": "/health", "port": 8080, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_CreateOrUpdate.json index b51dfa21732c..0ffa47695813 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_CreateOrUpdate.json @@ -3,7 +3,7 @@ "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", "environmentName": "myenvironment", - "name": "reddog", + "componentName": "reddog", "api-version": "2022-05-01", "daprComponentEnvelope": { "properties": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_Delete.json index d45c17c10259..989ade111699 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_Delete.json @@ -3,7 +3,7 @@ "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", "environmentName": "myenvironment", - "name": "reddog", + "componentName": "reddog", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_Get.json index b13762317433..b11cf2632a31 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_Get.json @@ -3,7 +3,7 @@ "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", "environmentName": "myenvironment", - "name": "reddog", + "componentName": "reddog", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_ListSecrets.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_ListSecrets.json index f5d2d333da45..c483a92bfa51 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_ListSecrets.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/DaprComponents_ListSecrets.json @@ -3,7 +3,7 @@ "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", "environmentName": "myenvironment", - "name": "reddog", + "componentName": "reddog", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentDiagnostics_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentDiagnostics_Get.json index 9a9c86aa959a..3369ab0b5fc8 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentDiagnostics_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentDiagnostics_Get.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "f07f3711-b45e-40fe-a941-4e6d93f851e6", "resourceGroupName": "mikono-workerapp-test-rg", - "name": "mikonokubeenv", + "environmentName": "mikonokubeenv", "detectorName": "ManagedEnvAvailabilityMetrics", "api-version": "2022-05-01" }, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentDiagnostics_List.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentDiagnostics_List.json index e2b317ea07ee..81a4ca210f32 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentDiagnostics_List.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentDiagnostics_List.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "f07f3711-b45e-40fe-a941-4e6d93f851e6", "resourceGroupName": "mikono-workerapp-test-rg", - "name": "mikonokubeenv", + "environmentName": "mikonokubeenv", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_CreateOrUpdate.json index 4ba208ed1d5c..b3befe244f10 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_CreateOrUpdate.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", - "envName": "managedEnv", - "name": "jlaw-demo1", + "environmentName": "managedEnv", + "storageName": "jlaw-demo1", "api-version": "2022-05-01", "storageEnvelope": { "properties": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_Delete.json index 419b7545c4bc..b5a68b628196 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_Delete.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", - "envName": "managedEnv", - "name": "jlaw-demo1", + "environmentName": "managedEnv", + "storageName": "jlaw-demo1", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_Get.json index 2c06ec7bc830..46200ff70421 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_Get.json @@ -2,8 +2,8 @@ "parameters": { "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", - "envName": "managedEnv", - "name": "jlaw-demo1", + "environmentName": "managedEnv", + "storageName": "jlaw-demo1", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_List.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_List.json index 280dd0c2578b..e229d4b6463a 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_List.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironmentsStorages_List.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", - "envName": "managedEnv", + "environmentName": "managedEnv", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_CreateOrUpdate.json index 7c3c4045bfc7..1569c23ef8d0 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_CreateOrUpdate.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "name": "testcontainerenv", + "environmentName": "testcontainerenv", "api-version": "2022-05-01", "environmentEnvelope": { "location": "East US", diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Delete.json index 3ae1e1f3dc0e..d030a202a2fa 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Delete.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "name": "examplekenv", + "environmentName": "examplekenv", "api-version": "2022-05-01", "location": "East US" }, diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Get.json index 4295bd083dc4..2fb09492d557 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Get.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9", "resourceGroupName": "examplerg", - "name": "jlaw-demo1", + "environmentName": "jlaw-demo1", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Patch.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Patch.json index ffa9308da817..7de7df4d9533 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Patch.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/ManagedEnvironments_Patch.json @@ -2,7 +2,7 @@ "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "examplerg", - "name": "testcontainerenv", + "environmentName": "testcontainerenv", "api-version": "2022-05-01", "environmentEnvelope": { "location": "East US", diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Replicas_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Replicas_Get.json index bfa02729b66f..6934d1c65350 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Replicas_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Replicas_Get.json @@ -4,7 +4,7 @@ "resourceGroupName": "workerapps-rg-xj", "containerAppName": "myapp", "revisionName": "myapp--0wlqy09", - "name": "myapp--0wlqy09-5d9774cff-5wnd8", + "replicaName": "myapp--0wlqy09-5d9774cff-5wnd8", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Activate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Activate.json index 91e77c76152a..61da5f005894 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Activate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Activate.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", "containerAppName": "testcontainerApp0", - "name": "testcontainerApp0-pjxhsye", + "revisionName": "testcontainerApp0-pjxhsye", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Deactivate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Deactivate.json index 91e77c76152a..61da5f005894 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Deactivate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Deactivate.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", "containerAppName": "testcontainerApp0", - "name": "testcontainerApp0-pjxhsye", + "revisionName": "testcontainerApp0-pjxhsye", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Get.json index 3092e525c708..8c2de360fcfa 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Get.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", "containerAppName": "testcontainerApp0", - "name": "testcontainerApp0-pjxhsye", + "revisionName": "testcontainerApp0-pjxhsye", "api-version": "2021-02-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Restart.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Restart.json index 1bad2b7270cc..3336c0109c26 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Restart.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/Revisions_Restart.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "rg", "containerAppName": "testStaticSite0", - "name": "testcontainerApp0-pjxhsye", + "revisionName": "testcontainerApp0-pjxhsye", "api-version": "2021-02-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_CreateOrUpdate.json index 27cbc1ef532e..3c732c762698 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_CreateOrUpdate.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "sourceControlName": "current", "api-version": "2022-05-01", "sourceControlEnvelope": { "properties": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_Delete.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_Delete.json index 25e16ddc1641..27ca9b9e7cca 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_Delete.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_Delete.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "sourceControlName": "current", "api-version": "2022-05-01" }, "responses": { diff --git a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_Get.json index 267649b7eef4..cb7e227aabbf 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2022-05-01/examples/SourceControls_Get.json @@ -3,7 +3,7 @@ "subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744", "resourceGroupName": "workerapps-rg-xj", "containerAppName": "testcanadacentral", - "name": "current", + "sourceControlName": "current", "api-version": "2022-05-01" }, "responses": {