diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/DynamicSchema.tsp b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/DynamicSchema.tsp index 3f5c28154e21..2ca76c60e2dc 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/DynamicSchema.tsp +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/DynamicSchema.tsp @@ -20,6 +20,11 @@ namespace Microsoft.Edge; @doc("DynamicSchema Properties") model DynamicSchemaProperties { + @added(Versions.v2025_08_01) + @doc("Display name of the dynamic schema") + @visibility(Lifecycle.Read) + displayName?: string; + @doc("Type of configuration") @visibility(Lifecycle.Read) configurationType?: ConfigurationType; diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/DynamicSchemaVersion.tsp b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/DynamicSchemaVersion.tsp index 82af71c6a3b2..3c54a4c64e1f 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/DynamicSchemaVersion.tsp +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/DynamicSchemaVersion.tsp @@ -20,7 +20,13 @@ namespace Microsoft.Edge; @doc("Dynamic Schema Version Resource") @parentResource(DynamicSchema) @resource("versions") -model DynamicSchemaVersion is SchemaVersion; +model DynamicSchemaVersion is ProxyResource { + ...ResourceNameParameter< + DynamicSchemaVersion, + NamePattern = "^(v2-)?[0-9]+\\.[0-9]+\\.[0-9]+$" + >; + ...EntityTagProperty; +} @armResourceOperations interface DynamicSchemaVersions { diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/Solution.tsp b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/Solution.tsp index 3cba3cca4994..604d8d7dff2c 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/Solution.tsp +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/Solution.tsp @@ -24,6 +24,11 @@ model SolutionProperties { @visibility(Lifecycle.Read) solutionTemplateId?: string; + @added(Versions.v2025_08_01) + @doc("Display name of the solution") + @visibility(Lifecycle.Read) + displayName?: string; + @doc("List of latest revisions for available solution template versions") @visibility(Lifecycle.Read) @Azure.ResourceManager.identifiers(#[]) diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/SolutionTemplate.tsp b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/SolutionTemplate.tsp index fd3b0c896678..5d2fbdc9954b 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/SolutionTemplate.tsp +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/SolutionTemplate.tsp @@ -21,6 +21,11 @@ namespace Microsoft.Edge; @doc("Solution Template Properties") model SolutionTemplateProperties { + @added(Versions.v2025_08_01) + @doc("A unique identifier for the solution template, generated by the system") + @visibility(Lifecycle.Read) + uniqueIdentifier?: string; + @doc("Description of Solution template") description: string; diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/SolutionVersion.tsp b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/SolutionVersion.tsp index 0d908f6ba000..519d85faf000 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/SolutionVersion.tsp +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/SolutionVersion.tsp @@ -57,6 +57,17 @@ model SolutionVersionProperties { @visibility(Lifecycle.Read) state?: State; + @added(Versions.v2025_08_01) + @doc("Current Stage of revision") + @visibility(Lifecycle.Read) + currentStage?: StageMap; + + @added(Versions.v2025_08_01) + @doc("Stages of revision") + @visibility(Lifecycle.Read) + @Azure.ResourceManager.identifiers(#[]) + stages?: StageMap[]; + @doc("Solution instance name") @visibility(Lifecycle.Read) @pattern("^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$") @@ -75,6 +86,11 @@ model SolutionVersionProperties { @visibility(Lifecycle.Read) latestActionTrackingUri?: string; + @added(Versions.v2025_08_01) + @doc("Object Id of user who triggered the latest action on this solution version.") + @visibility(Lifecycle.Read) + lastestActionTriggeredBy?: string; + @doc("The type of the latest action performed on this solution version.") @visibility(Lifecycle.Read) actionType?: JobType; diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/State.tsp b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/State.tsp index a64e1a57dab3..8d558bf88877 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/State.tsp +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/State.tsp @@ -60,6 +60,10 @@ union State { @doc("Solution Instance is staging the images") Staging: "Staging", + @added(Versions.v2025_08_01) + @doc("State is not applicable") + NotApplicable: "NotApplicable", + string, } @@ -73,3 +77,80 @@ union ValidationStatus { string, } + +@added(Versions.v2025_08_01) +@doc("Stage Map for Solution Version") +model StageMap { + @doc("Display State") + @visibility(Lifecycle.Read) + displayState: string; + + @doc("Stage name") + @visibility(Lifecycle.Read) + stage: CMStages; + + @doc("Stage status") + @visibility(Lifecycle.Read) + status: StateCategory; + + @doc("Stage start time") + @visibility(Lifecycle.Read) + startTime?: utcDateTime; + + @doc("Stage end time") + @visibility(Lifecycle.Read) + endTime?: utcDateTime; + + @doc("Child stages which represents more granular level stage status if any") + @visibility(Lifecycle.Read) + @Azure.ResourceManager.identifiers(#[]) + childStages?: StageMap[]; +} + +@added(Versions.v2025_08_01) +@doc("Stages for Solution Version") +union CMStages { + @doc("Configuration stage") + Configuration: "Configuration", + + @doc("Publish stage") + Publish: "Publish", + + @doc("Deployment stage") + Deployment: "Deployment", + + @doc("Uninstallation stage") + Uninstallation: "Uninstallation", + + @doc("External Validation stage") + ExternalValidation: "ExternalValidation", + + @doc("Staging stage") + Staging: "Staging", + + @doc("Unstaging stage") + Unstaging: "Unstaging", + + string, +} + +@added(Versions.v2025_08_01) +@doc("State Category for Solution Version") +union StateCategory { + @doc("Pending state [Non-Terminal]") + Pending: "Pending", + + @doc("InProgress state [Non-Terminal]") + InProgress: "InProgress", + + @doc("Completed state [Terminal]") + Completed: "Completed", + + @doc("Failed state [Terminal]") + Failed: "Failed", + + @doc("None state [Terminal]") + None: "None", + + string, +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/Target.tsp b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/Target.tsp index a894484ded66..f46b56e6480a 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/Target.tsp +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/Target.tsp @@ -243,4 +243,12 @@ interface Targets { UpdateExternalValidationStatusParameter, SolutionVersion >; + + @added(Versions.v2025_08_01) + @doc("Post request to unstage solution version") + unstageSolutionVersion is ArmResourceActionAsync< + Target, + SolutionVersionParameter, + SolutionVersion + >; } diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json index f66a24dc4925..b35bda40bc5e 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -7,7 +7,7 @@ "resourceGroupName": "rgconfigurationmanager", "schemaName": "testname", "dynamicSchemaName": "testname", - "schemaVersionName": "1.0.0", + "dynamicSchemaVersionName": "1.0.0", "resource": { "properties": { "value": "uiaqdwsi" diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Delete_MaximumSet_Gen.json index 950dcd6ce4a5..3ee332b7cb05 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Delete_MaximumSet_Gen.json +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Delete_MaximumSet_Gen.json @@ -7,7 +7,7 @@ "resourceGroupName": "rgconfigurationmanager", "schemaName": "testname", "dynamicSchemaName": "testname", - "schemaVersionName": "1.0.0" + "dynamicSchemaVersionName": "1.0.0" }, "responses": { "202": { diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Get_MaximumSet_Gen.json index f7a7978a6209..7747fbedc85e 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Get_MaximumSet_Gen.json +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Get_MaximumSet_Gen.json @@ -7,7 +7,7 @@ "resourceGroupName": "rgconfigurationmanager", "schemaName": "testname", "dynamicSchemaName": "testname", - "schemaVersionName": "1.0.0" + "dynamicSchemaVersionName": "1.0.0" }, "responses": { "200": { diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Update_MaximumSet_Gen.json index f5b7d19afbeb..546210caf47f 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Update_MaximumSet_Gen.json +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-06-01/DynamicSchemaVersions_Update_MaximumSet_Gen.json @@ -7,7 +7,7 @@ "resourceGroupName": "rgconfigurationmanager", "schemaName": "testname", "dynamicSchemaName": "testname", - "schemaVersionName": "1.0.0", + "dynamicSchemaVersionName": "1.0.0", "properties": { "properties": { "value": "muezi" diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplateVersions_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplateVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..11cfbcb1e8d1 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplateVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,33 @@ +{ + "title": "ConfigTemplateVersions_Get_MaximumSet", + "operationId": "ConfigTemplateVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname", + "configTemplateVersionName": "1.0.0" + }, + "responses": { + "200": { + "body": { + "properties": { + "configurations": "rgricnhvcbqykc", + "provisioningState": "Succeeded" + }, + "eTag": "uszrinakbbhtbdmqfg", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ylnjncs", + "type": "de", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplateVersions_ListByConfigTemplate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplateVersions_ListByConfigTemplate_MaximumSet_Gen.json new file mode 100644 index 000000000000..4612e2fd03e5 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplateVersions_ListByConfigTemplate_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "ConfigTemplateVersions_ListByConfigTemplate_MaximumSet", + "operationId": "ConfigTemplateVersions_ListByConfigTemplate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "configurations": "rgricnhvcbqykc", + "provisioningState": "Succeeded" + }, + "eTag": "uszrinakbbhtbdmqfg", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ylnjncs", + "type": "de", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/aavpfl" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..e00bc2ea58a8 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,74 @@ +{ + "title": "ConfigTemplates_CreateOrUpdate_MaximumSet", + "operationId": "ConfigTemplates_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname", + "resource": { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg" + }, + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_CreateVersion_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_CreateVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..11dccf718aa6 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_CreateVersion_MaximumSet_Gen.json @@ -0,0 +1,46 @@ +{ + "title": "ConfigTemplates_CreateVersion_MaximumSet", + "operationId": "ConfigTemplates_CreateVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname", + "body": { + "updateType": "Major", + "version": "1.0.0", + "configTemplateVersion": { + "properties": { + "configurations": "rgricnhvcbqykc" + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "configurations": "rgricnhvcbqykc", + "provisioningState": "Succeeded" + }, + "eTag": "uszrinakbbhtbdmqfg", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ylnjncs", + "type": "de", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..f8a86ab13198 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_Delete_MaximumSet_Gen.json @@ -0,0 +1,18 @@ +{ + "title": "ConfigTemplates_Delete_MaximumSet", + "operationId": "ConfigTemplates_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..48b7323de26d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_Get_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "ConfigTemplates_Get_MaximumSet", + "operationId": "ConfigTemplates_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..848b62ede711 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,41 @@ +{ + "title": "ConfigTemplates_ListByResourceGroup_MaximumSet", + "operationId": "ConfigTemplates_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_ListBySubscription_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..6073cebba57b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,40 @@ +{ + "title": "ConfigTemplates_ListBySubscription_MaximumSet", + "operationId": "ConfigTemplates_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_RemoveVersion_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_RemoveVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..b5664a71c60a --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_RemoveVersion_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "ConfigTemplates_RemoveVersion_MaximumSet", + "operationId": "ConfigTemplates_RemoveVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname", + "body": { + "version": "ghtvdzgmzncaifrnuumg" + } + }, + "responses": { + "200": { + "body": { + "status": "fymylelaohqtwdoqw" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..296ef6c5376b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/ConfigTemplates_Update_MaximumSet_Gen.json @@ -0,0 +1,45 @@ +{ + "title": "ConfigTemplates_Update_MaximumSet", + "operationId": "ConfigTemplates_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname", + "properties": { + "properties": { + "description": "cavjiqnrbzsvedicrixhwnfj" + }, + "tags": { + "key7701": "wrsv" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..8465247b5bd9 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,106 @@ +{ + "title": "Contexts_CreateOrUpdate_MaximumSet", + "operationId": "Contexts_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "resource": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ] + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..177f27aa802b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_Delete_MaximumSet_Gen.json @@ -0,0 +1,18 @@ +{ + "title": "Contexts_Delete_MaximumSet", + "operationId": "Contexts_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..2f01c868038d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_Get_MaximumSet_Gen.json @@ -0,0 +1,47 @@ +{ + "title": "Contexts_Get_MaximumSet", + "operationId": "Contexts_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..5d95eb6999e5 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,51 @@ +{ + "title": "Contexts_ListByResourceGroup_MaximumSet", + "operationId": "Contexts_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/apcxwc" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_ListBySubscription_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..8b8974ef8df4 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,50 @@ +{ + "title": "Contexts_ListBySubscription_MaximumSet", + "operationId": "Contexts_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/apcxwc" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..a92394d264fa --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Contexts_Update_MaximumSet_Gen.json @@ -0,0 +1,72 @@ +{ + "title": "Contexts_Update_MaximumSet", + "operationId": "Contexts_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "properties": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ] + }, + "tags": { + "key9545": "dhxykbzgliyqxxizttbjhuruhhv" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..75d96f6a4f9b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,80 @@ +{ + "title": "Diagnostics_CreateOrUpdate_MaximumSet", + "operationId": "Diagnostics_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "diagnosticName": "testname", + "resource": { + "properties": {}, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..8ba92707617f --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_Delete_MaximumSet_Gen.json @@ -0,0 +1,18 @@ +{ + "title": "Diagnostics_Delete_MaximumSet", + "operationId": "Diagnostics_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "diagnosticName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..b138e1a3d1e9 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_Get_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "Diagnostics_Get_MaximumSet", + "operationId": "Diagnostics_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "diagnosticName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..13e320cbaf1f --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,43 @@ +{ + "title": "Diagnostics_ListByResourceGroup_MaximumSet", + "operationId": "Diagnostics_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_ListBySubscription_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..5a01e22bf808 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,42 @@ +{ + "title": "Diagnostics_ListBySubscription_MaximumSet", + "operationId": "Diagnostics_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..b2d1bdfd9f69 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Diagnostics_Update_MaximumSet_Gen.json @@ -0,0 +1,50 @@ +{ + "title": "Diagnostics_Update_MaximumSet", + "operationId": "Diagnostics_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "diagnosticName": "testname", + "properties": { + "properties": {}, + "tags": { + "key1922": "efraipifhmdfekwgunngrgvsc" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..0970d8a0fd1e --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,62 @@ +{ + "title": "DynamicSchemaVersions_CreateOrUpdate_MaximumSet", + "operationId": "DynamicSchemaVersions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "dynamicSchemaVersionName": "1.0.0", + "resource": { + "properties": { + "value": "uiaqdwsi" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "hryyeranjqvxwelxbtkmsxwbi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fnjgcutmsg", + "type": "gjrtzdrnjrng", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "hryyeranjqvxwelxbtkmsxwbi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fnjgcutmsg", + "type": "gjrtzdrnjrng", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..2557aa53ebb4 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "DynamicSchemaVersions_Delete_MaximumSet", + "operationId": "DynamicSchemaVersions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "dynamicSchemaVersionName": "1.0.0" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..6449082ea835 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "DynamicSchemaVersions_Get_MaximumSet", + "operationId": "DynamicSchemaVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "dynamicSchemaVersionName": "1.0.0" + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "hryyeranjqvxwelxbtkmsxwbi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fnjgcutmsg", + "type": "gjrtzdrnjrng", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_ListByDynamicSchema_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_ListByDynamicSchema_MaximumSet_Gen.json new file mode 100644 index 000000000000..bb26a56fad5a --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_ListByDynamicSchema_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "DynamicSchemaVersions_ListByDynamicSchema_MaximumSet", + "operationId": "DynamicSchemaVersions_ListByDynamicSchema", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "hryyeranjqvxwelxbtkmsxwbi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fnjgcutmsg", + "type": "gjrtzdrnjrng", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..a70857b9a3ba --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemaVersions_Update_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "DynamicSchemaVersions_Update_MaximumSet", + "operationId": "DynamicSchemaVersions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "dynamicSchemaVersionName": "1.0.0", + "properties": { + "properties": { + "value": "muezi" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "hryyeranjqvxwelxbtkmsxwbi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fnjgcutmsg", + "type": "gjrtzdrnjrng", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..6249bbdf674f --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,64 @@ +{ + "title": "DynamicSchemas_CreateOrUpdate_MaximumSet", + "operationId": "DynamicSchemas_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "resource": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application", + "provisioningState": "Succeeded" + }, + "eTag": "grifedynsnsmmqmgen", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "efclhieak", + "type": "mjfgfadxkaxjgcbpukicsvmjl", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application", + "provisioningState": "Succeeded" + }, + "eTag": "grifedynsnsmmqmgen", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "efclhieak", + "type": "mjfgfadxkaxjgcbpukicsvmjl", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..d072c25a6933 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "DynamicSchemas_Delete_MaximumSet", + "operationId": "DynamicSchemas_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..bd5570ab4561 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "DynamicSchemas_Get_MaximumSet", + "operationId": "DynamicSchemas_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application", + "provisioningState": "Succeeded" + }, + "eTag": "grifedynsnsmmqmgen", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "efclhieak", + "type": "mjfgfadxkaxjgcbpukicsvmjl", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_ListBySchema_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_ListBySchema_MaximumSet_Gen.json new file mode 100644 index 000000000000..fedd1f746654 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_ListBySchema_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "DynamicSchemas_ListBySchema_MaximumSet", + "operationId": "DynamicSchemas_ListBySchema", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application", + "provisioningState": "Succeeded" + }, + "eTag": "grifedynsnsmmqmgen", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "efclhieak", + "type": "mjfgfadxkaxjgcbpukicsvmjl", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..8ca8c3a87e0b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/DynamicSchemas_Update_MaximumSet_Gen.json @@ -0,0 +1,40 @@ +{ + "title": "DynamicSchemas_Update_MaximumSet", + "operationId": "DynamicSchemas_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "properties": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application", + "provisioningState": "Succeeded" + }, + "eTag": "grifedynsnsmmqmgen", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "efclhieak", + "type": "mjfgfadxkaxjgcbpukicsvmjl", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..8e175087300b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,129 @@ +{ + "title": "Executions_CreateOrUpdate_MaximumSet - generated by [MaximumSet] rule", + "operationId": "Executions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "EE6D9590-0D52-4B1C-935C-FE49DBF838EB", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "abcde", + "workflowName": "abcde", + "versionName": "abcde", + "executionName": "abcde", + "resource": { + "properties": { + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "wfymzartwvvqrgrmdwyhfaftszoc", + "stage": "gsostfpgjcsoeky", + "nextstage": "wjxvqbrocjxzhzfgmgbzt", + "errorMessage": "xsvwgovyatvlacmp", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.922Z", + "statusMessage": "ebhukpnhnbu" + }, + "workflowVersionId": "souenlqwltljsojdcbpc" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "wfymzartwvvqrgrmdwyhfaftszoc", + "stage": "gsostfpgjcsoeky", + "nextstage": "wjxvqbrocjxzhzfgmgbzt", + "errorMessage": "xsvwgovyatvlacmp", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.922Z", + "statusMessage": "ebhukpnhnbu" + }, + "workflowVersionId": "souenlqwltljsojdcbpc", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + }, + "eTag": "rybzaakessjpkwsprpclpdp", + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myresourceGroupName/providers/Microsoft.Edge/workflows/wfName/versions/1.0.0/executions/executionName", + "name": "pljfijtnrx", + "type": "ngvrxwzxtpqawwvhf", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "wfymzartwvvqrgrmdwyhfaftszoc", + "stage": "gsostfpgjcsoeky", + "nextstage": "wjxvqbrocjxzhzfgmgbzt", + "errorMessage": "xsvwgovyatvlacmp", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.922Z", + "statusMessage": "ebhukpnhnbu" + }, + "workflowVersionId": "souenlqwltljsojdcbpc", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + }, + "eTag": "rybzaakessjpkwsprpclpdp", + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myresourceGroupName/providers/Microsoft.Edge/workflows/wfName/versions/1.0.0/executions/executionName", + "name": "pljfijtnrx", + "type": "ngvrxwzxtpqawwvhf", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..5875c945a185 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_Delete_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Executions_Delete_MaximumSet - generated by [MaximumSet] rule", + "operationId": "Executions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "EE6D9590-0D52-4B1C-935C-FE49DBF838EB", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "abcde", + "workflowName": "abcde", + "versionName": "abcde", + "executionName": "abcde" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..c3842e8e1c8f --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_Get_MaximumSet_Gen.json @@ -0,0 +1,57 @@ +{ + "title": "Executions_Get_MaximumSet - generated by [MaximumSet] rule", + "operationId": "Executions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "EE6D9590-0D52-4B1C-935C-FE49DBF838EB", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "abcde", + "workflowName": "abcde", + "versionName": "abcde", + "executionName": "abcde" + }, + "responses": { + "200": { + "body": { + "properties": { + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "wfymzartwvvqrgrmdwyhfaftszoc", + "stage": "gsostfpgjcsoeky", + "nextstage": "wjxvqbrocjxzhzfgmgbzt", + "errorMessage": "xsvwgovyatvlacmp", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.922Z", + "statusMessage": "ebhukpnhnbu" + }, + "workflowVersionId": "souenlqwltljsojdcbpc", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + }, + "eTag": "rybzaakessjpkwsprpclpdp", + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myresourceGroupName/providers/Microsoft.Edge/workflows/wfName/versions/1.0.0/executions/executionName", + "name": "pljfijtnrx", + "type": "ngvrxwzxtpqawwvhf", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_ListByWorkflowVersion_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_ListByWorkflowVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..1f65e5512709 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_ListByWorkflowVersion_MaximumSet_Gen.json @@ -0,0 +1,61 @@ +{ + "title": "Executions_ListByWorkflowVersion_MaximumSet - generated by [MaximumSet] rule", + "operationId": "Executions_ListByWorkflowVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "EE6D9590-0D52-4B1C-935C-FE49DBF838EB", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "abcde", + "workflowName": "abcde", + "versionName": "abcde" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "workflowVersionId": "souenlqwltljsojdcbpc", + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "fkmtwmdfdhbfkbjlkjsvyreoqtxpr", + "stage": "hk", + "nextstage": "lvatqeczrfvbl", + "errorMessage": "nyxzr", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.919Z", + "statusMessage": "dfmqxqonlrmrrmqkneij" + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + }, + "eTag": "rybzaakessjpkwsprpclpdp", + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myresourceGroupName/providers/Microsoft.Edge/workflows/wfName/versions/1.0.0/executions/executionName", + "name": "pljfijtnrx", + "type": "ngvrxwzxtpqawwvhf", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..744bbed6d7b7 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Executions_Update_MaximumSet_Gen.json @@ -0,0 +1,68 @@ +{ + "title": "Executions_Update_MaximumSet - generated by [MaximumSet] rule", + "operationId": "Executions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "FFA229AF-C1A3-4CB6-9E5D-62C25CFBE4D0", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "abcde", + "workflowName": "abcde", + "versionName": "abcde", + "executionName": "abcde", + "properties": { + "properties": { + "specification": {}, + "workflowVersionId": "xjsxzbfltzvbuvn" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "wfymzartwvvqrgrmdwyhfaftszoc", + "stage": "gsostfpgjcsoeky", + "nextstage": "wjxvqbrocjxzhzfgmgbzt", + "errorMessage": "xsvwgovyatvlacmp", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.922Z", + "statusMessage": "ebhukpnhnbu" + }, + "workflowVersionId": "souenlqwltljsojdcbpc", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + }, + "eTag": "rybzaakessjpkwsprpclpdp", + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myresourceGroupName/providers/Microsoft.Edge/workflows/wfName/versions/1.0.0/executions/executionName", + "name": "pljfijtnrx", + "type": "ngvrxwzxtpqawwvhf", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/InstanceHistories_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/InstanceHistories_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..8370fb9ab05b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/InstanceHistories_Get_MaximumSet_Gen.json @@ -0,0 +1,74 @@ +{ + "title": "InstanceHistories_Get_MaximumSet", + "operationId": "InstanceHistories_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname", + "instanceHistoryName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionVersion": { + "solutionVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + }, + "target": { + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "targetSpecification": {}, + "solutionScope": "vcuotruyuqpgjuvtudku" + }, + "solutionScope": "cadwryjdr", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "cmyivusrktmfcxhdqhgawvvjipo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "feefbdqdgxrz", + "type": "lynekjmmncsq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/InstanceHistories_ListByInstance_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/InstanceHistories_ListByInstance_MaximumSet_Gen.json new file mode 100644 index 000000000000..26c6bcdc2b7e --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/InstanceHistories_ListByInstance_MaximumSet_Gen.json @@ -0,0 +1,78 @@ +{ + "title": "InstanceHistories_ListByInstance_MaximumSet", + "operationId": "InstanceHistories_ListByInstance", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "solutionVersion": { + "solutionVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + }, + "target": { + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "targetSpecification": {}, + "solutionScope": "vcuotruyuqpgjuvtudku" + }, + "solutionScope": "cadwryjdr", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "cmyivusrktmfcxhdqhgawvvjipo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "feefbdqdgxrz", + "type": "lynekjmmncsq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..8eacd0b73349 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,160 @@ +{ + "title": "Instances_CreateOrUpdate_MaximumSet", + "operationId": "Instances_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname", + "resource": { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + } + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "deploymentTimestampEpoch": 3, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "pwgsy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "eklhpbpitmqrsfujmjq", + "type": "nmety", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "deploymentTimestampEpoch": 3, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "pwgsy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "eklhpbpitmqrsfujmjq", + "type": "nmety", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..2289be03aaea --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "Instances_Delete_MaximumSet", + "operationId": "Instances_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..b6e991d22087 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_Get_MaximumSet_Gen.json @@ -0,0 +1,67 @@ +{ + "title": "Instances_Get_MaximumSet", + "operationId": "Instances_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "deploymentTimestampEpoch": 3, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "pwgsy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "eklhpbpitmqrsfujmjq", + "type": "nmety", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_ListBySolution_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_ListBySolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..8ebed77d170b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_ListBySolution_MaximumSet_Gen.json @@ -0,0 +1,71 @@ +{ + "title": "Instances_ListBySolution_MaximumSet", + "operationId": "Instances_ListBySolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "deploymentTimestampEpoch": 3, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "pwgsy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "eklhpbpitmqrsfujmjq", + "type": "nmety", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/apyjdyb" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..33504019670c --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Instances_Update_MaximumSet_Gen.json @@ -0,0 +1,84 @@ +{ + "title": "Instances_Update_MaximumSet", + "operationId": "Instances_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname", + "properties": { + "properties": { + "solutionVersionId": "vrpzlamkvanqibtjarpxit", + "targetId": "tqkdvc", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "cmzlrjwnlshnkgv" + }, + "solutionScope": "testname" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "cmzlrjwnlshnkgv" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "deploymentTimestampEpoch": 3, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "pwgsy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "eklhpbpitmqrsfujmjq", + "type": "nmety", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Jobs_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Jobs_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..116e38ce0c2d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Jobs_Get_MaximumSet_Gen.json @@ -0,0 +1,105 @@ +{ + "title": "Jobs_Get_MaximumSet", + "operationId": "Jobs_Get", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "gt", + "jobName": "jobsName" + }, + "responses": { + "200": { + "body": { + "properties": { + "jobType": "deploy", + "startTime": "2025-05-28T15:10:05.470Z", + "endTime": "2025-05-28T15:10:05.470Z", + "status": "InProgress", + "jobParameter": { + "jobType": "JobParameterBase" + }, + "correlationId": "fsebqmeouxfucluqkaoyagtp", + "steps": [ + { + "name": "duezohitlpz", + "status": "InProgress", + "startTime": "2025-05-28T15:10:05.470Z", + "endTime": "2025-05-28T15:10:05.470Z", + "message": "lkodiekkbtqwuixxryezipwvvavfu", + "statistics": { + "totalCount": 18, + "successCount": 25, + "failedCount": 25, + "statisticsType": "deploy" + }, + "steps": [], + "errorDetails": { + "code": "onimqg", + "message": "mzrbqqcxcbajkv", + "target": "cemnupikyh", + "details": [ + { + "code": "rbclcfwozglwnucds", + "message": "zxbxf", + "target": "rt", + "details": [], + "additionalInfo": [ + { + "type": "nuqfqjakzxpxdthqvxo", + "info": {} + } + ] + } + ], + "additionalInfo": [ + { + "type": "pttb", + "info": {} + } + ] + } + } + ], + "triggeredBy": "lquvgncryxca", + "provisioningState": "Succeeded", + "errorDetails": { + "code": "onimqg", + "message": "mzrbqqcxcbajkv", + "target": "cemnupikyh", + "details": [ + { + "code": "rbclcfwozglwnucds", + "message": "zxbxf", + "target": "rt", + "details": [], + "additionalInfo": [ + { + "type": "nuqfqjakzxpxdthqvxo", + "info": {} + } + ] + } + ], + "additionalInfo": [ + { + "type": "pttb", + "info": {} + } + ] + } + }, + "eTag": "edzixghgizgqmjccbgpvcewnd", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lxwubwlp", + "type": "enekwruxhkecxg", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Jobs_ListByTarget_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Jobs_ListByTarget_MaximumSet_Gen.json new file mode 100644 index 000000000000..0584446fe2be --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Jobs_ListByTarget_MaximumSet_Gen.json @@ -0,0 +1,109 @@ +{ + "title": "Jobs_ListByTarget_MaximumSet", + "operationId": "Jobs_ListByTarget", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "gt" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "jobType": "deploy", + "startTime": "2025-05-28T15:10:05.470Z", + "endTime": "2025-05-28T15:10:05.470Z", + "status": "InProgress", + "jobParameter": { + "jobType": "JobParameterBase" + }, + "correlationId": "fsebqmeouxfucluqkaoyagtp", + "steps": [ + { + "name": "duezohitlpz", + "status": "InProgress", + "startTime": "2025-05-28T15:10:05.470Z", + "endTime": "2025-05-28T15:10:05.470Z", + "message": "lkodiekkbtqwuixxryezipwvvavfu", + "statistics": { + "totalCount": 18, + "successCount": 25, + "failedCount": 25, + "statisticsType": "deploy" + }, + "steps": [], + "errorDetails": { + "code": "onimqg", + "message": "mzrbqqcxcbajkv", + "target": "cemnupikyh", + "details": [ + { + "code": "rbclcfwozglwnucds", + "message": "zxbxf", + "target": "rt", + "details": [], + "additionalInfo": [ + { + "type": "nuqfqjakzxpxdthqvxo", + "info": {} + } + ] + } + ], + "additionalInfo": [ + { + "type": "pttb", + "info": {} + } + ] + } + } + ], + "triggeredBy": "lquvgncryxca", + "provisioningState": "Succeeded", + "errorDetails": { + "code": "onimqg", + "message": "mzrbqqcxcbajkv", + "target": "cemnupikyh", + "details": [ + { + "code": "rbclcfwozglwnucds", + "message": "zxbxf", + "target": "rt", + "details": [], + "additionalInfo": [ + { + "type": "nuqfqjakzxpxdthqvxo", + "info": {} + } + ] + } + ], + "additionalInfo": [ + { + "type": "pttb", + "info": {} + } + ] + } + }, + "eTag": "edzixghgizgqmjccbgpvcewnd", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lxwubwlp", + "type": "enekwruxhkecxg", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaReferences_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaReferences_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..407ab0ec013d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaReferences_Get_MaximumSet_Gen.json @@ -0,0 +1,31 @@ +{ + "title": "SchemaReferences_Get_MaximumSet", + "operationId": "SchemaReferences_Get", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "jdvtghygpz", + "schemaReferenceName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "schemaId": "vxgxfkfws", + "provisioningState": "Succeeded" + }, + "eTag": "rpblituadyvurec", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "brijvbbrrzgtttybezvtrjzu", + "type": "jbdfmlyogaxxys", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaReferences_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaReferences_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..a058035c418d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaReferences_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,35 @@ +{ + "title": "SchemaReferences_ListByResourceGroup_MaximumSet", + "operationId": "SchemaReferences_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "jdvtghygpz" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "schemaId": "vxgxfkfws", + "provisioningState": "Succeeded" + }, + "eTag": "rpblituadyvurec", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "brijvbbrrzgtttybezvtrjzu", + "type": "jbdfmlyogaxxys", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..975f776c4756 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,61 @@ +{ + "title": "SchemaVersions_CreateOrUpdate_MaximumSet", + "operationId": "SchemaVersions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "schemaVersionName": "1.0.0", + "resource": { + "properties": { + "value": "uiaqdwsi" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..6494baed3d54 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "SchemaVersions_Delete_MaximumSet", + "operationId": "SchemaVersions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "schemaVersionName": "1.0.0" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..4559d8917464 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,33 @@ +{ + "title": "SchemaVersions_Get_MaximumSet", + "operationId": "SchemaVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "schemaVersionName": "1.0.0" + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_ListBySchema_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_ListBySchema_MaximumSet_Gen.json new file mode 100644 index 000000000000..402a14067b0f --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_ListBySchema_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "SchemaVersions_ListBySchema_MaximumSet", + "operationId": "SchemaVersions_ListBySchema", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..9bf053c01ecf --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SchemaVersions_Update_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "SchemaVersions_Update_MaximumSet", + "operationId": "SchemaVersions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "schemaVersionName": "1.0.0", + "properties": { + "properties": { + "value": "muezi" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..6e0e222218de --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,70 @@ +{ + "title": "Schemas_CreateOrUpdate_MaximumSet", + "operationId": "Schemas_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "resource": { + "properties": {}, + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_CreateVersion_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_CreateVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..f5ba66d4d640 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_CreateVersion_MaximumSet_Gen.json @@ -0,0 +1,46 @@ +{ + "title": "Schemas_CreateVersion_MaximumSet", + "operationId": "Schemas_CreateVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "body": { + "updateType": "Major", + "version": "1.0.0", + "schemaVersion": { + "properties": { + "value": "uiaqdwsi" + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..571c6e7f65f1 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_Delete_MaximumSet_Gen.json @@ -0,0 +1,18 @@ +{ + "title": "Schemas_Delete_MaximumSet", + "operationId": "Schemas_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..4704d89c085d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_Get_MaximumSet_Gen.json @@ -0,0 +1,36 @@ +{ + "title": "Schemas_Get_MaximumSet", + "operationId": "Schemas_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..b5daf4b3daa6 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,40 @@ +{ + "title": "Schemas_ListByResourceGroup_MaximumSet", + "operationId": "Schemas_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_ListBySubscription_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..fb106ab00685 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "Schemas_ListBySubscription_MaximumSet", + "operationId": "Schemas_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_RemoveVersion_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_RemoveVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..b66a89db2fea --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_RemoveVersion_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "Schemas_RemoveVersion_MaximumSet", + "operationId": "Schemas_RemoveVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "body": { + "version": "ghtvdzgmzncaifrnuumg" + } + }, + "responses": { + "200": { + "body": { + "status": "fymylelaohqtwdoqw" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..b7e0658cfbc9 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Schemas_Update_MaximumSet_Gen.json @@ -0,0 +1,42 @@ +{ + "title": "Schemas_Update_MaximumSet", + "operationId": "Schemas_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "properties": { + "properties": {}, + "tags": { + "key6760": "lknwkzihsmzbzkezkartwgsv" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..2fa9411ed6ca --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,59 @@ +{ + "title": "SiteReferences_CreateOrUpdate_MaximumSet", + "operationId": "SiteReferences_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "siteReferenceName": "testname", + "resource": { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "egcgxnnunldslhvcg", + "type": "gwoqfrkh", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "egcgxnnunldslhvcg", + "type": "gwoqfrkh", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..7fd576bf03e4 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "SiteReferences_Delete_MaximumSet", + "operationId": "SiteReferences_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "siteReferenceName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..380284476420 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_Get_MaximumSet_Gen.json @@ -0,0 +1,32 @@ +{ + "title": "SiteReferences_Get_MaximumSet", + "operationId": "SiteReferences_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "siteReferenceName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "egcgxnnunldslhvcg", + "type": "gwoqfrkh", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_ListByContext_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_ListByContext_MaximumSet_Gen.json new file mode 100644 index 000000000000..58d87108f61d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_ListByContext_MaximumSet_Gen.json @@ -0,0 +1,36 @@ +{ + "title": "SiteReferences_ListByContext_MaximumSet", + "operationId": "SiteReferences_ListByContext", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "egcgxnnunldslhvcg", + "type": "gwoqfrkh", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/aojcswnb" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..bdd259736c11 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SiteReferences_Update_MaximumSet_Gen.json @@ -0,0 +1,42 @@ +{ + "title": "SiteReferences_Update_MaximumSet", + "operationId": "SiteReferences_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "siteReferenceName": "testname", + "properties": { + "properties": { + "siteId": "nwiuyaro" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "egcgxnnunldslhvcg", + "type": "gwoqfrkh", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_BulkDeploySolution_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_BulkDeploySolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..302edb52a872 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_BulkDeploySolution_MaximumSet_Gen.json @@ -0,0 +1,25 @@ +{ + "title": "SolutionTemplateVersions_BulkDeploySolution_MaximumSet", + "operationId": "SolutionTemplateVersions_BulkDeploySolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "solutionTemplateVersionName": "1.0.0", + "body": { + "targets": [ + { + "solutionVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Edge/Targets/target/Solutions/solution/Versions/solution-1.0.0.1" + } + ] + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_BulkPublishSolution_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_BulkPublishSolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..9b3ba68131ab --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_BulkPublishSolution_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "SolutionTemplateVersions_BulkPublishSolution_MaximumSet", + "operationId": "SolutionTemplateVersions_BulkPublishSolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "solutionTemplateVersionName": "1.0.0", + "body": { + "targets": [ + { + "targetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Edge/Targets/target", + "solutionInstanceName": "test-instance" + } + ], + "solutionInstanceName": "test-instance", + "solutionDependencies": [ + { + "solutionVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Edge/Targets/target/Solutions/solution/Versions/solution-1.0.0.1", + "solutionTemplateId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Edge/SolutionTemplates/st", + "solutionTemplateVersion": "1.0.0", + "solutionInstanceName": "test-instance", + "targetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Edge/Targets/target", + "dependencies": [] + } + ] + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..39ca663dd2e0 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,35 @@ +{ + "title": "SolutionTemplateVersions_Get_MaximumSet", + "operationId": "SolutionTemplateVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "solutionTemplateVersionName": "1.0.0" + }, + "responses": { + "200": { + "body": { + "properties": { + "configurations": "ofqcsavwmeuwmvtjnqpoybtjvkmrlh", + "specification": {}, + "orchestratorType": "TO", + "provisioningState": "Succeeded" + }, + "eTag": "diqzzjtqycbtjzinckqwxowzdy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "haebwdswymjzjfwbfipf", + "type": "swo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_ListBySolutionTemplate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_ListBySolutionTemplate_MaximumSet_Gen.json new file mode 100644 index 000000000000..dc0b72680d48 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplateVersions_ListBySolutionTemplate_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "SolutionTemplateVersions_ListBySolutionTemplate_MaximumSet", + "operationId": "SolutionTemplateVersions_ListBySolutionTemplate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "configurations": "ofqcsavwmeuwmvtjnqpoybtjvkmrlh", + "specification": {}, + "orchestratorType": "TO", + "provisioningState": "Succeeded" + }, + "eTag": "diqzzjtqycbtjzinckqwxowzdy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "haebwdswymjzjfwbfipf", + "type": "swo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..d6baf304b629 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,89 @@ +{ + "title": "SolutionTemplates_CreateOrUpdate_MaximumSet", + "operationId": "SolutionTemplates_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "resource": { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "state": "active", + "enableExternalValidation": true + }, + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_CreateVersion_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_CreateVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..6979a2ecdf43 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_CreateVersion_MaximumSet_Gen.json @@ -0,0 +1,50 @@ +{ + "title": "SolutionTemplates_CreateVersion_MaximumSet", + "operationId": "SolutionTemplates_CreateVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "body": { + "updateType": "Major", + "version": "1.0.0", + "solutionTemplateVersion": { + "properties": { + "configurations": "ofqcsavwmeuwmvtjnqpoybtjvkmrlh", + "specification": {}, + "orchestratorType": "TO" + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "configurations": "ofqcsavwmeuwmvtjnqpoybtjvkmrlh", + "specification": {}, + "orchestratorType": "TO", + "provisioningState": "Succeeded" + }, + "eTag": "diqzzjtqycbtjzinckqwxowzdy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "haebwdswymjzjfwbfipf", + "type": "swo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..308d667596a3 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_Delete_MaximumSet_Gen.json @@ -0,0 +1,18 @@ +{ + "title": "SolutionTemplates_Delete_MaximumSet", + "operationId": "SolutionTemplates_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..4e75c1ad4d48 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_Get_MaximumSet_Gen.json @@ -0,0 +1,42 @@ +{ + "title": "SolutionTemplates_Get_MaximumSet", + "operationId": "SolutionTemplates_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..1e63d1b7cd54 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,46 @@ +{ + "title": "SolutionTemplates_ListByResourceGroup_MaximumSet", + "operationId": "SolutionTemplates_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/ancyla" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_ListBySubscription_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..95de4e36244d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,45 @@ +{ + "title": "SolutionTemplates_ListBySubscription_MaximumSet", + "operationId": "SolutionTemplates_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/ancyla" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_RemoveVersion_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_RemoveVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..bcc2d227a549 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_RemoveVersion_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "SolutionTemplates_RemoveVersion_MaximumSet", + "operationId": "SolutionTemplates_RemoveVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "body": { + "version": "ghtvdzgmzncaifrnuumg" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..1a2f70de5f32 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionTemplates_Update_MaximumSet_Gen.json @@ -0,0 +1,55 @@ +{ + "title": "SolutionTemplates_Update_MaximumSet", + "operationId": "SolutionTemplates_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "properties": { + "properties": { + "description": "onqlteg", + "capabilities": [ + "relsv" + ], + "state": "active", + "enableExternalValidation": true + }, + "tags": { + "key8772": "vbdujmqklnwiepis" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "relsv" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..83528448214d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,172 @@ +{ + "title": "SolutionVersions_CreateOrUpdate_MaximumSet", + "operationId": "SolutionVersions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "solutionVersionName": "testname", + "resource": { + "properties": { + "specification": {}, + "state": "InReview", + "errorDetails": {} + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..e1ff066d7467 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "SolutionVersions_Delete_MaximumSet", + "operationId": "SolutionVersions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "solutionVersionName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..cf144382abf8 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,86 @@ +{ + "title": "SolutionVersions_Get_MaximumSet", + "operationId": "SolutionVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "solutionVersionName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_ListBySolution_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_ListBySolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..a4e1d455b84f --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_ListBySolution_MaximumSet_Gen.json @@ -0,0 +1,90 @@ +{ + "title": "SolutionVersions_ListBySolution_MaximumSet", + "operationId": "SolutionVersions_ListBySolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/aidpqswh" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..27bcfa7990c4 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/SolutionVersions_Update_MaximumSet_Gen.json @@ -0,0 +1,96 @@ +{ + "title": "SolutionVersions_Update_MaximumSet", + "operationId": "SolutionVersions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "solutionVersionName": "testname", + "properties": { + "properties": { + "specification": {} + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..ec4e6dbba98d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,85 @@ +{ + "title": "Solutions_CreateOrUpdate_MaximumSet", + "operationId": "Solutions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "resource": { + "properties": {}, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateId": "fnfqvxxdfofpr", + "availableSolutionTemplateVersions": [ + { + "solutionTemplateVersion": "uwlikibcqbawiphxhzmyxshr", + "latestConfigRevision": "gbvzfexxtqfhumfdnfokv", + "isConfigured": true + } + ], + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "zhbbdeijrezsuqxubqbtvllponba", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ysvzlramfranmepecvpmpthbhxh", + "type": "t", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "solutionTemplateId": "fnfqvxxdfofpr", + "availableSolutionTemplateVersions": [ + { + "solutionTemplateVersion": "uwlikibcqbawiphxhzmyxshr", + "latestConfigRevision": "gbvzfexxtqfhumfdnfokv", + "isConfigured": true + } + ], + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "zhbbdeijrezsuqxubqbtvllponba", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ysvzlramfranmepecvpmpthbhxh", + "type": "t", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..b5a279a9fe29 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "Solutions_Delete_MaximumSet", + "operationId": "Solutions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..00f1036b703b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_Get_MaximumSet_Gen.json @@ -0,0 +1,44 @@ +{ + "title": "Solutions_Get_MaximumSet", + "operationId": "Solutions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateId": "fnfqvxxdfofpr", + "availableSolutionTemplateVersions": [ + { + "solutionTemplateVersion": "uwlikibcqbawiphxhzmyxshr", + "latestConfigRevision": "gbvzfexxtqfhumfdnfokv", + "isConfigured": true + } + ], + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "zhbbdeijrezsuqxubqbtvllponba", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ysvzlramfranmepecvpmpthbhxh", + "type": "t", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_ListByTarget_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_ListByTarget_MaximumSet_Gen.json new file mode 100644 index 000000000000..16415b1d301b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_ListByTarget_MaximumSet_Gen.json @@ -0,0 +1,48 @@ +{ + "title": "Solutions_ListByTarget_MaximumSet", + "operationId": "Solutions_ListByTarget", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "solutionTemplateId": "fnfqvxxdfofpr", + "availableSolutionTemplateVersions": [ + { + "solutionTemplateVersion": "uwlikibcqbawiphxhzmyxshr", + "latestConfigRevision": "gbvzfexxtqfhumfdnfokv", + "isConfigured": true + } + ], + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "zhbbdeijrezsuqxubqbtvllponba", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ysvzlramfranmepecvpmpthbhxh", + "type": "t", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..a37f7b87c9bd --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Solutions_Update_MaximumSet_Gen.json @@ -0,0 +1,52 @@ +{ + "title": "Solutions_Update_MaximumSet", + "operationId": "Solutions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "properties": { + "properties": {} + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateId": "fnfqvxxdfofpr", + "availableSolutionTemplateVersions": [ + { + "solutionTemplateVersion": "uwlikibcqbawiphxhzmyxshr", + "latestConfigRevision": "gbvzfexxtqfhumfdnfokv", + "isConfigured": true + } + ], + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "zhbbdeijrezsuqxubqbtvllponba", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ysvzlramfranmepecvpmpthbhxh", + "type": "t", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..213313b341b3 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,174 @@ +{ + "title": "Targets_CreateOrUpdate_MaximumSet", + "operationId": "Targets_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "resource": { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..a076dbd9d1e6 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "Targets_Delete_MaximumSet", + "operationId": "Targets_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "forceDelete": true, + "targetName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..c2a6adecac02 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_Get_MaximumSet_Gen.json @@ -0,0 +1,70 @@ +{ + "title": "Targets_Get_MaximumSet", + "operationId": "Targets_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_InstallSolution_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_InstallSolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..fde1cf5f1b5f --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_InstallSolution_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "Targets_InstallSolution_MaximumSet", + "operationId": "Targets_InstallSolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..9fbca2924e7f --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,74 @@ +{ + "title": "Targets_ListByResourceGroup_MaximumSet", + "operationId": "Targets_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/aedz" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ListBySubscription_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..a188d8e84b9f --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,73 @@ +{ + "title": "Targets_ListBySubscription_MaximumSet", + "operationId": "Targets_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/aedz" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_PublishSolutionVersion_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_PublishSolutionVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..968d5ae7f215 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_PublishSolutionVersion_MaximumSet_Gen.json @@ -0,0 +1,74 @@ +{ + "title": "Targets_PublishSolutionVersion_MaximumSet", + "operationId": "Targets_PublishSolutionVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_RemoveRevision_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_RemoveRevision_MaximumSet_Gen.json new file mode 100644 index 000000000000..d37596a08038 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_RemoveRevision_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Targets_RemoveRevision_MaximumSet", + "operationId": "Targets_RemoveRevision", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionTemplateId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "solutionVersion": "tomwmqybqomwkfaeukjneva" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ResolveConfiguration_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ResolveConfiguration_MaximumSet_Gen.json new file mode 100644 index 000000000000..8ff55d239903 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ResolveConfiguration_MaximumSet_Gen.json @@ -0,0 +1,36 @@ +{ + "title": "Targets_ResolveConfiguration_MaximumSet", + "operationId": "Targets_ResolveConfiguration", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionTemplateVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}/{resourceType}/{resourceName}", + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "cydzqntmjlqtksbavjwteru", + "solutionTemplateId": "liqauthxnscodbiwktwfwrrsg", + "solutionTemplateVersion": "gordjasyxxrj", + "solutionInstanceName": "testname", + "targetId": "steadvphxtyhjokqicrtg", + "dependencies": [] + } + ] + } + }, + "responses": { + "200": { + "body": { + "configuration": "vjxrtzgboqltqnkbcq" + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ReviewSolutionVersion_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ReviewSolutionVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..1336301fbab7 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_ReviewSolutionVersion_MaximumSet_Gen.json @@ -0,0 +1,85 @@ +{ + "title": "Targets_ReviewSolutionVersion_MaximumSet", + "operationId": "Targets_ReviewSolutionVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionTemplateVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}/{resourceType}/{resourceName}", + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "cydzqntmjlqtksbavjwteru", + "solutionTemplateId": "liqauthxnscodbiwktwfwrrsg", + "solutionTemplateVersion": "gordjasyxxrj", + "solutionInstanceName": "testname", + "targetId": "steadvphxtyhjokqicrtg", + "dependencies": [] + } + ] + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "cydzqntmjlqtksbavjwteru", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "steadvphxtyhjokqicrtg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_UninstallSolution_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_UninstallSolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..b11a984b358d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_UninstallSolution_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Targets_UninstallSolution_MaximumSet", + "operationId": "Targets_UninstallSolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionTemplateId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "solutionInstanceName": "lzihiumrcxbolmkqktvtuqyhg" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_UnstageSolutionVersion_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_UnstageSolutionVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..4964c2ff8d2d --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_UnstageSolutionVersion_MaximumSet_Gen.json @@ -0,0 +1,95 @@ +{ + "title": "Targets_UnstageSolutionVersion_MaximumSet", + "operationId": "Targets_UnstageSolutionVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "latestActionTrackingUri": "pcphnfuinkwbxgbkf", + "lastestActionTriggeredBy": "mckqisikvpizje", + "actionType": "deploy", + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_UpdateExternalValidationStatus_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_UpdateExternalValidationStatus_MaximumSet_Gen.json new file mode 100644 index 000000000000..dc2be2dfcc72 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_UpdateExternalValidationStatus_MaximumSet_Gen.json @@ -0,0 +1,77 @@ +{ + "title": "Targets_UpdateExternalValidationStatus_MaximumSet", + "operationId": "Targets_UpdateExternalValidationStatus", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionVersionId": "shntcsuwlmpehmuqkrbf", + "errorDetails": {}, + "externalValidationId": "ivsjzwy", + "validationStatus": "Valid" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..6498d5fbdb1b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Targets_Update_MaximumSet_Gen.json @@ -0,0 +1,92 @@ +{ + "title": "Targets_Update_MaximumSet", + "operationId": "Targets_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "properties": { + "properties": { + "description": "yhnhdpznncdvncmnvoeohqjx", + "displayName": "pguujtzjjvixgjitugybrefp", + "targetSpecification": {}, + "capabilities": [ + "dasqhyxfakivfzqb" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "hfyntwxetgsmnucbjvvphtyxu", + "solutionScope": "testname", + "state": "active" + }, + "tags": { + "key8026": "yoosplotwgoquvpox" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "dasqhyxfakivfzqb" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..4b281400bf47 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,143 @@ +{ + "title": "WorkflowVersions_CreateOrUpdate_MaximumSet", + "operationId": "WorkflowVersions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "versionName": "testname", + "resource": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "state": "InReview", + "specification": {} + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "state": "InReview", + "specification": {}, + "revision": 4, + "configuration": "czvrwkzex", + "reviewId": "hcnzmdpszvvtn", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "v", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "rsghgriwbtckmabbcxmqbvshybhw", + "type": "jahxsjfhxhpsobltqfdlfn", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "state": "InReview", + "specification": {}, + "revision": 4, + "configuration": "czvrwkzex", + "reviewId": "hcnzmdpszvvtn", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "v", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "rsghgriwbtckmabbcxmqbvshybhw", + "type": "jahxsjfhxhpsobltqfdlfn", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..76965fa01c06 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "WorkflowVersions_Delete_MaximumSet", + "operationId": "WorkflowVersions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "versionName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..0ba64d10d3f3 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,62 @@ +{ + "title": "WorkflowVersions_Get_MaximumSet", + "operationId": "WorkflowVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "versionName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "state": "InReview", + "specification": {}, + "revision": 4, + "configuration": "czvrwkzex", + "reviewId": "hcnzmdpszvvtn", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "v", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "rsghgriwbtckmabbcxmqbvshybhw", + "type": "jahxsjfhxhpsobltqfdlfn", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_ListByWorkflow_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_ListByWorkflow_MaximumSet_Gen.json new file mode 100644 index 000000000000..dd8349ca393f --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_ListByWorkflow_MaximumSet_Gen.json @@ -0,0 +1,66 @@ +{ + "title": "WorkflowVersions_ListByWorkflow_MaximumSet", + "operationId": "WorkflowVersions_ListByWorkflow", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "revision": 4, + "configuration": "czvrwkzex", + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "reviewId": "hcnzmdpszvvtn", + "state": "InReview", + "specification": {}, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "v", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "rsghgriwbtckmabbcxmqbvshybhw", + "type": "jahxsjfhxhpsobltqfdlfn", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..7e8c76c40aa0 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/WorkflowVersions_Update_MaximumSet_Gen.json @@ -0,0 +1,92 @@ +{ + "title": "WorkflowVersions_Update_MaximumSet", + "operationId": "WorkflowVersions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "versionName": "testname", + "properties": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "specification": {} + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "state": "InReview", + "specification": {}, + "revision": 4, + "configuration": "czvrwkzex", + "reviewId": "hcnzmdpszvvtn", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "v", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "rsghgriwbtckmabbcxmqbvshybhw", + "type": "jahxsjfhxhpsobltqfdlfn", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..5484b46934a3 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,71 @@ +{ + "title": "Workflows_CreateOrUpdate_MaximumSet", + "operationId": "Workflows_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "resource": { + "properties": {}, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "workflowTemplateId": "ujmzzr", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "trbfrhlyyemhojcteofvr", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "jcivjgtzcfdrfsq", + "type": "nkacxxkrvouyglz", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "workflowTemplateId": "ujmzzr", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "trbfrhlyyemhojcteofvr", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "jcivjgtzcfdrfsq", + "type": "nkacxxkrvouyglz", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..ee3dcddc8666 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "Workflows_Delete_MaximumSet", + "operationId": "Workflows_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..183ba3b0c94b --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_Get_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "Workflows_Get_MaximumSet", + "operationId": "Workflows_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "workflowTemplateId": "ujmzzr", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "trbfrhlyyemhojcteofvr", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "jcivjgtzcfdrfsq", + "type": "nkacxxkrvouyglz", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_ListByContext_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_ListByContext_MaximumSet_Gen.json new file mode 100644 index 000000000000..37779276b1bf --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_ListByContext_MaximumSet_Gen.json @@ -0,0 +1,41 @@ +{ + "title": "Workflows_ListByContext_MaximumSet", + "operationId": "Workflows_ListByContext", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "workflowTemplateId": "ujmzzr", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "trbfrhlyyemhojcteofvr", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "jcivjgtzcfdrfsq", + "type": "nkacxxkrvouyglz", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..9b4549c8d8f3 --- /dev/null +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/examples/2025-08-01/Workflows_Update_MaximumSet_Gen.json @@ -0,0 +1,45 @@ +{ + "title": "Workflows_Update_MaximumSet", + "operationId": "Workflows_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "properties": { + "properties": {} + } + }, + "responses": { + "200": { + "body": { + "properties": { + "workflowTemplateId": "ujmzzr", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "trbfrhlyyemhojcteofvr", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "jcivjgtzcfdrfsq", + "type": "nkacxxkrvouyglz", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/main.tsp b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/main.tsp index 41ab8a6d8c65..e7cfe5b6693d 100644 --- a/specification/edge/Microsoft.Edge.ConfigurationManager.Management/main.tsp +++ b/specification/edge/Microsoft.Edge.ConfigurationManager.Management/main.tsp @@ -44,4 +44,9 @@ enum Versions { @useDependency(Azure.Core.Versions.v1_0_Preview_2) @armCommonTypesVersion(Azure.ResourceManager.CommonTypes.Versions.v5) v2025_06_01: "2025-06-01", + + @useDependency(Azure.ResourceManager.Versions.v1_0_Preview_1) + @useDependency(Azure.Core.Versions.v1_0_Preview_2) + @armCommonTypesVersion(Azure.ResourceManager.CommonTypes.Versions.v5) + v2025_08_01: "2025-08-01", } diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/DynamicConfiguration.tsp b/specification/edge/Microsoft.Edge.Configurations.Management/DynamicConfiguration.tsp index fa08282c4d4b..5484bf55e2b0 100644 --- a/specification/edge/Microsoft.Edge.Configurations.Management/DynamicConfiguration.tsp +++ b/specification/edge/Microsoft.Edge.Configurations.Management/DynamicConfiguration.tsp @@ -23,6 +23,11 @@ model DynamicConfigurationProperties { @doc("Current Version of dynamic configuration") currentVersion: string; + @added(Versions.v2025_08_01) + @doc("Display name of the dynamic configuration") + @visibility(Lifecycle.Read) + displayName?: string; + @doc("Type of dynamic configuration") @visibility(Lifecycle.Read) dynamicConfigurationType?: ConfigurationType; diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/DynamicConfigurationVersion.tsp b/specification/edge/Microsoft.Edge.Configurations.Management/DynamicConfigurationVersion.tsp index 079a16c9740a..f4e165f8e8b1 100644 --- a/specification/edge/Microsoft.Edge.Configurations.Management/DynamicConfigurationVersion.tsp +++ b/specification/edge/Microsoft.Edge.Configurations.Management/DynamicConfigurationVersion.tsp @@ -6,6 +6,7 @@ import "@azure-tools/typespec-azure-resource-manager"; import "@typespec/openapi"; import "./DynamicConfiguration.tsp"; import "./ProvisioningState.tsp"; +import "./State.tsp"; using TypeSpec.OpenAPI; using TypeSpec.Http; @@ -25,6 +26,25 @@ model DynamicConfigurationVersionProperties { @visibility(Lifecycle.Read) schemaId?: string; + @added(Versions.v2025_08_01) + @doc("Dynamic schema version Id for configuration") + @visibility(Lifecycle.Read) + dynamicSchemaVersionId?: Azure.Core.armResourceIdentifier<[ + { + type: "Microsoft.Edge/Schemas/DynamicSchemas/Versions"; + } + ]>; + + @added(Versions.v2025_08_01) + @doc("Display state") + @visibility(Lifecycle.Read) + displayState?: string; + + @added(Versions.v2025_08_01) + @doc("Configuration state") + @visibility(Lifecycle.Read) + state?: ConfigurationState; + @doc("Provisioning state of resource") @visibility(Lifecycle.Read) provisioningState?: ProvisioningState; diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/State.tsp b/specification/edge/Microsoft.Edge.Configurations.Management/State.tsp new file mode 100644 index 000000000000..87e84820d3dd --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/State.tsp @@ -0,0 +1,27 @@ +import "@typespec/http"; +import "@typespec/rest"; +import "@typespec/versioning"; +import "@azure-tools/typespec-azure-core"; +import "@azure-tools/typespec-azure-resource-manager"; +import "@typespec/openapi"; + +using TypeSpec.OpenAPI; +using TypeSpec.Http; +using TypeSpec.Rest; +using TypeSpec.Versioning; +using Azure.Core; +using Azure.ResourceManager; + +namespace Microsoft.Edge; + +@added(Versions.v2025_08_01) +@doc("Configuration State Enums") +union ConfigurationState { + @doc("Configuration Completed") + ConfigurationCompleted: "ConfigurationCompleted", + + @doc("Configuration Completed") + ConfigurationPending: "ConfigurationPending", + + string, +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..13be65f88a1c --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,54 @@ +{ + "title": "ConfigurationReferences_CreateOrUpdate", + "operationId": "ConfigurationReferences_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite", + "configurationReferenceName": "default", + "resource": { + "properties": { + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded", + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite/providers/Microsoft.Edge/configurationReferences/default", + "name": "default", + "type": "Microsoft.Edge/configurationReferences", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + }, + "201": { + "body": { + "properties": { + "provisioningState": "Succeeded", + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite/providers/Microsoft.Edge/configurationReferences/default", + "name": "default", + "type": "Microsoft.Edge/configurationReferences", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..6fbef84d3ff5 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_Delete_MaximumSet_Gen.json @@ -0,0 +1,13 @@ +{ + "title": "ConfigurationReferences_Delete", + "operationId": "ConfigurationReferences_Delete", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite", + "configurationReferenceName": "default" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..abc728bf9b0b --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_Get_MaximumSet_Gen.json @@ -0,0 +1,30 @@ +{ + "title": "ConfigurationReferences_Get", + "operationId": "ConfigurationReferences_Get", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite", + "configurationReferenceName": "default" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded", + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite/providers/Microsoft.Edge/configurationReferences/default", + "name": "default", + "type": "Microsoft.Edge/configurationReferences", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_List_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_List_MaximumSet_Gen.json new file mode 100644 index 000000000000..1dd407f2a5ac --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_List_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "ConfigurationReferences_List", + "operationId": "ConfigurationReferences_List", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite/providers/Microsoft.Edge/configurationReferences/default", + "name": "default", + "type": "Microsoft.Edge/configurationReferences", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..a241e6d8ed0d --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/ConfigurationReferences_Update_MaximumSet_Gen.json @@ -0,0 +1,35 @@ +{ + "title": "ConfigurationReferences_Update", + "operationId": "ConfigurationReferences_Update", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite", + "configurationReferenceName": "default", + "properties": { + "properties": { + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded", + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite/providers/Microsoft.Edge/configurationReferences/default", + "name": "default", + "type": "Microsoft.Edge/configurationReferences", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..381a21965fae --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,63 @@ +{ + "title": "Configurations_CreateOrUpdate", + "operationId": "Configurations_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "aConfiguration", + "resource": { + "properties": {}, + "tags": { + "key64": "wwupf" + }, + "location": "west us" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + }, + "201": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..0c4044786f66 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_Delete_MaximumSet_Gen.json @@ -0,0 +1,14 @@ +{ + "title": "Configurations_Delete", + "operationId": "Configurations_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "aConfiguration" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..39fd2c1c8a82 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "Configurations_Get", + "operationId": "Configurations_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "aConfiguration" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..4e4c4d23c59a --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "Configurations_ListByResourceGroup", + "operationId": "Configurations_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_ListBySubscription_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..7ad25447088a --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "Configurations_ListBySubscription", + "operationId": "Configurations_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..54d0261d46b8 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/Configurations_Update_MaximumSet_Gen.json @@ -0,0 +1,40 @@ +{ + "title": "Configurations_Update", + "operationId": "Configurations_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "aConfiguration", + "properties": { + "properties": {}, + "tags": { + "key9384": "zvwulvxbevodnnqsiw" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..2f6539eb86b1 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,62 @@ +{ + "title": "DynamicConfigurationVersions_CreateOrUpdate - generated by [MaximumSet] rule", + "operationId": "DynamicConfigurationVersions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "dynamicConfigurationVersionName": "parameterName", + "resource": { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg", + "schemaId": "vzhuxaudjizqyxaazzz", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName/versions/mydynamicConfigurationVersionName", + "name": "suecqongzioebxrprnhv", + "type": "yxj", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg", + "schemaId": "vzhuxaudjizqyxaazzz", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName/versions/mydynamicConfigurationVersionName", + "name": "suecqongzioebxrprnhv", + "type": "yxj", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..b08740db5190 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_Delete_MaximumSet_Gen.json @@ -0,0 +1,16 @@ +{ + "title": "DynamicConfigurationVersions_Delete - generated by [MaximumSet] rule", + "operationId": "DynamicConfigurationVersions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "dynamicConfigurationVersionName": "parameterName" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..bc4c984c5a8c --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "DynamicConfigurationVersions_Get - generated by [MaximumSet] rule", + "operationId": "DynamicConfigurationVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "dynamicConfigurationVersionName": "parameterName" + }, + "responses": { + "200": { + "body": { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg", + "schemaId": "vzhuxaudjizqyxaazzz", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName/versions/mydynamicConfigurationVersionName", + "name": "suecqongzioebxrprnhv", + "type": "yxj", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_ListByDynamicConfiguration_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_ListByDynamicConfiguration_MaximumSet_Gen.json new file mode 100644 index 000000000000..0e22d69543a9 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_ListByDynamicConfiguration_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "DynamicConfigurationVersions_ListByDynamicConfiguration - generated by [MaximumSet] rule", + "operationId": "DynamicConfigurationVersions_ListByDynamicConfiguration", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg", + "provisioningState": "Succeeded", + "schemaId": "ojwzwsrheuooi" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName/versions/mydynamicConfigurationVersionName", + "name": "suecqongzioebxrprnhv", + "type": "yxj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..8a09d907d73e --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurationVersions_Update_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "DynamicConfigurationVersions_Update - generated by [MaximumSet] rule", + "operationId": "DynamicConfigurationVersions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "dynamicConfigurationVersionName": "parameterName", + "properties": { + "properties": { + "values": "ujeeunyfkqihelwbpllkhxgfusoyj" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg", + "schemaId": "vzhuxaudjizqyxaazzz", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName/versions/mydynamicConfigurationVersionName", + "name": "suecqongzioebxrprnhv", + "type": "yxj", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..1fc236dcf8fd --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,65 @@ +{ + "title": "DynamicConfigurations_CreateOrUpdate", + "operationId": "DynamicConfigurations_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "resource": { + "properties": { + "currentVersion": "ltpwymdbybbjdgyuumsfh", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "ltpwymdbybbjdgyuumsfh", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName", + "name": "v", + "type": "pyrnlouvjdyj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "currentVersion": "ltpwymdbybbjdgyuumsfh", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName", + "name": "v", + "type": "pyrnlouvjdyj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_Delete_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..4c17e9d771c0 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_Delete_MaximumSet_Gen.json @@ -0,0 +1,15 @@ +{ + "title": "DynamicConfigurations_Delete", + "operationId": "DynamicConfigurations_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_Get_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..4e0502499a19 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "DynamicConfigurations_Get", + "operationId": "DynamicConfigurations_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName" + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "ltpwymdbybbjdgyuumsfh", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName", + "name": "v", + "type": "pyrnlouvjdyj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_ListByConfiguration_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_ListByConfiguration_MaximumSet_Gen.json new file mode 100644 index 000000000000..0357f41d19a7 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_ListByConfiguration_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "DynamicConfigurations_ListByConfiguration", + "operationId": "DynamicConfigurations_ListByConfiguration", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "currentVersion": "rkhnfdstcdieumifrhajl", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName", + "name": "v", + "type": "pyrnlouvjdyj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + ], + "nextLink": "https://microsoft.com/ahud" + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_Update_MaximumSet_Gen.json b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..d78a58a74333 --- /dev/null +++ b/specification/edge/Microsoft.Edge.Configurations.Management/examples/2025-08-01/DynamicConfigurations_Update_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "DynamicConfigurations_Update", + "operationId": "DynamicConfigurations_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "properties": { + "properties": { + "currentVersion": "nmpeaygsegrcqpk" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "ltpwymdbybbjdgyuumsfh", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName", + "name": "v", + "type": "pyrnlouvjdyj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + } + } +} diff --git a/specification/edge/Microsoft.Edge.Configurations.Management/main.tsp b/specification/edge/Microsoft.Edge.Configurations.Management/main.tsp index d6bcd70f6e59..ae0f483a4fcc 100644 --- a/specification/edge/Microsoft.Edge.Configurations.Management/main.tsp +++ b/specification/edge/Microsoft.Edge.Configurations.Management/main.tsp @@ -26,4 +26,9 @@ enum Versions { @useDependency(Azure.Core.Versions.v1_0_Preview_2) @armCommonTypesVersion(Azure.ResourceManager.CommonTypes.Versions.v5) v2025_06_01: "2025-06-01", + + @useDependency(Azure.ResourceManager.Versions.v1_0_Preview_1) + @useDependency(Azure.Core.Versions.v1_0_Preview_2) + @armCommonTypesVersion(Azure.ResourceManager.CommonTypes.Versions.v5) + v2025_08_01: "2025-08-01", } diff --git a/specification/edge/cspell.yaml b/specification/edge/cspell.yaml index 382da40d6631..5bb98c4c2b4b 100644 --- a/specification/edge/cspell.yaml +++ b/specification/edge/cspell.yaml @@ -8,6 +8,9 @@ import: - ../../cspell.yaml words: - undeployed + - unstage + - unstaging + - uninstallation overrides: - filename: >- **/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/**/*.json diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/readme.md b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/readme.md index 5e736f771f98..10a74eef3ae8 100644 --- a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/readme.md +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/readme.md @@ -38,8 +38,18 @@ These are the global settings for the configurationmanager. ```yaml openapi-type: arm openapi-subtype: rpaas -tag: package-2025-06-01 +tag: package-2025-08-01 ``` + +### Tag: package-2025-08-01 + +These settings apply only when `--tag=package-2025-08-01` is specified on the command line. + +```yaml $(tag) == 'package-2025-08-01' +input-file: + - stable/2025-08-01/configurationmanager.json +``` + ### Tag: package-2025-06-01 These settings apply only when `--tag=package-2025-06-01` is specified on the command line. diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/configurationmanager.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/configurationmanager.json index 41474a0e2b0d..25fac76e9ad5 100644 --- a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/configurationmanager.json +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/configurationmanager.json @@ -3911,7 +3911,7 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/dynamicSchemas/{dynamicSchemaName}/versions/{schemaVersionName}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/dynamicSchemas/{dynamicSchemaName}/versions/{dynamicSchemaVersionName}": { "get": { "operationId": "DynamicSchemaVersions_Get", "tags": [ @@ -3945,12 +3945,12 @@ "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" }, { - "name": "schemaVersionName", + "name": "dynamicSchemaVersionName", "in": "path", - "description": "The name of the SchemaVersion", + "description": "The name of the DynamicSchemaVersion", "required": true, "type": "string", - "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + "pattern": "^(v2-)?[0-9]+\\.[0-9]+\\.[0-9]+$" } ], "responses": { @@ -4006,12 +4006,12 @@ "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" }, { - "name": "schemaVersionName", + "name": "dynamicSchemaVersionName", "in": "path", - "description": "The name of the SchemaVersion", + "description": "The name of the DynamicSchemaVersion", "required": true, "type": "string", - "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + "pattern": "^(v2-)?[0-9]+\\.[0-9]+\\.[0-9]+$" }, { "name": "resource", @@ -4097,12 +4097,12 @@ "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" }, { - "name": "schemaVersionName", + "name": "dynamicSchemaVersionName", "in": "path", - "description": "The name of the SchemaVersion", + "description": "The name of the DynamicSchemaVersion", "required": true, "type": "string", - "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + "pattern": "^(v2-)?[0-9]+\\.[0-9]+\\.[0-9]+$" }, { "name": "properties", @@ -4167,12 +4167,12 @@ "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" }, { - "name": "schemaVersionName", + "name": "dynamicSchemaVersionName", "in": "path", - "description": "The name of the SchemaVersion", + "description": "The name of the DynamicSchemaVersion", "required": true, "type": "string", - "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + "pattern": "^(v2-)?[0-9]+\\.[0-9]+\\.[0-9]+$" } ], "responses": { diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json index f66a24dc4925..b35bda40bc5e 100644 --- a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -7,7 +7,7 @@ "resourceGroupName": "rgconfigurationmanager", "schemaName": "testname", "dynamicSchemaName": "testname", - "schemaVersionName": "1.0.0", + "dynamicSchemaVersionName": "1.0.0", "resource": { "properties": { "value": "uiaqdwsi" diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Delete_MaximumSet_Gen.json index 950dcd6ce4a5..3ee332b7cb05 100644 --- a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Delete_MaximumSet_Gen.json +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Delete_MaximumSet_Gen.json @@ -7,7 +7,7 @@ "resourceGroupName": "rgconfigurationmanager", "schemaName": "testname", "dynamicSchemaName": "testname", - "schemaVersionName": "1.0.0" + "dynamicSchemaVersionName": "1.0.0" }, "responses": { "202": { diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Get_MaximumSet_Gen.json index f7a7978a6209..7747fbedc85e 100644 --- a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Get_MaximumSet_Gen.json +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Get_MaximumSet_Gen.json @@ -7,7 +7,7 @@ "resourceGroupName": "rgconfigurationmanager", "schemaName": "testname", "dynamicSchemaName": "testname", - "schemaVersionName": "1.0.0" + "dynamicSchemaVersionName": "1.0.0" }, "responses": { "200": { diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Update_MaximumSet_Gen.json index f5b7d19afbeb..546210caf47f 100644 --- a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Update_MaximumSet_Gen.json +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-06-01/examples/DynamicSchemaVersions_Update_MaximumSet_Gen.json @@ -7,7 +7,7 @@ "resourceGroupName": "rgconfigurationmanager", "schemaName": "testname", "dynamicSchemaName": "testname", - "schemaVersionName": "1.0.0", + "dynamicSchemaVersionName": "1.0.0", "properties": { "properties": { "value": "muezi" diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/configurationmanager.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/configurationmanager.json new file mode 100644 index 000000000000..082a761b5d2f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/configurationmanager.json @@ -0,0 +1,11136 @@ +{ + "swagger": "2.0", + "info": { + "title": "Microsoft.Edge", + "version": "2025-08-01", + "description": "Microsoft.Edge Resource Provider management API.", + "x-typespec-generated": [ + { + "emitter": "@azure-tools/typespec-autorest" + } + ] + }, + "schemes": [ + "https" + ], + "host": "management.azure.com", + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "description": "Azure Active Directory OAuth2 Flow.", + "flow": "implicit", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "tags": [ + { + "name": "DynamicSchemas" + }, + { + "name": "Schemas" + }, + { + "name": "SchemaVersions" + }, + { + "name": "SolutionVersions" + }, + { + "name": "Jobs" + }, + { + "name": "Targets" + }, + { + "name": "DynamicSchemaVersions" + }, + { + "name": "SchemaReferences" + }, + { + "name": "Solutions" + }, + { + "name": "SolutionTemplateVersions" + }, + { + "name": "SolutionTemplates" + }, + { + "name": "Instances" + }, + { + "name": "InstanceHistories" + }, + { + "name": "ConfigTemplates" + }, + { + "name": "ConfigTemplateVersions" + }, + { + "name": "Workflows" + }, + { + "name": "WorkflowVersions" + }, + { + "name": "Executions" + }, + { + "name": "Diagnostics" + }, + { + "name": "Contexts" + }, + { + "name": "SiteReferences" + } + ], + "paths": { + "/{resourceUri}/providers/Microsoft.Edge/jobs": { + "get": { + "operationId": "Jobs_ListByTarget", + "tags": [ + "Jobs" + ], + "description": "List Jobs by parent resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/Azure.ResourceManager.ResourceUriParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/JobListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Jobs_ListByTarget_MaximumSet": { + "$ref": "./examples/Jobs_ListByTarget_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/{resourceUri}/providers/Microsoft.Edge/jobs/{jobName}": { + "get": { + "operationId": "Jobs_Get", + "tags": [ + "Jobs" + ], + "description": "Get a Job resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/Azure.ResourceManager.ResourceUriParameter" + }, + { + "name": "jobName", + "in": "path", + "description": "The name of the Job", + "required": true, + "type": "string", + "pattern": "^(?=.{3,60}$)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Job" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Jobs_Get_MaximumSet": { + "$ref": "./examples/Jobs_Get_MaximumSet_Gen.json" + } + } + } + }, + "/{resourceUri}/providers/Microsoft.Edge/schemaReferences": { + "get": { + "operationId": "SchemaReferences_ListByResourceGroup", + "tags": [ + "SchemaReferences" + ], + "description": "List by specified resource group", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/Azure.ResourceManager.ResourceUriParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SchemaReferenceListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SchemaReferences_ListByResourceGroup_MaximumSet": { + "$ref": "./examples/SchemaReferences_ListByResourceGroup_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/{resourceUri}/providers/Microsoft.Edge/schemaReferences/{schemaReferenceName}": { + "get": { + "operationId": "SchemaReferences_Get", + "tags": [ + "SchemaReferences" + ], + "description": "Get a Schema Reference Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/Azure.ResourceManager.ResourceUriParameter" + }, + { + "name": "schemaReferenceName", + "in": "path", + "description": "The name of the SchemaReference", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SchemaReference" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SchemaReferences_Get_MaximumSet": { + "$ref": "./examples/SchemaReferences_Get_MaximumSet_Gen.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/configTemplates": { + "get": { + "operationId": "ConfigTemplates_ListBySubscription", + "tags": [ + "ConfigTemplates" + ], + "description": "List by subscription", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigTemplateListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigTemplates_ListBySubscription_MaximumSet": { + "$ref": "./examples/ConfigTemplates_ListBySubscription_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/contexts": { + "get": { + "operationId": "Contexts_ListBySubscription", + "tags": [ + "Contexts" + ], + "description": "List by subscription", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ContextListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Contexts_ListBySubscription_MaximumSet": { + "$ref": "./examples/Contexts_ListBySubscription_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/diagnostics": { + "get": { + "operationId": "Diagnostics_ListBySubscription", + "tags": [ + "Diagnostics" + ], + "description": "Lists Diagnostics resources within an Azure subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Diagnostics_ListBySubscription_MaximumSet": { + "$ref": "./examples/Diagnostics_ListBySubscription_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/schemas": { + "get": { + "operationId": "Schemas_ListBySubscription", + "tags": [ + "Schemas" + ], + "description": "List by subscription", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SchemaListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Schemas_ListBySubscription_MaximumSet": { + "$ref": "./examples/Schemas_ListBySubscription_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/solutionTemplates": { + "get": { + "operationId": "SolutionTemplates_ListBySubscription", + "tags": [ + "SolutionTemplates" + ], + "description": "List by subscription", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionTemplateListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplates_ListBySubscription_MaximumSet": { + "$ref": "./examples/SolutionTemplates_ListBySubscription_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/targets": { + "get": { + "operationId": "Targets_ListBySubscription", + "tags": [ + "Targets" + ], + "description": "List by subscription", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TargetListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_ListBySubscription_MaximumSet": { + "$ref": "./examples/Targets_ListBySubscription_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configTemplates": { + "get": { + "operationId": "ConfigTemplates_ListByResourceGroup", + "tags": [ + "ConfigTemplates" + ], + "description": "List by specified resource group", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigTemplateListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigTemplates_ListByResourceGroup_MaximumSet": { + "$ref": "./examples/ConfigTemplates_ListByResourceGroup_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configTemplates/{configTemplateName}": { + "get": { + "operationId": "ConfigTemplates_Get", + "tags": [ + "ConfigTemplates" + ], + "description": "Get a Config Template Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configTemplateName", + "in": "path", + "description": "The name of the ConfigTemplate", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigTemplate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigTemplates_Get_MaximumSet": { + "$ref": "./examples/ConfigTemplates_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "ConfigTemplates_CreateOrUpdate", + "tags": [ + "ConfigTemplates" + ], + "description": "Create or update a Config Template Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configTemplateName", + "in": "path", + "description": "The name of the ConfigTemplate", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/ConfigTemplate" + } + } + ], + "responses": { + "200": { + "description": "Resource 'ConfigTemplate' update operation succeeded", + "schema": { + "$ref": "#/definitions/ConfigTemplate" + } + }, + "201": { + "description": "Resource 'ConfigTemplate' create operation succeeded", + "schema": { + "$ref": "#/definitions/ConfigTemplate" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigTemplates_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/ConfigTemplates_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "ConfigTemplates_Update", + "tags": [ + "ConfigTemplates" + ], + "description": "update a Config Template Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configTemplateName", + "in": "path", + "description": "The name of the ConfigTemplate", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/ConfigTemplateUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigTemplate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigTemplates_Update_MaximumSet": { + "$ref": "./examples/ConfigTemplates_Update_MaximumSet_Gen.json" + } + } + }, + "delete": { + "operationId": "ConfigTemplates_Delete", + "tags": [ + "ConfigTemplates" + ], + "description": "Delete a Config Template Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configTemplateName", + "in": "path", + "description": "The name of the ConfigTemplate", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigTemplates_Delete_MaximumSet": { + "$ref": "./examples/ConfigTemplates_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configTemplates/{configTemplateName}/createVersion": { + "post": { + "operationId": "ConfigTemplates_CreateVersion", + "tags": [ + "ConfigTemplates" + ], + "description": "Create or update a Config Template Version Resource with the specified UpdateType", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configTemplateName", + "in": "path", + "description": "The name of the ConfigTemplate", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/ConfigTemplateVersionWithUpdateType" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigTemplateVersion" + } + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigTemplates_CreateVersion_MaximumSet": { + "$ref": "./examples/ConfigTemplates_CreateVersion_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configTemplates/{configTemplateName}/removeVersion": { + "post": { + "operationId": "ConfigTemplates_RemoveVersion", + "tags": [ + "ConfigTemplates" + ], + "description": "Remove Config Template Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configTemplateName", + "in": "path", + "description": "The name of the ConfigTemplate", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/VersionParameter" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RemoveVersionResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigTemplates_RemoveVersion_MaximumSet": { + "$ref": "./examples/ConfigTemplates_RemoveVersion_MaximumSet_Gen.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configTemplates/{configTemplateName}/versions": { + "get": { + "operationId": "ConfigTemplateVersions_ListByConfigTemplate", + "tags": [ + "ConfigTemplateVersions" + ], + "description": "List Config Template Version Resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configTemplateName", + "in": "path", + "description": "The name of the ConfigTemplate", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigTemplateVersionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigTemplateVersions_ListByConfigTemplate_MaximumSet": { + "$ref": "./examples/ConfigTemplateVersions_ListByConfigTemplate_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configTemplates/{configTemplateName}/versions/{configTemplateVersionName}": { + "get": { + "operationId": "ConfigTemplateVersions_Get", + "tags": [ + "ConfigTemplateVersions" + ], + "description": "Get a Config Template Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configTemplateName", + "in": "path", + "description": "The name of the ConfigTemplate", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + }, + { + "name": "configTemplateVersionName", + "in": "path", + "description": "The name of the ConfigTemplateVersion", + "required": true, + "type": "string", + "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigTemplateVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigTemplateVersions_Get_MaximumSet": { + "$ref": "./examples/ConfigTemplateVersions_Get_MaximumSet_Gen.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts": { + "get": { + "operationId": "Contexts_ListByResourceGroup", + "tags": [ + "Contexts" + ], + "description": "List by specified resource group", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ContextListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Contexts_ListByResourceGroup_MaximumSet": { + "$ref": "./examples/Contexts_ListByResourceGroup_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts/{contextName}": { + "get": { + "operationId": "Contexts_Get", + "tags": [ + "Contexts" + ], + "description": "Get Context Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Context" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Contexts_Get_MaximumSet": { + "$ref": "./examples/Contexts_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "Contexts_CreateOrUpdate", + "tags": [ + "Contexts" + ], + "description": "Create or update Context Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/Context" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Context' update operation succeeded", + "schema": { + "$ref": "#/definitions/Context" + } + }, + "201": { + "description": "Resource 'Context' create operation succeeded", + "schema": { + "$ref": "#/definitions/Context" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Contexts_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/Contexts_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Contexts_Update", + "tags": [ + "Contexts" + ], + "description": "update an Context Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/ContextUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Context" + } + }, + "202": { + "description": "Resource update request accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Contexts_Update_MaximumSet": { + "$ref": "./examples/Contexts_Update_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Contexts_Delete", + "tags": [ + "Contexts" + ], + "description": "Delete Context Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Contexts_Delete_MaximumSet": { + "$ref": "./examples/Contexts_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts/{contextName}/siteReferences": { + "get": { + "operationId": "SiteReferences_ListByContext", + "tags": [ + "SiteReferences" + ], + "description": "List Site Reference Resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteReferenceListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SiteReferences_ListByContext_MaximumSet": { + "$ref": "./examples/SiteReferences_ListByContext_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts/{contextName}/siteReferences/{siteReferenceName}": { + "get": { + "operationId": "SiteReferences_Get", + "tags": [ + "SiteReferences" + ], + "description": "Get Site Reference Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "siteReferenceName", + "in": "path", + "description": "The name of the SiteReference", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteReference" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SiteReferences_Get_MaximumSet": { + "$ref": "./examples/SiteReferences_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "SiteReferences_CreateOrUpdate", + "tags": [ + "SiteReferences" + ], + "description": "Get Site Reference Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "siteReferenceName", + "in": "path", + "description": "The name of the SiteReference", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteReference" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteReference' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteReference" + } + }, + "201": { + "description": "Resource 'SiteReference' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteReference" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SiteReferences_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/SiteReferences_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "SiteReferences_Update", + "tags": [ + "SiteReferences" + ], + "description": "Get Site Reference Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "siteReferenceName", + "in": "path", + "description": "The name of the SiteReference", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteReferenceUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteReference" + } + }, + "202": { + "description": "Resource update request accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SiteReferences_Update_MaximumSet": { + "$ref": "./examples/SiteReferences_Update_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "SiteReferences_Delete", + "tags": [ + "SiteReferences" + ], + "description": "Get Site Reference Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "siteReferenceName", + "in": "path", + "description": "The name of the SiteReference", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9-]{3,24}$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SiteReferences_Delete_MaximumSet": { + "$ref": "./examples/SiteReferences_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts/{contextName}/workflows": { + "get": { + "operationId": "Workflows_ListByContext", + "tags": [ + "Workflows" + ], + "description": "List Workflow resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Workflows_ListByContext_MaximumSet": { + "$ref": "./examples/Workflows_ListByContext_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts/{contextName}/workflows/{workflowName}": { + "get": { + "operationId": "Workflows_Get", + "tags": [ + "Workflows" + ], + "description": "Get a Workflow resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Workflow" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Workflows_Get_MaximumSet": { + "$ref": "./examples/Workflows_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "Workflows_CreateOrUpdate", + "tags": [ + "Workflows" + ], + "description": "Create or update a Workflow resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/Workflow" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Workflow' update operation succeeded", + "schema": { + "$ref": "#/definitions/Workflow" + } + }, + "201": { + "description": "Resource 'Workflow' create operation succeeded", + "schema": { + "$ref": "#/definitions/Workflow" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Workflows_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/Workflows_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Workflows_Update", + "tags": [ + "Workflows" + ], + "description": "update a Workflow resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/WorkflowUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Workflow" + } + }, + "202": { + "description": "Resource update request accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Workflows_Update_MaximumSet": { + "$ref": "./examples/Workflows_Update_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Workflows_Delete", + "tags": [ + "Workflows" + ], + "description": "Delete a Workflow resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Workflows_Delete_MaximumSet": { + "$ref": "./examples/Workflows_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts/{contextName}/workflows/{workflowName}/versions": { + "get": { + "operationId": "WorkflowVersions_ListByWorkflow", + "tags": [ + "WorkflowVersions" + ], + "description": "List Workflow Version Resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowVersionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "WorkflowVersions_ListByWorkflow_MaximumSet": { + "$ref": "./examples/WorkflowVersions_ListByWorkflow_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts/{contextName}/workflows/{workflowName}/versions/{versionName}": { + "get": { + "operationId": "WorkflowVersions_Get", + "tags": [ + "WorkflowVersions" + ], + "description": "Get a Workflow Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "versionName", + "in": "path", + "description": "The name of the workflowVersion.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "WorkflowVersions_Get_MaximumSet": { + "$ref": "./examples/WorkflowVersions_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "WorkflowVersions_CreateOrUpdate", + "tags": [ + "WorkflowVersions" + ], + "description": "Create or update a Workflow Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "versionName", + "in": "path", + "description": "The name of the workflowVersion.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/WorkflowVersion" + } + } + ], + "responses": { + "200": { + "description": "Resource 'WorkflowVersion' update operation succeeded", + "schema": { + "$ref": "#/definitions/WorkflowVersion" + } + }, + "201": { + "description": "Resource 'WorkflowVersion' create operation succeeded", + "schema": { + "$ref": "#/definitions/WorkflowVersion" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "WorkflowVersions_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/WorkflowVersions_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "WorkflowVersions_Update", + "tags": [ + "WorkflowVersions" + ], + "description": "update an WorkflowVersion Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "versionName", + "in": "path", + "description": "The name of the workflowVersion.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/WorkflowVersionUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowVersion" + } + }, + "202": { + "description": "Resource update request accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "WorkflowVersions_Update_MaximumSet": { + "$ref": "./examples/WorkflowVersions_Update_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "WorkflowVersions_Delete", + "tags": [ + "WorkflowVersions" + ], + "description": "Delete a Workflow Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "versionName", + "in": "path", + "description": "The name of the workflowVersion.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "WorkflowVersions_Delete_MaximumSet": { + "$ref": "./examples/WorkflowVersions_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts/{contextName}/workflows/{workflowName}/versions/{versionName}/executions": { + "get": { + "operationId": "Executions_ListByWorkflowVersion", + "tags": [ + "Executions" + ], + "description": "List Execution Resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "versionName", + "in": "path", + "description": "The name of the workflowVersion.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ExecutionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Executions_ListByWorkflowVersion_MaximumSet - generated by [MaximumSet] rule": { + "$ref": "./examples/Executions_ListByWorkflowVersion_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts/{contextName}/workflows/{workflowName}/versions/{versionName}/executions/{executionName}": { + "get": { + "operationId": "Executions_Get", + "tags": [ + "Executions" + ], + "description": "Get Execution Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "versionName", + "in": "path", + "description": "The name of the workflowVersion.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "executionName", + "in": "path", + "description": "The name of the Execution.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Execution" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Executions_Get_MaximumSet - generated by [MaximumSet] rule": { + "$ref": "./examples/Executions_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "Executions_CreateOrUpdate", + "tags": [ + "Executions" + ], + "description": "Create or update Execution Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "versionName", + "in": "path", + "description": "The name of the workflowVersion.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "executionName", + "in": "path", + "description": "The name of the Execution.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/Execution" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Execution' update operation succeeded", + "schema": { + "$ref": "#/definitions/Execution" + } + }, + "201": { + "description": "Resource 'Execution' create operation succeeded", + "schema": { + "$ref": "#/definitions/Execution" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Executions_CreateOrUpdate_MaximumSet - generated by [MaximumSet] rule": { + "$ref": "./examples/Executions_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Executions_Update", + "tags": [ + "Executions" + ], + "description": "update an Execution Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "versionName", + "in": "path", + "description": "The name of the workflowVersion.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "executionName", + "in": "path", + "description": "The name of the Execution.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/ExecutionUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Execution" + } + }, + "202": { + "description": "Resource update request accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Executions_Update_MaximumSet - generated by [MaximumSet] rule": { + "$ref": "./examples/Executions_Update_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Executions_Delete", + "tags": [ + "Executions" + ], + "description": "Delete Execution Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "contextName", + "in": "path", + "description": "The name of the Context.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "workflowName", + "in": "path", + "description": "Name of the workflow", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "versionName", + "in": "path", + "description": "The name of the workflowVersion.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "executionName", + "in": "path", + "description": "The name of the Execution.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Executions_Delete_MaximumSet - generated by [MaximumSet] rule": { + "$ref": "./examples/Executions_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/diagnostics": { + "get": { + "operationId": "Diagnostics_ListByResourceGroup", + "tags": [ + "Diagnostics" + ], + "description": "Returns a collection of Diagnostic resources within the resource group.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Diagnostics_ListByResourceGroup_MaximumSet": { + "$ref": "./examples/Diagnostics_ListByResourceGroup_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/diagnostics/{diagnosticName}": { + "get": { + "operationId": "Diagnostics_Get", + "tags": [ + "Diagnostics" + ], + "description": "Returns details of specified Diagnostic resource.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diagnosticName", + "in": "path", + "description": "Name of Diagnostic.", + "required": true, + "type": "string", + "minLength": 1, + "maxLength": 90, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Diagnostic" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Diagnostics_Get_MaximumSet": { + "$ref": "./examples/Diagnostics_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "Diagnostics_CreateOrUpdate", + "tags": [ + "Diagnostics" + ], + "description": "Creates new or updates existing Diagnostic resource.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diagnosticName", + "in": "path", + "description": "Name of Diagnostic.", + "required": true, + "type": "string", + "minLength": 1, + "maxLength": 90, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/Diagnostic" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Diagnostic' update operation succeeded", + "schema": { + "$ref": "#/definitions/Diagnostic" + } + }, + "201": { + "description": "Resource 'Diagnostic' create operation succeeded", + "schema": { + "$ref": "#/definitions/Diagnostic" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Diagnostics_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/Diagnostics_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Diagnostics_Update", + "tags": [ + "Diagnostics" + ], + "description": "Updates existing Diagnostic resource.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diagnosticName", + "in": "path", + "description": "Name of Diagnostic.", + "required": true, + "type": "string", + "minLength": 1, + "maxLength": 90, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/DiagnosticUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Diagnostic" + } + }, + "202": { + "description": "Resource update request accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Diagnostics_Update_MaximumSet": { + "$ref": "./examples/Diagnostics_Update_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Diagnostics_Delete", + "tags": [ + "Diagnostics" + ], + "description": "Deletes specified Diagnostic resource.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diagnosticName", + "in": "path", + "description": "Name of Diagnostic.", + "required": true, + "type": "string", + "minLength": 1, + "maxLength": 90, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Diagnostics_Delete_MaximumSet": { + "$ref": "./examples/Diagnostics_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas": { + "get": { + "operationId": "Schemas_ListByResourceGroup", + "tags": [ + "Schemas" + ], + "description": "List by specified resource group", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SchemaListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Schemas_ListByResourceGroup_MaximumSet": { + "$ref": "./examples/Schemas_ListByResourceGroup_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}": { + "get": { + "operationId": "Schemas_Get", + "tags": [ + "Schemas" + ], + "description": "Get a Schema Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Schema" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Schemas_Get_MaximumSet": { + "$ref": "./examples/Schemas_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "Schemas_CreateOrUpdate", + "tags": [ + "Schemas" + ], + "description": "Create or update a Schema Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/Schema" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Schema' update operation succeeded", + "schema": { + "$ref": "#/definitions/Schema" + } + }, + "201": { + "description": "Resource 'Schema' create operation succeeded", + "schema": { + "$ref": "#/definitions/Schema" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Schemas_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/Schemas_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Schemas_Update", + "tags": [ + "Schemas" + ], + "description": "update a Schema Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/SchemaUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Schema" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Schemas_Update_MaximumSet": { + "$ref": "./examples/Schemas_Update_MaximumSet_Gen.json" + } + } + }, + "delete": { + "operationId": "Schemas_Delete", + "tags": [ + "Schemas" + ], + "description": "Delete a Schema Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Schemas_Delete_MaximumSet": { + "$ref": "./examples/Schemas_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/createVersion": { + "post": { + "operationId": "Schemas_CreateVersion", + "tags": [ + "Schemas" + ], + "description": "Create a Schema Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/SchemaVersionWithUpdateType" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SchemaVersion" + } + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Schemas_CreateVersion_MaximumSet": { + "$ref": "./examples/Schemas_CreateVersion_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/dynamicSchemas": { + "get": { + "operationId": "DynamicSchemas_ListBySchema", + "tags": [ + "DynamicSchemas" + ], + "description": "List by Schema", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicSchemaListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicSchemas_ListBySchema_MaximumSet": { + "$ref": "./examples/DynamicSchemas_ListBySchema_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/dynamicSchemas/{dynamicSchemaName}": { + "get": { + "operationId": "DynamicSchemas_Get", + "tags": [ + "DynamicSchemas" + ], + "description": "Get a DynamicSchema Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaName", + "in": "path", + "description": "The name of the DynamicSchema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicSchema" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicSchemas_Get_MaximumSet": { + "$ref": "./examples/DynamicSchemas_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "DynamicSchemas_CreateOrUpdate", + "tags": [ + "DynamicSchemas" + ], + "description": "Create or update a DynamicSchema Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaName", + "in": "path", + "description": "The name of the DynamicSchema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/DynamicSchema" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DynamicSchema' update operation succeeded", + "schema": { + "$ref": "#/definitions/DynamicSchema" + } + }, + "201": { + "description": "Resource 'DynamicSchema' create operation succeeded", + "schema": { + "$ref": "#/definitions/DynamicSchema" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicSchemas_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/DynamicSchemas_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "DynamicSchemas_Update", + "tags": [ + "DynamicSchemas" + ], + "description": "update a DynamicSchema Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaName", + "in": "path", + "description": "The name of the DynamicSchema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/DynamicSchemaUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicSchema" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicSchemas_Update_MaximumSet": { + "$ref": "./examples/DynamicSchemas_Update_MaximumSet_Gen.json" + } + } + }, + "delete": { + "operationId": "DynamicSchemas_Delete", + "tags": [ + "DynamicSchemas" + ], + "description": "Delete a DynamicSchema Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaName", + "in": "path", + "description": "The name of the DynamicSchema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicSchemas_Delete_MaximumSet": { + "$ref": "./examples/DynamicSchemas_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/dynamicSchemas/{dynamicSchemaName}/versions": { + "get": { + "operationId": "DynamicSchemaVersions_ListByDynamicSchema", + "tags": [ + "DynamicSchemaVersions" + ], + "description": "List by Dynamic Schema", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaName", + "in": "path", + "description": "The name of the DynamicSchema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicSchemaVersionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicSchemaVersions_ListByDynamicSchema_MaximumSet": { + "$ref": "./examples/DynamicSchemaVersions_ListByDynamicSchema_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/dynamicSchemas/{dynamicSchemaName}/versions/{dynamicSchemaVersionName}": { + "get": { + "operationId": "DynamicSchemaVersions_Get", + "tags": [ + "DynamicSchemaVersions" + ], + "description": "Get a Dynamic Schema Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaName", + "in": "path", + "description": "The name of the DynamicSchema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaVersionName", + "in": "path", + "description": "The name of the DynamicSchemaVersion", + "required": true, + "type": "string", + "pattern": "^(v2-)?[0-9]+\\.[0-9]+\\.[0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicSchemaVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicSchemaVersions_Get_MaximumSet": { + "$ref": "./examples/DynamicSchemaVersions_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "DynamicSchemaVersions_CreateOrUpdate", + "tags": [ + "DynamicSchemaVersions" + ], + "description": "Create or update a Dynamic Schema Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaName", + "in": "path", + "description": "The name of the DynamicSchema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaVersionName", + "in": "path", + "description": "The name of the DynamicSchemaVersion", + "required": true, + "type": "string", + "pattern": "^(v2-)?[0-9]+\\.[0-9]+\\.[0-9]+$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/DynamicSchemaVersion" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DynamicSchemaVersion' update operation succeeded", + "schema": { + "$ref": "#/definitions/DynamicSchemaVersion" + } + }, + "201": { + "description": "Resource 'DynamicSchemaVersion' create operation succeeded", + "schema": { + "$ref": "#/definitions/DynamicSchemaVersion" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicSchemaVersions_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "DynamicSchemaVersions_Update", + "tags": [ + "DynamicSchemaVersions" + ], + "description": "update a Dynamic Schema Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaName", + "in": "path", + "description": "The name of the DynamicSchema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaVersionName", + "in": "path", + "description": "The name of the DynamicSchemaVersion", + "required": true, + "type": "string", + "pattern": "^(v2-)?[0-9]+\\.[0-9]+\\.[0-9]+$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/DynamicSchemaVersionUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicSchemaVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicSchemaVersions_Update_MaximumSet": { + "$ref": "./examples/DynamicSchemaVersions_Update_MaximumSet_Gen.json" + } + } + }, + "delete": { + "operationId": "DynamicSchemaVersions_Delete", + "tags": [ + "DynamicSchemaVersions" + ], + "description": "Delete a Dynamic Schema Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaName", + "in": "path", + "description": "The name of the DynamicSchema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicSchemaVersionName", + "in": "path", + "description": "The name of the DynamicSchemaVersion", + "required": true, + "type": "string", + "pattern": "^(v2-)?[0-9]+\\.[0-9]+\\.[0-9]+$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicSchemaVersions_Delete_MaximumSet": { + "$ref": "./examples/DynamicSchemaVersions_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/removeVersion": { + "post": { + "operationId": "Schemas_RemoveVersion", + "tags": [ + "Schemas" + ], + "description": "Remove Schema Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/VersionParameter" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RemoveVersionResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Schemas_RemoveVersion_MaximumSet": { + "$ref": "./examples/Schemas_RemoveVersion_MaximumSet_Gen.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/versions": { + "get": { + "operationId": "SchemaVersions_ListBySchema", + "tags": [ + "SchemaVersions" + ], + "description": "List by specified resource group", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SchemaVersionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SchemaVersions_ListBySchema_MaximumSet": { + "$ref": "./examples/SchemaVersions_ListBySchema_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/versions/{schemaVersionName}": { + "get": { + "operationId": "SchemaVersions_Get", + "tags": [ + "SchemaVersions" + ], + "description": "Get a Schema Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "schemaVersionName", + "in": "path", + "description": "The name of the SchemaVersion", + "required": true, + "type": "string", + "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SchemaVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SchemaVersions_Get_MaximumSet": { + "$ref": "./examples/SchemaVersions_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "SchemaVersions_CreateOrUpdate", + "tags": [ + "SchemaVersions" + ], + "description": "Create or update a Schema Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "schemaVersionName", + "in": "path", + "description": "The name of the SchemaVersion", + "required": true, + "type": "string", + "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/SchemaVersion" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SchemaVersion' update operation succeeded", + "schema": { + "$ref": "#/definitions/SchemaVersion" + } + }, + "201": { + "description": "Resource 'SchemaVersion' create operation succeeded", + "schema": { + "$ref": "#/definitions/SchemaVersion" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SchemaVersions_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/SchemaVersions_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "SchemaVersions_Update", + "tags": [ + "SchemaVersions" + ], + "description": "update a Schema Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "schemaVersionName", + "in": "path", + "description": "The name of the SchemaVersion", + "required": true, + "type": "string", + "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/SchemaVersionUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SchemaVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SchemaVersions_Update_MaximumSet": { + "$ref": "./examples/SchemaVersions_Update_MaximumSet_Gen.json" + } + } + }, + "delete": { + "operationId": "SchemaVersions_Delete", + "tags": [ + "SchemaVersions" + ], + "description": "Delete a Schema Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "schemaName", + "in": "path", + "description": "The name of the Schema", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "schemaVersionName", + "in": "path", + "description": "The name of the SchemaVersion", + "required": true, + "type": "string", + "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SchemaVersions_Delete_MaximumSet": { + "$ref": "./examples/SchemaVersions_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/solutionTemplates": { + "get": { + "operationId": "SolutionTemplates_ListByResourceGroup", + "tags": [ + "SolutionTemplates" + ], + "description": "List by specified resource group", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionTemplateListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplates_ListByResourceGroup_MaximumSet": { + "$ref": "./examples/SolutionTemplates_ListByResourceGroup_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/solutionTemplates/{solutionTemplateName}": { + "get": { + "operationId": "SolutionTemplates_Get", + "tags": [ + "SolutionTemplates" + ], + "description": "Get a Solution Template Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "solutionTemplateName", + "in": "path", + "description": "The name of the SolutionTemplate", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionTemplate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplates_Get_MaximumSet": { + "$ref": "./examples/SolutionTemplates_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "SolutionTemplates_CreateOrUpdate", + "tags": [ + "SolutionTemplates" + ], + "description": "Create or update a Solution Template Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "solutionTemplateName", + "in": "path", + "description": "The name of the SolutionTemplate", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionTemplate" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SolutionTemplate' update operation succeeded", + "schema": { + "$ref": "#/definitions/SolutionTemplate" + } + }, + "201": { + "description": "Resource 'SolutionTemplate' create operation succeeded", + "schema": { + "$ref": "#/definitions/SolutionTemplate" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplates_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/SolutionTemplates_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "SolutionTemplates_Update", + "tags": [ + "SolutionTemplates" + ], + "description": "update a Solution Template Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "solutionTemplateName", + "in": "path", + "description": "The name of the SolutionTemplate", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionTemplateUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionTemplate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplates_Update_MaximumSet": { + "$ref": "./examples/SolutionTemplates_Update_MaximumSet_Gen.json" + } + } + }, + "delete": { + "operationId": "SolutionTemplates_Delete", + "tags": [ + "SolutionTemplates" + ], + "description": "Delete a Solution Template Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "solutionTemplateName", + "in": "path", + "description": "The name of the SolutionTemplate", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplates_Delete_MaximumSet": { + "$ref": "./examples/SolutionTemplates_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/solutionTemplates/{solutionTemplateName}/createVersion": { + "post": { + "operationId": "SolutionTemplates_CreateVersion", + "tags": [ + "SolutionTemplates" + ], + "description": "Create a Solution Template Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "solutionTemplateName", + "in": "path", + "description": "The name of the SolutionTemplate", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionTemplateVersionWithUpdateType" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionTemplateVersion" + } + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplates_CreateVersion_MaximumSet": { + "$ref": "./examples/SolutionTemplates_CreateVersion_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/solutionTemplates/{solutionTemplateName}/removeVersion": { + "post": { + "operationId": "SolutionTemplates_RemoveVersion", + "tags": [ + "SolutionTemplates" + ], + "description": "Remove Solution Template Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "solutionTemplateName", + "in": "path", + "description": "The name of the SolutionTemplate", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/VersionParameter" + } + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplates_RemoveVersion_MaximumSet": { + "$ref": "./examples/SolutionTemplates_RemoveVersion_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/solutionTemplates/{solutionTemplateName}/versions": { + "get": { + "operationId": "SolutionTemplateVersions_ListBySolutionTemplate", + "tags": [ + "SolutionTemplateVersions" + ], + "description": "List Solution Template Version Resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "solutionTemplateName", + "in": "path", + "description": "The name of the SolutionTemplate", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionTemplateVersionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplateVersions_ListBySolutionTemplate_MaximumSet": { + "$ref": "./examples/SolutionTemplateVersions_ListBySolutionTemplate_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/solutionTemplates/{solutionTemplateName}/versions/{solutionTemplateVersionName}": { + "get": { + "operationId": "SolutionTemplateVersions_Get", + "tags": [ + "SolutionTemplateVersions" + ], + "description": "Get a Solution Template Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "solutionTemplateName", + "in": "path", + "description": "The name of the SolutionTemplate", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionTemplateVersionName", + "in": "path", + "description": "The name of the SolutionTemplateVersion", + "required": true, + "type": "string", + "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionTemplateVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplateVersions_Get_MaximumSet": { + "$ref": "./examples/SolutionTemplateVersions_Get_MaximumSet_Gen.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/solutionTemplates/{solutionTemplateName}/versions/{solutionTemplateVersionName}/bulkDeploySolution": { + "post": { + "operationId": "SolutionTemplateVersions_BulkDeploySolution", + "tags": [ + "SolutionTemplateVersions" + ], + "description": "Post request for bulk deploy", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "solutionTemplateName", + "in": "path", + "description": "The name of the SolutionTemplate", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionTemplateVersionName", + "in": "path", + "description": "The name of the SolutionTemplateVersion", + "required": true, + "type": "string", + "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/BulkDeploySolutionParameter" + } + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplateVersions_BulkDeploySolution_MaximumSet": { + "$ref": "./examples/SolutionTemplateVersions_BulkDeploySolution_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/solutionTemplates/{solutionTemplateName}/versions/{solutionTemplateVersionName}/bulkPublishSolution": { + "post": { + "operationId": "SolutionTemplateVersions_BulkPublishSolution", + "tags": [ + "SolutionTemplateVersions" + ], + "description": "Post request for bulk publish", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "solutionTemplateName", + "in": "path", + "description": "The name of the SolutionTemplate", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionTemplateVersionName", + "in": "path", + "description": "The name of the SolutionTemplateVersion", + "required": true, + "type": "string", + "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/BulkPublishSolutionParameter" + } + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionTemplateVersions_BulkPublishSolution_MaximumSet": { + "$ref": "./examples/SolutionTemplateVersions_BulkPublishSolution_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets": { + "get": { + "operationId": "Targets_ListByResourceGroup", + "tags": [ + "Targets" + ], + "description": "List by specified resource group", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TargetListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_ListByResourceGroup_MaximumSet": { + "$ref": "./examples/Targets_ListByResourceGroup_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}": { + "get": { + "operationId": "Targets_Get", + "tags": [ + "Targets" + ], + "description": "Get a Target Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Target" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_Get_MaximumSet": { + "$ref": "./examples/Targets_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "Targets_CreateOrUpdate", + "tags": [ + "Targets" + ], + "description": "Create or update a Target Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/Target" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Target' update operation succeeded", + "schema": { + "$ref": "#/definitions/Target" + } + }, + "201": { + "description": "Resource 'Target' create operation succeeded", + "schema": { + "$ref": "#/definitions/Target" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/Targets_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Targets_Update", + "tags": [ + "Targets" + ], + "description": "update a Target Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/TargetUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Target" + } + }, + "202": { + "description": "Resource update request accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_Update_MaximumSet": { + "$ref": "./examples/Targets_Update_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Targets_Delete", + "tags": [ + "Targets" + ], + "description": "Delete a Target Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ForceDeleteParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_Delete_MaximumSet": { + "$ref": "./examples/Targets_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/installSolution": { + "post": { + "operationId": "Targets_InstallSolution", + "tags": [ + "Targets" + ], + "description": "Post request to deploy", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/InstallSolutionParameter" + } + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_InstallSolution_MaximumSet": { + "$ref": "./examples/Targets_InstallSolution_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/publishSolutionVersion": { + "post": { + "operationId": "Targets_PublishSolutionVersion", + "tags": [ + "Targets" + ], + "description": "Post request to publish", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionVersionParameter" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionVersion" + } + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_PublishSolutionVersion_MaximumSet": { + "$ref": "./examples/Targets_PublishSolutionVersion_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/removeRevision": { + "post": { + "operationId": "Targets_RemoveRevision", + "tags": [ + "Targets" + ], + "description": "Post request to remove solution version revision", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/RemoveRevisionParameter" + } + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_RemoveRevision_MaximumSet": { + "$ref": "./examples/Targets_RemoveRevision_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/resolveConfiguration": { + "post": { + "operationId": "Targets_ResolveConfiguration", + "tags": [ + "Targets" + ], + "description": "Post request to resolve configuration", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionTemplateParameter" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResolvedConfiguration" + } + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_ResolveConfiguration_MaximumSet": { + "$ref": "./examples/Targets_ResolveConfiguration_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/reviewSolutionVersion": { + "post": { + "operationId": "Targets_ReviewSolutionVersion", + "tags": [ + "Targets" + ], + "description": "Post request to review configuration", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionTemplateParameter" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionVersion" + } + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_ReviewSolutionVersion_MaximumSet": { + "$ref": "./examples/Targets_ReviewSolutionVersion_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/solutions": { + "get": { + "operationId": "Solutions_ListByTarget", + "tags": [ + "Solutions" + ], + "description": "List Solution resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Solutions_ListByTarget_MaximumSet": { + "$ref": "./examples/Solutions_ListByTarget_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/solutions/{solutionName}": { + "get": { + "operationId": "Solutions_Get", + "tags": [ + "Solutions" + ], + "description": "Get a Solution resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Solution" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Solutions_Get_MaximumSet": { + "$ref": "./examples/Solutions_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "Solutions_CreateOrUpdate", + "tags": [ + "Solutions" + ], + "description": "Create or update a Solution Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/Solution" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Solution' update operation succeeded", + "schema": { + "$ref": "#/definitions/Solution" + } + }, + "201": { + "description": "Resource 'Solution' create operation succeeded", + "schema": { + "$ref": "#/definitions/Solution" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Solutions_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/Solutions_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Solutions_Update", + "tags": [ + "Solutions" + ], + "description": "Update a Solution Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Solution" + } + }, + "202": { + "description": "Resource update request accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Solutions_Update_MaximumSet": { + "$ref": "./examples/Solutions_Update_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Solutions_Delete", + "tags": [ + "Solutions" + ], + "description": "Delete a Solution Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Solutions_Delete_MaximumSet": { + "$ref": "./examples/Solutions_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/solutions/{solutionName}/instances": { + "get": { + "operationId": "Instances_ListBySolution", + "tags": [ + "Instances" + ], + "description": "List Instance Resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/InstanceListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Instances_ListBySolution_MaximumSet": { + "$ref": "./examples/Instances_ListBySolution_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/solutions/{solutionName}/instances/{instanceName}": { + "get": { + "operationId": "Instances_Get", + "tags": [ + "Instances" + ], + "description": "Get Instance Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "instanceName", + "in": "path", + "description": "Name of the instance", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Instance" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Instances_Get_MaximumSet": { + "$ref": "./examples/Instances_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "Instances_CreateOrUpdate", + "tags": [ + "Instances" + ], + "description": "Create or update Instance Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "instanceName", + "in": "path", + "description": "Name of the instance", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/Instance" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Instance' update operation succeeded", + "schema": { + "$ref": "#/definitions/Instance" + } + }, + "201": { + "description": "Resource 'Instance' create operation succeeded", + "schema": { + "$ref": "#/definitions/Instance" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Instances_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/Instances_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Instances_Update", + "tags": [ + "Instances" + ], + "description": "Update an Instance Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "instanceName", + "in": "path", + "description": "Name of the instance", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/InstanceUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Instance" + } + }, + "202": { + "description": "Resource update request accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Instances_Update_MaximumSet": { + "$ref": "./examples/Instances_Update_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Instances_Delete", + "tags": [ + "Instances" + ], + "description": "Delete Instance Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "instanceName", + "in": "path", + "description": "Name of the instance", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Instances_Delete_MaximumSet": { + "$ref": "./examples/Instances_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/solutions/{solutionName}/instances/{instanceName}/histories": { + "get": { + "operationId": "InstanceHistories_ListByInstance", + "tags": [ + "InstanceHistories" + ], + "description": "List InstanceHistory Resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "instanceName", + "in": "path", + "description": "Name of the instance", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/InstanceHistoryListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "InstanceHistories_ListByInstance_MaximumSet": { + "$ref": "./examples/InstanceHistories_ListByInstance_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/solutions/{solutionName}/instances/{instanceName}/histories/{instanceHistoryName}": { + "get": { + "operationId": "InstanceHistories_Get", + "tags": [ + "InstanceHistories" + ], + "description": "Get InstanceHistory Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "instanceName", + "in": "path", + "description": "Name of the instance", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "instanceHistoryName", + "in": "path", + "description": "Name of the instance history", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/InstanceHistory" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "InstanceHistories_Get_MaximumSet": { + "$ref": "./examples/InstanceHistories_Get_MaximumSet_Gen.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/solutions/{solutionName}/versions": { + "get": { + "operationId": "SolutionVersions_ListBySolution", + "tags": [ + "SolutionVersions" + ], + "description": "List Solution Version Resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionVersionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionVersions_ListBySolution_MaximumSet": { + "$ref": "./examples/SolutionVersions_ListBySolution_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/solutions/{solutionName}/versions/{solutionVersionName}": { + "get": { + "operationId": "SolutionVersions_Get", + "tags": [ + "SolutionVersions" + ], + "description": "Get a Solution Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionVersionName", + "in": "path", + "description": "Name of the solution version", + "required": true, + "type": "string", + "minLength": 7, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionVersions_Get_MaximumSet": { + "$ref": "./examples/SolutionVersions_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "SolutionVersions_CreateOrUpdate", + "tags": [ + "SolutionVersions" + ], + "description": "Create or update a Solution Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionVersionName", + "in": "path", + "description": "Name of the solution version", + "required": true, + "type": "string", + "minLength": 7, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionVersion" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SolutionVersion' update operation succeeded", + "schema": { + "$ref": "#/definitions/SolutionVersion" + } + }, + "201": { + "description": "Resource 'SolutionVersion' create operation succeeded", + "schema": { + "$ref": "#/definitions/SolutionVersion" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionVersions_CreateOrUpdate_MaximumSet": { + "$ref": "./examples/SolutionVersions_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "SolutionVersions_Update", + "tags": [ + "SolutionVersions" + ], + "description": "Update a Solution Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionVersionName", + "in": "path", + "description": "Name of the solution version", + "required": true, + "type": "string", + "minLength": 7, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionVersionUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionVersion" + } + }, + "202": { + "description": "Resource update request accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionVersions_Update_MaximumSet": { + "$ref": "./examples/SolutionVersions_Update_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "SolutionVersions_Delete", + "tags": [ + "SolutionVersions" + ], + "description": "Delete a Solution Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionName", + "in": "path", + "description": "Name of the solution", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "solutionVersionName", + "in": "path", + "description": "Name of the solution version", + "required": true, + "type": "string", + "minLength": 7, + "maxLength": 61, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "SolutionVersions_Delete_MaximumSet": { + "$ref": "./examples/SolutionVersions_Delete_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/uninstallSolution": { + "post": { + "operationId": "Targets_UninstallSolution", + "tags": [ + "Targets" + ], + "description": "Post request to uninstall", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/UninstallSolutionParameter" + } + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_UninstallSolution_MaximumSet": { + "$ref": "./examples/Targets_UninstallSolution_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/unstageSolutionVersion": { + "post": { + "operationId": "Targets_UnstageSolutionVersion", + "tags": [ + "Targets" + ], + "description": "Post request to unstage solution version", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/SolutionVersionParameter" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionVersion" + } + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_UnstageSolutionVersion_MaximumSet": { + "$ref": "./examples/Targets_UnstageSolutionVersion_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/updateExternalValidationStatus": { + "post": { + "operationId": "Targets_UpdateExternalValidationStatus", + "tags": [ + "Targets" + ], + "description": "Post request to update external validation status", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "targetName", + "in": "path", + "description": "Name of the target", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 61, + "pattern": "^[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + { + "name": "body", + "in": "body", + "description": "The content of the action request", + "required": true, + "schema": { + "$ref": "#/definitions/UpdateExternalValidationStatusParameter" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SolutionVersion" + } + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Targets_UpdateExternalValidationStatus_MaximumSet": { + "$ref": "./examples/Targets_UpdateExternalValidationStatus_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + } + }, + "definitions": { + "ActiveState": { + "type": "string", + "description": "Instance State", + "enum": [ + "active", + "inactive" + ], + "x-ms-enum": { + "name": "ActiveState", + "modelAsString": true, + "values": [ + { + "name": "active", + "value": "active", + "description": "Instance is active" + }, + { + "name": "inactive", + "value": "inactive", + "description": "Instance is inactive" + } + ] + } + }, + "AvailableSolutionTemplateVersion": { + "type": "object", + "description": "Available Solution template Version along with latest revision", + "properties": { + "solutionTemplateVersion": { + "type": "string", + "description": "Solution template Version" + }, + "latestConfigRevision": { + "type": "string", + "description": "Latest Configuration Revision" + }, + "isConfigured": { + "type": "boolean", + "description": "Has this solution template version been configured" + } + }, + "required": [ + "solutionTemplateVersion", + "latestConfigRevision", + "isConfigured" + ] + }, + "Azure.ResourceManager.CommonTypes.ExtendedLocation": { + "type": "object", + "description": "The complex type of the extended location.", + "properties": { + "name": { + "type": "string", + "description": "The name of the extended location." + }, + "type": { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.ExtendedLocationType", + "description": "The type of the extended location." + } + }, + "required": [ + "name", + "type" + ] + }, + "Azure.ResourceManager.CommonTypes.ExtendedLocationType": { + "type": "string", + "description": "The supported ExtendedLocation types.", + "enum": [ + "EdgeZone", + "CustomLocation" + ], + "x-ms-enum": { + "name": "ExtendedLocationType", + "modelAsString": true, + "values": [ + { + "name": "EdgeZone", + "value": "EdgeZone", + "description": "Azure Edge Zones location type" + }, + { + "name": "CustomLocation", + "value": "CustomLocation", + "description": "Azure Custom Locations type" + } + ] + } + }, + "Azure.ResourceManager.CommonTypes.TrackedResourceUpdate": { + "type": "object", + "title": "Tracked Resource", + "description": "The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'", + "properties": { + "tags": { + "type": "object", + "description": "Resource tags.", + "additionalProperties": { + "type": "string" + } + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/Resource" + } + ] + }, + "BulkDeploySolutionParameter": { + "type": "object", + "description": "Bulk deploy solution parameter", + "properties": { + "targets": { + "type": "array", + "description": "Targets to which solution needs to be deployed", + "items": { + "$ref": "#/definitions/BulkDeployTargetDetails" + }, + "x-ms-identifiers": [] + } + }, + "required": [ + "targets" + ] + }, + "BulkDeployTargetDetails": { + "type": "object", + "description": "Bulk deploy target details", + "properties": { + "solutionVersionId": { + "type": "string", + "format": "arm-id", + "description": "ArmId of Target Solution Version", + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.Edge/Targets/Solutions/Versions" + } + ] + } + } + }, + "required": [ + "solutionVersionId" + ] + }, + "BulkPublishSolutionParameter": { + "type": "object", + "description": "Bulk publish solution parameter", + "properties": { + "targets": { + "type": "array", + "description": "Targets to which solution needs to be published", + "items": { + "$ref": "#/definitions/BulkPublishTargetDetails" + }, + "x-ms-identifiers": [] + }, + "solutionInstanceName": { + "type": "string", + "description": "Name of the solution instance", + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + "solutionDependencies": { + "type": "array", + "description": "Solution dependencies", + "items": { + "$ref": "#/definitions/SolutionDependencyParameter" + }, + "x-ms-identifiers": [] + } + }, + "required": [ + "targets" + ] + }, + "BulkPublishTargetDetails": { + "type": "object", + "description": "Bulk publish target details", + "properties": { + "targetId": { + "type": "string", + "format": "arm-id", + "description": "ArmId of Target", + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.Edge/Targets" + } + ] + } + }, + "solutionInstanceName": { + "type": "string", + "description": "Name of the solution instance", + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + } + }, + "required": [ + "targetId" + ] + }, + "CMStages": { + "type": "string", + "description": "Stages for Solution Version", + "enum": [ + "Configuration", + "Publish", + "Deployment", + "Uninstallation", + "ExternalValidation", + "Staging", + "Unstaging" + ], + "x-ms-enum": { + "name": "CMStages", + "modelAsString": true, + "values": [ + { + "name": "Configuration", + "value": "Configuration", + "description": "Configuration stage" + }, + { + "name": "Publish", + "value": "Publish", + "description": "Publish stage" + }, + { + "name": "Deployment", + "value": "Deployment", + "description": "Deployment stage" + }, + { + "name": "Uninstallation", + "value": "Uninstallation", + "description": "Uninstallation stage" + }, + { + "name": "ExternalValidation", + "value": "ExternalValidation", + "description": "External Validation stage" + }, + { + "name": "Staging", + "value": "Staging", + "description": "Staging stage" + }, + { + "name": "Unstaging", + "value": "Unstaging", + "description": "Unstaging stage" + } + ] + } + }, + "Capability": { + "type": "object", + "description": "Capability, to match in Solution Templates & Targets", + "properties": { + "name": { + "type": "string", + "description": "Name of Capability" + }, + "description": { + "type": "string", + "description": "Description of Capability" + }, + "state": { + "$ref": "#/definitions/ResourceState", + "description": "State of resource" + } + }, + "required": [ + "name", + "description" + ] + }, + "ComponentStatus": { + "type": "object", + "description": "Component Status", + "properties": { + "name": { + "type": "string", + "description": "Component name" + }, + "status": { + "type": "string", + "description": "Component status" + } + } + }, + "ConfigTemplate": { + "type": "object", + "description": "Config Template Resource. Contains configuration expressions using the predefined expression language.", + "properties": { + "properties": { + "$ref": "#/definitions/ConfigTemplateProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "ConfigTemplateListResult": { + "type": "object", + "description": "The response of a ConfigTemplate list operation.", + "properties": { + "value": { + "type": "array", + "description": "The ConfigTemplate items on this page", + "items": { + "$ref": "#/definitions/ConfigTemplate" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ConfigTemplateProperties": { + "type": "object", + "description": "Config Template Properties", + "properties": { + "description": { + "type": "string", + "description": "Description of config template" + }, + "latestVersion": { + "type": "string", + "description": "Latest config template version", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "description" + ] + }, + "ConfigTemplatePropertiesUpdate": { + "type": "object", + "description": "Config Template Properties", + "properties": { + "description": { + "type": "string", + "description": "Description of config template" + } + } + }, + "ConfigTemplateUpdate": { + "type": "object", + "description": "Config Template Resource. Contains configuration expressions using the predefined expression language.", + "properties": { + "properties": { + "$ref": "#/definitions/ConfigTemplatePropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.TrackedResourceUpdate" + } + ] + }, + "ConfigTemplateVersion": { + "type": "object", + "description": "Config Template Version Resource", + "properties": { + "properties": { + "$ref": "#/definitions/ConfigTemplateVersionProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ConfigTemplateVersionListResult": { + "type": "object", + "description": "The response of a ConfigTemplateVersion list operation.", + "properties": { + "value": { + "type": "array", + "description": "The ConfigTemplateVersion items on this page", + "items": { + "$ref": "#/definitions/ConfigTemplateVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ConfigTemplateVersionProperties": { + "type": "object", + "description": "Config Template Version Properties", + "properties": { + "configurations": { + "type": "string", + "description": "Configuration values" + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "configurations" + ] + }, + "ConfigTemplateVersionWithUpdateType": { + "type": "object", + "description": "Config Template Version With Update Type", + "properties": { + "updateType": { + "$ref": "#/definitions/UpdateType", + "description": "Update type" + }, + "version": { + "type": "string", + "description": "Version to create", + "pattern": "^(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)$" + }, + "configTemplateVersion": { + "$ref": "#/definitions/ConfigTemplateVersion", + "description": "Config Template Version" + } + }, + "required": [ + "configTemplateVersion" + ] + }, + "ConfigurationModel": { + "type": "string", + "description": "Available configuration models", + "enum": [ + "Application", + "Common" + ], + "x-ms-enum": { + "name": "ConfigurationModel", + "modelAsString": true, + "values": [ + { + "name": "Application", + "value": "Application", + "description": "Configuration model Application" + }, + { + "name": "Common", + "value": "Common", + "description": "Configuration model Common" + } + ] + } + }, + "ConfigurationType": { + "type": "string", + "description": "Available configuration types", + "enum": [ + "Shared", + "Hierarchy" + ], + "x-ms-enum": { + "name": "ConfigurationType", + "modelAsString": true, + "values": [ + { + "name": "Shared", + "value": "Shared", + "description": "Configuration type Shared" + }, + { + "name": "Hierarchy", + "value": "Hierarchy", + "description": "Configuration type Hierarchy" + } + ] + } + }, + "Context": { + "type": "object", + "description": "Context Resource", + "properties": { + "properties": { + "$ref": "#/definitions/ContextProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "ContextListResult": { + "type": "object", + "description": "The response of a Context list operation.", + "properties": { + "value": { + "type": "array", + "description": "The Context items on this page", + "items": { + "$ref": "#/definitions/Context" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ContextProperties": { + "type": "object", + "description": "Context Properties", + "properties": { + "capabilities": { + "type": "array", + "description": "List of Capabilities", + "items": { + "$ref": "#/definitions/Capability" + }, + "x-ms-identifiers": [] + }, + "hierarchies": { + "type": "array", + "description": "List of Hierarchies", + "items": { + "$ref": "#/definitions/Hierarchy" + }, + "x-ms-identifiers": [] + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "capabilities", + "hierarchies" + ] + }, + "ContextPropertiesUpdate": { + "type": "object", + "description": "Context Properties", + "properties": { + "capabilities": { + "type": "array", + "description": "List of Capabilities", + "items": { + "$ref": "#/definitions/Capability" + }, + "x-ms-identifiers": [] + }, + "hierarchies": { + "type": "array", + "description": "List of Hierarchies", + "items": { + "$ref": "#/definitions/Hierarchy" + }, + "x-ms-identifiers": [] + } + } + }, + "ContextUpdate": { + "type": "object", + "description": "Context Resource", + "properties": { + "properties": { + "$ref": "#/definitions/ContextPropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.TrackedResourceUpdate" + } + ] + }, + "DeployJobParameter": { + "type": "object", + "description": "Parameters for a deployment job.", + "properties": { + "parameter": { + "$ref": "#/definitions/InstallSolutionParameter" + } + }, + "allOf": [ + { + "$ref": "#/definitions/JobParameterBase" + } + ], + "x-ms-discriminator-value": "deploy" + }, + "DeployJobStepStatistics": { + "type": "object", + "description": "Deploy statistics for a job step, including total, success, and failed counts.", + "properties": { + "totalCount": { + "type": "integer", + "format": "int32", + "description": "Total count of items processed in this step" + }, + "successCount": { + "type": "integer", + "format": "int32", + "description": "Count of successful items in this step" + }, + "failedCount": { + "type": "integer", + "format": "int32", + "description": "Count of failed items in this step" + } + }, + "allOf": [ + { + "$ref": "#/definitions/JobStepStatisticsBase" + } + ], + "x-ms-discriminator-value": "deploy" + }, + "DeploymentStatus": { + "type": "object", + "description": "Deployment Status", + "properties": { + "lastModified": { + "type": "string", + "format": "date-time", + "description": "The lastModified of the Status" + }, + "deployed": { + "type": "integer", + "format": "int32", + "description": "Indicates if Instance is deployed" + }, + "expectedRunningJobId": { + "type": "integer", + "format": "int32", + "description": "The expected running job id" + }, + "runningJobId": { + "type": "integer", + "format": "int32", + "description": "The running job id" + }, + "status": { + "type": "string", + "description": "Deployment status" + }, + "statusDetails": { + "type": "string", + "description": "Status details" + }, + "generation": { + "type": "integer", + "format": "int32", + "description": "Deployment Generation" + }, + "targetStatuses": { + "type": "array", + "description": "Target resource statuses", + "items": { + "$ref": "#/definitions/TargetStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "Diagnostic": { + "type": "object", + "description": "A Diagnostic resource.", + "properties": { + "properties": { + "$ref": "#/definitions/DiagnosticProperties", + "description": "The resource-specific properties for this resource." + }, + "extendedLocation": { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.ExtendedLocation", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "DiagnosticListResult": { + "type": "object", + "description": "The response of a Diagnostic list operation.", + "properties": { + "value": { + "type": "array", + "description": "The Diagnostic items on this page", + "items": { + "$ref": "#/definitions/Diagnostic" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DiagnosticProperties": { + "type": "object", + "description": "The properties of a Diagnostic resource.", + "properties": { + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "The status of the last operation.", + "readOnly": true + } + } + }, + "DiagnosticUpdate": { + "type": "object", + "description": "A Diagnostic resource.", + "properties": { + "properties": { + "$ref": "#/definitions/DiagnosticProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.TrackedResourceUpdate" + } + ] + }, + "DynamicSchema": { + "type": "object", + "description": "DynamicSchema Resource", + "properties": { + "properties": { + "$ref": "#/definitions/DynamicSchemaProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DynamicSchemaListResult": { + "type": "object", + "description": "The response of a DynamicSchema list operation.", + "properties": { + "value": { + "type": "array", + "description": "The DynamicSchema items on this page", + "items": { + "$ref": "#/definitions/DynamicSchema" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DynamicSchemaProperties": { + "type": "object", + "description": "DynamicSchema Properties", + "properties": { + "displayName": { + "type": "string", + "description": "Display name of the dynamic schema", + "readOnly": true + }, + "configurationType": { + "$ref": "#/definitions/ConfigurationType", + "description": "Type of configuration", + "readOnly": true + }, + "configurationModel": { + "$ref": "#/definitions/ConfigurationModel", + "description": "Type of configuration model", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + } + }, + "DynamicSchemaUpdate": { + "type": "object", + "description": "DynamicSchema Resource", + "properties": { + "properties": { + "$ref": "#/definitions/DynamicSchemaProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DynamicSchemaVersion": { + "type": "object", + "description": "Dynamic Schema Version Resource", + "properties": { + "properties": { + "$ref": "#/definitions/SchemaVersionProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DynamicSchemaVersionListResult": { + "type": "object", + "description": "The response of a DynamicSchemaVersion list operation.", + "properties": { + "value": { + "type": "array", + "description": "The DynamicSchemaVersion items on this page", + "items": { + "$ref": "#/definitions/DynamicSchemaVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DynamicSchemaVersionUpdate": { + "type": "object", + "description": "Dynamic Schema Version Resource", + "properties": { + "properties": { + "$ref": "#/definitions/SchemaVersionPropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ErrorAction": { + "type": "object", + "description": "Error Action Properties", + "properties": { + "mode": { + "type": "string", + "description": "Error action mode", + "default": "stopOnAnyFailure", + "enum": [ + "stopOnAnyFailure", + "stopOnNFailures", + "silentlyContinue" + ], + "x-ms-enum": { + "name": "ErrorActionMode", + "modelAsString": true, + "values": [ + { + "name": "stopOnAnyFailure", + "value": "stopOnAnyFailure", + "description": "Stop on any failure" + }, + { + "name": "stopOnNFailures", + "value": "stopOnNFailures", + "description": "Stop after N cumulative failures" + }, + { + "name": "silentlyContinue", + "value": "silentlyContinue", + "description": "Continue silently despite errors" + } + ] + } + }, + "maxToleratedFailures": { + "type": "integer", + "format": "int32", + "description": "Max tolerated failures", + "minimum": 0 + } + } + }, + "ErrorActionMode": { + "type": "string", + "description": "Error Action Mode", + "enum": [ + "stopOnAnyFailure", + "stopOnNFailures", + "silentlyContinue" + ], + "x-ms-enum": { + "name": "ErrorActionMode", + "modelAsString": true, + "values": [ + { + "name": "stopOnAnyFailure", + "value": "stopOnAnyFailure", + "description": "Stop on any failure" + }, + { + "name": "stopOnNFailures", + "value": "stopOnNFailures", + "description": "Stop after N cumulative failures" + }, + { + "name": "silentlyContinue", + "value": "silentlyContinue", + "description": "Continue silently despite errors" + } + ] + } + }, + "Execution": { + "type": "object", + "description": "Execution Resource", + "properties": { + "properties": { + "$ref": "#/definitions/ExecutionProperties", + "description": "The resource-specific properties for this resource." + }, + "extendedLocation": { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.ExtendedLocation", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ExecutionListResult": { + "type": "object", + "description": "The response of a Execution list operation.", + "properties": { + "value": { + "type": "array", + "description": "The Execution items on this page", + "items": { + "$ref": "#/definitions/Execution" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ExecutionProperties": { + "type": "object", + "description": "Execution Properties", + "properties": { + "workflowVersionId": { + "type": "string", + "description": "Workflow version of execution" + }, + "specification": { + "type": "object", + "description": "Execution specification", + "additionalProperties": {} + }, + "status": { + "$ref": "#/definitions/ExecutionStatus", + "description": "Status of Execution", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "workflowVersionId" + ] + }, + "ExecutionPropertiesUpdate": { + "type": "object", + "description": "Execution Properties", + "properties": { + "workflowVersionId": { + "type": "string", + "description": "Workflow version of execution" + }, + "specification": { + "type": "object", + "description": "Execution specification", + "additionalProperties": {} + } + } + }, + "ExecutionStatus": { + "type": "object", + "description": "Execution Status", + "properties": { + "updateTime": { + "type": "string", + "format": "date-time", + "description": "The lastModified timestamp of the Status" + }, + "status": { + "type": "integer", + "format": "int32", + "description": "Deployment status" + }, + "statusMessage": { + "type": "string", + "description": "status details" + }, + "stageHistory": { + "type": "array", + "description": "target resource statuses", + "items": { + "$ref": "#/definitions/StageStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "ExecutionUpdate": { + "type": "object", + "description": "Execution Resource", + "properties": { + "properties": { + "$ref": "#/definitions/ExecutionPropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "Hierarchy": { + "type": "object", + "description": "Hierarchy, to tag Sites / Hierarchy Provider nodes with what they represent", + "properties": { + "name": { + "type": "string", + "description": "Name of Hierarchy" + }, + "description": { + "type": "string", + "description": "Description of Hierarchy" + } + }, + "required": [ + "name", + "description" + ] + }, + "InstallSolutionParameter": { + "type": "object", + "description": "Install Solution Parameter", + "properties": { + "solutionVersionId": { + "type": "string", + "description": "Solution Version ARM Id" + } + }, + "required": [ + "solutionVersionId" + ] + }, + "Instance": { + "type": "object", + "description": "Instance Resource. Represents a deployment object.", + "properties": { + "properties": { + "$ref": "#/definitions/InstanceProperties", + "description": "The resource-specific properties for this resource." + }, + "extendedLocation": { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.ExtendedLocation", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "InstanceHistory": { + "type": "object", + "description": "InstanceHistory Resource", + "properties": { + "properties": { + "$ref": "#/definitions/InstanceHistoryProperties", + "description": "The resource-specific properties for this resource." + }, + "extendedLocation": { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.ExtendedLocation", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "InstanceHistoryListResult": { + "type": "object", + "description": "The response of a InstanceHistory list operation.", + "properties": { + "value": { + "type": "array", + "description": "The InstanceHistory items on this page", + "items": { + "$ref": "#/definitions/InstanceHistory" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "InstanceHistoryProperties": { + "type": "object", + "description": "Instance History Properties", + "properties": { + "solutionVersion": { + "$ref": "#/definitions/SolutionVersionSnapshot", + "description": "Solution version of instance", + "readOnly": true + }, + "target": { + "$ref": "#/definitions/TargetSnapshot", + "description": "Target of instance", + "readOnly": true + }, + "solutionScope": { + "type": "string", + "description": "Scope of instance", + "readOnly": true + }, + "activeState": { + "$ref": "#/definitions/ActiveState", + "description": "State of instance" + }, + "reconciliationPolicy": { + "$ref": "#/definitions/ReconciliationPolicyProperties", + "description": "Reconciliation policy of instance", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/DeploymentStatus", + "description": "Deployment Status of instance", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "solutionVersion", + "target" + ] + }, + "InstanceListResult": { + "type": "object", + "description": "The response of a Instance list operation.", + "properties": { + "value": { + "type": "array", + "description": "The Instance items on this page", + "items": { + "$ref": "#/definitions/Instance" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "InstanceProperties": { + "type": "object", + "description": "Instance Properties", + "properties": { + "solutionVersionId": { + "type": "string", + "description": "Solution version of instance" + }, + "targetId": { + "type": "string", + "description": "Target of instance" + }, + "activeState": { + "$ref": "#/definitions/ActiveState", + "description": "State of instance" + }, + "reconciliationPolicy": { + "$ref": "#/definitions/ReconciliationPolicyProperties", + "description": "Reconciliation policy of instance" + }, + "solutionScope": { + "type": "string", + "description": "Scope of instance", + "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "status": { + "$ref": "#/definitions/DeploymentStatus", + "description": "Status of instance", + "readOnly": true + }, + "deploymentTimestampEpoch": { + "type": "integer", + "format": "int64", + "description": "Deployment timestamp of instance", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "solutionVersionId", + "targetId" + ] + }, + "InstancePropertiesUpdate": { + "type": "object", + "description": "Instance Properties", + "properties": { + "solutionVersionId": { + "type": "string", + "description": "Solution version of instance" + }, + "targetId": { + "type": "string", + "description": "Target of instance" + }, + "activeState": { + "$ref": "#/definitions/ActiveState", + "description": "State of instance" + }, + "reconciliationPolicy": { + "$ref": "#/definitions/ReconciliationPolicyPropertiesUpdate", + "description": "Reconciliation policy of instance" + }, + "solutionScope": { + "type": "string", + "description": "Scope of instance", + "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + } + } + }, + "InstanceUpdate": { + "type": "object", + "description": "Instance Resource. Represents a deployment object.", + "properties": { + "properties": { + "$ref": "#/definitions/InstancePropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "Job": { + "type": "object", + "description": "Job extension resource for tracking job execution and substatuses.", + "properties": { + "properties": { + "$ref": "#/definitions/JobProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "JobListResult": { + "type": "object", + "description": "The response of a Job list operation.", + "properties": { + "value": { + "type": "array", + "description": "The Job items on this page", + "items": { + "$ref": "#/definitions/Job" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "JobParameterBase": { + "type": "object", + "description": "Base Job Parameter", + "properties": { + "jobType": { + "$ref": "#/definitions/JobType", + "description": "Job type discriminator value" + } + }, + "discriminator": "jobType", + "required": [ + "jobType" + ] + }, + "JobProperties": { + "type": "object", + "description": "Properties of a Job resource, including type, status, parameters, steps, and error details.", + "properties": { + "jobType": { + "$ref": "#/definitions/JobType", + "description": "The type of job." + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of the job (ISO8601)." + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "End time of the job (ISO8601)." + }, + "status": { + "$ref": "#/definitions/JobStatus", + "description": "Status of the job." + }, + "jobParameter": { + "$ref": "#/definitions/JobParameterBase", + "description": "Parameters for the job." + }, + "correlationId": { + "type": "string", + "description": "Correlation ID for tracking." + }, + "steps": { + "type": "array", + "description": "Steps and substatuses for the job.", + "items": { + "$ref": "#/definitions/JobStep" + } + }, + "triggeredBy": { + "type": "string", + "description": "The OID or identity that triggered the job." + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of the resource.", + "readOnly": true + }, + "errorDetails": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorDetail", + "description": "Error Details if any failure is there", + "readOnly": true + } + }, + "required": [ + "jobType", + "status" + ] + }, + "JobStatus": { + "type": "string", + "description": "Status of a job or job step.", + "enum": [ + "NotStarted", + "InProgress", + "Succeeded", + "Failed" + ], + "x-ms-enum": { + "name": "JobStatus", + "modelAsString": true, + "values": [ + { + "name": "NotStarted", + "value": "NotStarted", + "description": "The job or step is not started." + }, + { + "name": "InProgress", + "value": "InProgress", + "description": "The job or step is in progress." + }, + { + "name": "Succeeded", + "value": "Succeeded", + "description": "The job or step succeeded." + }, + { + "name": "Failed", + "value": "Failed", + "description": "The job or step failed." + } + ] + }, + "readOnly": true + }, + "JobStep": { + "type": "object", + "description": "Job Step", + "properties": { + "name": { + "type": "string", + "description": "Name of the step" + }, + "status": { + "$ref": "#/definitions/JobStatus", + "description": "Status of the step" + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of the step (ISO8601)" + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "End time of the step (ISO8601)" + }, + "message": { + "type": "string", + "description": "Message for the step" + }, + "statistics": { + "$ref": "#/definitions/JobStepStatisticsBase", + "description": "Statistics for the step" + }, + "steps": { + "type": "array", + "description": "Nested substeps for this step", + "items": { + "$ref": "#/definitions/JobStep" + } + }, + "errorDetails": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorDetail", + "description": "Error Details if any failure is there", + "readOnly": true + } + }, + "required": [ + "name", + "status" + ] + }, + "JobStepStatistics": { + "$ref": "#/definitions/DeployJobStepStatistics", + "x-nullable": false + }, + "JobStepStatisticsBase": { + "type": "object", + "description": "Base Job Step Statistics", + "properties": { + "statisticsType": { + "$ref": "#/definitions/JobType", + "description": "Statistics type discriminator value" + } + }, + "discriminator": "statisticsType", + "required": [ + "statisticsType" + ] + }, + "JobType": { + "type": "string", + "description": "JobType for the job. Supports extensibility via string values.", + "enum": [ + "deploy", + "staging", + "externalValidation" + ], + "x-ms-enum": { + "name": "JobType", + "modelAsString": true, + "values": [ + { + "name": "Deploy", + "value": "deploy", + "description": "A deployment job." + }, + { + "name": "Staging", + "value": "staging", + "description": "A staging job." + }, + { + "name": "ExternalValidation", + "value": "externalValidation", + "description": "A validation job." + } + ] + } + }, + "OrchestratorType": { + "type": "string", + "description": "Available Orchestrator types", + "enum": [ + "TO" + ], + "x-ms-enum": { + "name": "OrchestratorType", + "modelAsString": true, + "values": [ + { + "name": "TO", + "value": "TO", + "description": "Default type" + } + ] + } + }, + "ProvisioningState": { + "type": "string", + "description": "Provisioning state of resource", + "enum": [ + "Succeeded", + "Failed", + "Canceled", + "Initialized", + "InProgress", + "Deleting" + ], + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": true, + "values": [ + { + "name": "Succeeded", + "value": "Succeeded", + "description": "Resource has been created." + }, + { + "name": "Failed", + "value": "Failed", + "description": "Resource creation failed." + }, + { + "name": "Canceled", + "value": "Canceled", + "description": "Resource creation was canceled." + }, + { + "name": "Initialized", + "value": "Initialized", + "description": "Resource Provisioning is initialized" + }, + { + "name": "Inprogress", + "value": "InProgress", + "description": "Resource Provisioning is in progress" + }, + { + "name": "Deleting", + "value": "Deleting", + "description": "Resource Provisioning is deleting" + } + ] + }, + "readOnly": true + }, + "ReconciliationPolicyProperties": { + "type": "object", + "description": "Defines a ReconciliationPolicy", + "properties": { + "state": { + "$ref": "#/definitions/ReconciliationState", + "description": "The state of the ReconciliationPolicy" + }, + "interval": { + "type": "string", + "description": "Policy interval" + } + }, + "required": [ + "state", + "interval" + ] + }, + "ReconciliationPolicyPropertiesUpdate": { + "type": "object", + "description": "Defines a ReconciliationPolicy", + "properties": { + "state": { + "$ref": "#/definitions/ReconciliationState", + "description": "The state of the ReconciliationPolicy" + }, + "interval": { + "type": "string", + "description": "Policy interval" + } + } + }, + "ReconciliationState": { + "type": "string", + "description": "Defines a state of the reconciliation policy.", + "enum": [ + "inactive", + "active" + ], + "x-ms-enum": { + "name": "ReconciliationState", + "modelAsString": true, + "values": [ + { + "name": "inactive", + "value": "inactive", + "description": "Reconciliation is inactive" + }, + { + "name": "active", + "value": "active", + "description": "Reconciliation is active" + } + ] + } + }, + "RemoveRevisionParameter": { + "type": "object", + "description": "Install Solution Parameter", + "properties": { + "solutionTemplateId": { + "type": "string", + "description": "Solution Template ARM Id" + }, + "solutionVersion": { + "type": "string", + "description": "Solution Version Name" + } + }, + "required": [ + "solutionTemplateId", + "solutionVersion" + ] + }, + "RemoveVersionResponse": { + "type": "object", + "description": "Remove Version response", + "properties": { + "status": { + "type": "string", + "description": "Status for remove version response" + } + }, + "required": [ + "status" + ] + }, + "ResolvedConfiguration": { + "type": "object", + "description": "Resolved Configuration", + "properties": { + "configuration": { + "type": "string", + "description": "Resolved Configuration as string" + } + }, + "required": [ + "configuration" + ] + }, + "ResourceState": { + "type": "string", + "description": "Resource Type State", + "enum": [ + "active", + "inactive" + ], + "x-ms-enum": { + "name": "ResourceState", + "modelAsString": true, + "values": [ + { + "name": "active", + "value": "active", + "description": "Resource is active" + }, + { + "name": "inactive", + "value": "inactive", + "description": "Resource is inactive" + } + ] + } + }, + "Schema": { + "type": "object", + "description": "Schema Resource", + "properties": { + "properties": { + "$ref": "#/definitions/SchemaProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "SchemaListResult": { + "type": "object", + "description": "The response of a Schema list operation.", + "properties": { + "value": { + "type": "array", + "description": "The Schema items on this page", + "items": { + "$ref": "#/definitions/Schema" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SchemaProperties": { + "type": "object", + "description": "Schema Properties", + "properties": { + "currentVersion": { + "type": "string", + "description": "Current Version of schema", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + } + }, + "SchemaReference": { + "type": "object", + "description": "Schema Reference Resource", + "properties": { + "properties": { + "$ref": "#/definitions/SchemaReferenceProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SchemaReferenceListResult": { + "type": "object", + "description": "The response of a SchemaReference list operation.", + "properties": { + "value": { + "type": "array", + "description": "The SchemaReference items on this page", + "items": { + "$ref": "#/definitions/SchemaReference" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SchemaReferenceProperties": { + "type": "object", + "description": "Schema Reference Properties", + "properties": { + "schemaId": { + "type": "string", + "description": "Schema Id of schema reference" + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "schemaId" + ] + }, + "SchemaUpdate": { + "type": "object", + "description": "Schema Resource", + "properties": { + "properties": { + "$ref": "#/definitions/SchemaProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.TrackedResourceUpdate" + } + ] + }, + "SchemaVersion": { + "type": "object", + "description": "Schema Version Resource", + "properties": { + "properties": { + "$ref": "#/definitions/SchemaVersionProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SchemaVersionListResult": { + "type": "object", + "description": "The response of a SchemaVersion list operation.", + "properties": { + "value": { + "type": "array", + "description": "The SchemaVersion items on this page", + "items": { + "$ref": "#/definitions/SchemaVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SchemaVersionProperties": { + "type": "object", + "description": "Schema Version Properties", + "properties": { + "value": { + "type": "string", + "description": "Value of schema version" + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "value" + ] + }, + "SchemaVersionPropertiesUpdate": { + "type": "object", + "description": "Schema Version Properties", + "properties": { + "value": { + "type": "string", + "description": "Value of schema version" + } + } + }, + "SchemaVersionUpdate": { + "type": "object", + "description": "Schema Version Resource", + "properties": { + "properties": { + "$ref": "#/definitions/SchemaVersionPropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SchemaVersionWithUpdateType": { + "type": "object", + "description": "Schema Version With Update Type", + "properties": { + "updateType": { + "$ref": "#/definitions/UpdateType", + "description": "Update type" + }, + "version": { + "type": "string", + "description": "Version to create", + "pattern": "^(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)$" + }, + "schemaVersion": { + "$ref": "#/definitions/SchemaVersion", + "description": "Schema Version" + } + }, + "required": [ + "schemaVersion" + ] + }, + "SiteReference": { + "type": "object", + "description": "Site Reference Resource", + "properties": { + "properties": { + "$ref": "#/definitions/SiteReferenceProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SiteReferenceListResult": { + "type": "object", + "description": "The response of a SiteReference list operation.", + "properties": { + "value": { + "type": "array", + "description": "The SiteReference items on this page", + "items": { + "$ref": "#/definitions/SiteReference" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SiteReferenceProperties": { + "type": "object", + "description": "Site Reference Properties", + "properties": { + "siteId": { + "type": "string", + "description": "Azure Resource ID for Site" + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning State", + "readOnly": true + } + }, + "required": [ + "siteId" + ] + }, + "SiteReferencePropertiesUpdate": { + "type": "object", + "description": "Site Reference Properties", + "properties": { + "siteId": { + "type": "string", + "description": "Azure Resource ID for Site" + } + } + }, + "SiteReferenceUpdate": { + "type": "object", + "description": "Site Reference Resource", + "properties": { + "properties": { + "$ref": "#/definitions/SiteReferencePropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "Solution": { + "type": "object", + "description": "Solution Resource attached to a Target", + "properties": { + "properties": { + "$ref": "#/definitions/SolutionProperties", + "description": "The resource-specific properties for this resource." + }, + "extendedLocation": { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.ExtendedLocation", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SolutionDependency": { + "type": "object", + "description": "Solution Dependency Context", + "properties": { + "solutionVersionId": { + "type": "string", + "description": "Solution Version Id" + }, + "solutionInstanceName": { + "type": "string", + "description": "Solution Instance Name", + "maxLength": 24, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + "solutionTemplateVersionId": { + "type": "string", + "description": "Solution Template Version Id" + }, + "targetId": { + "type": "string", + "description": "Target Id" + }, + "dependencies": { + "type": "array", + "description": "Solution dependencies", + "items": { + "$ref": "#/definitions/SolutionDependency" + }, + "x-ms-identifiers": [] + } + }, + "required": [ + "solutionVersionId", + "solutionTemplateVersionId", + "targetId" + ] + }, + "SolutionDependencyParameter": { + "type": "object", + "description": "Solution Dependency Context", + "properties": { + "solutionVersionId": { + "type": "string", + "description": "Solution Version Id" + }, + "solutionTemplateId": { + "type": "string", + "description": "Solution Template Id" + }, + "solutionTemplateVersion": { + "type": "string", + "description": "Solution Template Version" + }, + "solutionInstanceName": { + "type": "string", + "description": "Solution Instance Name", + "maxLength": 24, + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + "targetId": { + "type": "string", + "description": "Target Id" + }, + "dependencies": { + "type": "array", + "description": "Solution dependencies", + "items": { + "$ref": "#/definitions/SolutionDependencyParameter" + }, + "x-ms-identifiers": [] + } + } + }, + "SolutionListResult": { + "type": "object", + "description": "The response of a Solution list operation.", + "properties": { + "value": { + "type": "array", + "description": "The Solution items on this page", + "items": { + "$ref": "#/definitions/Solution" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SolutionProperties": { + "type": "object", + "description": "Solution Properties", + "properties": { + "solutionTemplateId": { + "type": "string", + "description": "Solution template Id", + "readOnly": true + }, + "displayName": { + "type": "string", + "description": "Display name of the solution", + "readOnly": true + }, + "availableSolutionTemplateVersions": { + "type": "array", + "description": "List of latest revisions for available solution template versions", + "items": { + "$ref": "#/definitions/AvailableSolutionTemplateVersion" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + } + }, + "SolutionTemplate": { + "type": "object", + "description": "Solution Template Resource. Contains capabilities and operations for creating versions.", + "properties": { + "properties": { + "$ref": "#/definitions/SolutionTemplateProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "SolutionTemplateListResult": { + "type": "object", + "description": "The response of a SolutionTemplate list operation.", + "properties": { + "value": { + "type": "array", + "description": "The SolutionTemplate items on this page", + "items": { + "$ref": "#/definitions/SolutionTemplate" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SolutionTemplateParameter": { + "type": "object", + "description": "Solution Template Parameter", + "properties": { + "solutionTemplateVersionId": { + "type": "string", + "description": "Solution Template Version ARM Id" + }, + "solutionInstanceName": { + "type": "string", + "description": "Solution Instance Name", + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$" + }, + "solutionDependencies": { + "type": "array", + "description": "Solution Dependencies", + "items": { + "$ref": "#/definitions/SolutionDependencyParameter" + }, + "x-ms-identifiers": [] + } + }, + "required": [ + "solutionTemplateVersionId" + ] + }, + "SolutionTemplateProperties": { + "type": "object", + "description": "Solution Template Properties", + "properties": { + "uniqueIdentifier": { + "type": "string", + "description": "A unique identifier for the solution template, generated by the system", + "readOnly": true + }, + "description": { + "type": "string", + "description": "Description of Solution template" + }, + "capabilities": { + "type": "array", + "description": "List of capabilities", + "items": { + "type": "string" + } + }, + "latestVersion": { + "type": "string", + "description": "Latest solution template version", + "readOnly": true + }, + "state": { + "$ref": "#/definitions/ResourceState", + "description": "State of resource" + }, + "enableExternalValidation": { + "type": "boolean", + "description": "Flag to enable external validation" + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "description", + "capabilities" + ] + }, + "SolutionTemplatePropertiesUpdate": { + "type": "object", + "description": "Solution Template Properties", + "properties": { + "description": { + "type": "string", + "description": "Description of Solution template" + }, + "capabilities": { + "type": "array", + "description": "List of capabilities", + "items": { + "type": "string" + } + }, + "state": { + "$ref": "#/definitions/ResourceState", + "description": "State of resource" + }, + "enableExternalValidation": { + "type": "boolean", + "description": "Flag to enable external validation" + } + } + }, + "SolutionTemplateUpdate": { + "type": "object", + "description": "Solution Template Resource. Contains capabilities and operations for creating versions.", + "properties": { + "properties": { + "$ref": "#/definitions/SolutionTemplatePropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.TrackedResourceUpdate" + } + ] + }, + "SolutionTemplateVersion": { + "type": "object", + "description": "Solution Template Version Resource. Contains configurations that use expressions which can be resolved hierarchically along with edge specifications.", + "properties": { + "properties": { + "$ref": "#/definitions/SolutionTemplateVersionProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SolutionTemplateVersionListResult": { + "type": "object", + "description": "The response of a SolutionTemplateVersion list operation.", + "properties": { + "value": { + "type": "array", + "description": "The SolutionTemplateVersion items on this page", + "items": { + "$ref": "#/definitions/SolutionTemplateVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SolutionTemplateVersionProperties": { + "type": "object", + "description": "Solution Template Version Properties", + "properties": { + "configurations": { + "type": "string", + "description": "Config expressions for this solution version" + }, + "specification": { + "type": "object", + "description": "App components spec", + "additionalProperties": {} + }, + "orchestratorType": { + "$ref": "#/definitions/OrchestratorType", + "description": "Orchestrator type" + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "configurations", + "specification" + ] + }, + "SolutionTemplateVersionWithUpdateType": { + "type": "object", + "description": "Solution Template Version With Update Type", + "properties": { + "updateType": { + "$ref": "#/definitions/UpdateType", + "description": "Update type" + }, + "version": { + "type": "string", + "description": "Version to create", + "pattern": "^(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)$" + }, + "solutionTemplateVersion": { + "$ref": "#/definitions/SolutionTemplateVersion", + "description": "Solution Template Version" + } + }, + "required": [ + "solutionTemplateVersion" + ] + }, + "SolutionUpdate": { + "type": "object", + "description": "Solution Resource attached to a Target", + "properties": { + "properties": { + "$ref": "#/definitions/SolutionProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SolutionVersion": { + "type": "object", + "description": "Solution Version Resource. It has the resolved configuration along with edge specification.", + "properties": { + "properties": { + "$ref": "#/definitions/SolutionVersionProperties", + "description": "The resource-specific properties for this resource." + }, + "extendedLocation": { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.ExtendedLocation", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SolutionVersionListResult": { + "type": "object", + "description": "The response of a SolutionVersion list operation.", + "properties": { + "value": { + "type": "array", + "description": "The SolutionVersion items on this page", + "items": { + "$ref": "#/definitions/SolutionVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SolutionVersionParameter": { + "type": "object", + "description": "Solution Version Parameter", + "properties": { + "solutionVersionId": { + "type": "string", + "description": "Solution Version ARM Id" + } + }, + "required": [ + "solutionVersionId" + ] + }, + "SolutionVersionProperties": { + "type": "object", + "description": "Solution Version Properties", + "properties": { + "solutionTemplateVersionId": { + "type": "string", + "description": "Solution Template Version Id", + "readOnly": true + }, + "revision": { + "type": "integer", + "format": "int32", + "description": "Revision number of resolved config for this solution version", + "readOnly": true + }, + "targetDisplayName": { + "type": "string", + "description": "Name of applicable target's display name", + "readOnly": true + }, + "configuration": { + "type": "string", + "description": "Resolved configuration values", + "readOnly": true + }, + "targetLevelConfiguration": { + "type": "string", + "description": "Configuration on the line level across all solution template versions", + "readOnly": true + }, + "specification": { + "type": "object", + "description": "App components spec", + "additionalProperties": {} + }, + "reviewId": { + "type": "string", + "description": "Review id of resolved config for this solution version", + "readOnly": true + }, + "externalValidationId": { + "type": "string", + "description": "External validation id", + "readOnly": true + }, + "state": { + "$ref": "#/definitions/State", + "description": "State of solution instance", + "readOnly": true + }, + "currentStage": { + "$ref": "#/definitions/StageMap", + "description": "Current Stage of revision", + "readOnly": true + }, + "stages": { + "type": "array", + "description": "Stages of revision", + "items": { + "$ref": "#/definitions/StageMap" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "solutionInstanceName": { + "type": "string", + "description": "Solution instance name", + "pattern": "^(?!v-)(?!.*-v-)[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([-a-zA-Z0-9]*[a-zA-Z0-9])?)*$", + "readOnly": true + }, + "solutionDependencies": { + "type": "array", + "description": "Solution Dependency Context", + "items": { + "$ref": "#/definitions/SolutionDependency" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "errorDetails": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorDetail", + "description": "Error Details if any failure is there", + "readOnly": true + }, + "latestActionTrackingUri": { + "type": "string", + "description": "The URI for tracking the latest action performed on this solution version.", + "readOnly": true + }, + "lastestActionTriggeredBy": { + "type": "string", + "description": "Object Id of user who triggered the latest action on this solution version.", + "readOnly": true + }, + "actionType": { + "$ref": "#/definitions/JobType", + "description": "The type of the latest action performed on this solution version.", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "specification" + ] + }, + "SolutionVersionPropertiesUpdate": { + "type": "object", + "description": "Solution Version Properties", + "properties": { + "specification": { + "type": "object", + "description": "App components spec", + "additionalProperties": {} + } + } + }, + "SolutionVersionSnapshot": { + "type": "object", + "description": "Solution Version Snapshot", + "properties": { + "solutionVersionId": { + "type": "string", + "format": "arm-id", + "description": "Solution version of instance", + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.Edge/targets/solutions/versions" + } + ] + } + }, + "specification": { + "type": "object", + "description": "App components spec", + "additionalProperties": {} + } + } + }, + "SolutionVersionUpdate": { + "type": "object", + "description": "Solution Version Resource. It has the resolved configuration along with edge specification.", + "properties": { + "properties": { + "$ref": "#/definitions/SolutionVersionPropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "StageMap": { + "type": "object", + "description": "Stage Map for Solution Version", + "properties": { + "displayState": { + "type": "string", + "description": "Display State", + "readOnly": true + }, + "stage": { + "$ref": "#/definitions/CMStages", + "description": "Stage name", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/StateCategory", + "description": "Stage status", + "readOnly": true + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Stage start time", + "readOnly": true + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "Stage end time", + "readOnly": true + }, + "childStages": { + "type": "array", + "description": "Child stages which represents more granular level stage status if any", + "items": { + "$ref": "#/definitions/StageMap" + }, + "readOnly": true, + "x-ms-identifiers": [] + } + }, + "required": [ + "displayState", + "stage", + "status" + ] + }, + "StageSpec": { + "type": "object", + "description": "Stage Properties", + "properties": { + "name": { + "type": "string", + "description": "Name of Stage" + }, + "specification": { + "type": "object", + "description": "Stage specification", + "additionalProperties": {} + }, + "tasks": { + "type": "array", + "description": "List of tasks in the stage", + "items": { + "$ref": "#/definitions/TaskSpec" + } + }, + "taskOption": { + "$ref": "#/definitions/TaskOption", + "description": "Task option for the stage" + } + }, + "required": [ + "name" + ] + }, + "StageStatus": { + "type": "object", + "description": "Result of Stage execution", + "properties": { + "status": { + "type": "integer", + "format": "int32", + "description": "Deployment status" + }, + "statusMessage": { + "type": "string", + "description": "Status message" + }, + "stage": { + "type": "string", + "description": "Current stage" + }, + "nextstage": { + "type": "string", + "description": "Next stage" + }, + "errorMessage": { + "type": "string", + "description": "Error message" + }, + "isActive": { + "$ref": "#/definitions/ActiveState", + "description": "whether this stage is active or inactive" + }, + "inputs": { + "type": "object", + "description": "The inputs of the StageHistory, Inputs holds a key-value map of user-defined parameters for the initial stage", + "additionalProperties": {} + }, + "outputs": { + "type": "object", + "description": "The outputs of the StageHistory, it is different as the different input stages.", + "additionalProperties": {} + } + } + }, + "State": { + "type": "string", + "description": "Solution Instance State", + "enum": [ + "InReview", + "UpgradeInReview", + "ReadyToDeploy", + "ReadyToUpgrade", + "Deploying", + "Deployed", + "Failed", + "Undeployed", + "PendingExternalValidation", + "ExternalValidationFailed", + "Staging", + "NotApplicable" + ], + "x-ms-enum": { + "name": "State", + "modelAsString": true, + "values": [ + { + "name": "InReview", + "value": "InReview", + "description": "Solution Instance is in review" + }, + { + "name": "UpgradeInReview", + "value": "UpgradeInReview", + "description": "Solution Instance upgrade is in review" + }, + { + "name": "ReadyToDeploy", + "value": "ReadyToDeploy", + "description": "Solution Instance is ready to deploy" + }, + { + "name": "ReadyToUpgrade", + "value": "ReadyToUpgrade", + "description": "Solution Instance is ready to upgrade" + }, + { + "name": "Deploying", + "value": "Deploying", + "description": "Solution Instance is deploying" + }, + { + "name": "Deployed", + "value": "Deployed", + "description": "Solution Instance is deployed" + }, + { + "name": "Failed", + "value": "Failed", + "description": "Solution Instance failed to deploy" + }, + { + "name": "Undeployed", + "value": "Undeployed", + "description": "Solution Instance is undeployed" + }, + { + "name": "PendingExternalValidation", + "value": "PendingExternalValidation", + "description": "Solution Instance is pending external validation" + }, + { + "name": "ExternalValidationFailed", + "value": "ExternalValidationFailed", + "description": "Solution Instance failed external validation" + }, + { + "name": "Staging", + "value": "Staging", + "description": "Solution Instance is staging the images" + }, + { + "name": "NotApplicable", + "value": "NotApplicable", + "description": "State is not applicable" + } + ] + } + }, + "StateCategory": { + "type": "string", + "description": "State Category for Solution Version", + "enum": [ + "Pending", + "InProgress", + "Completed", + "Failed", + "None" + ], + "x-ms-enum": { + "name": "StateCategory", + "modelAsString": true, + "values": [ + { + "name": "Pending", + "value": "Pending", + "description": "Pending state [Non-Terminal]" + }, + { + "name": "InProgress", + "value": "InProgress", + "description": "InProgress state [Non-Terminal]" + }, + { + "name": "Completed", + "value": "Completed", + "description": "Completed state [Terminal]" + }, + { + "name": "Failed", + "value": "Failed", + "description": "Failed state [Terminal]" + }, + { + "name": "None", + "value": "None", + "description": "None state [Terminal]" + } + ] + } + }, + "Target": { + "type": "object", + "description": "Target Resource. Represents a resource to be deployed on the edge.", + "properties": { + "properties": { + "$ref": "#/definitions/TargetProperties", + "description": "The resource-specific properties for this resource." + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + }, + "extendedLocation": { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.ExtendedLocation", + "x-ms-mutability": [ + "read", + "create" + ] + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "TargetListResult": { + "type": "object", + "description": "The response of a Target list operation.", + "properties": { + "value": { + "type": "array", + "description": "The Target items on this page", + "items": { + "$ref": "#/definitions/Target" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "TargetProperties": { + "type": "object", + "description": "Target Properties", + "properties": { + "description": { + "type": "string", + "description": "Description of target" + }, + "displayName": { + "type": "string", + "description": "Display name of target" + }, + "contextId": { + "type": "string", + "format": "arm-id", + "description": "ArmId of Context", + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.Edge/contexts" + } + ] + } + }, + "targetSpecification": { + "type": "object", + "description": "target spec", + "additionalProperties": {} + }, + "capabilities": { + "type": "array", + "description": "List of capabilities", + "items": { + "type": "string" + } + }, + "hierarchyLevel": { + "type": "string", + "description": "Hierarchy Level" + }, + "status": { + "$ref": "#/definitions/DeploymentStatus", + "description": "Status of target", + "readOnly": true + }, + "solutionScope": { + "type": "string", + "description": "Scope of the target resource", + "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "state": { + "$ref": "#/definitions/ResourceState", + "description": "State of resource" + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "description", + "displayName", + "contextId", + "targetSpecification", + "capabilities", + "hierarchyLevel" + ] + }, + "TargetPropertiesUpdate": { + "type": "object", + "description": "Target Properties", + "properties": { + "description": { + "type": "string", + "description": "Description of target" + }, + "displayName": { + "type": "string", + "description": "Display name of target" + }, + "contextId": { + "type": "string", + "format": "arm-id", + "description": "ArmId of Context", + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.Edge/contexts" + } + ] + } + }, + "targetSpecification": { + "type": "object", + "description": "target spec", + "additionalProperties": {} + }, + "capabilities": { + "type": "array", + "description": "List of capabilities", + "items": { + "type": "string" + } + }, + "hierarchyLevel": { + "type": "string", + "description": "Hierarchy Level" + }, + "solutionScope": { + "type": "string", + "description": "Scope of the target resource", + "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "state": { + "$ref": "#/definitions/ResourceState", + "description": "State of resource" + } + } + }, + "TargetSnapshot": { + "type": "object", + "description": "Target Snapshot", + "properties": { + "targetId": { + "type": "string", + "format": "arm-id", + "description": "Target of instance", + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.Edge/targets" + } + ] + } + }, + "targetSpecification": { + "type": "object", + "description": "target spec", + "additionalProperties": {} + }, + "solutionScope": { + "type": "string", + "description": "Scope of the target resource" + } + } + }, + "TargetStatus": { + "type": "object", + "description": "Target Status", + "properties": { + "name": { + "type": "string", + "description": "Target name" + }, + "status": { + "type": "string", + "description": "Target status" + }, + "componentStatuses": { + "type": "array", + "description": "Component statuses", + "items": { + "$ref": "#/definitions/ComponentStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "TargetUpdate": { + "type": "object", + "description": "Target Resource. Represents a resource to be deployed on the edge.", + "properties": { + "properties": { + "$ref": "#/definitions/TargetPropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.TrackedResourceUpdate" + } + ] + }, + "TaskOption": { + "type": "object", + "description": "Task Option Properties", + "properties": { + "concurrency": { + "type": "integer", + "format": "int32", + "description": "Parallel worker numbers of the tasks", + "default": 1, + "minimum": 1, + "maximum": 8 + }, + "errorAction": { + "$ref": "#/definitions/ErrorAction", + "description": "Error action for the tasks" + } + } + }, + "TaskSpec": { + "type": "object", + "description": "Task Spec", + "properties": { + "name": { + "type": "string", + "description": "Name of Task" + }, + "targetId": { + "type": "string", + "format": "arm-id", + "description": "Target ARM id", + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.Edge/targets" + } + ] + } + }, + "specification": { + "type": "object", + "description": "Task specification", + "additionalProperties": {} + } + }, + "required": [ + "name", + "specification" + ] + }, + "UninstallSolutionParameter": { + "type": "object", + "description": "Uninstall Solution Parameter", + "properties": { + "solutionTemplateId": { + "type": "string", + "description": "Solution Template ARM Id" + }, + "solutionInstanceName": { + "type": "string", + "description": "Solution Instance Name" + } + }, + "required": [ + "solutionTemplateId" + ] + }, + "UpdateExternalValidationStatusParameter": { + "type": "object", + "description": "Update External Validation Status Parameter", + "properties": { + "solutionVersionId": { + "type": "string", + "description": "Solution Version Id" + }, + "errorDetails": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorDetail", + "description": "Error Details if any failure is there" + }, + "externalValidationId": { + "type": "string", + "description": "External validation id" + }, + "validationStatus": { + "$ref": "#/definitions/ValidationStatus", + "description": "Validation Status of external validation" + } + }, + "required": [ + "solutionVersionId", + "externalValidationId", + "validationStatus" + ] + }, + "UpdateType": { + "type": "string", + "description": "Denotes which part of the version number will be updated", + "enum": [ + "Major", + "Minor", + "Patch" + ], + "x-ms-enum": { + "name": "UpdateType", + "modelAsString": true, + "values": [ + { + "name": "Major", + "value": "Major", + "description": "Major version" + }, + { + "name": "Minor", + "value": "Minor", + "description": "Minor version" + }, + { + "name": "Patch", + "value": "Patch", + "description": "Patch version" + } + ] + } + }, + "ValidationStatus": { + "type": "string", + "description": "Solution Instance Validation Status", + "enum": [ + "Valid", + "Invalid" + ], + "x-ms-enum": { + "name": "ValidationStatus", + "modelAsString": true, + "values": [ + { + "name": "Valid", + "value": "Valid", + "description": "Solution Instance is valid" + }, + { + "name": "Invalid", + "value": "Invalid", + "description": "Solution Instance is invalid" + } + ] + } + }, + "VersionParameter": { + "type": "object", + "description": "Version Parameter", + "properties": { + "version": { + "type": "string", + "description": "Version of the Resource" + } + }, + "required": [ + "version" + ] + }, + "VersionUpdateQueryParameters": { + "type": "object", + "description": "Query parameters for updating Version", + "properties": { + "updateType": { + "$ref": "#/definitions/UpdateType", + "description": "The type of update" + } + }, + "required": [ + "updateType" + ] + }, + "Workflow": { + "type": "object", + "description": "Workflow Resource", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowProperties", + "description": "The resource-specific properties for this resource." + }, + "extendedLocation": { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.ExtendedLocation", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WorkflowListResult": { + "type": "object", + "description": "The response of a Workflow list operation.", + "properties": { + "value": { + "type": "array", + "description": "The Workflow items on this page", + "items": { + "$ref": "#/definitions/Workflow" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WorkflowProperties": { + "type": "object", + "description": "Workflow Properties", + "properties": { + "workflowTemplateId": { + "type": "string", + "description": "Workflow template Id", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + } + }, + "WorkflowUpdate": { + "type": "object", + "description": "Workflow Resource", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WorkflowVersion": { + "type": "object", + "description": "Workflow Version Resource", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowVersionProperties", + "description": "The resource-specific properties for this resource." + }, + "extendedLocation": { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.ExtendedLocation", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "eTag": { + "type": "string", + "description": "If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WorkflowVersionListResult": { + "type": "object", + "description": "The response of a WorkflowVersion list operation.", + "properties": { + "value": { + "type": "array", + "description": "The WorkflowVersion items on this page", + "items": { + "$ref": "#/definitions/WorkflowVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WorkflowVersionProperties": { + "type": "object", + "description": "Workflow Version Properties", + "properties": { + "revision": { + "type": "integer", + "format": "int32", + "description": "Revision number of resolved config for this workflow version", + "readOnly": true + }, + "configuration": { + "type": "string", + "description": "Resolved configuration values", + "readOnly": true + }, + "stageSpec": { + "type": "array", + "description": "A list of stage specs", + "items": { + "$ref": "#/definitions/StageSpec" + }, + "x-ms-identifiers": [] + }, + "reviewId": { + "type": "string", + "description": "Review id of resolved config for this workflow version", + "readOnly": true + }, + "state": { + "$ref": "#/definitions/State", + "description": "State of workflow version", + "readOnly": true + }, + "specification": { + "type": "object", + "description": "Execution specification", + "additionalProperties": {} + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "stageSpec" + ] + }, + "WorkflowVersionPropertiesUpdate": { + "type": "object", + "description": "Workflow Version Properties", + "properties": { + "stageSpec": { + "type": "array", + "description": "A list of stage specs", + "items": { + "$ref": "#/definitions/StageSpec" + }, + "x-ms-identifiers": [] + }, + "specification": { + "type": "object", + "description": "Execution specification", + "additionalProperties": {} + } + } + }, + "WorkflowVersionUpdate": { + "type": "object", + "description": "Workflow Version Resource", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowVersionPropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + } + }, + "parameters": { + "Azure.ResourceManager.ResourceUriParameter": { + "name": "resourceUri", + "in": "path", + "description": "The fully qualified Azure Resource manager identifier of the resource.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method", + "x-ms-skip-url-encoding": true + }, + "ForceDeleteParameter": { + "name": "forceDelete", + "in": "query", + "description": "Force delete", + "required": false, + "type": "boolean", + "default": false, + "x-ms-parameter-location": "method" + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplateVersions_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplateVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..11cfbcb1e8d1 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplateVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,33 @@ +{ + "title": "ConfigTemplateVersions_Get_MaximumSet", + "operationId": "ConfigTemplateVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname", + "configTemplateVersionName": "1.0.0" + }, + "responses": { + "200": { + "body": { + "properties": { + "configurations": "rgricnhvcbqykc", + "provisioningState": "Succeeded" + }, + "eTag": "uszrinakbbhtbdmqfg", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ylnjncs", + "type": "de", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplateVersions_ListByConfigTemplate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplateVersions_ListByConfigTemplate_MaximumSet_Gen.json new file mode 100644 index 000000000000..4612e2fd03e5 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplateVersions_ListByConfigTemplate_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "ConfigTemplateVersions_ListByConfigTemplate_MaximumSet", + "operationId": "ConfigTemplateVersions_ListByConfigTemplate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "configurations": "rgricnhvcbqykc", + "provisioningState": "Succeeded" + }, + "eTag": "uszrinakbbhtbdmqfg", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ylnjncs", + "type": "de", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/aavpfl" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..e00bc2ea58a8 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,74 @@ +{ + "title": "ConfigTemplates_CreateOrUpdate_MaximumSet", + "operationId": "ConfigTemplates_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname", + "resource": { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg" + }, + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_CreateVersion_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_CreateVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..11dccf718aa6 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_CreateVersion_MaximumSet_Gen.json @@ -0,0 +1,46 @@ +{ + "title": "ConfigTemplates_CreateVersion_MaximumSet", + "operationId": "ConfigTemplates_CreateVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname", + "body": { + "updateType": "Major", + "version": "1.0.0", + "configTemplateVersion": { + "properties": { + "configurations": "rgricnhvcbqykc" + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "configurations": "rgricnhvcbqykc", + "provisioningState": "Succeeded" + }, + "eTag": "uszrinakbbhtbdmqfg", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ylnjncs", + "type": "de", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..f8a86ab13198 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_Delete_MaximumSet_Gen.json @@ -0,0 +1,18 @@ +{ + "title": "ConfigTemplates_Delete_MaximumSet", + "operationId": "ConfigTemplates_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..48b7323de26d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_Get_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "ConfigTemplates_Get_MaximumSet", + "operationId": "ConfigTemplates_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..848b62ede711 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,41 @@ +{ + "title": "ConfigTemplates_ListByResourceGroup_MaximumSet", + "operationId": "ConfigTemplates_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_ListBySubscription_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..6073cebba57b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,40 @@ +{ + "title": "ConfigTemplates_ListBySubscription_MaximumSet", + "operationId": "ConfigTemplates_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_RemoveVersion_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_RemoveVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..b5664a71c60a --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_RemoveVersion_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "ConfigTemplates_RemoveVersion_MaximumSet", + "operationId": "ConfigTemplates_RemoveVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname", + "body": { + "version": "ghtvdzgmzncaifrnuumg" + } + }, + "responses": { + "200": { + "body": { + "status": "fymylelaohqtwdoqw" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..296ef6c5376b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/ConfigTemplates_Update_MaximumSet_Gen.json @@ -0,0 +1,45 @@ +{ + "title": "ConfigTemplates_Update_MaximumSet", + "operationId": "ConfigTemplates_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "configTemplateName": "testname", + "properties": { + "properties": { + "description": "cavjiqnrbzsvedicrixhwnfj" + }, + "tags": { + "key7701": "wrsv" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "ccdyggozwmhyvemlcwlsnhijwg", + "latestVersion": "pgyyzmatjjmfpoywcmvxmnykjsjpnq", + "provisioningState": "Succeeded" + }, + "eTag": "ghzlgsxfjhb", + "tags": { + "key6936": "vnqujuvnbxonbsgb" + }, + "location": "egqjo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fmndkjemwjt", + "type": "zvdarbqyvrwntxcexesmeqipla", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..8465247b5bd9 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,106 @@ +{ + "title": "Contexts_CreateOrUpdate_MaximumSet", + "operationId": "Contexts_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "resource": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ] + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..177f27aa802b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_Delete_MaximumSet_Gen.json @@ -0,0 +1,18 @@ +{ + "title": "Contexts_Delete_MaximumSet", + "operationId": "Contexts_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..2f01c868038d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_Get_MaximumSet_Gen.json @@ -0,0 +1,47 @@ +{ + "title": "Contexts_Get_MaximumSet", + "operationId": "Contexts_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..5d95eb6999e5 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,51 @@ +{ + "title": "Contexts_ListByResourceGroup_MaximumSet", + "operationId": "Contexts_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/apcxwc" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_ListBySubscription_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..8b8974ef8df4 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,50 @@ +{ + "title": "Contexts_ListBySubscription_MaximumSet", + "operationId": "Contexts_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/apcxwc" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..a92394d264fa --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Contexts_Update_MaximumSet_Gen.json @@ -0,0 +1,72 @@ +{ + "title": "Contexts_Update_MaximumSet", + "operationId": "Contexts_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "properties": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ] + }, + "tags": { + "key9545": "dhxykbzgliyqxxizttbjhuruhhv" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "capabilities": [ + { + "name": "tpylinjcmlnycfpofpxjtqmt", + "description": "banbenutsngwytoqh", + "state": "active" + } + ], + "hierarchies": [ + { + "name": "upqe", + "description": "vg" + } + ], + "provisioningState": "Succeeded" + }, + "tags": { + "key3046": "clcnhzwypk" + }, + "location": "pkquwbplcp", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "dtpqgxwo", + "type": "odtmcknffvktfmdhxzhjfrvupezs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..75d96f6a4f9b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,80 @@ +{ + "title": "Diagnostics_CreateOrUpdate_MaximumSet", + "operationId": "Diagnostics_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "diagnosticName": "testname", + "resource": { + "properties": {}, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..8ba92707617f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_Delete_MaximumSet_Gen.json @@ -0,0 +1,18 @@ +{ + "title": "Diagnostics_Delete_MaximumSet", + "operationId": "Diagnostics_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "diagnosticName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..b138e1a3d1e9 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_Get_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "Diagnostics_Get_MaximumSet", + "operationId": "Diagnostics_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "diagnosticName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..13e320cbaf1f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,43 @@ +{ + "title": "Diagnostics_ListByResourceGroup_MaximumSet", + "operationId": "Diagnostics_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_ListBySubscription_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..5a01e22bf808 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,42 @@ +{ + "title": "Diagnostics_ListBySubscription_MaximumSet", + "operationId": "Diagnostics_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..b2d1bdfd9f69 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Diagnostics_Update_MaximumSet_Gen.json @@ -0,0 +1,50 @@ +{ + "title": "Diagnostics_Update_MaximumSet", + "operationId": "Diagnostics_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "diagnosticName": "testname", + "properties": { + "properties": {}, + "tags": { + "key1922": "efraipifhmdfekwgunngrgvsc" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "oeib", + "tags": { + "key4304": "mdrwpsdrcicagvximokxrrp" + }, + "location": "ouwfvnokjvivmjzqpupwrbsmls", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "drohk", + "type": "kghs", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..0970d8a0fd1e --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,62 @@ +{ + "title": "DynamicSchemaVersions_CreateOrUpdate_MaximumSet", + "operationId": "DynamicSchemaVersions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "dynamicSchemaVersionName": "1.0.0", + "resource": { + "properties": { + "value": "uiaqdwsi" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "hryyeranjqvxwelxbtkmsxwbi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fnjgcutmsg", + "type": "gjrtzdrnjrng", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "hryyeranjqvxwelxbtkmsxwbi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fnjgcutmsg", + "type": "gjrtzdrnjrng", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..2557aa53ebb4 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "DynamicSchemaVersions_Delete_MaximumSet", + "operationId": "DynamicSchemaVersions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "dynamicSchemaVersionName": "1.0.0" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..6449082ea835 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "DynamicSchemaVersions_Get_MaximumSet", + "operationId": "DynamicSchemaVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "dynamicSchemaVersionName": "1.0.0" + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "hryyeranjqvxwelxbtkmsxwbi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fnjgcutmsg", + "type": "gjrtzdrnjrng", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_ListByDynamicSchema_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_ListByDynamicSchema_MaximumSet_Gen.json new file mode 100644 index 000000000000..bb26a56fad5a --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_ListByDynamicSchema_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "DynamicSchemaVersions_ListByDynamicSchema_MaximumSet", + "operationId": "DynamicSchemaVersions_ListByDynamicSchema", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "hryyeranjqvxwelxbtkmsxwbi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fnjgcutmsg", + "type": "gjrtzdrnjrng", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..a70857b9a3ba --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemaVersions_Update_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "DynamicSchemaVersions_Update_MaximumSet", + "operationId": "DynamicSchemaVersions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "dynamicSchemaVersionName": "1.0.0", + "properties": { + "properties": { + "value": "muezi" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "hryyeranjqvxwelxbtkmsxwbi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "fnjgcutmsg", + "type": "gjrtzdrnjrng", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..6249bbdf674f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,64 @@ +{ + "title": "DynamicSchemas_CreateOrUpdate_MaximumSet", + "operationId": "DynamicSchemas_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "resource": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application", + "provisioningState": "Succeeded" + }, + "eTag": "grifedynsnsmmqmgen", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "efclhieak", + "type": "mjfgfadxkaxjgcbpukicsvmjl", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application", + "provisioningState": "Succeeded" + }, + "eTag": "grifedynsnsmmqmgen", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "efclhieak", + "type": "mjfgfadxkaxjgcbpukicsvmjl", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..d072c25a6933 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "DynamicSchemas_Delete_MaximumSet", + "operationId": "DynamicSchemas_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..bd5570ab4561 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "DynamicSchemas_Get_MaximumSet", + "operationId": "DynamicSchemas_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application", + "provisioningState": "Succeeded" + }, + "eTag": "grifedynsnsmmqmgen", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "efclhieak", + "type": "mjfgfadxkaxjgcbpukicsvmjl", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_ListBySchema_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_ListBySchema_MaximumSet_Gen.json new file mode 100644 index 000000000000..fedd1f746654 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_ListBySchema_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "DynamicSchemas_ListBySchema_MaximumSet", + "operationId": "DynamicSchemas_ListBySchema", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application", + "provisioningState": "Succeeded" + }, + "eTag": "grifedynsnsmmqmgen", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "efclhieak", + "type": "mjfgfadxkaxjgcbpukicsvmjl", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..8ca8c3a87e0b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/DynamicSchemas_Update_MaximumSet_Gen.json @@ -0,0 +1,40 @@ +{ + "title": "DynamicSchemas_Update_MaximumSet", + "operationId": "DynamicSchemas_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "dynamicSchemaName": "testname", + "properties": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "configurationType": "Shared", + "configurationModel": "Application", + "provisioningState": "Succeeded" + }, + "eTag": "grifedynsnsmmqmgen", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "efclhieak", + "type": "mjfgfadxkaxjgcbpukicsvmjl", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..8e175087300b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,129 @@ +{ + "title": "Executions_CreateOrUpdate_MaximumSet - generated by [MaximumSet] rule", + "operationId": "Executions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "EE6D9590-0D52-4B1C-935C-FE49DBF838EB", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "abcde", + "workflowName": "abcde", + "versionName": "abcde", + "executionName": "abcde", + "resource": { + "properties": { + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "wfymzartwvvqrgrmdwyhfaftszoc", + "stage": "gsostfpgjcsoeky", + "nextstage": "wjxvqbrocjxzhzfgmgbzt", + "errorMessage": "xsvwgovyatvlacmp", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.922Z", + "statusMessage": "ebhukpnhnbu" + }, + "workflowVersionId": "souenlqwltljsojdcbpc" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "wfymzartwvvqrgrmdwyhfaftszoc", + "stage": "gsostfpgjcsoeky", + "nextstage": "wjxvqbrocjxzhzfgmgbzt", + "errorMessage": "xsvwgovyatvlacmp", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.922Z", + "statusMessage": "ebhukpnhnbu" + }, + "workflowVersionId": "souenlqwltljsojdcbpc", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + }, + "eTag": "rybzaakessjpkwsprpclpdp", + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myresourceGroupName/providers/Microsoft.Edge/workflows/wfName/versions/1.0.0/executions/executionName", + "name": "pljfijtnrx", + "type": "ngvrxwzxtpqawwvhf", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "wfymzartwvvqrgrmdwyhfaftszoc", + "stage": "gsostfpgjcsoeky", + "nextstage": "wjxvqbrocjxzhzfgmgbzt", + "errorMessage": "xsvwgovyatvlacmp", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.922Z", + "statusMessage": "ebhukpnhnbu" + }, + "workflowVersionId": "souenlqwltljsojdcbpc", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + }, + "eTag": "rybzaakessjpkwsprpclpdp", + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myresourceGroupName/providers/Microsoft.Edge/workflows/wfName/versions/1.0.0/executions/executionName", + "name": "pljfijtnrx", + "type": "ngvrxwzxtpqawwvhf", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..5875c945a185 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_Delete_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Executions_Delete_MaximumSet - generated by [MaximumSet] rule", + "operationId": "Executions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "EE6D9590-0D52-4B1C-935C-FE49DBF838EB", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "abcde", + "workflowName": "abcde", + "versionName": "abcde", + "executionName": "abcde" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..c3842e8e1c8f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_Get_MaximumSet_Gen.json @@ -0,0 +1,57 @@ +{ + "title": "Executions_Get_MaximumSet - generated by [MaximumSet] rule", + "operationId": "Executions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "EE6D9590-0D52-4B1C-935C-FE49DBF838EB", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "abcde", + "workflowName": "abcde", + "versionName": "abcde", + "executionName": "abcde" + }, + "responses": { + "200": { + "body": { + "properties": { + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "wfymzartwvvqrgrmdwyhfaftszoc", + "stage": "gsostfpgjcsoeky", + "nextstage": "wjxvqbrocjxzhzfgmgbzt", + "errorMessage": "xsvwgovyatvlacmp", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.922Z", + "statusMessage": "ebhukpnhnbu" + }, + "workflowVersionId": "souenlqwltljsojdcbpc", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + }, + "eTag": "rybzaakessjpkwsprpclpdp", + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myresourceGroupName/providers/Microsoft.Edge/workflows/wfName/versions/1.0.0/executions/executionName", + "name": "pljfijtnrx", + "type": "ngvrxwzxtpqawwvhf", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_ListByWorkflowVersion_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_ListByWorkflowVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..1f65e5512709 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_ListByWorkflowVersion_MaximumSet_Gen.json @@ -0,0 +1,61 @@ +{ + "title": "Executions_ListByWorkflowVersion_MaximumSet - generated by [MaximumSet] rule", + "operationId": "Executions_ListByWorkflowVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "EE6D9590-0D52-4B1C-935C-FE49DBF838EB", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "abcde", + "workflowName": "abcde", + "versionName": "abcde" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "workflowVersionId": "souenlqwltljsojdcbpc", + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "fkmtwmdfdhbfkbjlkjsvyreoqtxpr", + "stage": "hk", + "nextstage": "lvatqeczrfvbl", + "errorMessage": "nyxzr", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.919Z", + "statusMessage": "dfmqxqonlrmrrmqkneij" + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + }, + "eTag": "rybzaakessjpkwsprpclpdp", + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myresourceGroupName/providers/Microsoft.Edge/workflows/wfName/versions/1.0.0/executions/executionName", + "name": "pljfijtnrx", + "type": "ngvrxwzxtpqawwvhf", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..744bbed6d7b7 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Executions_Update_MaximumSet_Gen.json @@ -0,0 +1,68 @@ +{ + "title": "Executions_Update_MaximumSet - generated by [MaximumSet] rule", + "operationId": "Executions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "FFA229AF-C1A3-4CB6-9E5D-62C25CFBE4D0", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "abcde", + "workflowName": "abcde", + "versionName": "abcde", + "executionName": "abcde", + "properties": { + "properties": { + "specification": {}, + "workflowVersionId": "xjsxzbfltzvbuvn" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "specification": {}, + "status": { + "status": 999, + "stageHistory": [ + { + "status": 999, + "statusMessage": "wfymzartwvvqrgrmdwyhfaftszoc", + "stage": "gsostfpgjcsoeky", + "nextstage": "wjxvqbrocjxzhzfgmgbzt", + "errorMessage": "xsvwgovyatvlacmp", + "isActive": "active", + "inputs": {}, + "outputs": {} + } + ], + "updateTime": "2025-02-17T13:55:20.922Z", + "statusMessage": "ebhukpnhnbu" + }, + "workflowVersionId": "souenlqwltljsojdcbpc", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "ugf", + "type": "EdgeZone" + }, + "eTag": "rybzaakessjpkwsprpclpdp", + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myresourceGroupName/providers/Microsoft.Edge/workflows/wfName/versions/1.0.0/executions/executionName", + "name": "pljfijtnrx", + "type": "ngvrxwzxtpqawwvhf", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/InstanceHistories_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/InstanceHistories_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..8370fb9ab05b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/InstanceHistories_Get_MaximumSet_Gen.json @@ -0,0 +1,74 @@ +{ + "title": "InstanceHistories_Get_MaximumSet", + "operationId": "InstanceHistories_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname", + "instanceHistoryName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionVersion": { + "solutionVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + }, + "target": { + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "targetSpecification": {}, + "solutionScope": "vcuotruyuqpgjuvtudku" + }, + "solutionScope": "cadwryjdr", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "cmyivusrktmfcxhdqhgawvvjipo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "feefbdqdgxrz", + "type": "lynekjmmncsq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/InstanceHistories_ListByInstance_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/InstanceHistories_ListByInstance_MaximumSet_Gen.json new file mode 100644 index 000000000000..26c6bcdc2b7e --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/InstanceHistories_ListByInstance_MaximumSet_Gen.json @@ -0,0 +1,78 @@ +{ + "title": "InstanceHistories_ListByInstance_MaximumSet", + "operationId": "InstanceHistories_ListByInstance", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "solutionVersion": { + "solutionVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + }, + "target": { + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "targetSpecification": {}, + "solutionScope": "vcuotruyuqpgjuvtudku" + }, + "solutionScope": "cadwryjdr", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "cmyivusrktmfcxhdqhgawvvjipo", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "feefbdqdgxrz", + "type": "lynekjmmncsq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..8eacd0b73349 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,160 @@ +{ + "title": "Instances_CreateOrUpdate_MaximumSet", + "operationId": "Instances_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname", + "resource": { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + } + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "deploymentTimestampEpoch": 3, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "pwgsy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "eklhpbpitmqrsfujmjq", + "type": "nmety", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "deploymentTimestampEpoch": 3, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "pwgsy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "eklhpbpitmqrsfujmjq", + "type": "nmety", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..2289be03aaea --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "Instances_Delete_MaximumSet", + "operationId": "Instances_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..b6e991d22087 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_Get_MaximumSet_Gen.json @@ -0,0 +1,67 @@ +{ + "title": "Instances_Get_MaximumSet", + "operationId": "Instances_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "deploymentTimestampEpoch": 3, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "pwgsy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "eklhpbpitmqrsfujmjq", + "type": "nmety", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_ListBySolution_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_ListBySolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..8ebed77d170b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_ListBySolution_MaximumSet_Gen.json @@ -0,0 +1,71 @@ +{ + "title": "Instances_ListBySolution_MaximumSet", + "operationId": "Instances_ListBySolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "szucgzdbydcowvhprhx" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "deploymentTimestampEpoch": 3, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "pwgsy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "eklhpbpitmqrsfujmjq", + "type": "nmety", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/apyjdyb" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..33504019670c --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Instances_Update_MaximumSet_Gen.json @@ -0,0 +1,84 @@ +{ + "title": "Instances_Update_MaximumSet", + "operationId": "Instances_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "instanceName": "testname", + "properties": { + "properties": { + "solutionVersionId": "vrpzlamkvanqibtjarpxit", + "targetId": "tqkdvc", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "cmzlrjwnlshnkgv" + }, + "solutionScope": "testname" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionVersionId": "acpddbkfclsgxg", + "targetId": "eguutiftuxrsavvckjrv", + "activeState": "active", + "reconciliationPolicy": { + "state": "inactive", + "interval": "cmzlrjwnlshnkgv" + }, + "solutionScope": "testname", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "deploymentTimestampEpoch": 3, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "pwgsy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "eklhpbpitmqrsfujmjq", + "type": "nmety", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Jobs_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Jobs_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..116e38ce0c2d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Jobs_Get_MaximumSet_Gen.json @@ -0,0 +1,105 @@ +{ + "title": "Jobs_Get_MaximumSet", + "operationId": "Jobs_Get", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "gt", + "jobName": "jobsName" + }, + "responses": { + "200": { + "body": { + "properties": { + "jobType": "deploy", + "startTime": "2025-05-28T15:10:05.470Z", + "endTime": "2025-05-28T15:10:05.470Z", + "status": "InProgress", + "jobParameter": { + "jobType": "JobParameterBase" + }, + "correlationId": "fsebqmeouxfucluqkaoyagtp", + "steps": [ + { + "name": "duezohitlpz", + "status": "InProgress", + "startTime": "2025-05-28T15:10:05.470Z", + "endTime": "2025-05-28T15:10:05.470Z", + "message": "lkodiekkbtqwuixxryezipwvvavfu", + "statistics": { + "totalCount": 18, + "successCount": 25, + "failedCount": 25, + "statisticsType": "deploy" + }, + "steps": [], + "errorDetails": { + "code": "onimqg", + "message": "mzrbqqcxcbajkv", + "target": "cemnupikyh", + "details": [ + { + "code": "rbclcfwozglwnucds", + "message": "zxbxf", + "target": "rt", + "details": [], + "additionalInfo": [ + { + "type": "nuqfqjakzxpxdthqvxo", + "info": {} + } + ] + } + ], + "additionalInfo": [ + { + "type": "pttb", + "info": {} + } + ] + } + } + ], + "triggeredBy": "lquvgncryxca", + "provisioningState": "Succeeded", + "errorDetails": { + "code": "onimqg", + "message": "mzrbqqcxcbajkv", + "target": "cemnupikyh", + "details": [ + { + "code": "rbclcfwozglwnucds", + "message": "zxbxf", + "target": "rt", + "details": [], + "additionalInfo": [ + { + "type": "nuqfqjakzxpxdthqvxo", + "info": {} + } + ] + } + ], + "additionalInfo": [ + { + "type": "pttb", + "info": {} + } + ] + } + }, + "eTag": "edzixghgizgqmjccbgpvcewnd", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lxwubwlp", + "type": "enekwruxhkecxg", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Jobs_ListByTarget_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Jobs_ListByTarget_MaximumSet_Gen.json new file mode 100644 index 000000000000..0584446fe2be --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Jobs_ListByTarget_MaximumSet_Gen.json @@ -0,0 +1,109 @@ +{ + "title": "Jobs_ListByTarget_MaximumSet", + "operationId": "Jobs_ListByTarget", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "gt" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "jobType": "deploy", + "startTime": "2025-05-28T15:10:05.470Z", + "endTime": "2025-05-28T15:10:05.470Z", + "status": "InProgress", + "jobParameter": { + "jobType": "JobParameterBase" + }, + "correlationId": "fsebqmeouxfucluqkaoyagtp", + "steps": [ + { + "name": "duezohitlpz", + "status": "InProgress", + "startTime": "2025-05-28T15:10:05.470Z", + "endTime": "2025-05-28T15:10:05.470Z", + "message": "lkodiekkbtqwuixxryezipwvvavfu", + "statistics": { + "totalCount": 18, + "successCount": 25, + "failedCount": 25, + "statisticsType": "deploy" + }, + "steps": [], + "errorDetails": { + "code": "onimqg", + "message": "mzrbqqcxcbajkv", + "target": "cemnupikyh", + "details": [ + { + "code": "rbclcfwozglwnucds", + "message": "zxbxf", + "target": "rt", + "details": [], + "additionalInfo": [ + { + "type": "nuqfqjakzxpxdthqvxo", + "info": {} + } + ] + } + ], + "additionalInfo": [ + { + "type": "pttb", + "info": {} + } + ] + } + } + ], + "triggeredBy": "lquvgncryxca", + "provisioningState": "Succeeded", + "errorDetails": { + "code": "onimqg", + "message": "mzrbqqcxcbajkv", + "target": "cemnupikyh", + "details": [ + { + "code": "rbclcfwozglwnucds", + "message": "zxbxf", + "target": "rt", + "details": [], + "additionalInfo": [ + { + "type": "nuqfqjakzxpxdthqvxo", + "info": {} + } + ] + } + ], + "additionalInfo": [ + { + "type": "pttb", + "info": {} + } + ] + } + }, + "eTag": "edzixghgizgqmjccbgpvcewnd", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lxwubwlp", + "type": "enekwruxhkecxg", + "systemData": { + "createdBy": "favedmahrbemfqzeuggazxzrvwugxw", + "createdByType": "User", + "createdAt": "2025-01-24T11:04:49.597Z", + "lastModifiedBy": "lywqfnyqrutroctdfbxzytel", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-01-24T11:04:49.597Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaReferences_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaReferences_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..407ab0ec013d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaReferences_Get_MaximumSet_Gen.json @@ -0,0 +1,31 @@ +{ + "title": "SchemaReferences_Get_MaximumSet", + "operationId": "SchemaReferences_Get", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "jdvtghygpz", + "schemaReferenceName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "schemaId": "vxgxfkfws", + "provisioningState": "Succeeded" + }, + "eTag": "rpblituadyvurec", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "brijvbbrrzgtttybezvtrjzu", + "type": "jbdfmlyogaxxys", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaReferences_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaReferences_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..a058035c418d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaReferences_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,35 @@ +{ + "title": "SchemaReferences_ListByResourceGroup_MaximumSet", + "operationId": "SchemaReferences_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "jdvtghygpz" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "schemaId": "vxgxfkfws", + "provisioningState": "Succeeded" + }, + "eTag": "rpblituadyvurec", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "brijvbbrrzgtttybezvtrjzu", + "type": "jbdfmlyogaxxys", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..975f776c4756 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,61 @@ +{ + "title": "SchemaVersions_CreateOrUpdate_MaximumSet", + "operationId": "SchemaVersions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "schemaVersionName": "1.0.0", + "resource": { + "properties": { + "value": "uiaqdwsi" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..6494baed3d54 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "SchemaVersions_Delete_MaximumSet", + "operationId": "SchemaVersions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "schemaVersionName": "1.0.0" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..4559d8917464 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,33 @@ +{ + "title": "SchemaVersions_Get_MaximumSet", + "operationId": "SchemaVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "schemaVersionName": "1.0.0" + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_ListBySchema_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_ListBySchema_MaximumSet_Gen.json new file mode 100644 index 000000000000..402a14067b0f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_ListBySchema_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "SchemaVersions_ListBySchema_MaximumSet", + "operationId": "SchemaVersions_ListBySchema", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..9bf053c01ecf --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SchemaVersions_Update_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "SchemaVersions_Update_MaximumSet", + "operationId": "SchemaVersions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "schemaVersionName": "1.0.0", + "properties": { + "properties": { + "value": "muezi" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..6e0e222218de --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,70 @@ +{ + "title": "Schemas_CreateOrUpdate_MaximumSet", + "operationId": "Schemas_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "resource": { + "properties": {}, + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_CreateVersion_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_CreateVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..f5ba66d4d640 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_CreateVersion_MaximumSet_Gen.json @@ -0,0 +1,46 @@ +{ + "title": "Schemas_CreateVersion_MaximumSet", + "operationId": "Schemas_CreateVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "body": { + "updateType": "Major", + "version": "1.0.0", + "schemaVersion": { + "properties": { + "value": "uiaqdwsi" + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "value": "uiaqdwsi", + "provisioningState": "Succeeded" + }, + "eTag": "oenhsnuovivoekswlmjfgilwm", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "elshkjfnkjyyrexkhe", + "type": "lqqtkbsryevmwkcrg", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..571c6e7f65f1 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_Delete_MaximumSet_Gen.json @@ -0,0 +1,18 @@ +{ + "title": "Schemas_Delete_MaximumSet", + "operationId": "Schemas_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..4704d89c085d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_Get_MaximumSet_Gen.json @@ -0,0 +1,36 @@ +{ + "title": "Schemas_Get_MaximumSet", + "operationId": "Schemas_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..b5daf4b3daa6 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,40 @@ +{ + "title": "Schemas_ListByResourceGroup_MaximumSet", + "operationId": "Schemas_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_ListBySubscription_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..fb106ab00685 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "Schemas_ListBySubscription_MaximumSet", + "operationId": "Schemas_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_RemoveVersion_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_RemoveVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..b66a89db2fea --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_RemoveVersion_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "Schemas_RemoveVersion_MaximumSet", + "operationId": "Schemas_RemoveVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "body": { + "version": "ghtvdzgmzncaifrnuumg" + } + }, + "responses": { + "200": { + "body": { + "status": "fymylelaohqtwdoqw" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..b7e0658cfbc9 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Schemas_Update_MaximumSet_Gen.json @@ -0,0 +1,42 @@ +{ + "title": "Schemas_Update_MaximumSet", + "operationId": "Schemas_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "schemaName": "testname", + "properties": { + "properties": {}, + "tags": { + "key6760": "lknwkzihsmzbzkezkartwgsv" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "u", + "provisioningState": "Succeeded" + }, + "eTag": "wimgijos", + "tags": { + "key7017": "rdynaxxagwjzubehiz" + }, + "location": "alvi", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "mazwkeendvzbtbfkffuj", + "type": "uupldp", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..2fa9411ed6ca --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,59 @@ +{ + "title": "SiteReferences_CreateOrUpdate_MaximumSet", + "operationId": "SiteReferences_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "siteReferenceName": "testname", + "resource": { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "egcgxnnunldslhvcg", + "type": "gwoqfrkh", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "egcgxnnunldslhvcg", + "type": "gwoqfrkh", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..7fd576bf03e4 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "SiteReferences_Delete_MaximumSet", + "operationId": "SiteReferences_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "siteReferenceName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..380284476420 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_Get_MaximumSet_Gen.json @@ -0,0 +1,32 @@ +{ + "title": "SiteReferences_Get_MaximumSet", + "operationId": "SiteReferences_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "siteReferenceName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "egcgxnnunldslhvcg", + "type": "gwoqfrkh", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_ListByContext_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_ListByContext_MaximumSet_Gen.json new file mode 100644 index 000000000000..58d87108f61d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_ListByContext_MaximumSet_Gen.json @@ -0,0 +1,36 @@ +{ + "title": "SiteReferences_ListByContext_MaximumSet", + "operationId": "SiteReferences_ListByContext", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "egcgxnnunldslhvcg", + "type": "gwoqfrkh", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/aojcswnb" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..bdd259736c11 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SiteReferences_Update_MaximumSet_Gen.json @@ -0,0 +1,42 @@ +{ + "title": "SiteReferences_Update_MaximumSet", + "operationId": "SiteReferences_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "siteReferenceName": "testname", + "properties": { + "properties": { + "siteId": "nwiuyaro" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "siteId": "xxjpxdcaumewwgpbwzkcrgrcw", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "egcgxnnunldslhvcg", + "type": "gwoqfrkh", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_BulkDeploySolution_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_BulkDeploySolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..302edb52a872 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_BulkDeploySolution_MaximumSet_Gen.json @@ -0,0 +1,25 @@ +{ + "title": "SolutionTemplateVersions_BulkDeploySolution_MaximumSet", + "operationId": "SolutionTemplateVersions_BulkDeploySolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "solutionTemplateVersionName": "1.0.0", + "body": { + "targets": [ + { + "solutionVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Edge/Targets/target/Solutions/solution/Versions/solution-1.0.0.1" + } + ] + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_BulkPublishSolution_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_BulkPublishSolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..9b3ba68131ab --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_BulkPublishSolution_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "SolutionTemplateVersions_BulkPublishSolution_MaximumSet", + "operationId": "SolutionTemplateVersions_BulkPublishSolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "solutionTemplateVersionName": "1.0.0", + "body": { + "targets": [ + { + "targetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Edge/Targets/target", + "solutionInstanceName": "test-instance" + } + ], + "solutionInstanceName": "test-instance", + "solutionDependencies": [ + { + "solutionVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Edge/Targets/target/Solutions/solution/Versions/solution-1.0.0.1", + "solutionTemplateId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Edge/SolutionTemplates/st", + "solutionTemplateVersion": "1.0.0", + "solutionInstanceName": "test-instance", + "targetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Edge/Targets/target", + "dependencies": [] + } + ] + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..39ca663dd2e0 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,35 @@ +{ + "title": "SolutionTemplateVersions_Get_MaximumSet", + "operationId": "SolutionTemplateVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "solutionTemplateVersionName": "1.0.0" + }, + "responses": { + "200": { + "body": { + "properties": { + "configurations": "ofqcsavwmeuwmvtjnqpoybtjvkmrlh", + "specification": {}, + "orchestratorType": "TO", + "provisioningState": "Succeeded" + }, + "eTag": "diqzzjtqycbtjzinckqwxowzdy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "haebwdswymjzjfwbfipf", + "type": "swo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_ListBySolutionTemplate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_ListBySolutionTemplate_MaximumSet_Gen.json new file mode 100644 index 000000000000..dc0b72680d48 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplateVersions_ListBySolutionTemplate_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "SolutionTemplateVersions_ListBySolutionTemplate_MaximumSet", + "operationId": "SolutionTemplateVersions_ListBySolutionTemplate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "configurations": "ofqcsavwmeuwmvtjnqpoybtjvkmrlh", + "specification": {}, + "orchestratorType": "TO", + "provisioningState": "Succeeded" + }, + "eTag": "diqzzjtqycbtjzinckqwxowzdy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "haebwdswymjzjfwbfipf", + "type": "swo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..d6baf304b629 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,89 @@ +{ + "title": "SolutionTemplates_CreateOrUpdate_MaximumSet", + "operationId": "SolutionTemplates_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "resource": { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "state": "active", + "enableExternalValidation": true + }, + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_CreateVersion_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_CreateVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..6979a2ecdf43 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_CreateVersion_MaximumSet_Gen.json @@ -0,0 +1,50 @@ +{ + "title": "SolutionTemplates_CreateVersion_MaximumSet", + "operationId": "SolutionTemplates_CreateVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "body": { + "updateType": "Major", + "version": "1.0.0", + "solutionTemplateVersion": { + "properties": { + "configurations": "ofqcsavwmeuwmvtjnqpoybtjvkmrlh", + "specification": {}, + "orchestratorType": "TO" + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "configurations": "ofqcsavwmeuwmvtjnqpoybtjvkmrlh", + "specification": {}, + "orchestratorType": "TO", + "provisioningState": "Succeeded" + }, + "eTag": "diqzzjtqycbtjzinckqwxowzdy", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "haebwdswymjzjfwbfipf", + "type": "swo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..308d667596a3 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_Delete_MaximumSet_Gen.json @@ -0,0 +1,18 @@ +{ + "title": "SolutionTemplates_Delete_MaximumSet", + "operationId": "SolutionTemplates_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..4e75c1ad4d48 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_Get_MaximumSet_Gen.json @@ -0,0 +1,42 @@ +{ + "title": "SolutionTemplates_Get_MaximumSet", + "operationId": "SolutionTemplates_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..1e63d1b7cd54 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,46 @@ +{ + "title": "SolutionTemplates_ListByResourceGroup_MaximumSet", + "operationId": "SolutionTemplates_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/ancyla" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_ListBySubscription_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..95de4e36244d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,45 @@ +{ + "title": "SolutionTemplates_ListBySubscription_MaximumSet", + "operationId": "SolutionTemplates_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "dfoyxbbknrhvlunhmuyyt" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/ancyla" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_RemoveVersion_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_RemoveVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..bcc2d227a549 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_RemoveVersion_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "SolutionTemplates_RemoveVersion_MaximumSet", + "operationId": "SolutionTemplates_RemoveVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "body": { + "version": "ghtvdzgmzncaifrnuumg" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..1a2f70de5f32 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionTemplates_Update_MaximumSet_Gen.json @@ -0,0 +1,55 @@ +{ + "title": "SolutionTemplates_Update_MaximumSet", + "operationId": "SolutionTemplates_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "solutionTemplateName": "testname", + "properties": { + "properties": { + "description": "onqlteg", + "capabilities": [ + "relsv" + ], + "state": "active", + "enableExternalValidation": true + }, + "tags": { + "key8772": "vbdujmqklnwiepis" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "psrftehgzngcdlccivhjmwsmiz", + "capabilities": [ + "relsv" + ], + "latestVersion": "vk", + "state": "active", + "enableExternalValidation": true, + "provisioningState": "Succeeded" + }, + "eTag": "zotshwhsdrfk", + "tags": { + "key5091": "dov" + }, + "location": "zheaaqvadewftnctxzpinrgeproqs", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hhmslfrwpuvrjr", + "type": "qxqlylfzyiykcdsbwuanmgrqwlfgjo", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..83528448214d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,172 @@ +{ + "title": "SolutionVersions_CreateOrUpdate_MaximumSet", + "operationId": "SolutionVersions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "solutionVersionName": "testname", + "resource": { + "properties": { + "specification": {}, + "state": "InReview", + "errorDetails": {} + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..e1ff066d7467 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "SolutionVersions_Delete_MaximumSet", + "operationId": "SolutionVersions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "solutionVersionName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..cf144382abf8 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,86 @@ +{ + "title": "SolutionVersions_Get_MaximumSet", + "operationId": "SolutionVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "solutionVersionName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_ListBySolution_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_ListBySolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..a4e1d455b84f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_ListBySolution_MaximumSet_Gen.json @@ -0,0 +1,90 @@ +{ + "title": "SolutionVersions_ListBySolution_MaximumSet", + "operationId": "SolutionVersions_ListBySolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/aidpqswh" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..27bcfa7990c4 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/SolutionVersions_Update_MaximumSet_Gen.json @@ -0,0 +1,96 @@ +{ + "title": "SolutionVersions_Update_MaximumSet", + "operationId": "SolutionVersions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "solutionVersionName": "testname", + "properties": { + "properties": { + "specification": {} + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..ec4e6dbba98d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,85 @@ +{ + "title": "Solutions_CreateOrUpdate_MaximumSet", + "operationId": "Solutions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "resource": { + "properties": {}, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateId": "fnfqvxxdfofpr", + "availableSolutionTemplateVersions": [ + { + "solutionTemplateVersion": "uwlikibcqbawiphxhzmyxshr", + "latestConfigRevision": "gbvzfexxtqfhumfdnfokv", + "isConfigured": true + } + ], + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "zhbbdeijrezsuqxubqbtvllponba", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ysvzlramfranmepecvpmpthbhxh", + "type": "t", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "solutionTemplateId": "fnfqvxxdfofpr", + "availableSolutionTemplateVersions": [ + { + "solutionTemplateVersion": "uwlikibcqbawiphxhzmyxshr", + "latestConfigRevision": "gbvzfexxtqfhumfdnfokv", + "isConfigured": true + } + ], + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "zhbbdeijrezsuqxubqbtvllponba", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ysvzlramfranmepecvpmpthbhxh", + "type": "t", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..b5a279a9fe29 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "Solutions_Delete_MaximumSet", + "operationId": "Solutions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..00f1036b703b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_Get_MaximumSet_Gen.json @@ -0,0 +1,44 @@ +{ + "title": "Solutions_Get_MaximumSet", + "operationId": "Solutions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateId": "fnfqvxxdfofpr", + "availableSolutionTemplateVersions": [ + { + "solutionTemplateVersion": "uwlikibcqbawiphxhzmyxshr", + "latestConfigRevision": "gbvzfexxtqfhumfdnfokv", + "isConfigured": true + } + ], + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "zhbbdeijrezsuqxubqbtvllponba", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ysvzlramfranmepecvpmpthbhxh", + "type": "t", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_ListByTarget_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_ListByTarget_MaximumSet_Gen.json new file mode 100644 index 000000000000..16415b1d301b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_ListByTarget_MaximumSet_Gen.json @@ -0,0 +1,48 @@ +{ + "title": "Solutions_ListByTarget_MaximumSet", + "operationId": "Solutions_ListByTarget", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "solutionTemplateId": "fnfqvxxdfofpr", + "availableSolutionTemplateVersions": [ + { + "solutionTemplateVersion": "uwlikibcqbawiphxhzmyxshr", + "latestConfigRevision": "gbvzfexxtqfhumfdnfokv", + "isConfigured": true + } + ], + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "zhbbdeijrezsuqxubqbtvllponba", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ysvzlramfranmepecvpmpthbhxh", + "type": "t", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..a37f7b87c9bd --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Solutions_Update_MaximumSet_Gen.json @@ -0,0 +1,52 @@ +{ + "title": "Solutions_Update_MaximumSet", + "operationId": "Solutions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "solutionName": "testname", + "properties": { + "properties": {} + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateId": "fnfqvxxdfofpr", + "availableSolutionTemplateVersions": [ + { + "solutionTemplateVersion": "uwlikibcqbawiphxhzmyxshr", + "latestConfigRevision": "gbvzfexxtqfhumfdnfokv", + "isConfigured": true + } + ], + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "zhbbdeijrezsuqxubqbtvllponba", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "ysvzlramfranmepecvpmpthbhxh", + "type": "t", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..213313b341b3 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,174 @@ +{ + "title": "Targets_CreateOrUpdate_MaximumSet", + "operationId": "Targets_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "resource": { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..a076dbd9d1e6 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "Targets_Delete_MaximumSet", + "operationId": "Targets_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "forceDelete": true, + "targetName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..c2a6adecac02 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_Get_MaximumSet_Gen.json @@ -0,0 +1,70 @@ +{ + "title": "Targets_Get_MaximumSet", + "operationId": "Targets_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_InstallSolution_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_InstallSolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..fde1cf5f1b5f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_InstallSolution_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "Targets_InstallSolution_MaximumSet", + "operationId": "Targets_InstallSolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..9fbca2924e7f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,74 @@ +{ + "title": "Targets_ListByResourceGroup_MaximumSet", + "operationId": "Targets_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/aedz" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ListBySubscription_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..a188d8e84b9f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,73 @@ +{ + "title": "Targets_ListBySubscription_MaximumSet", + "operationId": "Targets_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "grjapghdidoao" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/aedz" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_PublishSolutionVersion_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_PublishSolutionVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..968d5ae7f215 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_PublishSolutionVersion_MaximumSet_Gen.json @@ -0,0 +1,74 @@ +{ + "title": "Targets_PublishSolutionVersion_MaximumSet", + "operationId": "Targets_PublishSolutionVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_RemoveRevision_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_RemoveRevision_MaximumSet_Gen.json new file mode 100644 index 000000000000..d37596a08038 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_RemoveRevision_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Targets_RemoveRevision_MaximumSet", + "operationId": "Targets_RemoveRevision", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionTemplateId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "solutionVersion": "tomwmqybqomwkfaeukjneva" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ResolveConfiguration_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ResolveConfiguration_MaximumSet_Gen.json new file mode 100644 index 000000000000..8ff55d239903 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ResolveConfiguration_MaximumSet_Gen.json @@ -0,0 +1,36 @@ +{ + "title": "Targets_ResolveConfiguration_MaximumSet", + "operationId": "Targets_ResolveConfiguration", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionTemplateVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}/{resourceType}/{resourceName}", + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "cydzqntmjlqtksbavjwteru", + "solutionTemplateId": "liqauthxnscodbiwktwfwrrsg", + "solutionTemplateVersion": "gordjasyxxrj", + "solutionInstanceName": "testname", + "targetId": "steadvphxtyhjokqicrtg", + "dependencies": [] + } + ] + } + }, + "responses": { + "200": { + "body": { + "configuration": "vjxrtzgboqltqnkbcq" + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ReviewSolutionVersion_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ReviewSolutionVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..1336301fbab7 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_ReviewSolutionVersion_MaximumSet_Gen.json @@ -0,0 +1,85 @@ +{ + "title": "Targets_ReviewSolutionVersion_MaximumSet", + "operationId": "Targets_ReviewSolutionVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionTemplateVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}/{resourceType}/{resourceName}", + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "cydzqntmjlqtksbavjwteru", + "solutionTemplateId": "liqauthxnscodbiwktwfwrrsg", + "solutionTemplateVersion": "gordjasyxxrj", + "solutionInstanceName": "testname", + "targetId": "steadvphxtyhjokqicrtg", + "dependencies": [] + } + ] + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "cydzqntmjlqtksbavjwteru", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "steadvphxtyhjokqicrtg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_UninstallSolution_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_UninstallSolution_MaximumSet_Gen.json new file mode 100644 index 000000000000..b11a984b358d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_UninstallSolution_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Targets_UninstallSolution_MaximumSet", + "operationId": "Targets_UninstallSolution", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionTemplateId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "solutionInstanceName": "lzihiumrcxbolmkqktvtuqyhg" + } + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_UnstageSolutionVersion_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_UnstageSolutionVersion_MaximumSet_Gen.json new file mode 100644 index 000000000000..4964c2ff8d2d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_UnstageSolutionVersion_MaximumSet_Gen.json @@ -0,0 +1,95 @@ +{ + "title": "Targets_UnstageSolutionVersion_MaximumSet", + "operationId": "Targets_UnstageSolutionVersion", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionVersionId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "currentStage": { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + }, + "stages": [ + { + "displayState": "udsstdsbyojspjuefsvlponjpli", + "stage": "Configuration", + "status": "Pending", + "startTime": "2025-08-07T09:57:18.329Z", + "endTime": "2025-08-07T09:57:18.329Z", + "childStages": [] + } + ], + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "latestActionTrackingUri": "pcphnfuinkwbxgbkf", + "lastestActionTriggeredBy": "mckqisikvpizje", + "actionType": "deploy", + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_UpdateExternalValidationStatus_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_UpdateExternalValidationStatus_MaximumSet_Gen.json new file mode 100644 index 000000000000..dc2be2dfcc72 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_UpdateExternalValidationStatus_MaximumSet_Gen.json @@ -0,0 +1,77 @@ +{ + "title": "Targets_UpdateExternalValidationStatus_MaximumSet", + "operationId": "Targets_UpdateExternalValidationStatus", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "body": { + "solutionVersionId": "shntcsuwlmpehmuqkrbf", + "errorDetails": {}, + "externalValidationId": "ivsjzwy", + "validationStatus": "Valid" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "solutionTemplateVersionId": "ykgyybnfeqxcz", + "revision": 17, + "targetDisplayName": "phndhpa", + "configuration": "qg", + "targetLevelConfiguration": "t", + "specification": {}, + "reviewId": "bcnlj", + "externalValidationId": "yxabw", + "state": "InReview", + "solutionInstanceName": "testname", + "solutionDependencies": [ + { + "solutionVersionId": "jtyhpdivvfbf", + "solutionInstanceName": "testname", + "solutionTemplateVersionId": "zoagjfizf", + "targetId": "qcbujg", + "dependencies": [] + } + ], + "errorDetails": { + "code": "lzmwkzmn", + "message": "zjdfzawocrbkgawgampjjulgesr", + "target": "rncdbnknqkhjwqzkqqit", + "details": [], + "additionalInfo": [ + { + "type": "betjppbcspfewqw", + "info": {} + } + ] + }, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "btoclmueznpoouhnxqlboavqnsztrz", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "lk", + "type": "czkgymlhmhlxxpbgcmhstxwtczthq", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..6498d5fbdb1b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Targets_Update_MaximumSet_Gen.json @@ -0,0 +1,92 @@ +{ + "title": "Targets_Update_MaximumSet", + "operationId": "Targets_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "targetName": "testname", + "properties": { + "properties": { + "description": "yhnhdpznncdvncmnvoeohqjx", + "displayName": "pguujtzjjvixgjitugybrefp", + "targetSpecification": {}, + "capabilities": [ + "dasqhyxfakivfzqb" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "hfyntwxetgsmnucbjvvphtyxu", + "solutionScope": "testname", + "state": "active" + }, + "tags": { + "key8026": "yoosplotwgoquvpox" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "description": "riabrxtvhlmizyhffdpjeyhvw", + "displayName": "qjlbshhqzfmwxvvynibkoi", + "targetSpecification": {}, + "capabilities": [ + "dasqhyxfakivfzqb" + ], + "contextId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "hierarchyLevel": "octqptfirejhjfavlnfqeiikqx", + "status": { + "lastModified": "2025-06-09T10:12:04.224Z", + "deployed": 24, + "expectedRunningJobId": 19, + "runningJobId": 6, + "status": "nnpksn", + "statusDetails": "bslqqnfciczenaltdcmrgg", + "generation": 21, + "targetStatuses": [ + { + "name": "jpbfbxmjvr", + "status": "gsgkxfwtyoaepwa", + "componentStatuses": [ + { + "name": "lxzbkoblvaoubknkblwplf", + "status": "txtthlvducufbblgtctegtgpzkzgyi" + } + ] + } + ] + }, + "solutionScope": "testname", + "state": "active", + "provisioningState": "Succeeded" + }, + "eTag": "dx", + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "tags": { + "key612": "vtqzrk" + }, + "location": "kckloegmwsjgwtcl", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "hcunxaczkbi", + "type": "fcgjpcmjvpoxbnslowdrcrd", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..4b281400bf47 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,143 @@ +{ + "title": "WorkflowVersions_CreateOrUpdate_MaximumSet", + "operationId": "WorkflowVersions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "versionName": "testname", + "resource": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "state": "InReview", + "specification": {} + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "state": "InReview", + "specification": {}, + "revision": 4, + "configuration": "czvrwkzex", + "reviewId": "hcnzmdpszvvtn", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "v", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "rsghgriwbtckmabbcxmqbvshybhw", + "type": "jahxsjfhxhpsobltqfdlfn", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "state": "InReview", + "specification": {}, + "revision": 4, + "configuration": "czvrwkzex", + "reviewId": "hcnzmdpszvvtn", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "v", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "rsghgriwbtckmabbcxmqbvshybhw", + "type": "jahxsjfhxhpsobltqfdlfn", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..76965fa01c06 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "WorkflowVersions_Delete_MaximumSet", + "operationId": "WorkflowVersions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "versionName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..0ba64d10d3f3 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,62 @@ +{ + "title": "WorkflowVersions_Get_MaximumSet", + "operationId": "WorkflowVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "versionName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "state": "InReview", + "specification": {}, + "revision": 4, + "configuration": "czvrwkzex", + "reviewId": "hcnzmdpszvvtn", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "v", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "rsghgriwbtckmabbcxmqbvshybhw", + "type": "jahxsjfhxhpsobltqfdlfn", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_ListByWorkflow_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_ListByWorkflow_MaximumSet_Gen.json new file mode 100644 index 000000000000..dd8349ca393f --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_ListByWorkflow_MaximumSet_Gen.json @@ -0,0 +1,66 @@ +{ + "title": "WorkflowVersions_ListByWorkflow_MaximumSet", + "operationId": "WorkflowVersions_ListByWorkflow", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "revision": 4, + "configuration": "czvrwkzex", + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "reviewId": "hcnzmdpszvvtn", + "state": "InReview", + "specification": {}, + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "v", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "rsghgriwbtckmabbcxmqbvshybhw", + "type": "jahxsjfhxhpsobltqfdlfn", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..7e8c76c40aa0 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/WorkflowVersions_Update_MaximumSet_Gen.json @@ -0,0 +1,92 @@ +{ + "title": "WorkflowVersions_Update_MaximumSet", + "operationId": "WorkflowVersions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "versionName": "testname", + "properties": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "specification": {} + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "stageSpec": [ + { + "name": "amrbjd", + "specification": {}, + "tasks": [ + { + "name": "xxmeyvmgydbcwxqwjhadjxjod", + "targetId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "specification": {} + } + ], + "taskOption": { + "concurrency": 3, + "errorAction": { + "mode": "stopOnAnyFailure", + "maxToleratedFailures": 0 + } + } + } + ], + "state": "InReview", + "specification": {}, + "revision": 4, + "configuration": "czvrwkzex", + "reviewId": "hcnzmdpszvvtn", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "v", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "rsghgriwbtckmabbcxmqbvshybhw", + "type": "jahxsjfhxhpsobltqfdlfn", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..5484b46934a3 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,71 @@ +{ + "title": "Workflows_CreateOrUpdate_MaximumSet", + "operationId": "Workflows_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "resource": { + "properties": {}, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "workflowTemplateId": "ujmzzr", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "trbfrhlyyemhojcteofvr", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "jcivjgtzcfdrfsq", + "type": "nkacxxkrvouyglz", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "workflowTemplateId": "ujmzzr", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "trbfrhlyyemhojcteofvr", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "jcivjgtzcfdrfsq", + "type": "nkacxxkrvouyglz", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..ee3dcddc8666 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_Delete_MaximumSet_Gen.json @@ -0,0 +1,19 @@ +{ + "title": "Workflows_Delete_MaximumSet", + "operationId": "Workflows_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..183ba3b0c94b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_Get_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "Workflows_Get_MaximumSet", + "operationId": "Workflows_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname" + }, + "responses": { + "200": { + "body": { + "properties": { + "workflowTemplateId": "ujmzzr", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "trbfrhlyyemhojcteofvr", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "jcivjgtzcfdrfsq", + "type": "nkacxxkrvouyglz", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_ListByContext_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_ListByContext_MaximumSet_Gen.json new file mode 100644 index 000000000000..37779276b1bf --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_ListByContext_MaximumSet_Gen.json @@ -0,0 +1,41 @@ +{ + "title": "Workflows_ListByContext_MaximumSet", + "operationId": "Workflows_ListByContext", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "workflowTemplateId": "ujmzzr", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "trbfrhlyyemhojcteofvr", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "jcivjgtzcfdrfsq", + "type": "nkacxxkrvouyglz", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..9b4549c8d8f3 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurationmanager/stable/2025-08-01/examples/Workflows_Update_MaximumSet_Gen.json @@ -0,0 +1,45 @@ +{ + "title": "Workflows_Update_MaximumSet", + "operationId": "Workflows_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "9D54FE4C-00AF-4836-8F48-B6A9C4E47192", + "resourceGroupName": "rgconfigurationmanager", + "contextName": "testname", + "workflowName": "testname", + "properties": { + "properties": {} + } + }, + "responses": { + "200": { + "body": { + "properties": { + "workflowTemplateId": "ujmzzr", + "provisioningState": "Succeeded" + }, + "extendedLocation": { + "name": "szjrwimeqyiue", + "type": "EdgeZone" + }, + "eTag": "trbfrhlyyemhojcteofvr", + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + "name": "jcivjgtzcfdrfsq", + "type": "nkacxxkrvouyglz", + "systemData": { + "createdBy": "nvjczgdguyvllp", + "createdByType": "User", + "createdAt": "2025-06-09T10:11:50.747Z", + "lastModifiedBy": "uzbznzjgvaspvtqhyg", + "lastModifiedByType": "User", + "lastModifiedAt": "2025-06-09T10:11:50.747Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/readme.md b/specification/edge/resource-manager/Microsoft.Edge/configurations/readme.md index c33bd954cf35..e7cec4f90b91 100644 --- a/specification/edge/resource-manager/Microsoft.Edge/configurations/readme.md +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/readme.md @@ -27,7 +27,16 @@ These are the global settings for the configurations. ```yaml openapi-type: arm openapi-subtype: rpaas -tag: package-2025-06-01 +tag: package-2025-08-01 +``` + +### Tag: package-2025-08-01 + +These settings apply only when `--tag=package-2025-08-01` is specified on the command line. + +```yaml $(tag) == 'package-2025-08-01' +input-file: + - stable/2025-08-01/configurations.json ``` ### Tag: package-2025-06-01 diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/configurations.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/configurations.json new file mode 100644 index 000000000000..30bd5c546016 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/configurations.json @@ -0,0 +1,1744 @@ +{ + "swagger": "2.0", + "info": { + "title": "Microsoft.Edge", + "version": "2025-08-01", + "description": "Microsoft.Edge Resource Provider management API.", + "x-typespec-generated": [ + { + "emitter": "@azure-tools/typespec-autorest" + } + ] + }, + "schemes": [ + "https" + ], + "host": "management.azure.com", + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "description": "Azure Active Directory OAuth2 Flow.", + "flow": "implicit", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "tags": [ + { + "name": "Configurations" + }, + { + "name": "ConfigurationReferences" + }, + { + "name": "DynamicConfigurations" + }, + { + "name": "DynamicConfigurationVersions" + } + ], + "paths": { + "/{resourceUri}/providers/Microsoft.Edge/configurationReferences": { + "get": { + "operationId": "ConfigurationReferences_List", + "tags": [ + "ConfigurationReferences" + ], + "description": "List ConfigurationReference resources by parent", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/Azure.ResourceManager.ResourceUriParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigurationReferenceListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigurationReferences_List": { + "$ref": "./examples/ConfigurationReferences_List_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/{resourceUri}/providers/Microsoft.Edge/configurationReferences/{configurationReferenceName}": { + "get": { + "operationId": "ConfigurationReferences_Get", + "tags": [ + "ConfigurationReferences" + ], + "description": "Get a ConfigurationReference", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/Azure.ResourceManager.ResourceUriParameter" + }, + { + "name": "configurationReferenceName", + "in": "path", + "description": "The name of the ConfigurationReference", + "required": true, + "type": "string", + "pattern": "^default$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigurationReference" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigurationReferences_Get": { + "$ref": "./examples/ConfigurationReferences_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "ConfigurationReferences_CreateOrUpdate", + "tags": [ + "ConfigurationReferences" + ], + "description": "Create a ConfigurationReference", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/Azure.ResourceManager.ResourceUriParameter" + }, + { + "name": "configurationReferenceName", + "in": "path", + "description": "The name of the ConfigurationReference", + "required": true, + "type": "string", + "pattern": "^default$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/ConfigurationReference" + } + } + ], + "responses": { + "200": { + "description": "Resource 'ConfigurationReference' update operation succeeded", + "schema": { + "$ref": "#/definitions/ConfigurationReference" + } + }, + "201": { + "description": "Resource 'ConfigurationReference' create operation succeeded", + "schema": { + "$ref": "#/definitions/ConfigurationReference" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigurationReferences_CreateOrUpdate": { + "$ref": "./examples/ConfigurationReferences_CreateOrUpdate_MaximumSet_Gen.json" + } + } + }, + "patch": { + "operationId": "ConfigurationReferences_Update", + "tags": [ + "ConfigurationReferences" + ], + "description": "Update a ConfigurationReference", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/Azure.ResourceManager.ResourceUriParameter" + }, + { + "name": "configurationReferenceName", + "in": "path", + "description": "The name of the ConfigurationReference", + "required": true, + "type": "string", + "pattern": "^default$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/ConfigurationReferenceUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigurationReference" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigurationReferences_Update": { + "$ref": "./examples/ConfigurationReferences_Update_MaximumSet_Gen.json" + } + } + }, + "delete": { + "operationId": "ConfigurationReferences_Delete", + "tags": [ + "ConfigurationReferences" + ], + "description": "Delete a ConfigurationReference", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/Azure.ResourceManager.ResourceUriParameter" + }, + { + "name": "configurationReferenceName", + "in": "path", + "description": "The name of the ConfigurationReference", + "required": true, + "type": "string", + "pattern": "^default$" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ConfigurationReferences_Delete": { + "$ref": "./examples/ConfigurationReferences_Delete_MaximumSet_Gen.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/configurations": { + "get": { + "operationId": "Configurations_ListBySubscription", + "tags": [ + "Configurations" + ], + "description": "List by subscription", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigurationListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Configurations_ListBySubscription": { + "$ref": "./examples/Configurations_ListBySubscription_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configurations": { + "get": { + "operationId": "Configurations_ListByResourceGroup", + "tags": [ + "Configurations" + ], + "description": "List by specified resource group", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConfigurationListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Configurations_ListByResourceGroup": { + "$ref": "./examples/Configurations_ListByResourceGroup_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configurations/{configurationName}": { + "get": { + "operationId": "Configurations_Get", + "tags": [ + "Configurations" + ], + "description": "Get a Configuration Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Configuration" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Configurations_Get": { + "$ref": "./examples/Configurations_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "Configurations_CreateOrUpdate", + "tags": [ + "Configurations" + ], + "description": "Create or update a Configuration Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/Configuration" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Configuration' update operation succeeded", + "schema": { + "$ref": "#/definitions/Configuration" + } + }, + "201": { + "description": "Resource 'Configuration' create operation succeeded", + "schema": { + "$ref": "#/definitions/Configuration" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Configurations_CreateOrUpdate": { + "$ref": "./examples/Configurations_CreateOrUpdate_MaximumSet_Gen.json" + } + } + }, + "patch": { + "operationId": "Configurations_Update", + "tags": [ + "Configurations" + ], + "description": "Update a Configuration Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/ConfigurationUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Configuration" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Configurations_Update": { + "$ref": "./examples/Configurations_Update_MaximumSet_Gen.json" + } + } + }, + "delete": { + "operationId": "Configurations_Delete", + "tags": [ + "Configurations" + ], + "description": "Delete a Configuration Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Configurations_Delete": { + "$ref": "./examples/Configurations_Delete_MaximumSet_Gen.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configurations/{configurationName}/dynamicConfigurations": { + "get": { + "operationId": "DynamicConfigurations_ListByConfiguration", + "tags": [ + "DynamicConfigurations" + ], + "description": "List Dynamic Configuration Resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicConfigurationListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicConfigurations_ListByConfiguration": { + "$ref": "./examples/DynamicConfigurations_ListByConfiguration_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configurations/{configurationName}/dynamicConfigurations/{dynamicConfigurationName}": { + "get": { + "operationId": "DynamicConfigurations_Get", + "tags": [ + "DynamicConfigurations" + ], + "description": "Get a Dynamic Configuration Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationName", + "in": "path", + "description": "Name of the dynamic configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicConfiguration" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicConfigurations_Get": { + "$ref": "./examples/DynamicConfigurations_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "DynamicConfigurations_CreateOrUpdate", + "tags": [ + "DynamicConfigurations" + ], + "description": "Create or update a Dynamic Configuration Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationName", + "in": "path", + "description": "Name of the dynamic configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/DynamicConfiguration" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DynamicConfiguration' update operation succeeded", + "schema": { + "$ref": "#/definitions/DynamicConfiguration" + } + }, + "201": { + "description": "Resource 'DynamicConfiguration' create operation succeeded", + "schema": { + "$ref": "#/definitions/DynamicConfiguration" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicConfigurations_CreateOrUpdate": { + "$ref": "./examples/DynamicConfigurations_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "DynamicConfigurations_Update", + "tags": [ + "DynamicConfigurations" + ], + "description": "Update a Dynamic Configuration Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationName", + "in": "path", + "description": "Name of the dynamic configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/DynamicConfigurationUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicConfiguration" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicConfigurations_Update": { + "$ref": "./examples/DynamicConfigurations_Update_MaximumSet_Gen.json" + } + } + }, + "delete": { + "operationId": "DynamicConfigurations_Delete", + "tags": [ + "DynamicConfigurations" + ], + "description": "Delete a Dynamic Configuration Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationName", + "in": "path", + "description": "Name of the dynamic configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicConfigurations_Delete": { + "$ref": "./examples/DynamicConfigurations_Delete_MaximumSet_Gen.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configurations/{configurationName}/dynamicConfigurations/{dynamicConfigurationName}/versions": { + "get": { + "operationId": "DynamicConfigurationVersions_ListByDynamicConfiguration", + "tags": [ + "DynamicConfigurationVersions" + ], + "description": "List Dynamic Configuration Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationName", + "in": "path", + "description": "Name of the dynamic configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicConfigurationVersionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicConfigurationVersions_ListByDynamicConfiguration - generated by [MaximumSet] rule": { + "$ref": "./examples/DynamicConfigurationVersions_ListByDynamicConfiguration_MaximumSet_Gen.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/configurations/{configurationName}/dynamicConfigurations/{dynamicConfigurationName}/versions/{dynamicConfigurationVersionName}": { + "get": { + "operationId": "DynamicConfigurationVersions_Get", + "tags": [ + "DynamicConfigurationVersions" + ], + "description": "Get a Dynamic Configuration Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationName", + "in": "path", + "description": "Name of the dynamic configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationVersionName", + "in": "path", + "description": "The name of the DynamicConfigurationVersion", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9.-]{3,24}$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicConfigurationVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicConfigurationVersions_Get - generated by [MaximumSet] rule": { + "$ref": "./examples/DynamicConfigurationVersions_Get_MaximumSet_Gen.json" + } + } + }, + "put": { + "operationId": "DynamicConfigurationVersions_CreateOrUpdate", + "tags": [ + "DynamicConfigurationVersions" + ], + "description": "Create or update a Dynamic Configuration Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationName", + "in": "path", + "description": "Name of the dynamic configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationVersionName", + "in": "path", + "description": "The name of the DynamicConfigurationVersion", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9.-]{3,24}$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/DynamicConfigurationVersion" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DynamicConfigurationVersion' update operation succeeded", + "schema": { + "$ref": "#/definitions/DynamicConfigurationVersion" + } + }, + "201": { + "description": "Resource 'DynamicConfigurationVersion' create operation succeeded", + "schema": { + "$ref": "#/definitions/DynamicConfigurationVersion" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicConfigurationVersions_CreateOrUpdate - generated by [MaximumSet] rule": { + "$ref": "./examples/DynamicConfigurationVersions_CreateOrUpdate_MaximumSet_Gen.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "DynamicConfigurationVersions_Update", + "tags": [ + "DynamicConfigurationVersions" + ], + "description": "update a Dynamic Configuration Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationName", + "in": "path", + "description": "Name of the dynamic configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationVersionName", + "in": "path", + "description": "The name of the DynamicConfigurationVersion", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9.-]{3,24}$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/DynamicConfigurationVersionUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DynamicConfigurationVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicConfigurationVersions_Update - generated by [MaximumSet] rule": { + "$ref": "./examples/DynamicConfigurationVersions_Update_MaximumSet_Gen.json" + } + } + }, + "delete": { + "operationId": "DynamicConfigurationVersions_Delete", + "tags": [ + "DynamicConfigurationVersions" + ], + "description": "Delete a Dynamic Configuration Version Resource", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "configurationName", + "in": "path", + "description": "Name of the Configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationName", + "in": "path", + "description": "Name of the dynamic configuration", + "required": true, + "type": "string", + "pattern": "^(?!.*\\.\\.)[a-zA-Z0-9-][a-zA-Z0-9._-]{1,68}[a-zA-Z0-9-]$" + }, + { + "name": "dynamicConfigurationVersionName", + "in": "path", + "description": "The name of the DynamicConfigurationVersion", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9.-]{3,24}$" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DynamicConfigurationVersions_Delete - generated by [MaximumSet] rule": { + "$ref": "./examples/DynamicConfigurationVersions_Delete_MaximumSet_Gen.json" + } + } + } + } + }, + "definitions": { + "Azure.ResourceManager.CommonTypes.TrackedResourceUpdate": { + "type": "object", + "title": "Tracked Resource", + "description": "The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'", + "properties": { + "tags": { + "type": "object", + "description": "Resource tags.", + "additionalProperties": { + "type": "string" + } + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/Resource" + } + ] + }, + "Azure.ResourceManager.ResourceProvisioningState": { + "type": "string", + "description": "The provisioning state of a resource type.", + "enum": [ + "Succeeded", + "Failed", + "Canceled" + ], + "x-ms-enum": { + "name": "ResourceProvisioningState", + "modelAsString": true, + "values": [ + { + "name": "Succeeded", + "value": "Succeeded", + "description": "Resource has been created." + }, + { + "name": "Failed", + "value": "Failed", + "description": "Resource creation failed." + }, + { + "name": "Canceled", + "value": "Canceled", + "description": "Resource creation was canceled." + } + ] + }, + "readOnly": true + }, + "Configuration": { + "type": "object", + "description": "Configuration Resource", + "properties": { + "properties": { + "$ref": "#/definitions/ConfigurationProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "ConfigurationListResult": { + "type": "object", + "description": "The response of a Configuration list operation.", + "properties": { + "value": { + "type": "array", + "description": "The Configuration items on this page", + "items": { + "$ref": "#/definitions/Configuration" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ConfigurationModel": { + "type": "string", + "description": "Available configuration models", + "enum": [ + "Application", + "Common" + ], + "x-ms-enum": { + "name": "ConfigurationModel", + "modelAsString": true, + "values": [ + { + "name": "Application", + "value": "Application", + "description": "Configuration model Application" + }, + { + "name": "Common", + "value": "Common", + "description": "Configuration model Common" + } + ] + } + }, + "ConfigurationProperties": { + "type": "object", + "description": "Configuration Properties", + "properties": { + "provisioningState": { + "$ref": "#/definitions/Azure.ResourceManager.ResourceProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + } + }, + "ConfigurationReference": { + "type": "object", + "description": "ConfigurationReference Resource", + "properties": { + "properties": { + "$ref": "#/definitions/ConfigurationReferenceProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ConfigurationReferenceListResult": { + "type": "object", + "description": "The response of a ConfigurationReference list operation.", + "properties": { + "value": { + "type": "array", + "description": "The ConfigurationReference items on this page", + "items": { + "$ref": "#/definitions/ConfigurationReference" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ConfigurationReferenceProperties": { + "type": "object", + "description": "Properties for ConfigurationReference Resource", + "properties": { + "provisioningState": { + "$ref": "#/definitions/Azure.ResourceManager.ResourceProvisioningState", + "description": "The status of the last operation.", + "readOnly": true + }, + "configurationResourceId": { + "type": "string", + "format": "arm-id", + "description": "ArmId of Configuration resource", + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.Edge/Configurations" + } + ] + } + } + } + }, + "ConfigurationReferenceUpdate": { + "type": "object", + "description": "ConfigurationReference Resource", + "properties": { + "properties": { + "$ref": "#/definitions/ConfigurationReferenceProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ConfigurationState": { + "type": "string", + "description": "Configuration State Enums", + "enum": [ + "ConfigurationCompleted", + "ConfigurationPending" + ], + "x-ms-enum": { + "name": "ConfigurationState", + "modelAsString": true, + "values": [ + { + "name": "ConfigurationCompleted", + "value": "ConfigurationCompleted", + "description": "Configuration Completed" + }, + { + "name": "ConfigurationPending", + "value": "ConfigurationPending", + "description": "Configuration Completed" + } + ] + } + }, + "ConfigurationType": { + "type": "string", + "description": "Available configuration types", + "enum": [ + "Shared", + "Hierarchy" + ], + "x-ms-enum": { + "name": "ConfigurationType", + "modelAsString": true, + "values": [ + { + "name": "Shared", + "value": "Shared", + "description": "Configuration type Shared" + }, + { + "name": "Hierarchy", + "value": "Hierarchy", + "description": "Configuration type Hierarchy" + } + ] + } + }, + "ConfigurationUpdate": { + "type": "object", + "description": "Configuration Resource", + "properties": { + "properties": { + "$ref": "#/definitions/ConfigurationProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "#/definitions/Azure.ResourceManager.CommonTypes.TrackedResourceUpdate" + } + ] + }, + "DynamicConfiguration": { + "type": "object", + "description": "Dynamic Configuration Resource", + "properties": { + "properties": { + "$ref": "#/definitions/DynamicConfigurationProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DynamicConfigurationListResult": { + "type": "object", + "description": "The response of a DynamicConfiguration list operation.", + "properties": { + "value": { + "type": "array", + "description": "The DynamicConfiguration items on this page", + "items": { + "$ref": "#/definitions/DynamicConfiguration" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DynamicConfigurationProperties": { + "type": "object", + "description": "Dynamic Configuration Properties", + "properties": { + "currentVersion": { + "type": "string", + "description": "Current Version of dynamic configuration" + }, + "displayName": { + "type": "string", + "description": "Display name of the dynamic configuration", + "readOnly": true + }, + "dynamicConfigurationType": { + "$ref": "#/definitions/ConfigurationType", + "description": "Type of dynamic configuration", + "readOnly": true + }, + "dynamicConfigurationModel": { + "$ref": "#/definitions/ConfigurationModel", + "description": "Type of dynamic configuration model", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "currentVersion" + ] + }, + "DynamicConfigurationPropertiesUpdate": { + "type": "object", + "description": "Dynamic Configuration Properties", + "properties": { + "currentVersion": { + "type": "string", + "description": "Current Version of dynamic configuration" + } + } + }, + "DynamicConfigurationUpdate": { + "type": "object", + "description": "Dynamic Configuration Resource", + "properties": { + "properties": { + "$ref": "#/definitions/DynamicConfigurationPropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DynamicConfigurationVersion": { + "type": "object", + "description": "Dynamic Configuration Resource", + "properties": { + "properties": { + "$ref": "#/definitions/DynamicConfigurationVersionProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DynamicConfigurationVersionListResult": { + "type": "object", + "description": "The response of a DynamicConfigurationVersion list operation.", + "properties": { + "value": { + "type": "array", + "description": "The DynamicConfigurationVersion items on this page", + "items": { + "$ref": "#/definitions/DynamicConfigurationVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DynamicConfigurationVersionProperties": { + "type": "object", + "description": "Dynamic Configuration Properties", + "properties": { + "values": { + "type": "string", + "description": "Values of configuration version" + }, + "schemaId": { + "type": "string", + "description": "Schema Id for configuration", + "readOnly": true + }, + "dynamicSchemaVersionId": { + "type": "string", + "format": "arm-id", + "description": "Dynamic schema version Id for configuration", + "readOnly": true, + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.Edge/Schemas/DynamicSchemas/Versions" + } + ] + } + }, + "displayState": { + "type": "string", + "description": "Display state", + "readOnly": true + }, + "state": { + "$ref": "#/definitions/ConfigurationState", + "description": "Configuration state", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of resource", + "readOnly": true + } + }, + "required": [ + "values" + ] + }, + "DynamicConfigurationVersionPropertiesUpdate": { + "type": "object", + "description": "Dynamic Configuration Properties", + "properties": { + "values": { + "type": "string", + "description": "Values of configuration version" + } + } + }, + "DynamicConfigurationVersionUpdate": { + "type": "object", + "description": "Dynamic Configuration Resource", + "properties": { + "properties": { + "$ref": "#/definitions/DynamicConfigurationVersionPropertiesUpdate", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ProvisioningState": { + "type": "string", + "description": "Provisioning state of resource", + "enum": [ + "Succeeded", + "Failed", + "Canceled", + "Initialized", + "InProgress", + "Deleting" + ], + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": true, + "values": [ + { + "name": "Succeeded", + "value": "Succeeded", + "description": "Resource has been created." + }, + { + "name": "Failed", + "value": "Failed", + "description": "Resource creation failed." + }, + { + "name": "Canceled", + "value": "Canceled", + "description": "Resource creation was canceled." + }, + { + "name": "Initialized", + "value": "Initialized", + "description": "Resource Provisioning is initialized" + }, + { + "name": "Inprogress", + "value": "InProgress", + "description": "Resource Provisioning is in progress" + }, + { + "name": "Deleting", + "value": "Deleting", + "description": "Resource Provisioning is deleting" + } + ] + }, + "readOnly": true + } + }, + "parameters": { + "Azure.ResourceManager.ResourceUriParameter": { + "name": "resourceUri", + "in": "path", + "description": "The fully qualified Azure Resource manager identifier of the resource.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method", + "x-ms-skip-url-encoding": true + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..13be65f88a1c --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,54 @@ +{ + "title": "ConfigurationReferences_CreateOrUpdate", + "operationId": "ConfigurationReferences_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite", + "configurationReferenceName": "default", + "resource": { + "properties": { + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded", + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite/providers/Microsoft.Edge/configurationReferences/default", + "name": "default", + "type": "Microsoft.Edge/configurationReferences", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + }, + "201": { + "body": { + "properties": { + "provisioningState": "Succeeded", + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite/providers/Microsoft.Edge/configurationReferences/default", + "name": "default", + "type": "Microsoft.Edge/configurationReferences", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..6fbef84d3ff5 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_Delete_MaximumSet_Gen.json @@ -0,0 +1,13 @@ +{ + "title": "ConfigurationReferences_Delete", + "operationId": "ConfigurationReferences_Delete", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite", + "configurationReferenceName": "default" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..abc728bf9b0b --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_Get_MaximumSet_Gen.json @@ -0,0 +1,30 @@ +{ + "title": "ConfigurationReferences_Get", + "operationId": "ConfigurationReferences_Get", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite", + "configurationReferenceName": "default" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded", + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite/providers/Microsoft.Edge/configurationReferences/default", + "name": "default", + "type": "Microsoft.Edge/configurationReferences", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_List_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_List_MaximumSet_Gen.json new file mode 100644 index 000000000000..1dd407f2a5ac --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_List_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "ConfigurationReferences_List", + "operationId": "ConfigurationReferences_List", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite/providers/Microsoft.Edge/configurationReferences/default", + "name": "default", + "type": "Microsoft.Edge/configurationReferences", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..a241e6d8ed0d --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/ConfigurationReferences_Update_MaximumSet_Gen.json @@ -0,0 +1,35 @@ +{ + "title": "ConfigurationReferences_Update", + "operationId": "ConfigurationReferences_Update", + "parameters": { + "api-version": "2025-08-01", + "resourceUri": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite", + "configurationReferenceName": "default", + "properties": { + "properties": { + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded", + "configurationResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration" + }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Edge/Sites/aSite/providers/Microsoft.Edge/configurationReferences/default", + "name": "default", + "type": "Microsoft.Edge/configurationReferences", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..381a21965fae --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,63 @@ +{ + "title": "Configurations_CreateOrUpdate", + "operationId": "Configurations_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "aConfiguration", + "resource": { + "properties": {}, + "tags": { + "key64": "wwupf" + }, + "location": "west us" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + }, + "201": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..0c4044786f66 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_Delete_MaximumSet_Gen.json @@ -0,0 +1,14 @@ +{ + "title": "Configurations_Delete", + "operationId": "Configurations_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "aConfiguration" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..39fd2c1c8a82 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "Configurations_Get", + "operationId": "Configurations_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "aConfiguration" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_ListByResourceGroup_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..4e4c4d23c59a --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "Configurations_ListByResourceGroup", + "operationId": "Configurations_ListByResourceGroup", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_ListBySubscription_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..7ad25447088a --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "Configurations_ListBySubscription", + "operationId": "Configurations_ListBySubscription", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..54d0261d46b8 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/Configurations_Update_MaximumSet_Gen.json @@ -0,0 +1,40 @@ +{ + "title": "Configurations_Update", + "operationId": "Configurations_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "aConfiguration", + "properties": { + "properties": {}, + "tags": { + "key9384": "zvwulvxbevodnnqsiw" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + }, + "tags": { + "key64": "wwupf" + }, + "location": "west us", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgconfigurations/providers/Microsoft.Edge/configurations/aConfiguration", + "name": "aConfiguration", + "type": "Microsoft.Edge/Configurations", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..2f6539eb86b1 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,62 @@ +{ + "title": "DynamicConfigurationVersions_CreateOrUpdate - generated by [MaximumSet] rule", + "operationId": "DynamicConfigurationVersions_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "dynamicConfigurationVersionName": "parameterName", + "resource": { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg", + "schemaId": "vzhuxaudjizqyxaazzz", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName/versions/mydynamicConfigurationVersionName", + "name": "suecqongzioebxrprnhv", + "type": "yxj", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg", + "schemaId": "vzhuxaudjizqyxaazzz", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName/versions/mydynamicConfigurationVersionName", + "name": "suecqongzioebxrprnhv", + "type": "yxj", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..b08740db5190 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_Delete_MaximumSet_Gen.json @@ -0,0 +1,16 @@ +{ + "title": "DynamicConfigurationVersions_Delete - generated by [MaximumSet] rule", + "operationId": "DynamicConfigurationVersions_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "dynamicConfigurationVersionName": "parameterName" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..bc4c984c5a8c --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "DynamicConfigurationVersions_Get - generated by [MaximumSet] rule", + "operationId": "DynamicConfigurationVersions_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "dynamicConfigurationVersionName": "parameterName" + }, + "responses": { + "200": { + "body": { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg", + "schemaId": "vzhuxaudjizqyxaazzz", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName/versions/mydynamicConfigurationVersionName", + "name": "suecqongzioebxrprnhv", + "type": "yxj", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_ListByDynamicConfiguration_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_ListByDynamicConfiguration_MaximumSet_Gen.json new file mode 100644 index 000000000000..0e22d69543a9 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_ListByDynamicConfiguration_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "DynamicConfigurationVersions_ListByDynamicConfiguration - generated by [MaximumSet] rule", + "operationId": "DynamicConfigurationVersions_ListByDynamicConfiguration", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg", + "provisioningState": "Succeeded", + "schemaId": "ojwzwsrheuooi" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName/versions/mydynamicConfigurationVersionName", + "name": "suecqongzioebxrprnhv", + "type": "yxj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..8a09d907d73e --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurationVersions_Update_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "DynamicConfigurationVersions_Update - generated by [MaximumSet] rule", + "operationId": "DynamicConfigurationVersions_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "dynamicConfigurationVersionName": "parameterName", + "properties": { + "properties": { + "values": "ujeeunyfkqihelwbpllkhxgfusoyj" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "values": "utvmzgdxulnotsgtahcwhkg", + "schemaId": "vzhuxaudjizqyxaazzz", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName/versions/mydynamicConfigurationVersionName", + "name": "suecqongzioebxrprnhv", + "type": "yxj", + "systemData": { + "createdBy": "kupa", + "createdByType": "User", + "createdAt": "2024-08-16T14:49:26.220Z", + "lastModifiedBy": "kupa", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-08-16T14:49:26.220Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_CreateOrUpdate_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..1fc236dcf8fd --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,65 @@ +{ + "title": "DynamicConfigurations_CreateOrUpdate", + "operationId": "DynamicConfigurations_CreateOrUpdate", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "resource": { + "properties": { + "currentVersion": "ltpwymdbybbjdgyuumsfh", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "ltpwymdbybbjdgyuumsfh", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName", + "name": "v", + "type": "pyrnlouvjdyj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "currentVersion": "ltpwymdbybbjdgyuumsfh", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName", + "name": "v", + "type": "pyrnlouvjdyj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_Delete_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..4c17e9d771c0 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_Delete_MaximumSet_Gen.json @@ -0,0 +1,15 @@ +{ + "title": "DynamicConfigurations_Delete", + "operationId": "DynamicConfigurations_Delete", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_Get_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..4e0502499a19 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "DynamicConfigurations_Get", + "operationId": "DynamicConfigurations_Get", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName" + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "ltpwymdbybbjdgyuumsfh", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName", + "name": "v", + "type": "pyrnlouvjdyj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_ListByConfiguration_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_ListByConfiguration_MaximumSet_Gen.json new file mode 100644 index 000000000000..0357f41d19a7 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_ListByConfiguration_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "DynamicConfigurations_ListByConfiguration", + "operationId": "DynamicConfigurations_ListByConfiguration", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "currentVersion": "rkhnfdstcdieumifrhajl", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName", + "name": "v", + "type": "pyrnlouvjdyj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + ], + "nextLink": "https://microsoft.com/ahud" + } + } + } +} diff --git a/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_Update_MaximumSet_Gen.json b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..d78a58a74333 --- /dev/null +++ b/specification/edge/resource-manager/Microsoft.Edge/configurations/stable/2025-08-01/examples/DynamicConfigurations_Update_MaximumSet_Gen.json @@ -0,0 +1,39 @@ +{ + "title": "DynamicConfigurations_Update", + "operationId": "DynamicConfigurations_Update", + "parameters": { + "api-version": "2025-08-01", + "subscriptionId": "917932C2-DB34-4B40-9759-D44452DBEC0D", + "resourceGroupName": "rgconfigurations", + "configurationName": "parameterName", + "dynamicConfigurationName": "parameterName", + "properties": { + "properties": { + "currentVersion": "nmpeaygsegrcqpk" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "currentVersion": "ltpwymdbybbjdgyuumsfh", + "dynamicConfigurationType": "Shared", + "dynamicConfigurationModel": "Application", + "provisioningState": "Succeeded" + }, + "id": "/subscriptions/329B3ADC-9319-4E19-9CF0-58102804FD70/resourceGroups/myResourceGroupName/providers/Microsoft.Edge/configurations/myconfigurationName/dynamicConfigurations/mydynamicConfigurationName", + "name": "v", + "type": "pyrnlouvjdyj", + "systemData": { + "createdBy": "h", + "createdByType": "User", + "createdAt": "2024-07-29T15:04:50.219Z", + "lastModifiedBy": "pqtwuhiac", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-07-29T15:04:50.219Z" + } + } + } + } +}