diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/elasticsan.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/elasticsan.json index da6aca8b3f79..f0f7cdfc7038 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/elasticsan.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/elasticsan.json @@ -901,6 +901,36 @@ }, { "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "x-ms-delete-snapshots", + "in": "header", + "required": false, + "type": "string", + "enum": [ + "true", + "false" + ], + "x-ms-enum": { + "name": "x-ms-delete-snapshots", + "modelAsString": true + }, + "description": "Optional, used to delete snapshots under volume. Allowed value are only true or false. Default value is false." + }, + { + "name": "x-ms-force-delete", + "in": "header", + "required": false, + "type": "string", + "enum": [ + "true", + "false" + ], + "x-ms-enum": { + "name": "x-ms-force-delete", + "modelAsString": true + }, + "description": "Optional, used to delete volume if active sessions present. Allowed value are only true or false. Default value is false." } ], "responses": { @@ -1302,6 +1332,244 @@ } } } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/snapshots": { + "get": { + "tags": [ + "Snapshots" + ], + "description": "List Snapshots in a VolumeGroup or List Snapshots by Volume (name) in a VolumeGroup using filter", + "operationId": "VolumeSnapshots_ListByVolumeGroup", + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ElasticSanNameParameter" + }, + { + "$ref": "#/parameters/VolumeGroupNameParameter" + }, + { + "name": "$filter", + "in": "query", + "description": "Specify $filter='volumeName eq ' to filter on volume.", + "required": false, + "type": "string" + }, + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Operation completed successfully; retrieved snapshots in a volume group.", + "schema": { + "$ref": "#/definitions/SnapshotList" + } + }, + "default": { + "description": "Error from the ElasticSan Resource Provider", + "schema": { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "VolumeSnapshots_ListByVolumeGroup_MaximumSet_Gen": { + "$ref": "./examples/VolumeSnapshots_ListByVolumeGroup_MaximumSet_Gen.json" + }, + "VolumeSnapshots_ListByVolumeGroup_MinimumSet_Gen": { + "$ref": "./examples/VolumeSnapshots_ListByVolumeGroup_MinimumSet_Gen.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/snapshots/{snapshotName}": { + "put": { + "tags": [ + "Snapshots" + ], + "description": "Create a Volume Snapshot.", + "operationId": "VolumeSnapshots_Create", + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ElasticSanNameParameter" + }, + { + "$ref": "#/parameters/VolumeGroupNameParameter" + }, + { + "$ref": "#/parameters/SnapshotNameParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/Snapshot" + }, + "description": "Snapshot object." + }, + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Returned when the create operation is successfully completed.", + "schema": { + "$ref": "#/definitions/Snapshot" + } + }, + "201": { + "description": "Created -- Resource Created; operation will complete asynchronously.", + "schema": { + "$ref": "#/definitions/Snapshot" + } + }, + "default": { + "description": "Error from the ElasticSan Resource Provider.", + "schema": { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "VolumeSnapshots_Create_MaximumSet_Gen": { + "$ref": "./examples/VolumeSnapshots_Create_MaximumSet_Gen.json" + }, + "VolumeSnapshots_Create_MinimumSet_Gen": { + "$ref": "./examples/VolumeSnapshots_Create_MinimumSet_Gen.json" + } + } + }, + "delete": { + "tags": [ + "Snapshots" + ], + "description": "Delete a Volume Snapshot.", + "operationId": "VolumeSnapshots_Delete", + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ElasticSanNameParameter" + }, + { + "$ref": "#/parameters/VolumeGroupNameParameter" + }, + { + "$ref": "#/parameters/SnapshotNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK -- Delete operation completed successfully." + }, + "202": { + "description": "Accepted -- Delete request accepted; operation will complete asynchronously.", + "headers": { + "Location": { + "type": "string" + } + } + }, + "204": { + "description": "NoContent -- Resource does not exist in the subscription." + }, + "default": { + "description": "Error from the ElasticSan Resource Provider.", + "schema": { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "VolumeSnapshots_Delete_MaximumSet_Gen": { + "$ref": "./examples/VolumeSnapshots_Delete_MaximumSet_Gen.json" + }, + "VolumeSnapshots_Delete_MinimumSet_Gen": { + "$ref": "./examples/VolumeSnapshots_Delete_MinimumSet_Gen.json" + } + } + }, + "get": { + "tags": [ + "Snapshots" + ], + "description": "Get a Volume Snapshot.", + "operationId": "VolumeSnapshots_Get", + "parameters": [ + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ElasticSanNameParameter" + }, + { + "$ref": "#/parameters/VolumeGroupNameParameter" + }, + { + "$ref": "#/parameters/SnapshotNameParameter" + }, + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Operation completed successfully; retrieved Volume Snapshot.", + "schema": { + "$ref": "#/definitions/Snapshot" + } + }, + "default": { + "description": "Error from the ElasticSan Resource Provider.", + "schema": { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "VolumeSnapshots_Get_MaximumSet_Gen": { + "$ref": "./examples/VolumeSnapshots_Get_MaximumSet_Gen.json" + }, + "VolumeSnapshots_Get_MinimumSet_Gen": { + "$ref": "./examples/VolumeSnapshots_Get_MinimumSet_Gen.json" + } + } + } } }, "parameters": { @@ -1345,6 +1613,17 @@ "in": "path", "description": "The name of the Private Endpoint connection.", "x-ms-parameter-location": "method" + }, + "SnapshotNameParameter": { + "name": "snapshotName", + "type": "string", + "required": true, + "in": "path", + "description": "The name of the volume snapshot within the given volume group.", + "pattern": "^[a-z0-9]+(?:[._-][a-z0-9]+)*$", + "minLength": 1, + "maxLength": 80, + "x-ms-parameter-location": "method" } }, "definitions": { @@ -1467,6 +1746,18 @@ "$ref": "#/definitions/PrivateEndpointConnection" }, "description": "The list of Private Endpoint Connections." + }, + "publicNetworkAccess": { + "type": "string", + "enum": [ + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "PublicNetworkAccess", + "modelAsString": true + }, + "description": "Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'." } } }, @@ -1509,6 +1800,18 @@ "read", "create" ] + }, + "publicNetworkAccess": { + "type": "string", + "enum": [ + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "PublicNetworkAccess", + "modelAsString": true + }, + "description": "Allow or disallow public network access to ElasticSan Account. Value is optional but if passed in, must be 'Enabled' or 'Disabled'." } } }, @@ -1710,6 +2013,10 @@ "type": "object", "description": "Response for Volume Group request.", "properties": { + "identity": { + "$ref": "#/definitions/Identity", + "description": "The identity of the resource." + }, "properties": { "x-ms-client-flatten": true, "description": "Properties of VolumeGroup.", @@ -1722,6 +2029,45 @@ } ] }, + "Identity": { + "type": "object", + "properties": { + "principalId": { + "readOnly": true, + "type": "string", + "description": "The principal ID of resource identity." + }, + "tenantId": { + "readOnly": true, + "type": "string", + "description": "The tenant ID of resource." + }, + "type": { + "type": "string", + "description": "The identity type.", + "enum": [ + "None", + "SystemAssigned", + "UserAssigned" + ], + "x-ms-enum": { + "name": "IdentityType", + "modelAsString": true + } + }, + "userAssignedIdentities": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/UserAssignedIdentity" + }, + "description": "Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity." + } + }, + "required": [ + "type" + ], + "description": "Identity for the resource." + }, "VolumeGroupList": { "type": "object", "description": "List of Volume Groups", @@ -1747,7 +2093,8 @@ "properties": { "provisioningState": { "description": "State of the operation on the resource.", - "$ref": "#/definitions/ProvisioningState" + "$ref": "#/definitions/ProvisioningState", + "readOnly": true }, "protocolType": { "description": "Type of storage target", @@ -1757,6 +2104,10 @@ "description": "Type of encryption", "$ref": "#/definitions/EncryptionType" }, + "encryptionProperties": { + "description": "Encryption Properties describing Key Vault and Identity information", + "$ref": "#/definitions/EncryptionProperties" + }, "networkAcls": { "$ref": "#/definitions/NetworkRuleSet", "description": "A collection of rules governing the accessibility from specific network locations.", @@ -1775,10 +2126,99 @@ } } }, + "EncryptionProperties": { + "type": "object", + "properties": { + "keyVaultProperties": { + "$ref": "#/definitions/KeyVaultProperties", + "x-ms-client-name": "KeyVaultProperties", + "description": "Properties provided by key vault." + }, + "identity": { + "$ref": "#/definitions/EncryptionIdentity", + "x-ms-client-name": "EncryptionIdentity", + "description": "The identity to be used with service-side encryption at rest." + } + }, + "description": "The encryption settings on the volume group." + }, + "EncryptionIdentity": { + "type": "object", + "properties": { + "userAssignedIdentity": { + "type": "string", + "description": "Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.", + "x-ms-client-name": "EncryptionUserAssignedIdentity" + } + }, + "description": "Encryption identity for the volume group." + }, + "KeyVaultProperties": { + "type": "object", + "description": "Properties of key vault.", + "properties": { + "keyName": { + "type": "string", + "description": "The name of KeyVault key.", + "x-ms-client-name": "KeyName" + }, + "keyVersion": { + "type": "string", + "description": "The version of KeyVault key.", + "x-ms-client-name": "KeyVersion" + }, + "keyVaultUri": { + "type": "string", + "description": "The Uri of KeyVault.", + "x-ms-client-name": "KeyVaultUri", + "format": "uri" + }, + "currentVersionedKeyIdentifier": { + "type": "string", + "readOnly": true, + "description": "The object identifier of the current versioned Key Vault Key in use.", + "x-ms-client-name": "CurrentVersionedKeyIdentifier" + }, + "lastKeyRotationTimestamp": { + "type": "string", + "readOnly": true, + "format": "date-time", + "description": "Timestamp of last rotation of the Key Vault Key.", + "x-ms-client-name": "LastKeyRotationTimestamp" + }, + "currentVersionedKeyExpirationTimestamp": { + "type": "string", + "readOnly": true, + "format": "date-time", + "description": "This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.", + "x-ms-client-name": "CurrentVersionedKeyExpirationTimestamp" + } + } + }, + "UserAssignedIdentity": { + "type": "object", + "properties": { + "principalId": { + "readOnly": true, + "type": "string", + "description": "The principal ID of the identity." + }, + "clientId": { + "readOnly": true, + "type": "string", + "description": "The client ID of the identity." + } + }, + "description": "UserAssignedIdentity for the resource." + }, "VolumeGroupUpdate": { "type": "object", "description": "Volume Group request.", "properties": { + "identity": { + "$ref": "#/definitions/Identity", + "description": "The identity of the resource." + }, "properties": { "x-ms-client-flatten": true, "description": "Properties of VolumeGroup.", @@ -1798,6 +2238,10 @@ "description": "Type of encryption", "$ref": "#/definitions/EncryptionType" }, + "encryptionProperties": { + "description": "Encryption Properties describing Key Vault and Identity information", + "$ref": "#/definitions/EncryptionProperties" + }, "networkAcls": { "$ref": "#/definitions/NetworkRuleSet", "description": "A collection of rules governing the accessibility from specific network locations.", @@ -1870,6 +2314,26 @@ "storageTarget": { "description": "Storage target information", "$ref": "#/definitions/IscsiTargetInfo" + }, + "managedBy": { + "description": "Parent resource information.", + "$ref": "#/definitions/ManagedByInfo" + }, + "provisioningState": { + "description": "State of the operation on the resource.", + "$ref": "#/definitions/ProvisioningState", + "readOnly": true + } + } + }, + "ManagedByInfo": { + "type": "object", + "description": "Parent resource information.", + "properties": { + "resourceId": { + "type": "string", + "x-ms-client-name": "ResourceId", + "description": "Resource ID of the resource managing the volume." } } }, @@ -1902,17 +2366,21 @@ "createSource": { "type": "string", "enum": [ - "None" + "None", + "VolumeSnapshot", + "DiskSnapshot", + "Disk", + "DiskRestorePoint" ], "x-ms-enum": { "name": "VolumeCreateOption", - "modelAsString": false + "modelAsString": true }, "description": "This enumerates the possible sources of a volume creation." }, - "sourceUri": { + "sourceId": { "type": "string", - "description": "If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point." + "description": "Fully qualified resource ID for the resource. E.g. \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}\"" } } }, @@ -1969,7 +2437,8 @@ "type": "string", "description": "The type of key used to encrypt the data of the disk.", "enum": [ - "EncryptionAtRestWithPlatformKey" + "EncryptionAtRestWithPlatformKey", + "EncryptionAtRestWithCustomerManagedKey" ], "x-ms-enum": { "name": "EncryptionType", @@ -1978,6 +2447,10 @@ { "value": "EncryptionAtRestWithPlatformKey", "description": "Volume is encrypted at rest with Platform managed key. It is the default encryption type." + }, + { + "value": "EncryptionAtRestWithCustomerManagedKey", + "description": "Volume is encrypted at rest with Customer managed key that can be changed and revoked by a customer." } ] } @@ -2010,26 +2483,10 @@ ], "x-ms-enum": { "name": "Action", - "modelAsString": false + "modelAsString": true }, "default": "Allow", "description": "The action of virtual network rule." - }, - "state": { - "type": "string", - "readOnly": true, - "enum": [ - "provisioning", - "deprovisioning", - "succeeded", - "failed", - "networkSourceDeleted" - ], - "x-ms-enum": { - "name": "State", - "modelAsString": false - }, - "description": "Gets the state of virtual network rule." } }, "required": [ @@ -2205,6 +2662,86 @@ } }, "description": "List of private endpoint connections associated with SAN" + }, + "Snapshot": { + "type": "object", + "required": [ + "properties" + ], + "description": "Response for Volume Snapshot request.", + "properties": { + "properties": { + "x-ms-client-flatten": true, + "description": "Properties of Volume Snapshot.", + "$ref": "#/definitions/SnapshotProperties" + } + }, + "allOf": [ + { + "$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/ProxyResource" + } + ] + }, + "SnapshotList": { + "type": "object", + "description": "List of Snapshots", + "additionalProperties": false, + "properties": { + "value": { + "description": "An array of Snapshot objects.", + "type": "array", + "items": { + "$ref": "#/definitions/Snapshot" + } + }, + "nextLink": { + "description": "URI to fetch the next section of the paginated response.", + "type": "string", + "readOnly": true + } + } + }, + "SnapshotProperties": { + "type": "object", + "required": [ + "creationData" + ], + "description": "Properties for Snapshot.", + "properties": { + "creationData": { + "description": "Data used when creating a volume snapshot.", + "$ref": "#/definitions/SnapshotCreationData" + }, + "provisioningState": { + "description": "State of the operation on the resource.", + "$ref": "#/definitions/ProvisioningState", + "readOnly": true + }, + "sourceVolumeSizeGiB": { + "description": "Size of Source Volume", + "type": "integer", + "format": "int64", + "readOnly": true + }, + "volumeName": { + "description": "Source Volume Name of a snapshot", + "type": "string", + "readOnly": true + } + } + }, + "SnapshotCreationData": { + "type": "object", + "required": [ + "sourceId" + ], + "description": "Data used when creating a volume snapshot.", + "properties": { + "sourceId": { + "type": "string", + "description": "Fully qualified resource ID of the volume. E.g. \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}\"" + } + } } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Create_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Create_MaximumSet_Gen.json index 18121695c25b..c52b80c4e8ee 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Create_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Create_MaximumSet_Gen.json @@ -15,12 +15,13 @@ "1" ], "baseSizeTiB": 5, - "extendedCapacitySizeTiB": 25 + "extendedCapacitySizeTiB": 25, + "publicNetworkAccess": "Enabled" }, "tags": { "key9316": "ihndtieqibtob" }, - "location": "South Central US" + "location": "France Central" }, "api-version": "2023-01-01" }, @@ -42,7 +43,8 @@ "volumeGroupCount": 24, "totalIops": 22, "totalMBps": 4, - "totalSizeTiB": 27 + "totalSizeTiB": 27, + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", @@ -74,14 +76,15 @@ "availabilityZones": [ "1" ], - "provisioningState": "Creating", + "provisioningState": "Succeeded", "baseSizeTiB": 15, "extendedCapacitySizeTiB": 6, "totalVolumeSizeGiB": 15, "volumeGroupCount": 24, "totalIops": 22, "totalMBps": 4, - "totalSizeTiB": 27 + "totalSizeTiB": 27, + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Create_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Create_MinimumSet_Gen.json index 448d976e00e8..ff0c5aed5c12 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Create_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Create_MinimumSet_Gen.json @@ -10,10 +10,10 @@ "sku": { "name": "Premium_LRS" }, - "baseSizeTiB": 5, - "extendedCapacitySizeTiB": 25 + "baseSizeTiB": 15, + "extendedCapacitySizeTiB": 27 }, - "location": "South Central US" + "location": "France Central" }, "api-version": "2023-01-01" }, @@ -35,7 +35,8 @@ "volumeGroupCount": 24, "totalIops": 22, "totalMBps": 4, - "totalSizeTiB": 27 + "totalSizeTiB": 27, + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", @@ -67,14 +68,15 @@ "availabilityZones": [ "1" ], - "provisioningState": "Creating", + "provisioningState": "Succeeded", "baseSizeTiB": 15, "extendedCapacitySizeTiB": 6, "totalVolumeSizeGiB": 15, "volumeGroupCount": 24, "totalIops": 22, "totalMBps": 4, - "totalSizeTiB": 27 + "totalSizeTiB": 27, + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Get_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Get_MaximumSet_Gen.json index 90a57a2d70ec..5dee8437d093 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Get_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Get_MaximumSet_Gen.json @@ -54,7 +54,8 @@ "lastModifiedAt": "2023-07-03T09:59:45.919Z" } } - ] + ], + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Get_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Get_MinimumSet_Gen.json index 90a57a2d70ec..5dee8437d093 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Get_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Get_MinimumSet_Gen.json @@ -54,7 +54,8 @@ "lastModifiedAt": "2023-07-03T09:59:45.919Z" } } - ] + ], + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListByResourceGroup_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListByResourceGroup_MaximumSet_Gen.json index 2c988ab5de37..24486f936a75 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListByResourceGroup_MaximumSet_Gen.json @@ -47,15 +47,16 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" } } - ] + ], + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", @@ -74,7 +75,7 @@ "type": "Microsoft.ElasticSan/ElasticSans" } ], - "nextLink": "goepspyylutlwudutmpi" + "nextLink": "axgbgugzotxistmtabpjczrkqbfy" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListByResourceGroup_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListByResourceGroup_MinimumSet_Gen.json index 2c988ab5de37..24486f936a75 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListByResourceGroup_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListByResourceGroup_MinimumSet_Gen.json @@ -47,15 +47,16 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" } } - ] + ], + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", @@ -74,7 +75,7 @@ "type": "Microsoft.ElasticSan/ElasticSans" } ], - "nextLink": "goepspyylutlwudutmpi" + "nextLink": "axgbgugzotxistmtabpjczrkqbfy" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListBySubscription_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListBySubscription_MaximumSet_Gen.json index 4c6eb1552625..0186efc1705c 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListBySubscription_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListBySubscription_MaximumSet_Gen.json @@ -46,15 +46,16 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" } } - ] + ], + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", @@ -73,7 +74,7 @@ "type": "Microsoft.ElasticSan/ElasticSans" } ], - "nextLink": "goepspyylutlwudutmpi" + "nextLink": "axgbgugzotxistmtabpjczrkqbfy" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListBySubscription_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListBySubscription_MinimumSet_Gen.json index 4c6eb1552625..0186efc1705c 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListBySubscription_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_ListBySubscription_MinimumSet_Gen.json @@ -46,15 +46,16 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" } } - ] + ], + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", @@ -73,7 +74,7 @@ "type": "Microsoft.ElasticSan/ElasticSans" } ], - "nextLink": "goepspyylutlwudutmpi" + "nextLink": "axgbgugzotxistmtabpjczrkqbfy" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Update_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Update_MaximumSet_Gen.json index 9e58166d884b..af4ede9c846e 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Update_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Update_MaximumSet_Gen.json @@ -7,11 +7,12 @@ "elasticSanName": "elasticsanname", "parameters": { "properties": { - "baseSizeTiB": 10, - "extendedCapacitySizeTiB": 22 + "baseSizeTiB": 13, + "extendedCapacitySizeTiB": 29, + "publicNetworkAccess": "Enabled" }, "tags": { - "key4212": "cqvcnwfefljntgeio" + "key1931": "yhjwkgmrrwrcoxblgwgzjqusch" } }, "api-version": "2023-01-01" @@ -55,15 +56,16 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" } } - ] + ], + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Update_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Update_MinimumSet_Gen.json index 7d852ec7684c..5ad716f73f47 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Update_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/ElasticSans_Update_MinimumSet_Gen.json @@ -47,15 +47,16 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" } } - ] + ], + "publicNetworkAccess": "Enabled" }, "systemData": { "createdBy": "otfifnrahdshqombvtg", diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Operations_List_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Operations_List_MaximumSet_Gen.json index dd6dd6b4825e..2a252f77c58e 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Operations_List_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Operations_List_MaximumSet_Gen.json @@ -9,17 +9,19 @@ "body": { "value": [ { - "name": "qgcosclgjmglgs", + "name": "zgtqmglizaqlsx", "isDataAction": true, "display": { - "provider": "dbdmmszikohrwlvl", - "resource": "adqzzhgl", - "operation": "ofkypzumjbtezuqujudkqcf", - "description": "fmbdwtvxjilmflxdlmbysmr" - } + "provider": "apbqaoiegbmipkbqdczsuvlak", + "resource": "hjyuuxkj", + "operation": "yumtqbnawcvunwda", + "description": "pmkjqzjverubmslnrcadqur" + }, + "origin": "user", + "actionType": "Internal" } ], - "nextLink": "tfqrgvxkwqjx" + "nextLink": "ljqzljjgtxaytxufbermmlkrmpy" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Operations_List_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Operations_List_MinimumSet_Gen.json index 45b30eb7ba36..5b2d33be7784 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Operations_List_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Operations_List_MinimumSet_Gen.json @@ -6,13 +6,7 @@ }, "responses": { "200": { - "body": { - "value": [ - { - "name": "qgcosclgjmglgs" - } - ] - } + "body": {} } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Create_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Create_MaximumSet_Gen.json index fdc3006b1ab3..b865341387ae 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Create_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Create_MaximumSet_Gen.json @@ -11,11 +11,11 @@ "privateEndpoint": {}, "privateLinkServiceConnectionState": { "status": "Pending", - "description": "Auto-Approved", - "actionsRequired": "None" + "description": "dxl", + "actionsRequired": "jhjdpwvyzipggtn" }, "groupIds": [ - "sytxzqlcoapcaywthgwvwcw" + "jdwrzpemdjrpiwzvy" ] } }, @@ -42,12 +42,12 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "bgurjvijz", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-25T17:40:52.453Z", + "lastModifiedBy": "uvexylihjrtinzkeluohusnaxatfqh", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-25T17:40:52.453Z" } } }, @@ -74,12 +74,12 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "bgurjvijz", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-25T17:40:52.453Z", + "lastModifiedBy": "uvexylihjrtinzkeluohusnaxatfqh", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-25T17:40:52.453Z" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Create_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Create_MinimumSet_Gen.json index 9001a22a60d3..f3c8849134b7 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Create_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Create_MinimumSet_Gen.json @@ -8,11 +8,7 @@ "privateEndpointConnectionName": "privateendpointconnectionname", "parameters": { "properties": { - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "Auto-Approved", - "actionsRequired": "None" - } + "privateLinkServiceConnectionState": {} } }, "api-version": "2023-01-01" @@ -38,12 +34,12 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "bgurjvijz", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-25T17:40:52.453Z", + "lastModifiedBy": "uvexylihjrtinzkeluohusnaxatfqh", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-25T17:40:52.453Z" } } }, @@ -70,12 +66,12 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "bgurjvijz", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-25T17:40:52.453Z", + "lastModifiedBy": "uvexylihjrtinzkeluohusnaxatfqh", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-25T17:40:52.453Z" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Delete_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Delete_MaximumSet_Gen.json index d026befefe14..52b60dc00444 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Delete_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Delete_MaximumSet_Gen.json @@ -1,6 +1,6 @@ { - "title": "PrivateEndpoinConnections_Delete", - "operationId": "PrivateEndpoinConnections_Delete", + "title": "PrivateEndpointConnections_Delete", + "operationId": "PrivateEndpointConnections_Delete", "parameters": { "subscriptionId": "subscriptionid", "resourceGroupName": "resourcegroupname", diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Delete_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Delete_MinimumSet_Gen.json index d026befefe14..52b60dc00444 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Delete_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Delete_MinimumSet_Gen.json @@ -1,6 +1,6 @@ { - "title": "PrivateEndpoinConnections_Delete", - "operationId": "PrivateEndpoinConnections_Delete", + "title": "PrivateEndpointConnections_Delete", + "operationId": "PrivateEndpointConnections_Delete", "parameters": { "subscriptionId": "subscriptionid", "resourceGroupName": "resourcegroupname", diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Get_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Get_MaximumSet_Gen.json index 6abeb5d57130..5619725e9a3f 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Get_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Get_MaximumSet_Gen.json @@ -29,12 +29,12 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "bgurjvijz", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-25T17:40:52.453Z", + "lastModifiedBy": "uvexylihjrtinzkeluohusnaxatfqh", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-25T17:40:52.453Z" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Get_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Get_MinimumSet_Gen.json index 6abeb5d57130..5619725e9a3f 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Get_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_Get_MinimumSet_Gen.json @@ -29,12 +29,12 @@ "name": "{privateEndpointConnectionName}", "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "bgurjvijz", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-25T17:40:52.453Z", + "lastModifiedBy": "uvexylihjrtinzkeluohusnaxatfqh", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-25T17:40:52.453Z" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_List_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_List_MaximumSet_Gen.json index aa9522093aaf..544bdef5eeb5 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_List_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_List_MaximumSet_Gen.json @@ -13,33 +13,33 @@ "value": [ { "properties": { - "provisioningState": "Succeeded", + "provisioningState": "Invalid", "privateEndpoint": { - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}" + "id": "gktekmqchmjqxhfvywq" }, "privateLinkServiceConnectionState": { "status": "Pending", - "description": "Auto-Approved", - "actionsRequired": "None" + "description": "dxl", + "actionsRequired": "jhjdpwvyzipggtn" }, "groupIds": [ - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}" + "jdwrzpemdjrpiwzvy" ] }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections/{privateEndpointConnectionName}", - "name": "{privateEndpointConnectionName}", - "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", + "id": "ynin", + "name": "vyzqckpcwufpvalbspekxikt", + "type": "ldolsnjwzutewucdfessitnxqb", "systemData": { - "createdBy": "otfifnrahdshqombvtg", + "createdBy": "bgurjvijz", "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", + "createdAt": "2023-08-25T17:40:52.453Z", + "lastModifiedBy": "uvexylihjrtinzkeluohusnaxatfqh", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" + "lastModifiedAt": "2023-08-25T17:40:52.453Z" } } ], - "nextLink": "mwzcxnylrsniowju" + "nextLink": "ifbpdcl" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_List_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_List_MinimumSet_Gen.json index aa9522093aaf..1cd2ddca3b18 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_List_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateEndpointConnections_List_MinimumSet_Gen.json @@ -9,38 +9,7 @@ }, "responses": { "200": { - "body": { - "value": [ - { - "properties": { - "provisioningState": "Succeeded", - "privateEndpoint": { - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}" - }, - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "Auto-Approved", - "actionsRequired": "None" - }, - "groupIds": [ - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}" - ] - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections/{privateEndpointConnectionName}", - "name": "{privateEndpointConnectionName}", - "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", - "systemData": { - "createdBy": "otfifnrahdshqombvtg", - "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", - "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" - } - } - ], - "nextLink": "mwzcxnylrsniowju" - } + "body": {} } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateLinkResources_ListByElasticSan_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateLinkResources_ListByElasticSan_MaximumSet_Gen.json index f45e975e9111..0ecd091df58a 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateLinkResources_ListByElasticSan_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateLinkResources_ListByElasticSan_MaximumSet_Gen.json @@ -13,28 +13,28 @@ "value": [ { "properties": { - "groupId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", + "groupId": "mbouakfumvbeqnevmgxpk", "requiredMembers": [ - "{volumeGroupName}" + "wujfilzifgumbvxbdhazmzf" ], "requiredZoneNames": [ - "lsknuvjjtgsrocmoq" + "hzxhgoqxxiaf" ] }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections/{privateEndpointConnectionName}", - "name": "{privateEndpointConnectionName}", - "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", + "id": "iidc", + "name": "ggbyptukibs", + "type": "qrfsowhtanlj", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "bgurjvijz", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-25T17:40:52.453Z", + "lastModifiedBy": "uvexylihjrtinzkeluohusnaxatfqh", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" + "lastModifiedAt": "2023-08-25T17:40:52.453Z" } } ], - "nextLink": "qpcenviendbpjuhyzwzshdkd" + "nextLink": "bvbshxnaxznetoylfjjbyf" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateLinkResources_ListByElasticSan_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateLinkResources_ListByElasticSan_MinimumSet_Gen.json index f45e975e9111..62ae3c681df4 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateLinkResources_ListByElasticSan_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/PrivateLinkResources_ListByElasticSan_MinimumSet_Gen.json @@ -9,33 +9,7 @@ }, "responses": { "200": { - "body": { - "value": [ - { - "properties": { - "groupId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "requiredMembers": [ - "{volumeGroupName}" - ], - "requiredZoneNames": [ - "lsknuvjjtgsrocmoq" - ] - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections/{privateEndpointConnectionName}", - "name": "{privateEndpointConnectionName}", - "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", - "systemData": { - "createdBy": "zloujisrarsox", - "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", - "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - } - } - ], - "nextLink": "qpcenviendbpjuhyzwzshdkd" - } + "body": {} } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Skus_List_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Skus_List_MaximumSet_Gen.json index 0b313f126835..cfd483bc2606 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Skus_List_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Skus_List_MaximumSet_Gen.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "subscriptionid", "api-version": "2023-01-01", - "$filter": "dtycml" + "$filter": "obwwdrkq" }, "responses": { "200": { @@ -13,13 +13,13 @@ { "name": "Premium_LRS", "tier": "Premium", - "resourceType": "rnumsqm", + "resourceType": "tlqickysdtjahoanstgancifxfu", "locations": [ - "jqdpabrworxiinhlmfmtko" + "ceszpxwqyifrxobqykplm" ], "locationInfo": [ { - "location": "oxpkwgcdvlonfcwtttor", + "location": "ngycrsoihxdfctigejlf", "zones": [ "1" ] @@ -27,12 +27,13 @@ ], "capabilities": [ { - "name": "fihkmeasrwpjyti", - "value": "jlojmjpjucekutlgtwhjgxwpqctdjy" + "name": "qkht", + "value": "eoayvlyzyjjziecxymlpk" } ] } - ] + ], + "nextLink": "venbbrnqqxaqemezvv" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Create_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Create_MaximumSet_Gen.json index 57b7f7095c58..b1e4cb890a58 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Create_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Create_MaximumSet_Gen.json @@ -7,9 +7,25 @@ "elasticSanName": "elasticsanname", "volumeGroupName": "volumegroupname", "parameters": { + "identity": { + "type": "None", + "userAssignedIdentities": { + "key7482": {} + } + }, "properties": { "protocolType": "Iscsi", "encryption": "EncryptionAtRestWithPlatformKey", + "encryptionProperties": { + "keyVaultProperties": { + "keyName": "sftaiernmrzypnrkpakrrawxcbsqzc", + "keyVersion": "c", + "keyVaultUri": "https://microsoft.com/axmblwp" + }, + "identity": { + "userAssignedIdentity": "im" + } + }, "networkAcls": { "virtualNetworkRules": [ { @@ -25,31 +41,54 @@ "responses": { "200": { "body": { + "identity": { + "principalId": "ihsiwrwdofymkhquaxcrtfmmrsygw", + "tenantId": "gtkzkjsy", + "type": "None", + "userAssignedIdentities": { + "key7482": { + "principalId": "vfdzizicxcfcqecgsmshz", + "clientId": "jaczsquolgxwpznljbmdupn" + } + } + }, "properties": { "provisioningState": "Succeeded", "protocolType": "Iscsi", "encryption": "EncryptionAtRestWithPlatformKey", + "encryptionProperties": { + "keyVaultProperties": { + "keyName": "sftaiernmrzypnrkpakrrawxcbsqzc", + "keyVersion": "c", + "keyVaultUri": "https://microsoft.com/axmblwp", + "currentVersionedKeyIdentifier": "rnpxhtzkquzyoepwbwktbwb", + "lastKeyRotationTimestamp": "2023-08-23T12:16:11.388Z", + "currentVersionedKeyExpirationTimestamp": "2023-08-23T12:16:11.388Z" + }, + "identity": { + "userAssignedIdentity": "im" + } + }, "networkAcls": { "virtualNetworkRules": [ { "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "action": "Allow", - "state": "provisioning" + "action": "Allow" } ] } }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", + "name": "cr", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "name": "cr", - "type": "Microsoft.ElasticSan/elasticSans/volumeGroups" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } }, "201": { @@ -57,31 +96,83 @@ "location": "https://contoso.com/operationstatus" }, "body": { + "identity": { + "principalId": "ihsiwrwdofymkhquaxcrtfmmrsygw", + "tenantId": "gtkzkjsy", + "type": "None", + "userAssignedIdentities": { + "key7482": { + "principalId": "vfdzizicxcfcqecgsmshz", + "clientId": "jaczsquolgxwpznljbmdupn" + } + } + }, "properties": { - "provisioningState": "Invalid", + "provisioningState": "Succeeded", "protocolType": "Iscsi", "encryption": "EncryptionAtRestWithPlatformKey", + "encryptionProperties": { + "keyVaultProperties": { + "keyName": "sftaiernmrzypnrkpakrrawxcbsqzc", + "keyVersion": "c", + "keyVaultUri": "https://microsoft.com/axmblwp", + "currentVersionedKeyIdentifier": "rnpxhtzkquzyoepwbwktbwb", + "lastKeyRotationTimestamp": "2023-08-23T12:16:11.388Z", + "currentVersionedKeyExpirationTimestamp": "2023-08-23T12:16:11.388Z" + }, + "identity": { + "userAssignedIdentity": "im" + } + }, "networkAcls": { "virtualNetworkRules": [ { "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "action": "Allow", - "state": "provisioning" + "action": "Allow" } ] - } + }, + "privateEndpointConnections": [ + { + "properties": { + "provisioningState": "Invalid", + "privateEndpoint": { + "id": "ehxmltubeltzmgcqxocakaansat" + }, + "privateLinkServiceConnectionState": { + "status": "Pending", + "description": "nahklgxicbqjbbvcdrkljqdhprruys", + "actionsRequired": "sairafcqpvucoy" + }, + "groupIds": [ + "bolviufgqnyid" + ] + }, + "id": "opcjchensdf", + "name": "gewxykc", + "type": "ailymcedgvxbqklmqtlty", + "systemData": { + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", + "createdByType": "User", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } + } + ] }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", + "name": "cr", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "name": "cr", - "type": "Microsoft.ElasticSan/elasticSans/volumeGroups" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Create_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Create_MinimumSet_Gen.json index 1c2e4fd96516..de6861765e97 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Create_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Create_MinimumSet_Gen.json @@ -12,31 +12,83 @@ "responses": { "200": { "body": { + "identity": { + "principalId": "ihsiwrwdofymkhquaxcrtfmmrsygw", + "tenantId": "gtkzkjsy", + "type": "None", + "userAssignedIdentities": { + "key7482": { + "principalId": "vfdzizicxcfcqecgsmshz", + "clientId": "jaczsquolgxwpznljbmdupn" + } + } + }, "properties": { "provisioningState": "Succeeded", "protocolType": "Iscsi", "encryption": "EncryptionAtRestWithPlatformKey", + "encryptionProperties": { + "keyVaultProperties": { + "keyName": "sftaiernmrzypnrkpakrrawxcbsqzc", + "keyVersion": "c", + "keyVaultUri": "https://microsoft.com/axmblwp", + "currentVersionedKeyIdentifier": "rnpxhtzkquzyoepwbwktbwb", + "lastKeyRotationTimestamp": "2023-08-23T12:16:11.388Z", + "currentVersionedKeyExpirationTimestamp": "2023-08-23T12:16:11.388Z" + }, + "identity": { + "userAssignedIdentity": "im" + } + }, "networkAcls": { "virtualNetworkRules": [ { "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "action": "Allow", - "state": "provisioning" + "action": "Allow" } ] - } + }, + "privateEndpointConnections": [ + { + "properties": { + "provisioningState": "Invalid", + "privateEndpoint": { + "id": "ehxmltubeltzmgcqxocakaansat" + }, + "privateLinkServiceConnectionState": { + "status": "Pending", + "description": "nahklgxicbqjbbvcdrkljqdhprruys", + "actionsRequired": "sairafcqpvucoy" + }, + "groupIds": [ + "bolviufgqnyid" + ] + }, + "id": "opcjchensdf", + "name": "gewxykc", + "type": "ailymcedgvxbqklmqtlty", + "systemData": { + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", + "createdByType": "User", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } + } + ] }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", + "name": "cr", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "name": "cr", - "type": "Microsoft.ElasticSan/elasticSans/volumeGroups" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } }, "201": { @@ -44,31 +96,54 @@ "location": "https://contoso.com/operationstatus" }, "body": { + "identity": { + "principalId": "ihsiwrwdofymkhquaxcrtfmmrsygw", + "tenantId": "gtkzkjsy", + "type": "None", + "userAssignedIdentities": { + "key7482": { + "principalId": "vfdzizicxcfcqecgsmshz", + "clientId": "jaczsquolgxwpznljbmdupn" + } + } + }, "properties": { - "provisioningState": "Invalid", + "provisioningState": "Succeeded", "protocolType": "Iscsi", "encryption": "EncryptionAtRestWithPlatformKey", + "encryptionProperties": { + "keyVaultProperties": { + "keyName": "sftaiernmrzypnrkpakrrawxcbsqzc", + "keyVersion": "c", + "keyVaultUri": "https://microsoft.com/axmblwp", + "currentVersionedKeyIdentifier": "rnpxhtzkquzyoepwbwktbwb", + "lastKeyRotationTimestamp": "2023-08-23T12:16:11.388Z", + "currentVersionedKeyExpirationTimestamp": "2023-08-23T12:16:11.388Z" + }, + "identity": { + "userAssignedIdentity": "im" + } + }, "networkAcls": { "virtualNetworkRules": [ { "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "action": "Allow", - "state": "provisioning" + "action": "Allow" } ] } }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", + "name": "cr", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "name": "cr", - "type": "Microsoft.ElasticSan/elasticSans/volumeGroups" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Get_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Get_MaximumSet_Gen.json index 319ebfcab630..d0efa3345da0 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Get_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Get_MaximumSet_Gen.json @@ -11,16 +11,39 @@ "responses": { "200": { "body": { + "identity": { + "principalId": "ihsiwrwdofymkhquaxcrtfmmrsygw", + "tenantId": "gtkzkjsy", + "type": "None", + "userAssignedIdentities": { + "key7482": { + "principalId": "vfdzizicxcfcqecgsmshz", + "clientId": "jaczsquolgxwpznljbmdupn" + } + } + }, "properties": { - "provisioningState": "Invalid", + "provisioningState": "Succeeded", "protocolType": "Iscsi", "encryption": "EncryptionAtRestWithPlatformKey", + "encryptionProperties": { + "keyVaultProperties": { + "keyName": "sftaiernmrzypnrkpakrrawxcbsqzc", + "keyVersion": "c", + "keyVaultUri": "https://microsoft.com/axmblwp", + "currentVersionedKeyIdentifier": "rnpxhtzkquzyoepwbwktbwb", + "lastKeyRotationTimestamp": "2023-08-23T12:16:11.388Z", + "currentVersionedKeyExpirationTimestamp": "2023-08-23T12:16:11.388Z" + }, + "identity": { + "userAssignedIdentity": "im" + } + }, "networkAcls": { "virtualNetworkRules": [ { "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "action": "Allow", - "state": "provisioning" + "action": "Allow" } ] }, @@ -54,17 +77,17 @@ } ] }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", + "name": "cr", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "name": "cr", - "type": "Microsoft.ElasticSan/elasticSans/volumeGroups" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Get_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Get_MinimumSet_Gen.json index 319ebfcab630..e11495813f38 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Get_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Get_MinimumSet_Gen.json @@ -10,62 +10,7 @@ }, "responses": { "200": { - "body": { - "properties": { - "provisioningState": "Invalid", - "protocolType": "Iscsi", - "encryption": "EncryptionAtRestWithPlatformKey", - "networkAcls": { - "virtualNetworkRules": [ - { - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "action": "Allow", - "state": "provisioning" - } - ] - }, - "privateEndpointConnections": [ - { - "properties": { - "provisioningState": "Succeeded", - "privateEndpoint": { - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}" - }, - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "Auto-Approved", - "actionsRequired": "None" - }, - "groupIds": [ - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}" - ] - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections/{privateEndpointConnectionName}", - "name": "{privateEndpointConnectionName}", - "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", - "systemData": { - "createdBy": "otfifnrahdshqombvtg", - "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", - "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" - } - } - ] - }, - "systemData": { - "createdBy": "zloujisrarsox", - "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", - "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "name": "cr", - "type": "Microsoft.ElasticSan/elasticSans/volumeGroups" - } + "body": {} } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_ListByElasticSan_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_ListByElasticSan_MaximumSet_Gen.json index 23ed05235e69..1882cbe4bdb8 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_ListByElasticSan_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_ListByElasticSan_MaximumSet_Gen.json @@ -12,16 +12,39 @@ "body": { "value": [ { + "identity": { + "principalId": "ihsiwrwdofymkhquaxcrtfmmrsygw", + "tenantId": "gtkzkjsy", + "type": "None", + "userAssignedIdentities": { + "key7482": { + "principalId": "vfdzizicxcfcqecgsmshz", + "clientId": "jaczsquolgxwpznljbmdupn" + } + } + }, "properties": { - "provisioningState": "Invalid", + "provisioningState": "Succeeded", "protocolType": "Iscsi", "encryption": "EncryptionAtRestWithPlatformKey", + "encryptionProperties": { + "keyVaultProperties": { + "keyName": "sftaiernmrzypnrkpakrrawxcbsqzc", + "keyVersion": "c", + "keyVaultUri": "https://microsoft.com/axmblwp", + "currentVersionedKeyIdentifier": "rnpxhtzkquzyoepwbwktbwb", + "lastKeyRotationTimestamp": "2023-08-23T12:16:11.388Z", + "currentVersionedKeyExpirationTimestamp": "2023-08-23T12:16:11.388Z" + }, + "identity": { + "userAssignedIdentity": "im" + } + }, "networkAcls": { "virtualNetworkRules": [ { "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "action": "Allow", - "state": "provisioning" + "action": "Allow" } ] }, @@ -55,20 +78,20 @@ } ] }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", + "name": "cr", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "name": "cr", - "type": "Microsoft.ElasticSan/elasticSans/volumeGroups" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } ], - "nextLink": "bgcskeodhoozkjhfkkrdhnaxuroujc" + "nextLink": "psb" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_ListByElasticSan_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_ListByElasticSan_MinimumSet_Gen.json index 23ed05235e69..e527e3f51098 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_ListByElasticSan_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_ListByElasticSan_MinimumSet_Gen.json @@ -9,67 +9,7 @@ }, "responses": { "200": { - "body": { - "value": [ - { - "properties": { - "provisioningState": "Invalid", - "protocolType": "Iscsi", - "encryption": "EncryptionAtRestWithPlatformKey", - "networkAcls": { - "virtualNetworkRules": [ - { - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "action": "Allow", - "state": "provisioning" - } - ] - }, - "privateEndpointConnections": [ - { - "properties": { - "provisioningState": "Succeeded", - "privateEndpoint": { - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}" - }, - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "Auto-Approved", - "actionsRequired": "None" - }, - "groupIds": [ - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}" - ] - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections/{privateEndpointConnectionName}", - "name": "{privateEndpointConnectionName}", - "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", - "systemData": { - "createdBy": "otfifnrahdshqombvtg", - "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", - "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" - } - } - ] - }, - "systemData": { - "createdBy": "zloujisrarsox", - "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", - "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "name": "cr", - "type": "Microsoft.ElasticSan/elasticSans/volumeGroups" - } - ], - "nextLink": "bgcskeodhoozkjhfkkrdhnaxuroujc" - } + "body": {} } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Update_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Update_MaximumSet_Gen.json index 7d895d14606c..078870faea31 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Update_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Update_MaximumSet_Gen.json @@ -7,9 +7,25 @@ "elasticSanName": "elasticsanname", "volumeGroupName": "volumegroupname", "parameters": { + "identity": { + "type": "None", + "userAssignedIdentities": { + "key7482": {} + } + }, "properties": { "protocolType": "Iscsi", "encryption": "EncryptionAtRestWithPlatformKey", + "encryptionProperties": { + "keyVaultProperties": { + "keyName": "sftaiernmrzypnrkpakrrawxcbsqzc", + "keyVersion": "c", + "keyVaultUri": "https://microsoft.com/axmblwp" + }, + "identity": { + "userAssignedIdentity": "im" + } + }, "networkAcls": { "virtualNetworkRules": [ { @@ -25,16 +41,39 @@ "responses": { "200": { "body": { + "identity": { + "principalId": "ihsiwrwdofymkhquaxcrtfmmrsygw", + "tenantId": "gtkzkjsy", + "type": "None", + "userAssignedIdentities": { + "key7482": { + "principalId": "vfdzizicxcfcqecgsmshz", + "clientId": "jaczsquolgxwpznljbmdupn" + } + } + }, "properties": { - "provisioningState": "Invalid", + "provisioningState": "Succeeded", "protocolType": "Iscsi", "encryption": "EncryptionAtRestWithPlatformKey", + "encryptionProperties": { + "keyVaultProperties": { + "keyName": "sftaiernmrzypnrkpakrrawxcbsqzc", + "keyVersion": "c", + "keyVaultUri": "https://microsoft.com/axmblwp", + "currentVersionedKeyIdentifier": "rnpxhtzkquzyoepwbwktbwb", + "lastKeyRotationTimestamp": "2023-08-23T12:16:11.388Z", + "currentVersionedKeyExpirationTimestamp": "2023-08-23T12:16:11.388Z" + }, + "identity": { + "userAssignedIdentity": "im" + } + }, "networkAcls": { "virtualNetworkRules": [ { "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "action": "Allow", - "state": "provisioning" + "action": "Allow" } ] }, @@ -68,17 +107,17 @@ } ] }, + "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", + "name": "cr", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "name": "cr", - "type": "Microsoft.ElasticSan/elasticSans/volumeGroups" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } }, "202": { diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Update_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Update_MinimumSet_Gen.json index bf55b6a6862d..9568134041ff 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Update_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeGroups_Update_MinimumSet_Gen.json @@ -11,62 +11,7 @@ }, "responses": { "200": { - "body": { - "properties": { - "provisioningState": "Invalid", - "protocolType": "Iscsi", - "encryption": "EncryptionAtRestWithPlatformKey", - "networkAcls": { - "virtualNetworkRules": [ - { - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}", - "action": "Allow", - "state": "provisioning" - } - ] - }, - "privateEndpointConnections": [ - { - "properties": { - "provisioningState": "Succeeded", - "privateEndpoint": { - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}" - }, - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "Auto-Approved", - "actionsRequired": "None" - }, - "groupIds": [ - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}" - ] - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections/{privateEndpointConnectionName}", - "name": "{privateEndpointConnectionName}", - "type": "Microsoft.ElasticSan/elasticSans/privateEndpointConnections", - "systemData": { - "createdBy": "otfifnrahdshqombvtg", - "createdByType": "User", - "createdAt": "2023-07-03T09:59:45.919Z", - "lastModifiedBy": "jnaxavnlhrboshtidtib", - "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-03T09:59:45.919Z" - } - } - ] - }, - "systemData": { - "createdBy": "zloujisrarsox", - "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", - "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}", - "name": "cr", - "type": "Microsoft.ElasticSan/elasticSans/volumeGroups" - } + "body": {} }, "202": { "headers": { diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Create_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Create_MaximumSet_Gen.json new file mode 100644 index 000000000000..d1481dd2827a --- /dev/null +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Create_MaximumSet_Gen.json @@ -0,0 +1,70 @@ +{ + "title": "VolumeSnapshots_Create", + "operationId": "VolumeSnapshots_Create", + "parameters": { + "subscriptionId": "subscriptionid", + "resourceGroupName": "resourcegroupname", + "elasticSanName": "elasticsanname", + "volumeGroupName": "volumegroupname", + "snapshotName": "snapshotname", + "parameters": { + "properties": { + "creationData": { + "sourceId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}" + } + } + }, + "api-version": "2023-01-01" + }, + "responses": { + "200": { + "body": { + "properties": { + "creationData": { + "sourceId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}" + }, + "provisioningState": "Succeeded", + "sourceVolumeSizeGiB": 28, + "volumeName": "volumename" + }, + "id": "bbqqgzxagggqgkdgjqq", + "name": "qukfugetqthsufp", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots", + "systemData": { + "createdBy": "f", + "createdByType": "User", + "createdAt": "2023-09-06T06:58:45.864Z", + "lastModifiedBy": "wifrlzeszzcckvdzdwxhvservlvarp", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T06:58:45.864Z" + } + } + }, + "201": { + "headers": { + "location": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "creationData": { + "sourceId": "vfirlleqvpepxnptyyrz" + }, + "provisioningState": "Invalid", + "sourceVolumeSizeGiB": 28, + "volumeName": "o" + }, + "id": "bbqqgzxagggqgkdgjqq", + "name": "qukfugetqthsufp", + "type": "otehpgddawwqhsxyskvsfgrykwdgui", + "systemData": { + "createdBy": "f", + "createdByType": "User", + "createdAt": "2023-09-06T06:58:45.864Z", + "lastModifiedBy": "wifrlzeszzcckvdzdwxhvservlvarp", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T06:58:45.864Z" + } + } + } + } +} diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Create_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Create_MinimumSet_Gen.json new file mode 100644 index 000000000000..d1481dd2827a --- /dev/null +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Create_MinimumSet_Gen.json @@ -0,0 +1,70 @@ +{ + "title": "VolumeSnapshots_Create", + "operationId": "VolumeSnapshots_Create", + "parameters": { + "subscriptionId": "subscriptionid", + "resourceGroupName": "resourcegroupname", + "elasticSanName": "elasticsanname", + "volumeGroupName": "volumegroupname", + "snapshotName": "snapshotname", + "parameters": { + "properties": { + "creationData": { + "sourceId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}" + } + } + }, + "api-version": "2023-01-01" + }, + "responses": { + "200": { + "body": { + "properties": { + "creationData": { + "sourceId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}" + }, + "provisioningState": "Succeeded", + "sourceVolumeSizeGiB": 28, + "volumeName": "volumename" + }, + "id": "bbqqgzxagggqgkdgjqq", + "name": "qukfugetqthsufp", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots", + "systemData": { + "createdBy": "f", + "createdByType": "User", + "createdAt": "2023-09-06T06:58:45.864Z", + "lastModifiedBy": "wifrlzeszzcckvdzdwxhvservlvarp", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T06:58:45.864Z" + } + } + }, + "201": { + "headers": { + "location": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "creationData": { + "sourceId": "vfirlleqvpepxnptyyrz" + }, + "provisioningState": "Invalid", + "sourceVolumeSizeGiB": 28, + "volumeName": "o" + }, + "id": "bbqqgzxagggqgkdgjqq", + "name": "qukfugetqthsufp", + "type": "otehpgddawwqhsxyskvsfgrykwdgui", + "systemData": { + "createdBy": "f", + "createdByType": "User", + "createdAt": "2023-09-06T06:58:45.864Z", + "lastModifiedBy": "wifrlzeszzcckvdzdwxhvservlvarp", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T06:58:45.864Z" + } + } + } + } +} diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Delete_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..0c80a5595145 --- /dev/null +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Delete_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "VolumeSnapshots_Delete", + "operationId": "VolumeSnapshots_Delete", + "parameters": { + "subscriptionId": "subscriptionid", + "resourceGroupName": "resourcegroupname", + "elasticSanName": "elasticsanname", + "volumeGroupName": "volumegroupname", + "snapshotName": "snapshotname", + "api-version": "2023-01-01" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Delete_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Delete_MinimumSet_Gen.json new file mode 100644 index 000000000000..0c80a5595145 --- /dev/null +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Delete_MinimumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "VolumeSnapshots_Delete", + "operationId": "VolumeSnapshots_Delete", + "parameters": { + "subscriptionId": "subscriptionid", + "resourceGroupName": "resourcegroupname", + "elasticSanName": "elasticsanname", + "volumeGroupName": "volumegroupname", + "snapshotName": "snapshotname", + "api-version": "2023-01-01" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Get_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..9cdb6ca3a94d --- /dev/null +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Get_MaximumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "VolumeSnapshots_Get", + "operationId": "VolumeSnapshots_Get", + "parameters": { + "subscriptionId": "subscriptionid", + "resourceGroupName": "resourcegroupname", + "elasticSanName": "elasticsanname", + "volumeGroupName": "volumegroupname", + "snapshotName": "snapshotname", + "api-version": "2023-01-01" + }, + "responses": { + "200": { + "body": { + "properties": { + "creationData": { + "sourceId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}" + }, + "provisioningState": "Succeeded", + "sourceVolumeSizeGiB": 28, + "volumeName": "volumename" + }, + "id": "bbqqgzxagggqgkdgjqq", + "name": "qukfugetqthsufp", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots", + "systemData": { + "createdBy": "f", + "createdByType": "User", + "createdAt": "2023-09-06T06:58:45.864Z", + "lastModifiedBy": "wifrlzeszzcckvdzdwxhvservlvarp", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T06:58:45.864Z" + } + } + } + } +} diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Get_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Get_MinimumSet_Gen.json new file mode 100644 index 000000000000..9cdb6ca3a94d --- /dev/null +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_Get_MinimumSet_Gen.json @@ -0,0 +1,37 @@ +{ + "title": "VolumeSnapshots_Get", + "operationId": "VolumeSnapshots_Get", + "parameters": { + "subscriptionId": "subscriptionid", + "resourceGroupName": "resourcegroupname", + "elasticSanName": "elasticsanname", + "volumeGroupName": "volumegroupname", + "snapshotName": "snapshotname", + "api-version": "2023-01-01" + }, + "responses": { + "200": { + "body": { + "properties": { + "creationData": { + "sourceId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}" + }, + "provisioningState": "Succeeded", + "sourceVolumeSizeGiB": 28, + "volumeName": "volumename" + }, + "id": "bbqqgzxagggqgkdgjqq", + "name": "qukfugetqthsufp", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots", + "systemData": { + "createdBy": "f", + "createdByType": "User", + "createdAt": "2023-09-06T06:58:45.864Z", + "lastModifiedBy": "wifrlzeszzcckvdzdwxhvservlvarp", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T06:58:45.864Z" + } + } + } + } +} diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_ListByVolumeGroup_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_ListByVolumeGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..0af96e6982f4 --- /dev/null +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_ListByVolumeGroup_MaximumSet_Gen.json @@ -0,0 +1,42 @@ +{ + "title": "VolumeSnapshots_ListByVolumeGroup", + "operationId": "VolumeSnapshots_ListByVolumeGroup", + "parameters": { + "subscriptionId": "subscriptionid", + "resourceGroupName": "resourcegroupname", + "elasticSanName": "elasticsanname", + "volumeGroupName": "volumegroupname", + "$filter": "volumeName eq ", + "api-version": "2023-01-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "creationData": { + "sourceId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}" + }, + "provisioningState": "Succeeded", + "sourceVolumeSizeGiB": 28, + "volumeName": "volumename" + }, + "id": "bbqqgzxagggqgkdgjqq", + "name": "qukfugetqthsufp", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots", + "systemData": { + "createdBy": "f", + "createdByType": "User", + "createdAt": "2023-09-06T06:58:45.864Z", + "lastModifiedBy": "wifrlzeszzcckvdzdwxhvservlvarp", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T06:58:45.864Z" + } + } + ], + "nextLink": "dhkjkw" + } + } + } +} diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_ListByVolumeGroup_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_ListByVolumeGroup_MinimumSet_Gen.json new file mode 100644 index 000000000000..2cf92ad600e5 --- /dev/null +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/VolumeSnapshots_ListByVolumeGroup_MinimumSet_Gen.json @@ -0,0 +1,16 @@ +{ + "title": "VolumeSnapshots_ListByVolumeGroup", + "operationId": "VolumeSnapshots_ListByVolumeGroup", + "parameters": { + "subscriptionId": "subscriptionid", + "resourceGroupName": "resourcegroupname", + "elasticSanName": "elasticsanname", + "volumeGroupName": "volumegroupname", + "api-version": "2023-01-01" + }, + "responses": { + "200": { + "body": {} + } + } +} diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Create_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Create_MaximumSet_Gen.json index 4bbe4d347a0d..bc4af7e1b71e 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Create_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Create_MaximumSet_Gen.json @@ -11,9 +11,12 @@ "properties": { "creationData": { "createSource": "None", - "sourceUri": " ARM Id of resource" + "sourceId": "ARM Id of Resource" }, - "sizeGiB": 23 + "sizeGiB": 9, + "managedBy": { + "resourceId": "mtkeip" + } } }, "api-version": "2023-01-01" @@ -22,31 +25,35 @@ "200": { "body": { "properties": { - "volumeId": "hkbhievbyopwjqawbyvqi", + "volumeId": "umwjlxntntjejiyrywrytkzbfbluhk", "creationData": { "createSource": "None", - "sourceUri": " ARM Id of resource" + "sourceId": "ARM Id of Resource" }, - "sizeGiB": 23, + "sizeGiB": 9, "storageTarget": { - "targetIqn": "yuuex", - "targetPortalHostname": "yktnmynpdjpmztwuwcvipp", - "targetPortalPort": 3, + "targetIqn": "izdwogzjedsfug", + "targetPortalHostname": "wyfbjobugmad", + "targetPortalPort": 21, "provisioningState": "Succeeded", "status": "Invalid" - } + }, + "managedBy": { + "resourceId": "mtkeip" + }, + "provisioningState": "Invalid" }, + "id": "swkcmwglncgtsnejzvldnbpsifxez", + "name": "o", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/volumes", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}", - "name": "ipmipjggodoxjua", - "type": "Microsoft.ElasticSan/elasticSans" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } }, "201": { @@ -55,31 +62,35 @@ }, "body": { "properties": { - "volumeId": "hkbhievbyopwjqawbyvqi", + "volumeId": "umwjlxntntjejiyrywrytkzbfbluhk", "creationData": { "createSource": "None", - "sourceUri": " ARM Id of resource" + "sourceId": "ARM Id of Resource" }, - "sizeGiB": 23, + "sizeGiB": 9, "storageTarget": { - "targetIqn": "yuuex", - "targetPortalHostname": "yktnmynpdjpmztwuwcvipp", - "targetPortalPort": 3, - "provisioningState": "Creating", + "targetIqn": "izdwogzjedsfug", + "targetPortalHostname": "wyfbjobugmad", + "targetPortalPort": 21, + "provisioningState": "Succeeded", "status": "Invalid" - } + }, + "managedBy": { + "resourceId": "mtkeip" + }, + "provisioningState": "Invalid" }, + "id": "swkcmwglncgtsnejzvldnbpsifxez", + "name": "o", + "type": "tyovzldepzljfhjp", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}", - "name": "ipmipjggodoxjua", - "type": "Microsoft.ElasticSan/elasticSans" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Create_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Create_MinimumSet_Gen.json index 5bf1c576d51f..646a76c85f6c 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Create_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Create_MinimumSet_Gen.json @@ -9,7 +9,7 @@ "volumeName": "volumename", "parameters": { "properties": { - "sizeGiB": 23 + "sizeGiB": 9 } }, "api-version": "2023-01-01" @@ -18,31 +18,35 @@ "200": { "body": { "properties": { - "volumeId": "hkbhievbyopwjqawbyvqi", + "volumeId": "umwjlxntntjejiyrywrytkzbfbluhk", "creationData": { "createSource": "None", - "sourceUri": " ARM Id of resource" + "sourceId": "ARM Id of Resource" }, - "sizeGiB": 23, + "sizeGiB": 9, "storageTarget": { - "targetIqn": "yuuex", - "targetPortalHostname": "yktnmynpdjpmztwuwcvipp", - "targetPortalPort": 3, + "targetIqn": "izdwogzjedsfug", + "targetPortalHostname": "wyfbjobugmad", + "targetPortalPort": 21, "provisioningState": "Succeeded", "status": "Invalid" - } + }, + "managedBy": { + "resourceId": "mtkeip" + }, + "provisioningState": "Invalid" }, + "id": "swkcmwglncgtsnejzvldnbpsifxez", + "name": "o", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/volumes", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}", - "name": "ipmipjggodoxjua", - "type": "Microsoft.ElasticSan/elasticSans" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } }, "201": { @@ -51,31 +55,35 @@ }, "body": { "properties": { - "volumeId": "hkbhievbyopwjqawbyvqi", + "volumeId": "umwjlxntntjejiyrywrytkzbfbluhk", "creationData": { "createSource": "None", - "sourceUri": " ARM Id of resource" + "sourceId": "ARM Id of Resource" }, - "sizeGiB": 23, + "sizeGiB": 9, "storageTarget": { - "targetIqn": "yuuex", - "targetPortalHostname": "yktnmynpdjpmztwuwcvipp", - "targetPortalPort": 3, - "provisioningState": "Creating", + "targetIqn": "izdwogzjedsfug", + "targetPortalHostname": "wyfbjobugmad", + "targetPortalPort": 21, + "provisioningState": "Succeeded", "status": "Invalid" - } + }, + "managedBy": { + "resourceId": "mtkeip" + }, + "provisioningState": "Invalid" }, + "id": "swkcmwglncgtsnejzvldnbpsifxez", + "name": "o", + "type": "tyovzldepzljfhjp", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}", - "name": "ipmipjggodoxjua", - "type": "Microsoft.ElasticSan/elasticSans" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Delete_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Delete_MaximumSet_Gen.json index d998c54f71df..9135d58eda7d 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Delete_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Delete_MaximumSet_Gen.json @@ -7,7 +7,9 @@ "elasticSanName": "elasticsanname", "volumeGroupName": "volumegroupname", "volumeName": "volumename", - "api-version": "2023-01-01" + "api-version": "2023-01-01", + "x-ms-delete-snapshots": "true", + "x-ms-force-delete": "true" }, "responses": { "200": {}, diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Get_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Get_MaximumSet_Gen.json index 3ff566c8701e..943051fac005 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Get_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Get_MaximumSet_Gen.json @@ -13,31 +13,35 @@ "200": { "body": { "properties": { - "volumeId": "hkbhievbyopwjqawbyvqi", + "volumeId": "umwjlxntntjejiyrywrytkzbfbluhk", "creationData": { "createSource": "None", - "sourceUri": " ARM Id of resource" + "sourceId": "ARM Id of Resource" }, - "sizeGiB": 23, + "sizeGiB": 9, "storageTarget": { - "targetIqn": "yuuex", - "targetPortalHostname": "yktnmynpdjpmztwuwcvipp", - "targetPortalPort": 3, + "targetIqn": "izdwogzjedsfug", + "targetPortalHostname": "wyfbjobugmad", + "targetPortalPort": 21, "provisioningState": "Succeeded", "status": "Invalid" - } + }, + "managedBy": { + "resourceId": "mtkeip" + }, + "provisioningState": "Invalid" }, + "id": "swkcmwglncgtsnejzvldnbpsifxez", + "name": "o", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/volumes", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}", - "name": "ipmipjggodoxjua", - "type": "Microsoft.ElasticSan/elasticSans" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Get_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Get_MinimumSet_Gen.json index 3ff566c8701e..943051fac005 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Get_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Get_MinimumSet_Gen.json @@ -13,31 +13,35 @@ "200": { "body": { "properties": { - "volumeId": "hkbhievbyopwjqawbyvqi", + "volumeId": "umwjlxntntjejiyrywrytkzbfbluhk", "creationData": { "createSource": "None", - "sourceUri": " ARM Id of resource" + "sourceId": "ARM Id of Resource" }, - "sizeGiB": 23, + "sizeGiB": 9, "storageTarget": { - "targetIqn": "yuuex", - "targetPortalHostname": "yktnmynpdjpmztwuwcvipp", - "targetPortalPort": 3, + "targetIqn": "izdwogzjedsfug", + "targetPortalHostname": "wyfbjobugmad", + "targetPortalPort": 21, "provisioningState": "Succeeded", "status": "Invalid" - } + }, + "managedBy": { + "resourceId": "mtkeip" + }, + "provisioningState": "Invalid" }, + "id": "swkcmwglncgtsnejzvldnbpsifxez", + "name": "o", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/volumes", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}", - "name": "ipmipjggodoxjua", - "type": "Microsoft.ElasticSan/elasticSans" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_ListByVolumeGroup_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_ListByVolumeGroup_MaximumSet_Gen.json index 1c6feedd3e56..9a496d3ab1fd 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_ListByVolumeGroup_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_ListByVolumeGroup_MaximumSet_Gen.json @@ -14,34 +14,38 @@ "value": [ { "properties": { - "volumeId": "hkbhievbyopwjqawbyvqi", + "volumeId": "umwjlxntntjejiyrywrytkzbfbluhk", "creationData": { "createSource": "None", - "sourceUri": " ARM Id of resource" + "sourceId": "ARM Id of Resource" }, - "sizeGiB": 23, + "sizeGiB": 9, "storageTarget": { - "targetIqn": "yuuex", - "targetPortalHostname": "yktnmynpdjpmztwuwcvipp", - "targetPortalPort": 3, + "targetIqn": "izdwogzjedsfug", + "targetPortalHostname": "wyfbjobugmad", + "targetPortalPort": 21, "provisioningState": "Succeeded", "status": "Invalid" - } + }, + "managedBy": { + "resourceId": "mtkeip" + }, + "provisioningState": "Invalid" }, + "id": "swkcmwglncgtsnejzvldnbpsifxez", + "name": "o", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/volumes", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}", - "name": "ipmipjggodoxjua", - "type": "Microsoft.ElasticSan/elasticSans" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } ], - "nextLink": "zrjgyuzmjvvatfujsbyrsxrudytm" + "nextLink": "gguhcswqbqzoxqirej" } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_ListByVolumeGroup_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_ListByVolumeGroup_MinimumSet_Gen.json index 1c6feedd3e56..ea674b0e4ff8 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_ListByVolumeGroup_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_ListByVolumeGroup_MinimumSet_Gen.json @@ -10,39 +10,7 @@ }, "responses": { "200": { - "body": { - "value": [ - { - "properties": { - "volumeId": "hkbhievbyopwjqawbyvqi", - "creationData": { - "createSource": "None", - "sourceUri": " ARM Id of resource" - }, - "sizeGiB": 23, - "storageTarget": { - "targetIqn": "yuuex", - "targetPortalHostname": "yktnmynpdjpmztwuwcvipp", - "targetPortalPort": 3, - "provisioningState": "Succeeded", - "status": "Invalid" - } - }, - "systemData": { - "createdBy": "zloujisrarsox", - "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", - "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}", - "name": "ipmipjggodoxjua", - "type": "Microsoft.ElasticSan/elasticSans" - } - ], - "nextLink": "zrjgyuzmjvvatfujsbyrsxrudytm" - } + "body": {} } } } diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Update_MaximumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Update_MaximumSet_Gen.json index 8828dff97f09..e1750c610fd4 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Update_MaximumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Update_MaximumSet_Gen.json @@ -18,31 +18,35 @@ "200": { "body": { "properties": { - "volumeId": "hkbhievbyopwjqawbyvqi", + "volumeId": "umwjlxntntjejiyrywrytkzbfbluhk", "creationData": { "createSource": "None", - "sourceUri": " ARM Id of resource" + "sourceId": "ARM Id of Resource" }, - "sizeGiB": 23, + "sizeGiB": 9, "storageTarget": { - "targetIqn": "yuuex", - "targetPortalHostname": "yktnmynpdjpmztwuwcvipp", - "targetPortalPort": 3, + "targetIqn": "izdwogzjedsfug", + "targetPortalHostname": "wyfbjobugmad", + "targetPortalPort": 21, "provisioningState": "Succeeded", "status": "Invalid" - } + }, + "managedBy": { + "resourceId": "mtkeip" + }, + "provisioningState": "Invalid" }, + "id": "swkcmwglncgtsnejzvldnbpsifxez", + "name": "o", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/volumes", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}", - "name": "ipmipjggodoxjua", - "type": "Microsoft.ElasticSan/elasticSans" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } }, "202": { diff --git a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Update_MinimumSet_Gen.json b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Update_MinimumSet_Gen.json index b16479161b33..85620db9ab45 100644 --- a/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Update_MinimumSet_Gen.json +++ b/specification/elasticsan/resource-manager/Microsoft.ElasticSan/stable/2023-01-01/examples/Volumes_Update_MinimumSet_Gen.json @@ -14,31 +14,35 @@ "200": { "body": { "properties": { - "volumeId": "hkbhievbyopwjqawbyvqi", + "volumeId": "umwjlxntntjejiyrywrytkzbfbluhk", "creationData": { "createSource": "None", - "sourceUri": " ARM Id of resource" + "sourceId": "ARM Id of Resource" }, - "sizeGiB": 23, + "sizeGiB": 9, "storageTarget": { - "targetIqn": "yuuex", - "targetPortalHostname": "yktnmynpdjpmztwuwcvipp", - "targetPortalPort": 3, + "targetIqn": "izdwogzjedsfug", + "targetPortalHostname": "wyfbjobugmad", + "targetPortalPort": 21, "provisioningState": "Succeeded", "status": "Invalid" - } + }, + "managedBy": { + "resourceId": "mtkeip" + }, + "provisioningState": "Invalid" }, + "id": "swkcmwglncgtsnejzvldnbpsifxez", + "name": "o", + "type": "Microsoft.ElasticSan/elasticSans/volumeGroups/volumes", "systemData": { - "createdBy": "zloujisrarsox", + "createdBy": "kakcyehdrphqkilgkhpbdtvpupak", "createdByType": "User", - "createdAt": "2023-07-04T05:52:15.371Z", - "lastModifiedBy": "lmdztjjcmdfzam", + "createdAt": "2023-08-23T12:16:10.057Z", + "lastModifiedBy": "bcclmbseed", "lastModifiedByType": "User", - "lastModifiedAt": "2023-07-04T05:52:15.371Z" - }, - "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}", - "name": "ipmipjggodoxjua", - "type": "Microsoft.ElasticSan/elasticSans" + "lastModifiedAt": "2023-08-23T12:16:10.057Z" + } } }, "202": {