diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/ApiError.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/ApiError.java index a238fd4a8e75..e3b51cb16281 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/ApiError.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/ApiError.java @@ -4,14 +4,14 @@ package com.azure.management.compute; -import com.azure.core.annotation.Fluent; +import com.azure.core.annotation.Immutable; import com.azure.core.management.exception.ManagementError; import com.azure.core.util.logging.ClientLogger; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** The ApiError model. */ -@Fluent +@Immutable public final class ApiError extends ManagementError { @JsonIgnore private final ClientLogger logger = new ClientLogger(ApiError.class); @@ -36,5 +36,8 @@ public InnerError getInnererror() { * @throws IllegalArgumentException thrown if the instance is not valid. */ public void validate() { + if (innererror != null) { + innererror.validate(); + } } } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/CreationData.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/CreationData.java index 8cf3beca1148..e7f34008887c 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/CreationData.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/CreationData.java @@ -21,9 +21,9 @@ public final class CreationData { private DiskCreateOption createOption; /* - * If createOption is Import, the Azure Resource Manager identifier of the - * storage account containing the blob to import as a disk. Required only - * if the blob is in a different subscription + * Required if createOption is Import. The Azure Resource Manager + * identifier of the storage account containing the blob to import as a + * disk. */ @JsonProperty(value = "storageAccountId") private String storageAccountId; @@ -85,9 +85,8 @@ public CreationData withCreateOption(DiskCreateOption createOption) { } /** - * Get the storageAccountId property: If createOption is Import, the Azure Resource Manager identifier of the - * storage account containing the blob to import as a disk. Required only if the blob is in a different - * subscription. + * Get the storageAccountId property: Required if createOption is Import. The Azure Resource Manager identifier of + * the storage account containing the blob to import as a disk. * * @return the storageAccountId value. */ @@ -96,9 +95,8 @@ public String storageAccountId() { } /** - * Set the storageAccountId property: If createOption is Import, the Azure Resource Manager identifier of the - * storage account containing the blob to import as a disk. Required only if the blob is in a different - * subscription. + * Set the storageAccountId property: Required if createOption is Import. The Azure Resource Manager identifier of + * the storage account containing the blob to import as a disk. * * @param storageAccountId the storageAccountId value to set. * @return the CreationData object itself. diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/DiskEncryptionSetIdentityType.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/DiskEncryptionSetIdentityType.java new file mode 100644 index 000000000000..c17329a5301c --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/DiskEncryptionSetIdentityType.java @@ -0,0 +1,44 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonValue; + +/** Defines values for DiskEncryptionSetIdentityType. */ +public enum DiskEncryptionSetIdentityType { + /** Enum value SystemAssigned. */ + SYSTEM_ASSIGNED("SystemAssigned"); + + /** The actual serialized value for a DiskEncryptionSetIdentityType instance. */ + private final String value; + + DiskEncryptionSetIdentityType(String value) { + this.value = value; + } + + /** + * Parses a serialized value to a DiskEncryptionSetIdentityType instance. + * + * @param value the serialized value to parse. + * @return the parsed DiskEncryptionSetIdentityType object, or null if unable to parse. + */ + @JsonCreator + public static DiskEncryptionSetIdentityType fromString(String value) { + DiskEncryptionSetIdentityType[] items = DiskEncryptionSetIdentityType.values(); + for (DiskEncryptionSetIdentityType item : items) { + if (item.toString().equalsIgnoreCase(value)) { + return item; + } + } + return null; + } + + @JsonValue + @Override + public String toString() { + return this.value; + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/DiskEncryptionSetUpdate.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/DiskEncryptionSetUpdate.java new file mode 100644 index 000000000000..571b45cd274a --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/DiskEncryptionSetUpdate.java @@ -0,0 +1,85 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.annotation.Fluent; +import com.azure.core.annotation.JsonFlatten; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.util.Map; + +/** The DiskEncryptionSetUpdate model. */ +@JsonFlatten +@Fluent +public class DiskEncryptionSetUpdate { + @JsonIgnore private final ClientLogger logger = new ClientLogger(DiskEncryptionSetUpdate.class); + + /* + * Resource tags + */ + @JsonProperty(value = "tags") + private Map tags; + + /* + * Key Vault Key Url and vault id of KeK, KeK is optional and when provided + * is used to unwrap the encryptionKey + */ + @JsonProperty(value = "properties.activeKey") + private KeyVaultAndKeyReference activeKey; + + /** + * Get the tags property: Resource tags. + * + * @return the tags value. + */ + public Map tags() { + return this.tags; + } + + /** + * Set the tags property: Resource tags. + * + * @param tags the tags value to set. + * @return the DiskEncryptionSetUpdate object itself. + */ + public DiskEncryptionSetUpdate withTags(Map tags) { + this.tags = tags; + return this; + } + + /** + * Get the activeKey property: Key Vault Key Url and vault id of KeK, KeK is optional and when provided is used to + * unwrap the encryptionKey. + * + * @return the activeKey value. + */ + public KeyVaultAndKeyReference activeKey() { + return this.activeKey; + } + + /** + * Set the activeKey property: Key Vault Key Url and vault id of KeK, KeK is optional and when provided is used to + * unwrap the encryptionKey. + * + * @param activeKey the activeKey value to set. + * @return the DiskEncryptionSetUpdate object itself. + */ + public DiskEncryptionSetUpdate withActiveKey(KeyVaultAndKeyReference activeKey) { + this.activeKey = activeKey; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + if (activeKey() != null) { + activeKey().validate(); + } + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/DiskUpdate.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/DiskUpdate.java index 87151ed37656..1b132391a269 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/DiskUpdate.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/DiskUpdate.java @@ -68,6 +68,13 @@ public class DiskUpdate { @JsonProperty(value = "properties.diskMBpsReadWrite") private Integer diskMBpsReadWrite; + /* + * Encryption property can be used to encrypt data at rest with customer + * managed keys or platform managed keys. + */ + @JsonProperty(value = "properties.encryption") + private Encryption encryption; + /** * Get the tags property: Resource tags. * @@ -220,6 +227,28 @@ public DiskUpdate withDiskMBpsReadWrite(Integer diskMBpsReadWrite) { return this; } + /** + * Get the encryption property: Encryption property can be used to encrypt data at rest with customer managed keys + * or platform managed keys. + * + * @return the encryption value. + */ + public Encryption encryption() { + return this.encryption; + } + + /** + * Set the encryption property: Encryption property can be used to encrypt data at rest with customer managed keys + * or platform managed keys. + * + * @param encryption the encryption value to set. + * @return the DiskUpdate object itself. + */ + public DiskUpdate withEncryption(Encryption encryption) { + this.encryption = encryption; + return this; + } + /** * Validates the instance. * @@ -232,5 +261,8 @@ public void validate() { if (encryptionSettingsCollection() != null) { encryptionSettingsCollection().validate(); } + if (encryption() != null) { + encryption().validate(); + } } } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/Encryption.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/Encryption.java new file mode 100644 index 000000000000..c66a9d28a304 --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/Encryption.java @@ -0,0 +1,84 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.annotation.Fluent; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** The Encryption model. */ +@Fluent +public final class Encryption { + @JsonIgnore private final ClientLogger logger = new ClientLogger(Encryption.class); + + /* + * ResourceId of the disk encryption set to use for enabling encryption at + * rest. + */ + @JsonProperty(value = "diskEncryptionSetId") + private String diskEncryptionSetId; + + /* + * The type of key used to encrypt the data of the disk. + */ + @JsonProperty(value = "type", required = true) + private EncryptionType type; + + /** + * Get the diskEncryptionSetId property: ResourceId of the disk encryption set to use for enabling encryption at + * rest. + * + * @return the diskEncryptionSetId value. + */ + public String diskEncryptionSetId() { + return this.diskEncryptionSetId; + } + + /** + * Set the diskEncryptionSetId property: ResourceId of the disk encryption set to use for enabling encryption at + * rest. + * + * @param diskEncryptionSetId the diskEncryptionSetId value to set. + * @return the Encryption object itself. + */ + public Encryption withDiskEncryptionSetId(String diskEncryptionSetId) { + this.diskEncryptionSetId = diskEncryptionSetId; + return this; + } + + /** + * Get the type property: The type of key used to encrypt the data of the disk. + * + * @return the type value. + */ + public EncryptionType type() { + return this.type; + } + + /** + * Set the type property: The type of key used to encrypt the data of the disk. + * + * @param type the type value to set. + * @return the Encryption object itself. + */ + public Encryption withType(EncryptionType type) { + this.type = type; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + if (type() == null) { + throw logger + .logExceptionAsError( + new IllegalArgumentException("Missing required property type in model Encryption")); + } + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/EncryptionSetIdentity.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/EncryptionSetIdentity.java new file mode 100644 index 000000000000..c9ef7851a802 --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/EncryptionSetIdentity.java @@ -0,0 +1,90 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.annotation.Fluent; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** The EncryptionSetIdentity model. */ +@Fluent +public final class EncryptionSetIdentity { + @JsonIgnore private final ClientLogger logger = new ClientLogger(EncryptionSetIdentity.class); + + /* + * The type of Managed Identity used by the DiskEncryptionSet. Only + * SystemAssigned is supported. + */ + @JsonProperty(value = "type") + private DiskEncryptionSetIdentityType type; + + /* + * The object id of the Managed Identity Resource. This will be sent to the + * RP from ARM via the x-ms-identity-principal-id header in the PUT request + * if the resource has a systemAssigned(implicit) identity + */ + @JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY) + private String principalId; + + /* + * The tenant id of the Managed Identity Resource. This will be sent to the + * RP from ARM via the x-ms-client-tenant-id header in the PUT request if + * the resource has a systemAssigned(implicit) identity + */ + @JsonProperty(value = "tenantId", access = JsonProperty.Access.WRITE_ONLY) + private String tenantId; + + /** + * Get the type property: The type of Managed Identity used by the DiskEncryptionSet. Only SystemAssigned is + * supported. + * + * @return the type value. + */ + public DiskEncryptionSetIdentityType type() { + return this.type; + } + + /** + * Set the type property: The type of Managed Identity used by the DiskEncryptionSet. Only SystemAssigned is + * supported. + * + * @param type the type value to set. + * @return the EncryptionSetIdentity object itself. + */ + public EncryptionSetIdentity withType(DiskEncryptionSetIdentityType type) { + this.type = type; + return this; + } + + /** + * Get the principalId property: The object id of the Managed Identity Resource. This will be sent to the RP from + * ARM via the x-ms-identity-principal-id header in the PUT request if the resource has a systemAssigned(implicit) + * identity. + * + * @return the principalId value. + */ + public String principalId() { + return this.principalId; + } + + /** + * Get the tenantId property: The tenant id of the Managed Identity Resource. This will be sent to the RP from ARM + * via the x-ms-client-tenant-id header in the PUT request if the resource has a systemAssigned(implicit) identity. + * + * @return the tenantId value. + */ + public String tenantId() { + return this.tenantId; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/EncryptionType.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/EncryptionType.java new file mode 100644 index 000000000000..bb844b680290 --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/EncryptionType.java @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.util.ExpandableStringEnum; +import com.fasterxml.jackson.annotation.JsonCreator; +import java.util.Collection; + +/** Defines values for EncryptionType. */ +public final class EncryptionType extends ExpandableStringEnum { + /** Static value EncryptionAtRestWithPlatformKey for EncryptionType. */ + public static final EncryptionType ENCRYPTION_AT_REST_WITH_PLATFORM_KEY = + fromString("EncryptionAtRestWithPlatformKey"); + + /** Static value EncryptionAtRestWithCustomerKey for EncryptionType. */ + public static final EncryptionType ENCRYPTION_AT_REST_WITH_CUSTOMER_KEY = + fromString("EncryptionAtRestWithCustomerKey"); + + /** + * Creates or finds a EncryptionType from its string representation. + * + * @param name a name to look for. + * @return the corresponding EncryptionType. + */ + @JsonCreator + public static EncryptionType fromString(String name) { + return fromString(name, EncryptionType.class); + } + + /** @return known EncryptionType values. */ + public static Collection values() { + return values(EncryptionType.class); + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryApplicationUpdate.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryApplicationUpdate.java new file mode 100644 index 000000000000..0fcc6686846d --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryApplicationUpdate.java @@ -0,0 +1,198 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.annotation.Fluent; +import com.azure.core.annotation.JsonFlatten; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.time.OffsetDateTime; + +/** The GalleryApplicationUpdate model. */ +@JsonFlatten +@Fluent +public class GalleryApplicationUpdate extends UpdateResourceAutoGenerated { + @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryApplicationUpdate.class); + + /* + * The description of this gallery Application Definition resource. This + * property is updatable. + */ + @JsonProperty(value = "properties.description") + private String description; + + /* + * The Eula agreement for the gallery Application Definition. + */ + @JsonProperty(value = "properties.eula") + private String eula; + + /* + * The privacy statement uri. + */ + @JsonProperty(value = "properties.privacyStatementUri") + private String privacyStatementUri; + + /* + * The release note uri. + */ + @JsonProperty(value = "properties.releaseNoteUri") + private String releaseNoteUri; + + /* + * The end of life date of the gallery Application Definition. This + * property can be used for decommissioning purposes. This property is + * updatable. + */ + @JsonProperty(value = "properties.endOfLifeDate") + private OffsetDateTime endOfLifeDate; + + /* + * This property allows you to specify the supported type of the OS that + * application is built for.

Possible values are:

+ * **Windows**

**Linux** + */ + @JsonProperty(value = "properties.supportedOSType") + private OperatingSystemTypes supportedOSType; + + /** + * Get the description property: The description of this gallery Application Definition resource. This property is + * updatable. + * + * @return the description value. + */ + public String description() { + return this.description; + } + + /** + * Set the description property: The description of this gallery Application Definition resource. This property is + * updatable. + * + * @param description the description value to set. + * @return the GalleryApplicationUpdate object itself. + */ + public GalleryApplicationUpdate withDescription(String description) { + this.description = description; + return this; + } + + /** + * Get the eula property: The Eula agreement for the gallery Application Definition. + * + * @return the eula value. + */ + public String eula() { + return this.eula; + } + + /** + * Set the eula property: The Eula agreement for the gallery Application Definition. + * + * @param eula the eula value to set. + * @return the GalleryApplicationUpdate object itself. + */ + public GalleryApplicationUpdate withEula(String eula) { + this.eula = eula; + return this; + } + + /** + * Get the privacyStatementUri property: The privacy statement uri. + * + * @return the privacyStatementUri value. + */ + public String privacyStatementUri() { + return this.privacyStatementUri; + } + + /** + * Set the privacyStatementUri property: The privacy statement uri. + * + * @param privacyStatementUri the privacyStatementUri value to set. + * @return the GalleryApplicationUpdate object itself. + */ + public GalleryApplicationUpdate withPrivacyStatementUri(String privacyStatementUri) { + this.privacyStatementUri = privacyStatementUri; + return this; + } + + /** + * Get the releaseNoteUri property: The release note uri. + * + * @return the releaseNoteUri value. + */ + public String releaseNoteUri() { + return this.releaseNoteUri; + } + + /** + * Set the releaseNoteUri property: The release note uri. + * + * @param releaseNoteUri the releaseNoteUri value to set. + * @return the GalleryApplicationUpdate object itself. + */ + public GalleryApplicationUpdate withReleaseNoteUri(String releaseNoteUri) { + this.releaseNoteUri = releaseNoteUri; + return this; + } + + /** + * Get the endOfLifeDate property: The end of life date of the gallery Application Definition. This property can be + * used for decommissioning purposes. This property is updatable. + * + * @return the endOfLifeDate value. + */ + public OffsetDateTime endOfLifeDate() { + return this.endOfLifeDate; + } + + /** + * Set the endOfLifeDate property: The end of life date of the gallery Application Definition. This property can be + * used for decommissioning purposes. This property is updatable. + * + * @param endOfLifeDate the endOfLifeDate value to set. + * @return the GalleryApplicationUpdate object itself. + */ + public GalleryApplicationUpdate withEndOfLifeDate(OffsetDateTime endOfLifeDate) { + this.endOfLifeDate = endOfLifeDate; + return this; + } + + /** + * Get the supportedOSType property: This property allows you to specify the supported type of the OS that + * application is built for. <br><br> Possible values are: <br><br> **Windows** + * <br><br> **Linux**. + * + * @return the supportedOSType value. + */ + public OperatingSystemTypes supportedOSType() { + return this.supportedOSType; + } + + /** + * Set the supportedOSType property: This property allows you to specify the supported type of the OS that + * application is built for. <br><br> Possible values are: <br><br> **Windows** + * <br><br> **Linux**. + * + * @param supportedOSType the supportedOSType value to set. + * @return the GalleryApplicationUpdate object itself. + */ + public GalleryApplicationUpdate withSupportedOSType(OperatingSystemTypes supportedOSType) { + this.supportedOSType = supportedOSType; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + @Override + public void validate() { + super.validate(); + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryApplicationVersionUpdate.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryApplicationVersionUpdate.java new file mode 100644 index 000000000000..635bbcad0565 --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryApplicationVersionUpdate.java @@ -0,0 +1,91 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.annotation.Fluent; +import com.azure.core.annotation.JsonFlatten; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** The GalleryApplicationVersionUpdate model. */ +@JsonFlatten +@Fluent +public class GalleryApplicationVersionUpdate extends UpdateResourceAutoGenerated { + @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryApplicationVersionUpdate.class); + + /* + * The publishing profile of a gallery Image Version. + */ + @JsonProperty(value = "properties.publishingProfile") + private GalleryApplicationVersionPublishingProfile publishingProfile; + + /* + * The provisioning state, which only appears in the response. + */ + @JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY) + private GalleryApplicationVersionPropertiesProvisioningState provisioningState; + + /* + * This is the replication status of the gallery Image Version. + */ + @JsonProperty(value = "properties.replicationStatus", access = JsonProperty.Access.WRITE_ONLY) + private ReplicationStatus replicationStatus; + + /** + * Get the publishingProfile property: The publishing profile of a gallery Image Version. + * + * @return the publishingProfile value. + */ + public GalleryApplicationVersionPublishingProfile publishingProfile() { + return this.publishingProfile; + } + + /** + * Set the publishingProfile property: The publishing profile of a gallery Image Version. + * + * @param publishingProfile the publishingProfile value to set. + * @return the GalleryApplicationVersionUpdate object itself. + */ + public GalleryApplicationVersionUpdate withPublishingProfile( + GalleryApplicationVersionPublishingProfile publishingProfile) { + this.publishingProfile = publishingProfile; + return this; + } + + /** + * Get the provisioningState property: The provisioning state, which only appears in the response. + * + * @return the provisioningState value. + */ + public GalleryApplicationVersionPropertiesProvisioningState provisioningState() { + return this.provisioningState; + } + + /** + * Get the replicationStatus property: This is the replication status of the gallery Image Version. + * + * @return the replicationStatus value. + */ + public ReplicationStatus replicationStatus() { + return this.replicationStatus; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + @Override + public void validate() { + super.validate(); + if (publishingProfile() != null) { + publishingProfile().validate(); + } + if (replicationStatus() != null) { + replicationStatus().validate(); + } + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryArtifactVersionSource.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryArtifactVersionSource.java new file mode 100644 index 000000000000..6a57b3e42c8d --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryArtifactVersionSource.java @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.annotation.Fluent; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** The GalleryArtifactVersionSource model. */ +@Fluent +public final class GalleryArtifactVersionSource { + @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryArtifactVersionSource.class); + + /* + * The id of the gallery artifact version source. Can specify a disk uri, + * snapshot uri, or user image. + */ + @JsonProperty(value = "id") + private String id; + + /** + * Get the id property: The id of the gallery artifact version source. Can specify a disk uri, snapshot uri, or user + * image. + * + * @return the id value. + */ + public String id() { + return this.id; + } + + /** + * Set the id property: The id of the gallery artifact version source. Can specify a disk uri, snapshot uri, or user + * image. + * + * @param id the id value to set. + * @return the GalleryArtifactVersionSource object itself. + */ + public GalleryArtifactVersionSource withId(String id) { + this.id = id; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryDataDiskImage.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryDataDiskImage.java index 1485c46b6591..ce285198e8b0 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryDataDiskImage.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryDataDiskImage.java @@ -4,13 +4,13 @@ package com.azure.management.compute; -import com.azure.core.annotation.Immutable; +import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** The GalleryDataDiskImage model. */ -@Immutable +@Fluent public final class GalleryDataDiskImage extends GalleryDiskImage { @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryDataDiskImage.class); @@ -20,8 +20,8 @@ public final class GalleryDataDiskImage extends GalleryDiskImage { * therefore must be unique for each data disk attached to the Virtual * Machine. */ - @JsonProperty(value = "lun", access = JsonProperty.Access.WRITE_ONLY) - private Integer lun; + @JsonProperty(value = "lun", required = true) + private int lun; /** * Get the lun property: This property specifies the logical unit number of the data disk. This value is used to @@ -30,10 +30,23 @@ public final class GalleryDataDiskImage extends GalleryDiskImage { * * @return the lun value. */ - public Integer lun() { + public int lun() { return this.lun; } + /** + * Set the lun property: This property specifies the logical unit number of the data disk. This value is used to + * identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the + * Virtual Machine. + * + * @param lun the lun value to set. + * @return the GalleryDataDiskImage object itself. + */ + public GalleryDataDiskImage withLun(int lun) { + this.lun = lun; + return this; + } + /** * Validates the instance. * diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryDiskImage.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryDiskImage.java index f5a0254dd911..321928395674 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryDiskImage.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryDiskImage.java @@ -4,13 +4,13 @@ package com.azure.management.compute; -import com.azure.core.annotation.Immutable; +import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** The GalleryDiskImage model. */ -@Immutable +@Fluent public class GalleryDiskImage { @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryDiskImage.class); @@ -24,9 +24,15 @@ public class GalleryDiskImage { * The host caching of the disk. Valid values are 'None', 'ReadOnly', and * 'ReadWrite' */ - @JsonProperty(value = "hostCaching", access = JsonProperty.Access.WRITE_ONLY) + @JsonProperty(value = "hostCaching") private HostCaching hostCaching; + /* + * The gallery artifact version source. + */ + @JsonProperty(value = "source") + private GalleryArtifactVersionSource source; + /** * Get the sizeInGB property: This property indicates the size of the VHD to be created. * @@ -45,11 +51,45 @@ public HostCaching hostCaching() { return this.hostCaching; } + /** + * Set the hostCaching property: The host caching of the disk. Valid values are 'None', 'ReadOnly', and 'ReadWrite'. + * + * @param hostCaching the hostCaching value to set. + * @return the GalleryDiskImage object itself. + */ + public GalleryDiskImage withHostCaching(HostCaching hostCaching) { + this.hostCaching = hostCaching; + return this; + } + + /** + * Get the source property: The gallery artifact version source. + * + * @return the source value. + */ + public GalleryArtifactVersionSource source() { + return this.source; + } + + /** + * Set the source property: The gallery artifact version source. + * + * @param source the source value to set. + * @return the GalleryDiskImage object itself. + */ + public GalleryDiskImage withSource(GalleryArtifactVersionSource source) { + this.source = source; + return this; + } + /** * Validates the instance. * * @throws IllegalArgumentException thrown if the instance is not valid. */ public void validate() { + if (source() != null) { + source().validate(); + } } } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageUpdate.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageUpdate.java new file mode 100644 index 000000000000..6a1bb5c1681b --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageUpdate.java @@ -0,0 +1,390 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.annotation.Fluent; +import com.azure.core.annotation.JsonFlatten; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.time.OffsetDateTime; + +/** The GalleryImageUpdate model. */ +@JsonFlatten +@Fluent +public class GalleryImageUpdate extends UpdateResourceAutoGenerated { + @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryImageUpdate.class); + + /* + * The description of this gallery Image Definition resource. This property + * is updatable. + */ + @JsonProperty(value = "properties.description") + private String description; + + /* + * The Eula agreement for the gallery Image Definition. + */ + @JsonProperty(value = "properties.eula") + private String eula; + + /* + * The privacy statement uri. + */ + @JsonProperty(value = "properties.privacyStatementUri") + private String privacyStatementUri; + + /* + * The release note uri. + */ + @JsonProperty(value = "properties.releaseNoteUri") + private String releaseNoteUri; + + /* + * This property allows you to specify the type of the OS that is included + * in the disk when creating a VM from a managed image.

Possible + * values are:

**Windows**

**Linux** + */ + @JsonProperty(value = "properties.osType") + private OperatingSystemTypes osType; + + /* + * This property allows the user to specify whether the virtual machines + * created under this image are 'Generalized' or 'Specialized'. + */ + @JsonProperty(value = "properties.osState") + private OperatingSystemStateTypes osState; + + /* + * The hypervisor generation of the Virtual Machine. Applicable to OS disks + * only. + */ + @JsonProperty(value = "properties.hyperVGeneration") + private HyperVGeneration hyperVGeneration; + + /* + * The end of life date of the gallery Image Definition. This property can + * be used for decommissioning purposes. This property is updatable. + */ + @JsonProperty(value = "properties.endOfLifeDate") + private OffsetDateTime endOfLifeDate; + + /* + * This is the gallery Image Definition identifier. + */ + @JsonProperty(value = "properties.identifier") + private GalleryImageIdentifier identifier; + + /* + * The properties describe the recommended machine configuration for this + * Image Definition. These properties are updatable. + */ + @JsonProperty(value = "properties.recommended") + private RecommendedMachineConfiguration recommended; + + /* + * Describes the disallowed disk types. + */ + @JsonProperty(value = "properties.disallowed") + private Disallowed disallowed; + + /* + * Describes the gallery Image Definition purchase plan. This is used by + * marketplace images. + */ + @JsonProperty(value = "properties.purchasePlan") + private ImagePurchasePlan purchasePlan; + + /* + * The provisioning state, which only appears in the response. + */ + @JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY) + private GalleryImagePropertiesProvisioningState provisioningState; + + /** + * Get the description property: The description of this gallery Image Definition resource. This property is + * updatable. + * + * @return the description value. + */ + public String description() { + return this.description; + } + + /** + * Set the description property: The description of this gallery Image Definition resource. This property is + * updatable. + * + * @param description the description value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withDescription(String description) { + this.description = description; + return this; + } + + /** + * Get the eula property: The Eula agreement for the gallery Image Definition. + * + * @return the eula value. + */ + public String eula() { + return this.eula; + } + + /** + * Set the eula property: The Eula agreement for the gallery Image Definition. + * + * @param eula the eula value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withEula(String eula) { + this.eula = eula; + return this; + } + + /** + * Get the privacyStatementUri property: The privacy statement uri. + * + * @return the privacyStatementUri value. + */ + public String privacyStatementUri() { + return this.privacyStatementUri; + } + + /** + * Set the privacyStatementUri property: The privacy statement uri. + * + * @param privacyStatementUri the privacyStatementUri value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withPrivacyStatementUri(String privacyStatementUri) { + this.privacyStatementUri = privacyStatementUri; + return this; + } + + /** + * Get the releaseNoteUri property: The release note uri. + * + * @return the releaseNoteUri value. + */ + public String releaseNoteUri() { + return this.releaseNoteUri; + } + + /** + * Set the releaseNoteUri property: The release note uri. + * + * @param releaseNoteUri the releaseNoteUri value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withReleaseNoteUri(String releaseNoteUri) { + this.releaseNoteUri = releaseNoteUri; + return this; + } + + /** + * Get the osType property: This property allows you to specify the type of the OS that is included in the disk when + * creating a VM from a managed image. <br><br> Possible values are: <br><br> **Windows** + * <br><br> **Linux**. + * + * @return the osType value. + */ + public OperatingSystemTypes osType() { + return this.osType; + } + + /** + * Set the osType property: This property allows you to specify the type of the OS that is included in the disk when + * creating a VM from a managed image. <br><br> Possible values are: <br><br> **Windows** + * <br><br> **Linux**. + * + * @param osType the osType value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withOsType(OperatingSystemTypes osType) { + this.osType = osType; + return this; + } + + /** + * Get the osState property: This property allows the user to specify whether the virtual machines created under + * this image are 'Generalized' or 'Specialized'. + * + * @return the osState value. + */ + public OperatingSystemStateTypes osState() { + return this.osState; + } + + /** + * Set the osState property: This property allows the user to specify whether the virtual machines created under + * this image are 'Generalized' or 'Specialized'. + * + * @param osState the osState value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withOsState(OperatingSystemStateTypes osState) { + this.osState = osState; + return this; + } + + /** + * Get the hyperVGeneration property: The hypervisor generation of the Virtual Machine. Applicable to OS disks only. + * + * @return the hyperVGeneration value. + */ + public HyperVGeneration hyperVGeneration() { + return this.hyperVGeneration; + } + + /** + * Set the hyperVGeneration property: The hypervisor generation of the Virtual Machine. Applicable to OS disks only. + * + * @param hyperVGeneration the hyperVGeneration value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withHyperVGeneration(HyperVGeneration hyperVGeneration) { + this.hyperVGeneration = hyperVGeneration; + return this; + } + + /** + * Get the endOfLifeDate property: The end of life date of the gallery Image Definition. This property can be used + * for decommissioning purposes. This property is updatable. + * + * @return the endOfLifeDate value. + */ + public OffsetDateTime endOfLifeDate() { + return this.endOfLifeDate; + } + + /** + * Set the endOfLifeDate property: The end of life date of the gallery Image Definition. This property can be used + * for decommissioning purposes. This property is updatable. + * + * @param endOfLifeDate the endOfLifeDate value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withEndOfLifeDate(OffsetDateTime endOfLifeDate) { + this.endOfLifeDate = endOfLifeDate; + return this; + } + + /** + * Get the identifier property: This is the gallery Image Definition identifier. + * + * @return the identifier value. + */ + public GalleryImageIdentifier identifier() { + return this.identifier; + } + + /** + * Set the identifier property: This is the gallery Image Definition identifier. + * + * @param identifier the identifier value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withIdentifier(GalleryImageIdentifier identifier) { + this.identifier = identifier; + return this; + } + + /** + * Get the recommended property: The properties describe the recommended machine configuration for this Image + * Definition. These properties are updatable. + * + * @return the recommended value. + */ + public RecommendedMachineConfiguration recommended() { + return this.recommended; + } + + /** + * Set the recommended property: The properties describe the recommended machine configuration for this Image + * Definition. These properties are updatable. + * + * @param recommended the recommended value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withRecommended(RecommendedMachineConfiguration recommended) { + this.recommended = recommended; + return this; + } + + /** + * Get the disallowed property: Describes the disallowed disk types. + * + * @return the disallowed value. + */ + public Disallowed disallowed() { + return this.disallowed; + } + + /** + * Set the disallowed property: Describes the disallowed disk types. + * + * @param disallowed the disallowed value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withDisallowed(Disallowed disallowed) { + this.disallowed = disallowed; + return this; + } + + /** + * Get the purchasePlan property: Describes the gallery Image Definition purchase plan. This is used by marketplace + * images. + * + * @return the purchasePlan value. + */ + public ImagePurchasePlan purchasePlan() { + return this.purchasePlan; + } + + /** + * Set the purchasePlan property: Describes the gallery Image Definition purchase plan. This is used by marketplace + * images. + * + * @param purchasePlan the purchasePlan value to set. + * @return the GalleryImageUpdate object itself. + */ + public GalleryImageUpdate withPurchasePlan(ImagePurchasePlan purchasePlan) { + this.purchasePlan = purchasePlan; + return this; + } + + /** + * Get the provisioningState property: The provisioning state, which only appears in the response. + * + * @return the provisioningState value. + */ + public GalleryImagePropertiesProvisioningState provisioningState() { + return this.provisioningState; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + @Override + public void validate() { + super.validate(); + if (identifier() != null) { + identifier().validate(); + } + if (recommended() != null) { + recommended().validate(); + } + if (disallowed() != null) { + disallowed().validate(); + } + if (purchasePlan() != null) { + purchasePlan().validate(); + } + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionPublishingProfile.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionPublishingProfile.java index 968424b5bba5..a84cff5cd1ea 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionPublishingProfile.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionPublishingProfile.java @@ -4,42 +4,15 @@ package com.azure.management.compute; -import com.azure.core.annotation.Fluent; +import com.azure.core.annotation.Immutable; import com.azure.core.util.logging.ClientLogger; import com.fasterxml.jackson.annotation.JsonIgnore; -import com.fasterxml.jackson.annotation.JsonProperty; /** The GalleryImageVersionPublishingProfile model. */ -@Fluent +@Immutable public final class GalleryImageVersionPublishingProfile extends GalleryArtifactPublishingProfileBase { @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryImageVersionPublishingProfile.class); - /* - * The source image from which the Image Version is going to be created. - */ - @JsonProperty(value = "source", required = true) - private GalleryArtifactSource source; - - /** - * Get the source property: The source image from which the Image Version is going to be created. - * - * @return the source value. - */ - public GalleryArtifactSource source() { - return this.source; - } - - /** - * Set the source property: The source image from which the Image Version is going to be created. - * - * @param source the source value to set. - * @return the GalleryImageVersionPublishingProfile object itself. - */ - public GalleryImageVersionPublishingProfile withSource(GalleryArtifactSource source) { - this.source = source; - return this; - } - /** * Validates the instance. * @@ -48,13 +21,5 @@ public GalleryImageVersionPublishingProfile withSource(GalleryArtifactSource sou @Override public void validate() { super.validate(); - if (source() == null) { - throw logger - .logExceptionAsError( - new IllegalArgumentException( - "Missing required property source in model GalleryImageVersionPublishingProfile")); - } else { - source().validate(); - } } } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionStorageProfile.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionStorageProfile.java index 927cd8944f28..16f516cf6c9e 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionStorageProfile.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionStorageProfile.java @@ -4,38 +4,75 @@ package com.azure.management.compute; -import com.azure.core.annotation.Immutable; +import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** The GalleryImageVersionStorageProfile model. */ -@Immutable +@Fluent public final class GalleryImageVersionStorageProfile { @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryImageVersionStorageProfile.class); /* - * This is the disk image base class. + * The gallery artifact version source. */ - @JsonProperty(value = "osDiskImage", access = JsonProperty.Access.WRITE_ONLY) - private GalleryDiskImage osDiskImage; + @JsonProperty(value = "source") + private GalleryArtifactVersionSource source; + + /* + * This is the OS disk image. + */ + @JsonProperty(value = "osDiskImage") + private GalleryOSDiskImage osDiskImage; /* * A list of data disk images. */ - @JsonProperty(value = "dataDiskImages", access = JsonProperty.Access.WRITE_ONLY) + @JsonProperty(value = "dataDiskImages") private List dataDiskImages; /** - * Get the osDiskImage property: This is the disk image base class. + * Get the source property: The gallery artifact version source. + * + * @return the source value. + */ + public GalleryArtifactVersionSource source() { + return this.source; + } + + /** + * Set the source property: The gallery artifact version source. + * + * @param source the source value to set. + * @return the GalleryImageVersionStorageProfile object itself. + */ + public GalleryImageVersionStorageProfile withSource(GalleryArtifactVersionSource source) { + this.source = source; + return this; + } + + /** + * Get the osDiskImage property: This is the OS disk image. * * @return the osDiskImage value. */ - public GalleryDiskImage osDiskImage() { + public GalleryOSDiskImage osDiskImage() { return this.osDiskImage; } + /** + * Set the osDiskImage property: This is the disk image base class. + * + * @param osDiskImage the osDiskImage value to set. + * @return the GalleryImageVersionStorageProfile object itself. + */ + public GalleryImageVersionStorageProfile withOsDiskImage(GalleryOSDiskImage osDiskImage) { + this.osDiskImage = osDiskImage; + return this; + } + /** * Get the dataDiskImages property: A list of data disk images. * @@ -45,12 +82,26 @@ public List dataDiskImages() { return this.dataDiskImages; } + /** + * Set the dataDiskImages property: A list of data disk images. + * + * @param dataDiskImages the dataDiskImages value to set. + * @return the GalleryImageVersionStorageProfile object itself. + */ + public GalleryImageVersionStorageProfile withDataDiskImages(List dataDiskImages) { + this.dataDiskImages = dataDiskImages; + return this; + } + /** * Validates the instance. * * @throws IllegalArgumentException thrown if the instance is not valid. */ public void validate() { + if (source() != null) { + source().validate(); + } if (osDiskImage() != null) { osDiskImage().validate(); } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionUpdate.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionUpdate.java new file mode 100644 index 000000000000..bd1f3fd013c4 --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryImageVersionUpdate.java @@ -0,0 +1,119 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.annotation.Fluent; +import com.azure.core.annotation.JsonFlatten; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** The GalleryImageVersionUpdate model. */ +@JsonFlatten +@Fluent +public class GalleryImageVersionUpdate extends UpdateResourceAutoGenerated { + @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryImageVersionUpdate.class); + + /* + * Describes the basic gallery artifact publishing profile. + */ + @JsonProperty(value = "properties.publishingProfile") + private GalleryArtifactPublishingProfileBase publishingProfile; + + /* + * The provisioning state, which only appears in the response. + */ + @JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY) + private GalleryImageVersionPropertiesProvisioningState provisioningState; + + /* + * This is the storage profile of a Gallery Image Version. + */ + @JsonProperty(value = "properties.storageProfile") + private GalleryImageVersionStorageProfile storageProfile; + + /* + * This is the replication status of the gallery Image Version. + */ + @JsonProperty(value = "properties.replicationStatus", access = JsonProperty.Access.WRITE_ONLY) + private ReplicationStatus replicationStatus; + + /** + * Get the publishingProfile property: Describes the basic gallery artifact publishing profile. + * + * @return the publishingProfile value. + */ + public GalleryArtifactPublishingProfileBase publishingProfile() { + return this.publishingProfile; + } + + /** + * Set the publishingProfile property: Describes the basic gallery artifact publishing profile. + * + * @param publishingProfile the publishingProfile value to set. + * @return the GalleryImageVersionUpdate object itself. + */ + public GalleryImageVersionUpdate withPublishingProfile(GalleryArtifactPublishingProfileBase publishingProfile) { + this.publishingProfile = publishingProfile; + return this; + } + + /** + * Get the provisioningState property: The provisioning state, which only appears in the response. + * + * @return the provisioningState value. + */ + public GalleryImageVersionPropertiesProvisioningState provisioningState() { + return this.provisioningState; + } + + /** + * Get the storageProfile property: This is the storage profile of a Gallery Image Version. + * + * @return the storageProfile value. + */ + public GalleryImageVersionStorageProfile storageProfile() { + return this.storageProfile; + } + + /** + * Set the storageProfile property: This is the storage profile of a Gallery Image Version. + * + * @param storageProfile the storageProfile value to set. + * @return the GalleryImageVersionUpdate object itself. + */ + public GalleryImageVersionUpdate withStorageProfile(GalleryImageVersionStorageProfile storageProfile) { + this.storageProfile = storageProfile; + return this; + } + + /** + * Get the replicationStatus property: This is the replication status of the gallery Image Version. + * + * @return the replicationStatus value. + */ + public ReplicationStatus replicationStatus() { + return this.replicationStatus; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + @Override + public void validate() { + super.validate(); + if (publishingProfile() != null) { + publishingProfile().validate(); + } + if (storageProfile() != null) { + storageProfile().validate(); + } + if (replicationStatus() != null) { + replicationStatus().validate(); + } + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryUpdate.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryUpdate.java new file mode 100644 index 000000000000..9d3bdf436657 --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/GalleryUpdate.java @@ -0,0 +1,99 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.annotation.Fluent; +import com.azure.core.annotation.JsonFlatten; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** The GalleryUpdate model. */ +@JsonFlatten +@Fluent +public class GalleryUpdate extends UpdateResourceAutoGenerated { + @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryUpdate.class); + + /* + * The description of this Shared Image Gallery resource. This property is + * updatable. + */ + @JsonProperty(value = "properties.description") + private String description; + + /* + * Describes the gallery unique name. + */ + @JsonProperty(value = "properties.identifier") + private GalleryIdentifier identifier; + + /* + * The provisioning state, which only appears in the response. + */ + @JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY) + private GalleryPropertiesProvisioningState provisioningState; + + /** + * Get the description property: The description of this Shared Image Gallery resource. This property is updatable. + * + * @return the description value. + */ + public String description() { + return this.description; + } + + /** + * Set the description property: The description of this Shared Image Gallery resource. This property is updatable. + * + * @param description the description value to set. + * @return the GalleryUpdate object itself. + */ + public GalleryUpdate withDescription(String description) { + this.description = description; + return this; + } + + /** + * Get the identifier property: Describes the gallery unique name. + * + * @return the identifier value. + */ + public GalleryIdentifier identifier() { + return this.identifier; + } + + /** + * Set the identifier property: Describes the gallery unique name. + * + * @param identifier the identifier value to set. + * @return the GalleryUpdate object itself. + */ + public GalleryUpdate withIdentifier(GalleryIdentifier identifier) { + this.identifier = identifier; + return this; + } + + /** + * Get the provisioningState property: The provisioning state, which only appears in the response. + * + * @return the provisioningState value. + */ + public GalleryPropertiesProvisioningState provisioningState() { + return this.provisioningState; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + @Override + public void validate() { + super.validate(); + if (identifier() != null) { + identifier().validate(); + } + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/SnapshotUpdate.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/SnapshotUpdate.java index d1b49ec99d9f..d16415fcc6da 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/SnapshotUpdate.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/SnapshotUpdate.java @@ -53,6 +53,13 @@ public class SnapshotUpdate { @JsonProperty(value = "properties.encryptionSettingsCollection") private EncryptionSettingsCollection encryptionSettingsCollection; + /* + * Encryption property can be used to encrypt data at rest with customer + * managed keys or platform managed keys. + */ + @JsonProperty(value = "properties.encryption") + private Encryption encryption; + /** * Get the tags property: Resource tags. * @@ -161,6 +168,28 @@ public SnapshotUpdate withEncryptionSettingsCollection(EncryptionSettingsCollect return this; } + /** + * Get the encryption property: Encryption property can be used to encrypt data at rest with customer managed keys + * or platform managed keys. + * + * @return the encryption value. + */ + public Encryption encryption() { + return this.encryption; + } + + /** + * Set the encryption property: Encryption property can be used to encrypt data at rest with customer managed keys + * or platform managed keys. + * + * @param encryption the encryption value to set. + * @return the SnapshotUpdate object itself. + */ + public SnapshotUpdate withEncryption(Encryption encryption) { + this.encryption = encryption; + return this; + } + /** * Validates the instance. * @@ -173,5 +202,8 @@ public void validate() { if (encryptionSettingsCollection() != null) { encryptionSettingsCollection().validate(); } + if (encryption() != null) { + encryption().validate(); + } } } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/UpdateResourceAutoGenerated.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/UpdateResourceAutoGenerated.java new file mode 100644 index 000000000000..b77e11593913 --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/UpdateResourceAutoGenerated.java @@ -0,0 +1,52 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute; + +import com.azure.core.annotation.Fluent; +import com.azure.core.management.ProxyResource; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.util.Map; + +/** The UpdateResourceAutoGenerated model. */ +@Fluent +public class UpdateResourceAutoGenerated extends ProxyResource { + @JsonIgnore private final ClientLogger logger = new ClientLogger(UpdateResourceAutoGenerated.class); + + /* + * Resource tags + */ + @JsonProperty(value = "tags") + private Map tags; + + /** + * Get the tags property: Resource tags. + * + * @return the tags value. + */ + public Map tags() { + return this.tags; + } + + /** + * Set the tags property: Resource tags. + * + * @param tags the tags value to set. + * @return the UpdateResourceAutoGenerated object itself. + */ + public UpdateResourceAutoGenerated withTags(Map tags) { + this.tags = tags; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineIdentity.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineIdentity.java index 4e27ce5124a2..74f6b5e9ea46 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineIdentity.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineIdentity.java @@ -45,8 +45,8 @@ public class VirtualMachineIdentity { * form: * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. */ - @JsonInclude(content = JsonInclude.Include.ALWAYS) @JsonProperty(value = "userAssignedIdentities") + @JsonInclude(content = JsonInclude.Include.ALWAYS) private Map userAssignedIdentities; /** @@ -125,11 +125,14 @@ public VirtualMachineIdentity withUserAssignedIdentities( */ public void validate() { if (userAssignedIdentities() != null) { - userAssignedIdentities().values().forEach(e -> { - if (e != null) { - e.validate(); - } - }); + userAssignedIdentities() + .values() + .forEach( + e -> { + if (e != null) { + e.validate(); + } + }); } } } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineScaleSetIdentity.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineScaleSetIdentity.java index d1b50654137d..57d9903b9c17 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineScaleSetIdentity.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineScaleSetIdentity.java @@ -45,8 +45,8 @@ public class VirtualMachineScaleSetIdentity { * ids in the form: * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. */ - @JsonInclude(content = JsonInclude.Include.ALWAYS) @JsonProperty(value = "userAssignedIdentities") + @JsonInclude(content = JsonInclude.Include.ALWAYS) private Map userAssignedIdentities; /** @@ -125,11 +125,14 @@ public VirtualMachineScaleSetIdentity withUserAssignedIdentities( */ public void validate() { if (userAssignedIdentities() != null) { - userAssignedIdentities().values().forEach(e -> { - if (e != null) { - e.validate(); - } - }); + userAssignedIdentities() + .values() + .forEach( + e -> { + if (e != null) { + e.validate(); + } + }); } } } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineScaleSetPublicIpAddressConfigurationDnsSettings.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineScaleSetPublicIpAddressConfigurationDnsSettings.java index 767b238fdea9..e34bff6be6ad 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineScaleSetPublicIpAddressConfigurationDnsSettings.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/VirtualMachineScaleSetPublicIpAddressConfigurationDnsSettings.java @@ -56,8 +56,8 @@ public void validate() { throw logger .logExceptionAsError( new IllegalArgumentException( - "Missing required property domainNameLabel" - + " in model VirtualMachineScaleSetPublicIpAddressConfigurationDnsSettings")); + "Missing required property domainNameLabel in model" + + " VirtualMachineScaleSetPublicIpAddressConfigurationDnsSettings")); } } } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/implementation/GalleryImageVersionImpl.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/implementation/GalleryImageVersionImpl.java index a185190b4ea5..fd0a538a061c 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/implementation/GalleryImageVersionImpl.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/implementation/GalleryImageVersionImpl.java @@ -3,7 +3,7 @@ package com.azure.management.compute.implementation; -//import com.azure.management.compute.GalleryArtifactVersionSource; +import com.azure.management.compute.GalleryArtifactVersionSource; import com.azure.management.compute.GalleryImageVersion; import com.azure.management.compute.GalleryImageVersionPublishingProfile; import com.azure.management.compute.GalleryImageVersionStorageProfile; @@ -201,13 +201,13 @@ public DefinitionStages.WithSource withLocation(Region location) { @Override public GalleryImageVersionImpl withSourceCustomImage(String customImageId) { -// if (this.inner().storageProfile() == null) { -// this.inner().withStorageProfile(new GalleryImageVersionStorageProfile()); -// } -// if (this.inner().storageProfile().source() == null) { -// this.inner().storageProfile().withSource(new GalleryArtifactVersionSource()); -// } -// this.inner().storageProfile().source().withId(customImageId); + if (this.inner().storageProfile() == null) { + this.inner().withStorageProfile(new GalleryImageVersionStorageProfile()); + } + if (this.inner().storageProfile().source() == null) { + this.inner().storageProfile().withSource(new GalleryArtifactVersionSource()); + } + this.inner().storageProfile().source().withId(customImageId); return this; } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/implementation/VirtualMachineImpl.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/implementation/VirtualMachineImpl.java index 3df92f5a36ac..ababc8c94b97 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/implementation/VirtualMachineImpl.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/implementation/VirtualMachineImpl.java @@ -160,6 +160,17 @@ class VirtualMachineImpl // Type fo the new proximity placement group private ProximityPlacementGroupType newProximityPlacementGroupType; private final ClientLogger logger = new ClientLogger(VirtualMachineImpl.class); + private final ObjectMapper mapper; + private static final JacksonAnnotationIntrospector ANNOTATION_INTROSPECTOR = new JacksonAnnotationIntrospector() { + @Override + public JsonProperty.Access findPropertyAccess(Annotated annotated) { + JsonProperty.Access access = super.findPropertyAccess(annotated); + if (access == JsonProperty.Access.WRITE_ONLY) { + return JsonProperty.Access.AUTO; + } + return access; + } + }; VirtualMachineImpl( String name, @@ -185,6 +196,8 @@ class VirtualMachineImpl this.virtualMachineMsiHandler = new VirtualMachineMsiHandler(rbacManager, this); this.newProximityPlacementGroupName = null; this.newProximityPlacementGroupType = null; + this.mapper = new ObjectMapper(); + this.mapper.setAnnotationIntrospector(ANNOTATION_INTROSPECTOR); } // Verbs @@ -324,17 +337,6 @@ public Mono captureAsync(String containerName, String vhdPrefix, boolean .map( captureResultInner -> { try { - ObjectMapper mapper = new ObjectMapper(); - mapper.setAnnotationIntrospector(new JacksonAnnotationIntrospector() { - @Override - public JsonProperty.Access findPropertyAccess(Annotated annotated) { - JsonProperty.Access access = super.findPropertyAccess(annotated); - if (access == JsonProperty.Access.WRITE_ONLY) { - return JsonProperty.Access.AUTO; - } - return access; - } - }); return mapper.writeValueAsString(captureResultInner); } catch (JsonProcessingException ex) { throw logger.logExceptionAsError(Exceptions.propagate(ex)); diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ComputeManagementClientImpl.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ComputeManagementClientImpl.java index c37e64555d17..cd3eaa2cb1e6 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ComputeManagementClientImpl.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ComputeManagementClientImpl.java @@ -332,6 +332,18 @@ public SnapshotsInner snapshots() { return this.snapshots; } + /** The DiskEncryptionSetsInner object to access its operations. */ + private final DiskEncryptionSetsInner diskEncryptionSets; + + /** + * Gets the DiskEncryptionSetsInner object to access its operations. + * + * @return the DiskEncryptionSetsInner object. + */ + public DiskEncryptionSetsInner diskEncryptionSets() { + return this.diskEncryptionSets; + } + /** The GalleriesInner object to access its operations. */ private final GalleriesInner galleries; @@ -450,6 +462,7 @@ public ComputeManagementClientImpl(HttpPipeline httpPipeline, AzureEnvironment e this.resourceSkus = new ResourceSkusInner(this); this.disks = new DisksInner(this); this.snapshots = new SnapshotsInner(this); + this.diskEncryptionSets = new DiskEncryptionSetsInner(this); this.galleries = new GalleriesInner(this); this.galleryImages = new GalleryImagesInner(this); this.galleryImageVersions = new GalleryImageVersionsInner(this); diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ContainerServicesInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ContainerServicesInner.java index db8db801f26c..90f8f2740b3a 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ContainerServicesInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ContainerServicesInner.java @@ -80,8 +80,8 @@ Mono> list( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers" - + "/Microsoft.ContainerService/containerServices/{containerServiceName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService" + + "/containerServices/{containerServiceName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> createOrUpdate( @@ -95,8 +95,8 @@ Mono>> createOrUpdate( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers" - + "/Microsoft.ContainerService/containerServices/{containerServiceName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService" + + "/containerServices/{containerServiceName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> getByResourceGroup( @@ -109,8 +109,8 @@ Mono> getByResourceGroup( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers" - + "/Microsoft.ContainerService/containerServices/{containerServiceName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService" + + "/containerServices/{containerServiceName}") @ExpectedResponses({202, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> delete( @@ -123,8 +123,8 @@ Mono>> delete( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers" - + "/Microsoft.ContainerService/containerServices") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService" + + "/containerServices") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> listByResourceGroup( @@ -136,8 +136,8 @@ Mono> listByResourceGroup( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers" - + "/Microsoft.ContainerService/containerServices/{containerServiceName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService" + + "/containerServices/{containerServiceName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginCreateOrUpdate( @@ -151,8 +151,8 @@ Mono> beginCreateOrUpdate( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers" - + "/Microsoft.ContainerService/containerServices/{containerServiceName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService" + + "/containerServices/{containerServiceName}") @ExpectedResponses({202, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginDelete( diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DedicatedHostGroupsInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DedicatedHostGroupsInner.java index 48f84b1a97b7..01b36c6d9bbd 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DedicatedHostGroupsInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DedicatedHostGroupsInner.java @@ -69,8 +69,8 @@ public final class DedicatedHostGroupsInner private interface DedicatedHostGroupsService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}") @ExpectedResponses({200, 201}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> createOrUpdate( @@ -84,8 +84,8 @@ Mono> createOrUpdate( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Patch( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> update( @@ -99,8 +99,8 @@ Mono> update( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}") @ExpectedResponses({200, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> delete( @@ -113,8 +113,8 @@ Mono> delete( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> getByResourceGroup( @@ -127,8 +127,7 @@ Mono> getByResourceGroup( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> listByResourceGroup( diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DedicatedHostsInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DedicatedHostsInner.java index 7ca1c2df6b1f..8f37b70743d1 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DedicatedHostsInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DedicatedHostsInner.java @@ -67,8 +67,8 @@ public final class DedicatedHostsInner { private interface DedicatedHostsService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}/hosts/{hostName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}/hosts/{hostName}") @ExpectedResponses({200, 201}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> createOrUpdate( @@ -83,8 +83,8 @@ Mono>> createOrUpdate( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Patch( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}/hosts/{hostName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}/hosts/{hostName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> update( @@ -99,8 +99,8 @@ Mono>> update( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}/hosts/{hostName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}/hosts/{hostName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> delete( @@ -114,8 +114,8 @@ Mono>> delete( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}/hosts/{hostName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}/hosts/{hostName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> get( @@ -130,8 +130,8 @@ Mono> get( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}/hosts") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}/hosts") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> listByHostGroup( @@ -144,8 +144,8 @@ Mono> listByHostGroup( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}/hosts/{hostName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}/hosts/{hostName}") @ExpectedResponses({200, 201}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginCreateOrUpdate( @@ -160,8 +160,8 @@ Mono> beginCreateOrUpdate( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Patch( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}/hosts/{hostName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}/hosts/{hostName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginUpdate( @@ -176,8 +176,8 @@ Mono> beginUpdate( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/hostGroups/{hostGroupName}/hosts/{hostName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups" + + "/{hostGroupName}/hosts/{hostName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginDelete( diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskEncryptionSetInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskEncryptionSetInner.java new file mode 100644 index 000000000000..36f330fc7e7f --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskEncryptionSetInner.java @@ -0,0 +1,127 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute.models; + +import com.azure.core.annotation.Fluent; +import com.azure.core.annotation.JsonFlatten; +import com.azure.core.management.Resource; +import com.azure.core.util.logging.ClientLogger; +import com.azure.management.compute.EncryptionSetIdentity; +import com.azure.management.compute.KeyVaultAndKeyReference; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.util.List; + +/** The DiskEncryptionSet model. */ +@JsonFlatten +@Fluent +public class DiskEncryptionSetInner extends Resource { + @JsonIgnore private final ClientLogger logger = new ClientLogger(DiskEncryptionSetInner.class); + + /* + * The managed identity for the disk encryption set. It should be given + * permission on the key vault before it can be used to encrypt disks. + */ + @JsonProperty(value = "identity") + private EncryptionSetIdentity identity; + + /* + * The key vault key which is currently used by this disk encryption set. + */ + @JsonProperty(value = "properties.activeKey") + private KeyVaultAndKeyReference activeKey; + + /* + * A readonly collection of key vault keys previously used by this disk + * encryption set while a key rotation is in progress. It will be empty if + * there is no ongoing key rotation. + */ + @JsonProperty(value = "properties.previousKeys", access = JsonProperty.Access.WRITE_ONLY) + private List previousKeys; + + /* + * The disk encryption set provisioning state. + */ + @JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY) + private String provisioningState; + + /** + * Get the identity property: The managed identity for the disk encryption set. It should be given permission on the + * key vault before it can be used to encrypt disks. + * + * @return the identity value. + */ + public EncryptionSetIdentity identity() { + return this.identity; + } + + /** + * Set the identity property: The managed identity for the disk encryption set. It should be given permission on the + * key vault before it can be used to encrypt disks. + * + * @param identity the identity value to set. + * @return the DiskEncryptionSetInner object itself. + */ + public DiskEncryptionSetInner withIdentity(EncryptionSetIdentity identity) { + this.identity = identity; + return this; + } + + /** + * Get the activeKey property: The key vault key which is currently used by this disk encryption set. + * + * @return the activeKey value. + */ + public KeyVaultAndKeyReference activeKey() { + return this.activeKey; + } + + /** + * Set the activeKey property: The key vault key which is currently used by this disk encryption set. + * + * @param activeKey the activeKey value to set. + * @return the DiskEncryptionSetInner object itself. + */ + public DiskEncryptionSetInner withActiveKey(KeyVaultAndKeyReference activeKey) { + this.activeKey = activeKey; + return this; + } + + /** + * Get the previousKeys property: A readonly collection of key vault keys previously used by this disk encryption + * set while a key rotation is in progress. It will be empty if there is no ongoing key rotation. + * + * @return the previousKeys value. + */ + public List previousKeys() { + return this.previousKeys; + } + + /** + * Get the provisioningState property: The disk encryption set provisioning state. + * + * @return the provisioningState value. + */ + public String provisioningState() { + return this.provisioningState; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + if (identity() != null) { + identity().validate(); + } + if (activeKey() != null) { + activeKey().validate(); + } + if (previousKeys() != null) { + previousKeys().forEach(e -> e.validate()); + } + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskEncryptionSetListInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskEncryptionSetListInner.java new file mode 100644 index 000000000000..47e8cc5bf53a --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskEncryptionSetListInner.java @@ -0,0 +1,88 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute.models; + +import com.azure.core.annotation.Fluent; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.util.List; + +/** The DiskEncryptionSetList model. */ +@Fluent +public final class DiskEncryptionSetListInner { + @JsonIgnore private final ClientLogger logger = new ClientLogger(DiskEncryptionSetListInner.class); + + /* + * A list of disk encryption sets. + */ + @JsonProperty(value = "value", required = true) + private List value; + + /* + * The uri to fetch the next page of disk encryption sets. Call ListNext() + * with this to fetch the next page of disk encryption sets. + */ + @JsonProperty(value = "nextLink") + private String nextLink; + + /** + * Get the value property: A list of disk encryption sets. + * + * @return the value value. + */ + public List value() { + return this.value; + } + + /** + * Set the value property: A list of disk encryption sets. + * + * @param value the value value to set. + * @return the DiskEncryptionSetListInner object itself. + */ + public DiskEncryptionSetListInner withValue(List value) { + this.value = value; + return this; + } + + /** + * Get the nextLink property: The uri to fetch the next page of disk encryption sets. Call ListNext() with this to + * fetch the next page of disk encryption sets. + * + * @return the nextLink value. + */ + public String nextLink() { + return this.nextLink; + } + + /** + * Set the nextLink property: The uri to fetch the next page of disk encryption sets. Call ListNext() with this to + * fetch the next page of disk encryption sets. + * + * @param nextLink the nextLink value to set. + * @return the DiskEncryptionSetListInner object itself. + */ + public DiskEncryptionSetListInner withNextLink(String nextLink) { + this.nextLink = nextLink; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + if (value() == null) { + throw logger + .logExceptionAsError( + new IllegalArgumentException( + "Missing required property value in model DiskEncryptionSetListInner")); + } else { + value().forEach(e -> e.validate()); + } + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskEncryptionSetsInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskEncryptionSetsInner.java new file mode 100644 index 000000000000..12a5ab58ad95 --- /dev/null +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskEncryptionSetsInner.java @@ -0,0 +1,1436 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.management.compute.models; + +import com.azure.core.annotation.BodyParam; +import com.azure.core.annotation.Delete; +import com.azure.core.annotation.ExpectedResponses; +import com.azure.core.annotation.Get; +import com.azure.core.annotation.Headers; +import com.azure.core.annotation.Host; +import com.azure.core.annotation.HostParam; +import com.azure.core.annotation.Patch; +import com.azure.core.annotation.PathParam; +import com.azure.core.annotation.Put; +import com.azure.core.annotation.QueryParam; +import com.azure.core.annotation.ReturnType; +import com.azure.core.annotation.ServiceInterface; +import com.azure.core.annotation.ServiceMethod; +import com.azure.core.annotation.UnexpectedResponseExceptionType; +import com.azure.core.http.rest.PagedFlux; +import com.azure.core.http.rest.PagedIterable; +import com.azure.core.http.rest.PagedResponse; +import com.azure.core.http.rest.PagedResponseBase; +import com.azure.core.http.rest.Response; +import com.azure.core.http.rest.RestProxy; +import com.azure.core.http.rest.SimpleResponse; +import com.azure.core.util.Context; +import com.azure.core.util.FluxUtil; +import com.azure.core.util.logging.ClientLogger; +import com.azure.core.util.polling.AsyncPollResponse; +import com.azure.management.compute.ApiErrorException; +import com.azure.management.compute.DiskEncryptionSetUpdate; +import com.azure.management.resources.fluentcore.collection.InnerSupportsDelete; +import com.azure.management.resources.fluentcore.collection.InnerSupportsGet; +import com.azure.management.resources.fluentcore.collection.InnerSupportsListing; +import java.nio.ByteBuffer; +import reactor.core.publisher.Flux; +import reactor.core.publisher.Mono; + +/** An instance of this class provides access to all the operations defined in DiskEncryptionSets. */ +public final class DiskEncryptionSetsInner + implements InnerSupportsGet, + InnerSupportsListing, + InnerSupportsDelete { + private final ClientLogger logger = new ClientLogger(DiskEncryptionSetsInner.class); + + /** The proxy service used to perform REST calls. */ + private final DiskEncryptionSetsService service; + + /** The service client containing this operation class. */ + private final ComputeManagementClientImpl client; + + /** + * Initializes an instance of DiskEncryptionSetsInner. + * + * @param client the instance of the service client containing this operation class. + */ + DiskEncryptionSetsInner(ComputeManagementClientImpl client) { + this.service = + RestProxy.create(DiskEncryptionSetsService.class, client.getHttpPipeline(), client.getSerializerAdapter()); + this.client = client; + } + + /** + * The interface defining all the services for ComputeManagementClientDiskEncryptionSets to be used by the proxy + * service to perform REST calls. + */ + @Host("{$host}") + @ServiceInterface(name = "ComputeManagementCli") + private interface DiskEncryptionSetsService { + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Put( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" + + "/diskEncryptionSets/{diskEncryptionSetName}") + @ExpectedResponses({200, 201}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono>> createOrUpdate( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("diskEncryptionSetName") String diskEncryptionSetName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") DiskEncryptionSetInner diskEncryptionSet, + Context context); + + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" + + "/diskEncryptionSets/{diskEncryptionSetName}") + @ExpectedResponses({200, 202}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono>> update( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("diskEncryptionSetName") String diskEncryptionSetName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") DiskEncryptionSetUpdate diskEncryptionSet, + Context context); + + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Get( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" + + "/diskEncryptionSets/{diskEncryptionSetName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> getByResourceGroup( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("diskEncryptionSetName") String diskEncryptionSetName, + @QueryParam("api-version") String apiVersion, + Context context); + + @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) + @Delete( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" + + "/diskEncryptionSets/{diskEncryptionSetName}") + @ExpectedResponses({200, 202, 204}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono>> delete( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("diskEncryptionSetName") String diskEncryptionSetName, + @QueryParam("api-version") String apiVersion, + Context context); + + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Get( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" + + "/diskEncryptionSets") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> listByResourceGroup( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @QueryParam("api-version") String apiVersion, + Context context); + + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Get("/subscriptions/{subscriptionId}/providers/Microsoft.Compute/diskEncryptionSets") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> list( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @QueryParam("api-version") String apiVersion, + Context context); + + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Put( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" + + "/diskEncryptionSets/{diskEncryptionSetName}") + @ExpectedResponses({200, 201}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> beginCreateOrUpdate( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("diskEncryptionSetName") String diskEncryptionSetName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") DiskEncryptionSetInner diskEncryptionSet, + Context context); + + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" + + "/diskEncryptionSets/{diskEncryptionSetName}") + @ExpectedResponses({200, 202}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> beginUpdate( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("diskEncryptionSetName") String diskEncryptionSetName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") DiskEncryptionSetUpdate diskEncryptionSet, + Context context); + + @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) + @Delete( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" + + "/diskEncryptionSets/{diskEncryptionSetName}") + @ExpectedResponses({200, 202, 204}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> beginDelete( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("diskEncryptionSetName") String diskEncryptionSetName, + @QueryParam("api-version") String apiVersion, + Context context); + + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Get("{nextLink}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> listByResourceGroupNext( + @PathParam(value = "nextLink", encoded = true) String nextLink, Context context); + + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Get("{nextLink}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> listNext( + @PathParam(value = "nextLink", encoded = true) String nextLink, Context context); + } + + /** + * Creates or updates a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono>> createOrUpdateWithResponseAsync( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetInner diskEncryptionSet) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + if (diskEncryptionSet == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSet is required and cannot be null.")); + } else { + diskEncryptionSet.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .createOrUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + diskEncryptionSet, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Creates or updates a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono createOrUpdateAsync( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetInner diskEncryptionSet) { + Mono>> mono = + createOrUpdateWithResponseAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet); + return this + .client + .getLroResultAsync( + mono, this.client.getHttpPipeline(), DiskEncryptionSetInner.class, DiskEncryptionSetInner.class) + .last() + .flatMap(AsyncPollResponse::getFinalResult); + } + + /** + * Creates or updates a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public DiskEncryptionSetInner createOrUpdate( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetInner diskEncryptionSet) { + return createOrUpdateAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet).block(); + } + + /** + * Updates (patches) a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set update resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono>> updateWithResponseAsync( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + if (diskEncryptionSet == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSet is required and cannot be null.")); + } else { + diskEncryptionSet.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .update( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + diskEncryptionSet, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Updates (patches) a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set update resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono updateAsync( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet) { + Mono>> mono = + updateWithResponseAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet); + return this + .client + .getLroResultAsync( + mono, this.client.getHttpPipeline(), DiskEncryptionSetInner.class, DiskEncryptionSetInner.class) + .last() + .flatMap(AsyncPollResponse::getFinalResult); + } + + /** + * Updates (patches) a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set update resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public DiskEncryptionSetInner update( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet) { + return updateAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet).block(); + } + + /** + * Gets information about a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return information about a disk encryption set. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> getByResourceGroupWithResponseAsync( + String resourceGroupName, String diskEncryptionSetName) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .getByResourceGroup( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Gets information about a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return information about a disk encryption set. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> getByResourceGroupWithResponseAsync( + String resourceGroupName, String diskEncryptionSetName, Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + final String apiVersion = "2019-07-01"; + return service + .getByResourceGroup( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + context); + } + + /** + * Gets information about a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return information about a disk encryption set. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono getByResourceGroupAsync( + String resourceGroupName, String diskEncryptionSetName) { + return getByResourceGroupWithResponseAsync(resourceGroupName, diskEncryptionSetName) + .flatMap( + (SimpleResponse res) -> { + if (res.getValue() != null) { + return Mono.just(res.getValue()); + } else { + return Mono.empty(); + } + }); + } + + /** + * Gets information about a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return information about a disk encryption set. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public DiskEncryptionSetInner getByResourceGroup(String resourceGroupName, String diskEncryptionSetName) { + return getByResourceGroupAsync(resourceGroupName, diskEncryptionSetName).block(); + } + + /** + * Deletes a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the completion. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono>> deleteWithResponseAsync( + String resourceGroupName, String diskEncryptionSetName) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .delete( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Deletes a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the completion. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono deleteAsync(String resourceGroupName, String diskEncryptionSetName) { + Mono>> mono = deleteWithResponseAsync(resourceGroupName, diskEncryptionSetName); + return this + .client + .getLroResultAsync(mono, this.client.getHttpPipeline(), Void.class, Void.class) + .last() + .flatMap(AsyncPollResponse::getFinalResult); + } + + /** + * Deletes a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public void delete(String resourceGroupName, String diskEncryptionSetName) { + deleteAsync(resourceGroupName, diskEncryptionSetName).block(); + } + + /** + * Lists all the disk encryption sets under a resource group. + * + * @param resourceGroupName The name of the resource group. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> listByResourceGroupSinglePageAsync(String resourceGroupName) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .listByResourceGroup( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + apiVersion, + context)) + .>map( + res -> + new PagedResponseBase<>( + res.getRequest(), + res.getStatusCode(), + res.getHeaders(), + res.getValue().value(), + res.getValue().nextLink(), + null)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Lists all the disk encryption sets under a resource group. + * + * @param resourceGroupName The name of the resource group. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> listByResourceGroupSinglePageAsync( + String resourceGroupName, Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + final String apiVersion = "2019-07-01"; + return service + .listByResourceGroup( + this.client.getHost(), this.client.getSubscriptionId(), resourceGroupName, apiVersion, context) + .map( + res -> + new PagedResponseBase<>( + res.getRequest(), + res.getStatusCode(), + res.getHeaders(), + res.getValue().value(), + res.getValue().nextLink(), + null)); + } + + /** + * Lists all the disk encryption sets under a resource group. + * + * @param resourceGroupName The name of the resource group. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.COLLECTION) + public PagedFlux listByResourceGroupAsync(String resourceGroupName) { + return new PagedFlux<>( + () -> listByResourceGroupSinglePageAsync(resourceGroupName), + nextLink -> listByResourceGroupNextSinglePageAsync(nextLink)); + } + + /** + * Lists all the disk encryption sets under a resource group. + * + * @param resourceGroupName The name of the resource group. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.COLLECTION) + public PagedFlux listByResourceGroupAsync(String resourceGroupName, Context context) { + return new PagedFlux<>( + () -> listByResourceGroupSinglePageAsync(resourceGroupName, context), + nextLink -> listByResourceGroupNextSinglePageAsync(nextLink)); + } + + /** + * Lists all the disk encryption sets under a resource group. + * + * @param resourceGroupName The name of the resource group. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.COLLECTION) + public PagedIterable listByResourceGroup(String resourceGroupName) { + return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName)); + } + + /** + * Lists all the disk encryption sets under a subscription. + * + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> listSinglePageAsync() { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> service.list(this.client.getHost(), this.client.getSubscriptionId(), apiVersion, context)) + .>map( + res -> + new PagedResponseBase<>( + res.getRequest(), + res.getStatusCode(), + res.getHeaders(), + res.getValue().value(), + res.getValue().nextLink(), + null)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Lists all the disk encryption sets under a subscription. + * + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> listSinglePageAsync(Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + final String apiVersion = "2019-07-01"; + return service + .list(this.client.getHost(), this.client.getSubscriptionId(), apiVersion, context) + .map( + res -> + new PagedResponseBase<>( + res.getRequest(), + res.getStatusCode(), + res.getHeaders(), + res.getValue().value(), + res.getValue().nextLink(), + null)); + } + + /** + * Lists all the disk encryption sets under a subscription. + * + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.COLLECTION) + public PagedFlux listAsync() { + return new PagedFlux<>(() -> listSinglePageAsync(), nextLink -> listNextSinglePageAsync(nextLink)); + } + + /** + * Lists all the disk encryption sets under a subscription. + * + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.COLLECTION) + public PagedFlux listAsync(Context context) { + return new PagedFlux<>(() -> listSinglePageAsync(context), nextLink -> listNextSinglePageAsync(nextLink)); + } + + /** + * Lists all the disk encryption sets under a subscription. + * + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.COLLECTION) + public PagedIterable list() { + return new PagedIterable<>(listAsync()); + } + + /** + * Creates or updates a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginCreateOrUpdateWithResponseAsync( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetInner diskEncryptionSet) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + if (diskEncryptionSet == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSet is required and cannot be null.")); + } else { + diskEncryptionSet.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .beginCreateOrUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + diskEncryptionSet, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Creates or updates a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set resource. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginCreateOrUpdateWithResponseAsync( + String resourceGroupName, + String diskEncryptionSetName, + DiskEncryptionSetInner diskEncryptionSet, + Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + if (diskEncryptionSet == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSet is required and cannot be null.")); + } else { + diskEncryptionSet.validate(); + } + final String apiVersion = "2019-07-01"; + return service + .beginCreateOrUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + diskEncryptionSet, + context); + } + + /** + * Creates or updates a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono beginCreateOrUpdateAsync( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetInner diskEncryptionSet) { + return beginCreateOrUpdateWithResponseAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet) + .flatMap( + (SimpleResponse res) -> { + if (res.getValue() != null) { + return Mono.just(res.getValue()); + } else { + return Mono.empty(); + } + }); + } + + /** + * Creates or updates a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public DiskEncryptionSetInner beginCreateOrUpdate( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetInner diskEncryptionSet) { + return beginCreateOrUpdateAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet).block(); + } + + /** + * Updates (patches) a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set update resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + if (diskEncryptionSet == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSet is required and cannot be null.")); + } else { + diskEncryptionSet.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + diskEncryptionSet, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Updates (patches) a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set update resource. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, + String diskEncryptionSetName, + DiskEncryptionSetUpdate diskEncryptionSet, + Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + if (diskEncryptionSet == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSet is required and cannot be null.")); + } else { + diskEncryptionSet.validate(); + } + final String apiVersion = "2019-07-01"; + return service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + diskEncryptionSet, + context); + } + + /** + * Updates (patches) a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set update resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono beginUpdateAsync( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet) { + return beginUpdateWithResponseAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet) + .flatMap( + (SimpleResponse res) -> { + if (res.getValue() != null) { + return Mono.just(res.getValue()); + } else { + return Mono.empty(); + } + }); + } + + /** + * Updates (patches) a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param diskEncryptionSet disk encryption set update resource. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return disk encryption set resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public DiskEncryptionSetInner beginUpdate( + String resourceGroupName, String diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet) { + return beginUpdateAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet).block(); + } + + /** + * Deletes a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the completion. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginDeleteWithResponseAsync(String resourceGroupName, String diskEncryptionSetName) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .beginDelete( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Deletes a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the completion. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginDeleteWithResponseAsync( + String resourceGroupName, String diskEncryptionSetName, Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (diskEncryptionSetName == null) { + return Mono + .error(new IllegalArgumentException("Parameter diskEncryptionSetName is required and cannot be null.")); + } + final String apiVersion = "2019-07-01"; + return service + .beginDelete( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + diskEncryptionSetName, + apiVersion, + context); + } + + /** + * Deletes a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the completion. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono beginDeleteAsync(String resourceGroupName, String diskEncryptionSetName) { + return beginDeleteWithResponseAsync(resourceGroupName, diskEncryptionSetName) + .flatMap((Response res) -> Mono.empty()); + } + + /** + * Deletes a disk encryption set. + * + * @param resourceGroupName The name of the resource group. + * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name can't be changed + * after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The + * maximum name length is 80 characters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public void beginDelete(String resourceGroupName, String diskEncryptionSetName) { + beginDeleteAsync(resourceGroupName, diskEncryptionSetName).block(); + } + + /** + * Get the next page of items. + * + * @param nextLink The nextLink parameter. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> listByResourceGroupNextSinglePageAsync(String nextLink) { + if (nextLink == null) { + return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null.")); + } + return FluxUtil + .withContext(context -> service.listByResourceGroupNext(nextLink, context)) + .>map( + res -> + new PagedResponseBase<>( + res.getRequest(), + res.getStatusCode(), + res.getHeaders(), + res.getValue().value(), + res.getValue().nextLink(), + null)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Get the next page of items. + * + * @param nextLink The nextLink parameter. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> listByResourceGroupNextSinglePageAsync( + String nextLink, Context context) { + if (nextLink == null) { + return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null.")); + } + return service + .listByResourceGroupNext(nextLink, context) + .map( + res -> + new PagedResponseBase<>( + res.getRequest(), + res.getStatusCode(), + res.getHeaders(), + res.getValue().value(), + res.getValue().nextLink(), + null)); + } + + /** + * Get the next page of items. + * + * @param nextLink The nextLink parameter. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> listNextSinglePageAsync(String nextLink) { + if (nextLink == null) { + return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null.")); + } + return FluxUtil + .withContext(context -> service.listNext(nextLink, context)) + .>map( + res -> + new PagedResponseBase<>( + res.getRequest(), + res.getStatusCode(), + res.getHeaders(), + res.getValue().value(), + res.getValue().nextLink(), + null)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Get the next page of items. + * + * @param nextLink The nextLink parameter. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the List disk encryption set operation response. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> listNextSinglePageAsync(String nextLink, Context context) { + if (nextLink == null) { + return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null.")); + } + return service + .listNext(nextLink, context) + .map( + res -> + new PagedResponseBase<>( + res.getRequest(), + res.getStatusCode(), + res.getHeaders(), + res.getValue().value(), + res.getValue().nextLink(), + null)); + } +} diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskInner.java index 772eb3a14b4c..123d7b14ceee 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DiskInner.java @@ -11,6 +11,7 @@ import com.azure.management.compute.CreationData; import com.azure.management.compute.DiskSku; import com.azure.management.compute.DiskState; +import com.azure.management.compute.Encryption; import com.azure.management.compute.EncryptionSettingsCollection; import com.azure.management.compute.HyperVGeneration; import com.azure.management.compute.OperatingSystemTypes; @@ -126,6 +127,13 @@ public class DiskInner extends Resource { @JsonProperty(value = "properties.diskState", access = JsonProperty.Access.WRITE_ONLY) private DiskState diskState; + /* + * Encryption property can be used to encrypt data at rest with customer + * managed keys or platform managed keys. + */ + @JsonProperty(value = "properties.encryption") + private Encryption encryption; + /** * Get the managedBy property: A relative URI containing the ID of the VM that has the disk attached. * @@ -374,6 +382,28 @@ public DiskState diskState() { return this.diskState; } + /** + * Get the encryption property: Encryption property can be used to encrypt data at rest with customer managed keys + * or platform managed keys. + * + * @return the encryption value. + */ + public Encryption encryption() { + return this.encryption; + } + + /** + * Set the encryption property: Encryption property can be used to encrypt data at rest with customer managed keys + * or platform managed keys. + * + * @param encryption the encryption value to set. + * @return the DiskInner object itself. + */ + public DiskInner withEncryption(Encryption encryption) { + this.encryption = encryption; + return this; + } + /** * Validates the instance. * @@ -389,5 +419,8 @@ public void validate() { if (encryptionSettingsCollection() != null) { encryptionSettingsCollection().validate(); } + if (encryption() != null) { + encryption().validate(); + } } } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DisksInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DisksInner.java index 2cdcbafe5803..36d2042def82 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DisksInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/DisksInner.java @@ -71,8 +71,8 @@ public final class DisksInner private interface DisksService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> createOrUpdate( @@ -86,8 +86,8 @@ Mono>> createOrUpdate( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Patch( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> update( @@ -101,8 +101,8 @@ Mono>> update( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> getByResourceGroup( @@ -115,8 +115,8 @@ Mono> getByResourceGroup( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> delete( @@ -128,8 +128,7 @@ Mono>> delete( Context context); @Headers({"Accept: application/json", "Content-Type: application/json"}) - @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" + "/disks") + @Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> listByResourceGroup( @@ -151,8 +150,8 @@ Mono> list( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}/beginGetAccess") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}/beginGetAccess") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> grantAccess( @@ -166,8 +165,8 @@ Mono>> grantAccess( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}/endGetAccess") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}/endGetAccess") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> revokeAccess( @@ -180,8 +179,8 @@ Mono>> revokeAccess( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginCreateOrUpdate( @@ -195,8 +194,8 @@ Mono> beginCreateOrUpdate( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Patch( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginUpdate( @@ -210,8 +209,8 @@ Mono> beginUpdate( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginDelete( @@ -224,8 +223,8 @@ Mono> beginDelete( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}/beginGetAccess") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}/beginGetAccess") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginGrantAccess( @@ -239,8 +238,8 @@ Mono> beginGrantAccess( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/disks/{diskName}/endGetAccess") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks" + + "/{diskName}/endGetAccess") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginRevokeAccess( @@ -303,7 +302,7 @@ public Mono>> createOrUpdateWithResponseAsync( } else { disk.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -397,7 +396,7 @@ public Mono>> updateWithResponseAsync( } else { disk.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -484,7 +483,7 @@ public Mono> getByResourceGroupWithResponseAsync( if (diskName == null) { return Mono.error(new IllegalArgumentException("Parameter diskName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -531,7 +530,7 @@ public Mono> getByResourceGroupWithResponseAsync( if (diskName == null) { return Mono.error(new IllegalArgumentException("Parameter diskName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .getByResourceGroup( this.client.getHost(), @@ -612,7 +611,7 @@ public Mono>> deleteWithResponseAsync(String res if (diskName == null) { return Mono.error(new IllegalArgumentException("Parameter diskName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -688,7 +687,7 @@ public Mono> listByResourceGroupSinglePageAsync(String return Mono .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -738,7 +737,7 @@ public Mono> listByResourceGroupSinglePageAsync( return Mono .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .listByResourceGroup( this.client.getHost(), this.client.getSubscriptionId(), resourceGroupName, apiVersion, context) @@ -819,7 +818,7 @@ public Mono> listSinglePageAsync() { new IllegalArgumentException( "Parameter this.client.getSubscriptionId() is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> service.list(this.client.getHost(), this.client.getSubscriptionId(), apiVersion, context)) @@ -856,7 +855,7 @@ public Mono> listSinglePageAsync(Context context) { new IllegalArgumentException( "Parameter this.client.getSubscriptionId() is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .list(this.client.getHost(), this.client.getSubscriptionId(), apiVersion, context) .map( @@ -946,7 +945,7 @@ public Mono>> grantAccessWithResponseAsync( } else { grantAccessData.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1035,7 +1034,7 @@ public Mono>> revokeAccessWithResponseAsync( if (diskName == null) { return Mono.error(new IllegalArgumentException("Parameter diskName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1123,7 +1122,7 @@ public Mono> beginCreateOrUpdateWithResponseAsync( } else { disk.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1177,7 +1176,7 @@ public Mono> beginCreateOrUpdateWithResponseAsync( } else { disk.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginCreateOrUpdate( this.client.getHost(), @@ -1268,7 +1267,7 @@ public Mono> beginUpdateWithResponseAsync( } else { disk.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1322,7 +1321,7 @@ public Mono> beginUpdateWithResponseAsync( } else { disk.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginUpdate( this.client.getHost(), @@ -1406,7 +1405,7 @@ public Mono> beginDeleteWithResponseAsync(String resourceGroupNam if (diskName == null) { return Mono.error(new IllegalArgumentException("Parameter diskName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1453,7 +1452,7 @@ public Mono> beginDeleteWithResponseAsync( if (diskName == null) { return Mono.error(new IllegalArgumentException("Parameter diskName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginDelete( this.client.getHost(), @@ -1533,7 +1532,7 @@ public Mono> beginGrantAccessWithResponseAsync( } else { grantAccessData.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1588,7 +1587,7 @@ public Mono> beginGrantAccessWithResponseAsync( } else { grantAccessData.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginGrantAccess( this.client.getHost(), @@ -1673,7 +1672,7 @@ public Mono> beginRevokeAccessWithResponseAsync(String resourceGr if (diskName == null) { return Mono.error(new IllegalArgumentException("Parameter diskName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1720,7 +1719,7 @@ public Mono> beginRevokeAccessWithResponseAsync( if (diskName == null) { return Mono.error(new IllegalArgumentException("Parameter diskName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginRevokeAccess( this.client.getHost(), diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleriesInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleriesInner.java index 15765c70329b..cf18829b097e 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleriesInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleriesInner.java @@ -11,6 +11,7 @@ import com.azure.core.annotation.Headers; import com.azure.core.annotation.Host; import com.azure.core.annotation.HostParam; +import com.azure.core.annotation.Patch; import com.azure.core.annotation.PathParam; import com.azure.core.annotation.Put; import com.azure.core.annotation.QueryParam; @@ -30,6 +31,7 @@ import com.azure.core.util.logging.ClientLogger; import com.azure.core.util.polling.AsyncPollResponse; import com.azure.management.compute.ApiErrorException; +import com.azure.management.compute.GalleryUpdate; import com.azure.management.resources.fluentcore.collection.InnerSupportsDelete; import com.azure.management.resources.fluentcore.collection.InnerSupportsGet; import com.azure.management.resources.fluentcore.collection.InnerSupportsListing; @@ -68,8 +70,8 @@ public final class GalleriesInner private interface GalleriesService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono>> createOrUpdate( @@ -81,10 +83,25 @@ Mono>> createOrUpdate( @BodyParam("application/json") GalleryInner gallery, Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono>> update( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("galleryName") String galleryName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") GalleryUpdate gallery, + Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> getByResourceGroup( @@ -97,8 +114,8 @@ Mono> getByResourceGroup( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono>> delete( @@ -110,9 +127,7 @@ Mono>> delete( Context context); @Headers({"Accept: application/json", "Content-Type: application/json"}) - @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries") + @Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> listByResourceGroup( @@ -134,8 +149,8 @@ Mono> list( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> beginCreateOrUpdate( @@ -147,10 +162,25 @@ Mono> beginCreateOrUpdate( @BodyParam("application/json") GalleryInner gallery, Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> beginUpdate( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("galleryName") String galleryName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") GalleryUpdate gallery, + Context context); + @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> beginDelete( @@ -213,7 +243,7 @@ public Mono>> createOrUpdateWithResponseAsync( } else { gallery.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -270,6 +300,99 @@ public GalleryInner createOrUpdate(String resourceGroupName, String galleryName, return createOrUpdateAsync(resourceGroupName, galleryName, gallery).block(); } + /** + * Update a Shared Image Gallery. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with + * dots and periods allowed in the middle. The maximum length is 80 characters. + * @param gallery Specifies information about the Shared Image Gallery that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the Shared Image Gallery that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono>> updateWithResponseAsync( + String resourceGroupName, String galleryName, GalleryUpdate gallery) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (gallery == null) { + return Mono.error(new IllegalArgumentException("Parameter gallery is required and cannot be null.")); + } else { + gallery.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .update( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + apiVersion, + gallery, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Update a Shared Image Gallery. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with + * dots and periods allowed in the middle. The maximum length is 80 characters. + * @param gallery Specifies information about the Shared Image Gallery that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the Shared Image Gallery that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono updateAsync(String resourceGroupName, String galleryName, GalleryUpdate gallery) { + Mono>> mono = updateWithResponseAsync(resourceGroupName, galleryName, gallery); + return this + .client + .getLroResultAsync( + mono, this.client.getHttpPipeline(), GalleryInner.class, GalleryInner.class) + .last() + .flatMap(AsyncPollResponse::getFinalResult); + } + + /** + * Update a Shared Image Gallery. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with + * dots and periods allowed in the middle. The maximum length is 80 characters. + * @param gallery Specifies information about the Shared Image Gallery that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the Shared Image Gallery that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public GalleryInner update(String resourceGroupName, String galleryName, GalleryUpdate gallery) { + return updateAsync(resourceGroupName, galleryName, gallery).block(); + } + /** * Retrieves information about a Shared Image Gallery. * @@ -300,7 +423,7 @@ public Mono> getByResourceGroupWithResponseAsync( if (galleryName == null) { return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -346,7 +469,7 @@ public Mono> getByResourceGroupWithResponseAsync( if (galleryName == null) { return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .getByResourceGroup( this.client.getHost(), @@ -425,7 +548,7 @@ public Mono>> deleteWithResponseAsync( if (galleryName == null) { return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -499,7 +622,7 @@ public Mono> listByResourceGroupSinglePageAsync(Stri return Mono .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -549,7 +672,7 @@ public Mono> listByResourceGroupSinglePageAsync( return Mono .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .listByResourceGroup( this.client.getHost(), this.client.getSubscriptionId(), resourceGroupName, apiVersion, context) @@ -630,7 +753,7 @@ public Mono> listSinglePageAsync() { new IllegalArgumentException( "Parameter this.client.getSubscriptionId() is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> service.list(this.client.getHost(), this.client.getSubscriptionId(), apiVersion, context)) @@ -667,7 +790,7 @@ public Mono> listSinglePageAsync(Context context) { new IllegalArgumentException( "Parameter this.client.getSubscriptionId() is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .list(this.client.getHost(), this.client.getSubscriptionId(), apiVersion, context) .map( @@ -756,7 +879,7 @@ public Mono> beginCreateOrUpdateWithResponseAsync( } else { gallery.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -810,7 +933,7 @@ public Mono> beginCreateOrUpdateWithResponseAsync( } else { gallery.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginCreateOrUpdate( this.client.getHost(), @@ -865,6 +988,151 @@ public GalleryInner beginCreateOrUpdate(String resourceGroupName, String gallery return beginCreateOrUpdateAsync(resourceGroupName, galleryName, gallery).block(); } + /** + * Update a Shared Image Gallery. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with + * dots and periods allowed in the middle. The maximum length is 80 characters. + * @param gallery Specifies information about the Shared Image Gallery that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the Shared Image Gallery that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, String galleryName, GalleryUpdate gallery) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (gallery == null) { + return Mono.error(new IllegalArgumentException("Parameter gallery is required and cannot be null.")); + } else { + gallery.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + apiVersion, + gallery, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Update a Shared Image Gallery. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with + * dots and periods allowed in the middle. The maximum length is 80 characters. + * @param gallery Specifies information about the Shared Image Gallery that you want to update. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the Shared Image Gallery that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, String galleryName, GalleryUpdate gallery, Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (gallery == null) { + return Mono.error(new IllegalArgumentException("Parameter gallery is required and cannot be null.")); + } else { + gallery.validate(); + } + final String apiVersion = "2019-07-01"; + return service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + apiVersion, + gallery, + context); + } + + /** + * Update a Shared Image Gallery. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with + * dots and periods allowed in the middle. The maximum length is 80 characters. + * @param gallery Specifies information about the Shared Image Gallery that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the Shared Image Gallery that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono beginUpdateAsync(String resourceGroupName, String galleryName, GalleryUpdate gallery) { + return beginUpdateWithResponseAsync(resourceGroupName, galleryName, gallery) + .flatMap( + (SimpleResponse res) -> { + if (res.getValue() != null) { + return Mono.just(res.getValue()); + } else { + return Mono.empty(); + } + }); + } + + /** + * Update a Shared Image Gallery. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with + * dots and periods allowed in the middle. The maximum length is 80 characters. + * @param gallery Specifies information about the Shared Image Gallery that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the Shared Image Gallery that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public GalleryInner beginUpdate(String resourceGroupName, String galleryName, GalleryUpdate gallery) { + return beginUpdateAsync(resourceGroupName, galleryName, gallery).block(); + } + /** * Delete a Shared Image Gallery. * @@ -894,7 +1162,7 @@ public Mono> beginDeleteWithResponseAsync(String resourceGroupNam if (galleryName == null) { return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -940,7 +1208,7 @@ public Mono> beginDeleteWithResponseAsync( if (galleryName == null) { return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginDelete( this.client.getHost(), diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryApplicationVersionsInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryApplicationVersionsInner.java index 492aeb90c625..d79d52fb99fb 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryApplicationVersionsInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryApplicationVersionsInner.java @@ -11,6 +11,7 @@ import com.azure.core.annotation.Headers; import com.azure.core.annotation.Host; import com.azure.core.annotation.HostParam; +import com.azure.core.annotation.Patch; import com.azure.core.annotation.PathParam; import com.azure.core.annotation.Put; import com.azure.core.annotation.QueryParam; @@ -30,6 +31,7 @@ import com.azure.core.util.logging.ClientLogger; import com.azure.core.util.polling.AsyncPollResponse; import com.azure.management.compute.ApiErrorException; +import com.azure.management.compute.GalleryApplicationVersionUpdate; import com.azure.management.compute.ReplicationStatusTypes; import java.nio.ByteBuffer; import reactor.core.publisher.Flux; @@ -67,9 +69,8 @@ public final class GalleryApplicationVersionsInner { private interface GalleryApplicationVersionsService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}/versions" - + "/{galleryApplicationVersionName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}/versions/{galleryApplicationVersionName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono>> createOrUpdate( @@ -83,11 +84,27 @@ Mono>> createOrUpdate( @BodyParam("application/json") GalleryApplicationVersionInner galleryApplicationVersion, Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}/versions/{galleryApplicationVersionName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono>> update( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("galleryName") String galleryName, + @PathParam("galleryApplicationName") String galleryApplicationName, + @PathParam("galleryApplicationVersionName") String galleryApplicationVersionName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") GalleryApplicationVersionUpdate galleryApplicationVersion, + Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}/versions" - + "/{galleryApplicationVersionName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}/versions/{galleryApplicationVersionName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> get( @@ -103,9 +120,8 @@ Mono> get( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}/versions" - + "/{galleryApplicationVersionName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}/versions/{galleryApplicationVersionName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono>> delete( @@ -120,8 +136,8 @@ Mono>> delete( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}/versions") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}/versions") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> listByGalleryApplication( @@ -135,9 +151,8 @@ Mono> listByGalleryApplicatio @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}/versions" - + "/{galleryApplicationVersionName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}/versions/{galleryApplicationVersionName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> beginCreateOrUpdate( @@ -151,11 +166,27 @@ Mono> beginCreateOrUpdate( @BodyParam("application/json") GalleryApplicationVersionInner galleryApplicationVersion, Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}/versions/{galleryApplicationVersionName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> beginUpdate( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("galleryName") String galleryName, + @PathParam("galleryApplicationName") String galleryApplicationName, + @PathParam("galleryApplicationVersionName") String galleryApplicationVersionName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") GalleryApplicationVersionUpdate galleryApplicationVersion, + Context context); + @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}/versions" - + "/{galleryApplicationVersionName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}/versions/{galleryApplicationVersionName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> beginDelete( @@ -236,7 +267,7 @@ public Mono>> createOrUpdateWithResponseAsync( } else { galleryApplicationVersion.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -329,6 +360,159 @@ public GalleryApplicationVersionInner createOrUpdate( .block(); } + /** + * Update a gallery Application Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition resides. + * @param galleryApplicationName The name of the gallery Application Definition in which the Application Version is + * to be updated. + * @param galleryApplicationVersionName The name of the gallery Application Version to be updated. Needs to follow + * semantic version name pattern: The allowed characters are digit and period. Digits must be within the range + * of a 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryApplicationVersion Specifies information about the gallery Application Version that you want to + * update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono>> updateWithResponseAsync( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + String galleryApplicationVersionName, + GalleryApplicationVersionUpdate galleryApplicationVersion) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryApplicationName == null) { + return Mono + .error( + new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); + } + if (galleryApplicationVersionName == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter galleryApplicationVersionName is required and cannot be null.")); + } + if (galleryApplicationVersion == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter galleryApplicationVersion is required and cannot be null.")); + } else { + galleryApplicationVersion.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .update( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryApplicationName, + galleryApplicationVersionName, + apiVersion, + galleryApplicationVersion, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Update a gallery Application Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition resides. + * @param galleryApplicationName The name of the gallery Application Definition in which the Application Version is + * to be updated. + * @param galleryApplicationVersionName The name of the gallery Application Version to be updated. Needs to follow + * semantic version name pattern: The allowed characters are digit and period. Digits must be within the range + * of a 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryApplicationVersion Specifies information about the gallery Application Version that you want to + * update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono updateAsync( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + String galleryApplicationVersionName, + GalleryApplicationVersionUpdate galleryApplicationVersion) { + Mono>> mono = + updateWithResponseAsync( + resourceGroupName, + galleryName, + galleryApplicationName, + galleryApplicationVersionName, + galleryApplicationVersion); + return this + .client + .getLroResultAsync( + mono, + this.client.getHttpPipeline(), + GalleryApplicationVersionInner.class, + GalleryApplicationVersionInner.class) + .last() + .flatMap(AsyncPollResponse::getFinalResult); + } + + /** + * Update a gallery Application Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition resides. + * @param galleryApplicationName The name of the gallery Application Definition in which the Application Version is + * to be updated. + * @param galleryApplicationVersionName The name of the gallery Application Version to be updated. Needs to follow + * semantic version name pattern: The allowed characters are digit and period. Digits must be within the range + * of a 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryApplicationVersion Specifies information about the gallery Application Version that you want to + * update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public GalleryApplicationVersionInner update( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + String galleryApplicationVersionName, + GalleryApplicationVersionUpdate galleryApplicationVersion) { + return updateAsync( + resourceGroupName, + galleryName, + galleryApplicationName, + galleryApplicationVersionName, + galleryApplicationVersion) + .block(); + } + /** * Retrieves information about a gallery Application Version. * @@ -378,7 +562,7 @@ public Mono> getWithResponseAsync new IllegalArgumentException( "Parameter galleryApplicationVersionName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -447,7 +631,7 @@ public Mono> getWithResponseAsync new IllegalArgumentException( "Parameter galleryApplicationVersionName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .get( this.client.getHost(), @@ -624,7 +808,7 @@ public Mono>> deleteWithResponseAsync( new IllegalArgumentException( "Parameter galleryApplicationVersionName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -728,7 +912,7 @@ public Mono> listByGalleryApplicat .error( new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -791,7 +975,7 @@ public Mono> listByGalleryApplicat .error( new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .listByGalleryApplication( this.client.getHost(), @@ -934,7 +1118,7 @@ public Mono> beginCreateOrUpdateW } else { galleryApplicationVersion.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1014,7 +1198,7 @@ public Mono> beginCreateOrUpdateW } else { galleryApplicationVersion.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginCreateOrUpdate( this.client.getHost(), @@ -1101,6 +1285,233 @@ public GalleryApplicationVersionInner beginCreateOrUpdate( .block(); } + /** + * Update a gallery Application Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition resides. + * @param galleryApplicationName The name of the gallery Application Definition in which the Application Version is + * to be updated. + * @param galleryApplicationVersionName The name of the gallery Application Version to be updated. Needs to follow + * semantic version name pattern: The allowed characters are digit and period. Digits must be within the range + * of a 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryApplicationVersion Specifies information about the gallery Application Version that you want to + * update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + String galleryApplicationVersionName, + GalleryApplicationVersionUpdate galleryApplicationVersion) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryApplicationName == null) { + return Mono + .error( + new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); + } + if (galleryApplicationVersionName == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter galleryApplicationVersionName is required and cannot be null.")); + } + if (galleryApplicationVersion == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter galleryApplicationVersion is required and cannot be null.")); + } else { + galleryApplicationVersion.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryApplicationName, + galleryApplicationVersionName, + apiVersion, + galleryApplicationVersion, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Update a gallery Application Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition resides. + * @param galleryApplicationName The name of the gallery Application Definition in which the Application Version is + * to be updated. + * @param galleryApplicationVersionName The name of the gallery Application Version to be updated. Needs to follow + * semantic version name pattern: The allowed characters are digit and period. Digits must be within the range + * of a 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryApplicationVersion Specifies information about the gallery Application Version that you want to + * update. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + String galleryApplicationVersionName, + GalleryApplicationVersionUpdate galleryApplicationVersion, + Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryApplicationName == null) { + return Mono + .error( + new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); + } + if (galleryApplicationVersionName == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter galleryApplicationVersionName is required and cannot be null.")); + } + if (galleryApplicationVersion == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter galleryApplicationVersion is required and cannot be null.")); + } else { + galleryApplicationVersion.validate(); + } + final String apiVersion = "2019-07-01"; + return service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryApplicationName, + galleryApplicationVersionName, + apiVersion, + galleryApplicationVersion, + context); + } + + /** + * Update a gallery Application Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition resides. + * @param galleryApplicationName The name of the gallery Application Definition in which the Application Version is + * to be updated. + * @param galleryApplicationVersionName The name of the gallery Application Version to be updated. Needs to follow + * semantic version name pattern: The allowed characters are digit and period. Digits must be within the range + * of a 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryApplicationVersion Specifies information about the gallery Application Version that you want to + * update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono beginUpdateAsync( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + String galleryApplicationVersionName, + GalleryApplicationVersionUpdate galleryApplicationVersion) { + return beginUpdateWithResponseAsync( + resourceGroupName, + galleryName, + galleryApplicationName, + galleryApplicationVersionName, + galleryApplicationVersion) + .flatMap( + (SimpleResponse res) -> { + if (res.getValue() != null) { + return Mono.just(res.getValue()); + } else { + return Mono.empty(); + } + }); + } + + /** + * Update a gallery Application Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition resides. + * @param galleryApplicationName The name of the gallery Application Definition in which the Application Version is + * to be updated. + * @param galleryApplicationVersionName The name of the gallery Application Version to be updated. Needs to follow + * semantic version name pattern: The allowed characters are digit and period. Digits must be within the range + * of a 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryApplicationVersion Specifies information about the gallery Application Version that you want to + * update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public GalleryApplicationVersionInner beginUpdate( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + String galleryApplicationVersionName, + GalleryApplicationVersionUpdate galleryApplicationVersion) { + return beginUpdateAsync( + resourceGroupName, + galleryName, + galleryApplicationName, + galleryApplicationVersionName, + galleryApplicationVersion) + .block(); + } + /** * Delete a gallery Application Version. * @@ -1148,7 +1559,7 @@ public Mono> beginDeleteWithResponseAsync( new IllegalArgumentException( "Parameter galleryApplicationVersionName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1214,7 +1625,7 @@ public Mono> beginDeleteWithResponseAsync( new IllegalArgumentException( "Parameter galleryApplicationVersionName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginDelete( this.client.getHost(), diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryApplicationsInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryApplicationsInner.java index 888b173a813a..3eb83641e4d7 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryApplicationsInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryApplicationsInner.java @@ -11,6 +11,7 @@ import com.azure.core.annotation.Headers; import com.azure.core.annotation.Host; import com.azure.core.annotation.HostParam; +import com.azure.core.annotation.Patch; import com.azure.core.annotation.PathParam; import com.azure.core.annotation.Put; import com.azure.core.annotation.QueryParam; @@ -30,6 +31,7 @@ import com.azure.core.util.logging.ClientLogger; import com.azure.core.util.polling.AsyncPollResponse; import com.azure.management.compute.ApiErrorException; +import com.azure.management.compute.GalleryApplicationUpdate; import java.nio.ByteBuffer; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; @@ -64,8 +66,8 @@ public final class GalleryApplicationsInner { private interface GalleryApplicationsService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono>> createOrUpdate( @@ -78,10 +80,26 @@ Mono>> createOrUpdate( @BodyParam("application/json") GalleryApplicationInner galleryApplication, Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono>> update( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("galleryName") String galleryName, + @PathParam("galleryApplicationName") String galleryApplicationName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") GalleryApplicationUpdate galleryApplication, + Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> get( @@ -95,8 +113,8 @@ Mono> get( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono>> delete( @@ -110,8 +128,8 @@ Mono>> delete( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> listByGallery( @@ -124,8 +142,8 @@ Mono> listByGallery( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> beginCreateOrUpdate( @@ -138,10 +156,26 @@ Mono> beginCreateOrUpdate( @BodyParam("application/json") GalleryApplicationInner galleryApplication, Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> beginUpdate( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("galleryName") String galleryName, + @PathParam("galleryApplicationName") String galleryApplicationName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") GalleryApplicationUpdate galleryApplication, + Context context); + @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/applications/{galleryApplicationName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/applications/{galleryApplicationName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> beginDelete( @@ -211,7 +245,7 @@ public Mono>> createOrUpdateWithResponseAsync( } else { galleryApplication.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -285,6 +319,127 @@ public GalleryApplicationInner createOrUpdate( return createOrUpdateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication).block(); } + /** + * Update a gallery Application Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition is to be + * updated. + * @param galleryApplicationName The name of the gallery Application Definition to be updated. The allowed + * characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length + * is 80 characters. + * @param galleryApplication Specifies information about the gallery Application Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono>> updateWithResponseAsync( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + GalleryApplicationUpdate galleryApplication) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryApplicationName == null) { + return Mono + .error( + new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); + } + if (galleryApplication == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryApplication is required and cannot be null.")); + } else { + galleryApplication.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .update( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryApplicationName, + apiVersion, + galleryApplication, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Update a gallery Application Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition is to be + * updated. + * @param galleryApplicationName The name of the gallery Application Definition to be updated. The allowed + * characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length + * is 80 characters. + * @param galleryApplication Specifies information about the gallery Application Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono updateAsync( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + GalleryApplicationUpdate galleryApplication) { + Mono>> mono = + updateWithResponseAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication); + return this + .client + .getLroResultAsync( + mono, this.client.getHttpPipeline(), GalleryApplicationInner.class, GalleryApplicationInner.class) + .last() + .flatMap(AsyncPollResponse::getFinalResult); + } + + /** + * Update a gallery Application Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition is to be + * updated. + * @param galleryApplicationName The name of the gallery Application Definition to be updated. The allowed + * characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length + * is 80 characters. + * @param galleryApplication Specifies information about the gallery Application Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public GalleryApplicationInner update( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + GalleryApplicationUpdate galleryApplication) { + return updateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication).block(); + } + /** * Retrieves information about a gallery Application Definition. * @@ -322,7 +477,7 @@ public Mono> getWithResponseAsync( .error( new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -376,7 +531,7 @@ public Mono> getWithResponseAsync( .error( new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .get( this.client.getHost(), @@ -468,7 +623,7 @@ public Mono>> deleteWithResponseAsync( .error( new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -554,7 +709,7 @@ public Mono> listByGallerySinglePageAsync if (galleryName == null) { return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -610,7 +765,7 @@ public Mono> listByGallerySinglePageAsync if (galleryName == null) { return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .listByGallery( this.client.getHost(), @@ -734,7 +889,7 @@ public Mono> beginCreateOrUpdateWithResp } else { galleryApplication.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -803,7 +958,7 @@ public Mono> beginCreateOrUpdateWithResp } else { galleryApplication.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginCreateOrUpdate( this.client.getHost(), @@ -876,6 +1031,192 @@ public GalleryApplicationInner beginCreateOrUpdate( .block(); } + /** + * Update a gallery Application Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition is to be + * updated. + * @param galleryApplicationName The name of the gallery Application Definition to be updated. The allowed + * characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length + * is 80 characters. + * @param galleryApplication Specifies information about the gallery Application Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + GalleryApplicationUpdate galleryApplication) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryApplicationName == null) { + return Mono + .error( + new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); + } + if (galleryApplication == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryApplication is required and cannot be null.")); + } else { + galleryApplication.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryApplicationName, + apiVersion, + galleryApplication, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Update a gallery Application Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition is to be + * updated. + * @param galleryApplicationName The name of the gallery Application Definition to be updated. The allowed + * characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length + * is 80 characters. + * @param galleryApplication Specifies information about the gallery Application Definition that you want to update. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + GalleryApplicationUpdate galleryApplication, + Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryApplicationName == null) { + return Mono + .error( + new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); + } + if (galleryApplication == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryApplication is required and cannot be null.")); + } else { + galleryApplication.validate(); + } + final String apiVersion = "2019-07-01"; + return service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryApplicationName, + apiVersion, + galleryApplication, + context); + } + + /** + * Update a gallery Application Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition is to be + * updated. + * @param galleryApplicationName The name of the gallery Application Definition to be updated. The allowed + * characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length + * is 80 characters. + * @param galleryApplication Specifies information about the gallery Application Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono beginUpdateAsync( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + GalleryApplicationUpdate galleryApplication) { + return beginUpdateWithResponseAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication) + .flatMap( + (SimpleResponse res) -> { + if (res.getValue() != null) { + return Mono.just(res.getValue()); + } else { + return Mono.empty(); + } + }); + } + + /** + * Update a gallery Application Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Application Gallery in which the Application Definition is to be + * updated. + * @param galleryApplicationName The name of the gallery Application Definition to be updated. The allowed + * characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length + * is 80 characters. + * @param galleryApplication Specifies information about the gallery Application Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Application Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public GalleryApplicationInner beginUpdate( + String resourceGroupName, + String galleryName, + String galleryApplicationName, + GalleryApplicationUpdate galleryApplication) { + return beginUpdateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication).block(); + } + /** * Delete a gallery Application. * @@ -913,7 +1254,7 @@ public Mono> beginDeleteWithResponseAsync( .error( new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -967,7 +1308,7 @@ public Mono> beginDeleteWithResponseAsync( .error( new IllegalArgumentException("Parameter galleryApplicationName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginDelete( this.client.getHost(), diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageInner.java index 50998571db9d..0e4765b16ae9 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageInner.java @@ -11,6 +11,7 @@ import com.azure.management.compute.Disallowed; import com.azure.management.compute.GalleryImageIdentifier; import com.azure.management.compute.GalleryImagePropertiesProvisioningState; +import com.azure.management.compute.HyperVGeneration; import com.azure.management.compute.ImagePurchasePlan; import com.azure.management.compute.OperatingSystemStateTypes; import com.azure.management.compute.OperatingSystemTypes; @@ -65,6 +66,13 @@ public class GalleryImageInner extends Resource { @JsonProperty(value = "properties.osState") private OperatingSystemStateTypes osState; + /* + * The hypervisor generation of the Virtual Machine. Applicable to OS disks + * only. + */ + @JsonProperty(value = "properties.hyperVGeneration") + private HyperVGeneration hyperVGeneration; + /* * The end of life date of the gallery Image Definition. This property can * be used for decommissioning purposes. This property is updatable. @@ -232,6 +240,26 @@ public GalleryImageInner withOsState(OperatingSystemStateTypes osState) { return this; } + /** + * Get the hyperVGeneration property: The hypervisor generation of the Virtual Machine. Applicable to OS disks only. + * + * @return the hyperVGeneration value. + */ + public HyperVGeneration hyperVGeneration() { + return this.hyperVGeneration; + } + + /** + * Set the hyperVGeneration property: The hypervisor generation of the Virtual Machine. Applicable to OS disks only. + * + * @param hyperVGeneration the hyperVGeneration value to set. + * @return the GalleryImageInner object itself. + */ + public GalleryImageInner withHyperVGeneration(HyperVGeneration hyperVGeneration) { + this.hyperVGeneration = hyperVGeneration; + return this; + } + /** * Get the endOfLifeDate property: The end of life date of the gallery Image Definition. This property can be used * for decommissioning purposes. This property is updatable. diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageVersionInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageVersionInner.java index c03fe5bfc68a..80422c25d60b 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageVersionInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageVersionInner.java @@ -22,7 +22,7 @@ public class GalleryImageVersionInner extends Resource { @JsonIgnore private final ClientLogger logger = new ClientLogger(GalleryImageVersionInner.class); /* - * The publishing profile of a gallery Image Version. + * Describes the basic gallery artifact publishing profile. */ @JsonProperty(value = "properties.publishingProfile") private GalleryImageVersionPublishingProfile publishingProfile; @@ -36,7 +36,7 @@ public class GalleryImageVersionInner extends Resource { /* * This is the storage profile of a Gallery Image Version. */ - @JsonProperty(value = "properties.storageProfile", access = JsonProperty.Access.WRITE_ONLY) + @JsonProperty(value = "properties.storageProfile") private GalleryImageVersionStorageProfile storageProfile; /* @@ -46,7 +46,7 @@ public class GalleryImageVersionInner extends Resource { private ReplicationStatus replicationStatus; /** - * Get the publishingProfile property: The publishing profile of a gallery Image Version. + * Get the publishingProfile property: Describes the basic gallery artifact publishing profile. * * @return the publishingProfile value. */ @@ -55,7 +55,7 @@ public GalleryImageVersionPublishingProfile publishingProfile() { } /** - * Set the publishingProfile property: The publishing profile of a gallery Image Version. + * Set the publishingProfile property: Describes the basic gallery artifact publishing profile. * * @param publishingProfile the publishingProfile value to set. * @return the GalleryImageVersionInner object itself. @@ -83,6 +83,17 @@ public GalleryImageVersionStorageProfile storageProfile() { return this.storageProfile; } + /** + * Set the storageProfile property: This is the storage profile of a Gallery Image Version. + * + * @param storageProfile the storageProfile value to set. + * @return the GalleryImageVersionInner object itself. + */ + public GalleryImageVersionInner withStorageProfile(GalleryImageVersionStorageProfile storageProfile) { + this.storageProfile = storageProfile; + return this; + } + /** * Get the replicationStatus property: This is the replication status of the gallery Image Version. * diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageVersionsInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageVersionsInner.java index 934d01040b28..cfde61656316 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageVersionsInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImageVersionsInner.java @@ -11,6 +11,7 @@ import com.azure.core.annotation.Headers; import com.azure.core.annotation.Host; import com.azure.core.annotation.HostParam; +import com.azure.core.annotation.Patch; import com.azure.core.annotation.PathParam; import com.azure.core.annotation.Put; import com.azure.core.annotation.QueryParam; @@ -30,6 +31,7 @@ import com.azure.core.util.logging.ClientLogger; import com.azure.core.util.polling.AsyncPollResponse; import com.azure.management.compute.ApiErrorException; +import com.azure.management.compute.GalleryImageVersionUpdate; import com.azure.management.compute.ReplicationStatusTypes; import java.nio.ByteBuffer; import reactor.core.publisher.Flux; @@ -66,8 +68,8 @@ public final class GalleryImageVersionsInner { private interface GalleryImageVersionsService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono>> createOrUpdate( @@ -81,10 +83,27 @@ Mono>> createOrUpdate( @BodyParam("application/json") GalleryImageVersionInner galleryImageVersion, Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono>> update( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("galleryName") String galleryName, + @PathParam("galleryImageName") String galleryImageName, + @PathParam("galleryImageVersionName") String galleryImageVersionName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") GalleryImageVersionUpdate galleryImageVersion, + Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> get( @@ -100,8 +119,8 @@ Mono> get( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono>> delete( @@ -116,8 +135,8 @@ Mono>> delete( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}/versions") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}/versions") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> listByGalleryImage( @@ -131,8 +150,8 @@ Mono> listByGalleryImage( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> beginCreateOrUpdate( @@ -146,10 +165,27 @@ Mono> beginCreateOrUpdate( @BodyParam("application/json") GalleryImageVersionInner galleryImageVersion, Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> beginUpdate( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("galleryName") String galleryName, + @PathParam("galleryImageName") String galleryImageName, + @PathParam("galleryImageVersionName") String galleryImageVersionName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") GalleryImageVersionUpdate galleryImageVersion, + Context context); + @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> beginDelete( @@ -225,7 +261,7 @@ public Mono>> createOrUpdateWithResponseAsync( } else { galleryImageVersion.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -305,6 +341,138 @@ public GalleryImageVersionInner createOrUpdate( .block(); } + /** + * Update a gallery Image Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition resides. + * @param galleryImageName The name of the gallery Image Definition in which the Image Version is to be updated. + * @param galleryImageVersionName The name of the gallery Image Version to be updated. Needs to follow semantic + * version name pattern: The allowed characters are digit and period. Digits must be within the range of a + * 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryImageVersion Specifies information about the gallery Image Version that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono>> updateWithResponseAsync( + String resourceGroupName, + String galleryName, + String galleryImageName, + String galleryImageVersionName, + GalleryImageVersionUpdate galleryImageVersion) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryImageName == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); + } + if (galleryImageVersionName == null) { + return Mono + .error( + new IllegalArgumentException("Parameter galleryImageVersionName is required and cannot be null.")); + } + if (galleryImageVersion == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryImageVersion is required and cannot be null.")); + } else { + galleryImageVersion.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .update( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryImageName, + galleryImageVersionName, + apiVersion, + galleryImageVersion, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Update a gallery Image Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition resides. + * @param galleryImageName The name of the gallery Image Definition in which the Image Version is to be updated. + * @param galleryImageVersionName The name of the gallery Image Version to be updated. Needs to follow semantic + * version name pattern: The allowed characters are digit and period. Digits must be within the range of a + * 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryImageVersion Specifies information about the gallery Image Version that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono updateAsync( + String resourceGroupName, + String galleryName, + String galleryImageName, + String galleryImageVersionName, + GalleryImageVersionUpdate galleryImageVersion) { + Mono>> mono = + updateWithResponseAsync( + resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion); + return this + .client + .getLroResultAsync( + mono, this.client.getHttpPipeline(), GalleryImageVersionInner.class, GalleryImageVersionInner.class) + .last() + .flatMap(AsyncPollResponse::getFinalResult); + } + + /** + * Update a gallery Image Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition resides. + * @param galleryImageName The name of the gallery Image Definition in which the Image Version is to be updated. + * @param galleryImageVersionName The name of the gallery Image Version to be updated. Needs to follow semantic + * version name pattern: The allowed characters are digit and period. Digits must be within the range of a + * 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryImageVersion Specifies information about the gallery Image Version that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public GalleryImageVersionInner update( + String resourceGroupName, + String galleryName, + String galleryImageName, + String galleryImageVersionName, + GalleryImageVersionUpdate galleryImageVersion) { + return updateAsync( + resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion) + .block(); + } + /** * Retrieves information about a gallery Image Version. * @@ -351,7 +519,7 @@ public Mono> getWithResponseAsync( .error( new IllegalArgumentException("Parameter galleryImageVersionName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -417,7 +585,7 @@ public Mono> getWithResponseAsync( .error( new IllegalArgumentException("Parameter galleryImageVersionName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .get( this.client.getHost(), @@ -574,7 +742,7 @@ public Mono>> deleteWithResponseAsync( .error( new IllegalArgumentException("Parameter galleryImageVersionName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -668,7 +836,7 @@ public Mono> listByGalleryImageSinglePag return Mono .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -730,7 +898,7 @@ public Mono> listByGalleryImageSinglePag return Mono .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .listByGalleryImage( this.client.getHost(), @@ -865,7 +1033,7 @@ public Mono> beginCreateOrUpdateWithRes } else { galleryImageVersion.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -940,7 +1108,7 @@ public Mono> beginCreateOrUpdateWithRes } else { galleryImageVersion.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginCreateOrUpdate( this.client.getHost(), @@ -1017,6 +1185,209 @@ public GalleryImageVersionInner beginCreateOrUpdate( .block(); } + /** + * Update a gallery Image Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition resides. + * @param galleryImageName The name of the gallery Image Definition in which the Image Version is to be updated. + * @param galleryImageVersionName The name of the gallery Image Version to be updated. Needs to follow semantic + * version name pattern: The allowed characters are digit and period. Digits must be within the range of a + * 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryImageVersion Specifies information about the gallery Image Version that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, + String galleryName, + String galleryImageName, + String galleryImageVersionName, + GalleryImageVersionUpdate galleryImageVersion) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryImageName == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); + } + if (galleryImageVersionName == null) { + return Mono + .error( + new IllegalArgumentException("Parameter galleryImageVersionName is required and cannot be null.")); + } + if (galleryImageVersion == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryImageVersion is required and cannot be null.")); + } else { + galleryImageVersion.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryImageName, + galleryImageVersionName, + apiVersion, + galleryImageVersion, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Update a gallery Image Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition resides. + * @param galleryImageName The name of the gallery Image Definition in which the Image Version is to be updated. + * @param galleryImageVersionName The name of the gallery Image Version to be updated. Needs to follow semantic + * version name pattern: The allowed characters are digit and period. Digits must be within the range of a + * 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryImageVersion Specifies information about the gallery Image Version that you want to update. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, + String galleryName, + String galleryImageName, + String galleryImageVersionName, + GalleryImageVersionUpdate galleryImageVersion, + Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryImageName == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); + } + if (galleryImageVersionName == null) { + return Mono + .error( + new IllegalArgumentException("Parameter galleryImageVersionName is required and cannot be null.")); + } + if (galleryImageVersion == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryImageVersion is required and cannot be null.")); + } else { + galleryImageVersion.validate(); + } + final String apiVersion = "2019-07-01"; + return service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryImageName, + galleryImageVersionName, + apiVersion, + galleryImageVersion, + context); + } + + /** + * Update a gallery Image Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition resides. + * @param galleryImageName The name of the gallery Image Definition in which the Image Version is to be updated. + * @param galleryImageVersionName The name of the gallery Image Version to be updated. Needs to follow semantic + * version name pattern: The allowed characters are digit and period. Digits must be within the range of a + * 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryImageVersion Specifies information about the gallery Image Version that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono beginUpdateAsync( + String resourceGroupName, + String galleryName, + String galleryImageName, + String galleryImageVersionName, + GalleryImageVersionUpdate galleryImageVersion) { + return beginUpdateWithResponseAsync( + resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion) + .flatMap( + (SimpleResponse res) -> { + if (res.getValue() != null) { + return Mono.just(res.getValue()); + } else { + return Mono.empty(); + } + }); + } + + /** + * Update a gallery Image Version. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition resides. + * @param galleryImageName The name of the gallery Image Definition in which the Image Version is to be updated. + * @param galleryImageVersionName The name of the gallery Image Version to be updated. Needs to follow semantic + * version name pattern: The allowed characters are digit and period. Digits must be within the range of a + * 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch>. + * @param galleryImageVersion Specifies information about the gallery Image Version that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Version that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public GalleryImageVersionInner beginUpdate( + String resourceGroupName, + String galleryName, + String galleryImageName, + String galleryImageVersionName, + GalleryImageVersionUpdate galleryImageVersion) { + return beginUpdateAsync( + resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion) + .block(); + } + /** * Delete a gallery Image Version. * @@ -1058,7 +1429,7 @@ public Mono> beginDeleteWithResponseAsync( .error( new IllegalArgumentException("Parameter galleryImageVersionName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1121,7 +1492,7 @@ public Mono> beginDeleteWithResponseAsync( .error( new IllegalArgumentException("Parameter galleryImageVersionName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginDelete( this.client.getHost(), diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImagesInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImagesInner.java index 9f36dd7193e2..97adf53462ac 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImagesInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/GalleryImagesInner.java @@ -11,6 +11,7 @@ import com.azure.core.annotation.Headers; import com.azure.core.annotation.Host; import com.azure.core.annotation.HostParam; +import com.azure.core.annotation.Patch; import com.azure.core.annotation.PathParam; import com.azure.core.annotation.Put; import com.azure.core.annotation.QueryParam; @@ -30,6 +31,7 @@ import com.azure.core.util.logging.ClientLogger; import com.azure.core.util.polling.AsyncPollResponse; import com.azure.management.compute.ApiErrorException; +import com.azure.management.compute.GalleryImageUpdate; import java.nio.ByteBuffer; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; @@ -64,8 +66,8 @@ public final class GalleryImagesInner { private interface GalleryImagesService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono>> createOrUpdate( @@ -78,10 +80,26 @@ Mono>> createOrUpdate( @BodyParam("application/json") GalleryImageInner galleryImage, Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono>> update( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("galleryName") String galleryName, + @PathParam("galleryImageName") String galleryImageName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") GalleryImageUpdate galleryImage, + Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> get( @@ -95,8 +113,8 @@ Mono> get( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono>> delete( @@ -110,8 +128,8 @@ Mono>> delete( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> listByGallery( @@ -124,8 +142,8 @@ Mono> listByGallery( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}") @ExpectedResponses({200, 201, 202}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> beginCreateOrUpdate( @@ -138,10 +156,26 @@ Mono> beginCreateOrUpdate( @BodyParam("application/json") GalleryImageInner galleryImage, Context context); + @Headers({"Accept: application/json", "Content-Type: application/json"}) + @Patch( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ApiErrorException.class) + Mono> beginUpdate( + @HostParam("$host") String host, + @PathParam("subscriptionId") String subscriptionId, + @PathParam("resourceGroupName") String resourceGroupName, + @PathParam("galleryName") String galleryName, + @PathParam("galleryImageName") String galleryImageName, + @QueryParam("api-version") String apiVersion, + @BodyParam("application/json") GalleryImageUpdate galleryImage, + Context context); + @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/galleries/{galleryName}/images/{galleryImageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries" + + "/{galleryName}/images/{galleryImageName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ApiErrorException.class) Mono> beginDelete( @@ -204,7 +238,7 @@ public Mono>> createOrUpdateWithResponseAsync( } else { galleryImage.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -268,6 +302,113 @@ public GalleryImageInner createOrUpdate( return createOrUpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImage).block(); } + /** + * Update a gallery Image Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition is to be updated. + * @param galleryImageName The name of the gallery Image Definition to be updated. The allowed characters are + * alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 + * characters. + * @param galleryImage Specifies information about the gallery Image Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono>> updateWithResponseAsync( + String resourceGroupName, String galleryName, String galleryImageName, GalleryImageUpdate galleryImage) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryImageName == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); + } + if (galleryImage == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryImage is required and cannot be null.")); + } else { + galleryImage.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .update( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryImageName, + apiVersion, + galleryImage, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Update a gallery Image Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition is to be updated. + * @param galleryImageName The name of the gallery Image Definition to be updated. The allowed characters are + * alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 + * characters. + * @param galleryImage Specifies information about the gallery Image Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono updateAsync( + String resourceGroupName, String galleryName, String galleryImageName, GalleryImageUpdate galleryImage) { + Mono>> mono = + updateWithResponseAsync(resourceGroupName, galleryName, galleryImageName, galleryImage); + return this + .client + .getLroResultAsync( + mono, this.client.getHttpPipeline(), GalleryImageInner.class, GalleryImageInner.class) + .last() + .flatMap(AsyncPollResponse::getFinalResult); + } + + /** + * Update a gallery Image Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition is to be updated. + * @param galleryImageName The name of the gallery Image Definition to be updated. The allowed characters are + * alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 + * characters. + * @param galleryImage Specifies information about the gallery Image Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public GalleryImageInner update( + String resourceGroupName, String galleryName, String galleryImageName, GalleryImageUpdate galleryImage) { + return updateAsync(resourceGroupName, galleryName, galleryImageName, galleryImage).block(); + } + /** * Retrieves information about a gallery Image Definition. * @@ -303,7 +444,7 @@ public Mono> getWithResponseAsync( return Mono .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -355,7 +496,7 @@ public Mono> getWithResponseAsync( return Mono .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .get( this.client.getHost(), @@ -442,7 +583,7 @@ public Mono>> deleteWithResponseAsync( return Mono .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -525,7 +666,7 @@ public Mono> listByGallerySinglePageAsync( if (galleryName == null) { return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -580,7 +721,7 @@ public Mono> listByGallerySinglePageAsync( if (galleryName == null) { return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .listByGallery( this.client.getHost(), @@ -694,7 +835,7 @@ public Mono> beginCreateOrUpdateWithResponseAs } else { galleryImage.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -759,7 +900,7 @@ public Mono> beginCreateOrUpdateWithResponseAs } else { galleryImage.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginCreateOrUpdate( this.client.getHost(), @@ -820,6 +961,175 @@ public GalleryImageInner beginCreateOrUpdate( return beginCreateOrUpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImage).block(); } + /** + * Update a gallery Image Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition is to be updated. + * @param galleryImageName The name of the gallery Image Definition to be updated. The allowed characters are + * alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 + * characters. + * @param galleryImage Specifies information about the gallery Image Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, String galleryName, String galleryImageName, GalleryImageUpdate galleryImage) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryImageName == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); + } + if (galleryImage == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryImage is required and cannot be null.")); + } else { + galleryImage.validate(); + } + final String apiVersion = "2019-07-01"; + return FluxUtil + .withContext( + context -> + service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryImageName, + apiVersion, + galleryImage, + context)) + .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()))); + } + + /** + * Update a gallery Image Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition is to be updated. + * @param galleryImageName The name of the gallery Image Definition to be updated. The allowed characters are + * alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 + * characters. + * @param galleryImage Specifies information about the gallery Image Definition that you want to update. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> beginUpdateWithResponseAsync( + String resourceGroupName, + String galleryName, + String galleryImageName, + GalleryImageUpdate galleryImage, + Context context) { + if (this.client.getHost() == null) { + return Mono + .error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + if (resourceGroupName == null) { + return Mono + .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); + } + if (galleryName == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryName is required and cannot be null.")); + } + if (galleryImageName == null) { + return Mono + .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); + } + if (galleryImage == null) { + return Mono.error(new IllegalArgumentException("Parameter galleryImage is required and cannot be null.")); + } else { + galleryImage.validate(); + } + final String apiVersion = "2019-07-01"; + return service + .beginUpdate( + this.client.getHost(), + this.client.getSubscriptionId(), + resourceGroupName, + galleryName, + galleryImageName, + apiVersion, + galleryImage, + context); + } + + /** + * Update a gallery Image Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition is to be updated. + * @param galleryImageName The name of the gallery Image Definition to be updated. The allowed characters are + * alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 + * characters. + * @param galleryImage Specifies information about the gallery Image Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono beginUpdateAsync( + String resourceGroupName, String galleryName, String galleryImageName, GalleryImageUpdate galleryImage) { + return beginUpdateWithResponseAsync(resourceGroupName, galleryName, galleryImageName, galleryImage) + .flatMap( + (SimpleResponse res) -> { + if (res.getValue() != null) { + return Mono.just(res.getValue()); + } else { + return Mono.empty(); + } + }); + } + + /** + * Update a gallery Image Definition. + * + * @param resourceGroupName The name of the resource group. + * @param galleryName The name of the Shared Image Gallery in which the Image Definition is to be updated. + * @param galleryImageName The name of the gallery Image Definition to be updated. The allowed characters are + * alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 + * characters. + * @param galleryImage Specifies information about the gallery Image Definition that you want to update. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ApiErrorException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return specifies information about the gallery Image Definition that you want to create or update. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public GalleryImageInner beginUpdate( + String resourceGroupName, String galleryName, String galleryImageName, GalleryImageUpdate galleryImage) { + return beginUpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImage).block(); + } + /** * Delete a gallery image. * @@ -855,7 +1165,7 @@ public Mono> beginDeleteWithResponseAsync( return Mono .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -907,7 +1217,7 @@ public Mono> beginDeleteWithResponseAsync( return Mono .error(new IllegalArgumentException("Parameter galleryImageName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginDelete( this.client.getHost(), diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ImagesInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ImagesInner.java index 0cb7e370020c..19472bd324b4 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ImagesInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ImagesInner.java @@ -69,8 +69,8 @@ public final class ImagesInner private interface ImagesService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/images/{imageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images" + + "/{imageName}") @ExpectedResponses({200, 201}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> createOrUpdate( @@ -84,8 +84,8 @@ Mono>> createOrUpdate( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Patch( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/images/{imageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images" + + "/{imageName}") @ExpectedResponses({200, 201}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> update( @@ -99,8 +99,8 @@ Mono>> update( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/images/{imageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images" + + "/{imageName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> delete( @@ -113,8 +113,8 @@ Mono>> delete( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/images/{imageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images" + + "/{imageName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> getByResourceGroup( @@ -127,9 +127,7 @@ Mono> getByResourceGroup( Context context); @Headers({"Accept: application/json", "Content-Type: application/json"}) - @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/images") + @Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> listByResourceGroup( @@ -151,8 +149,8 @@ Mono> list( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/images/{imageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images" + + "/{imageName}") @ExpectedResponses({200, 201}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginCreateOrUpdate( @@ -166,8 +164,8 @@ Mono> beginCreateOrUpdate( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Patch( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/images/{imageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images" + + "/{imageName}") @ExpectedResponses({200, 201}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginUpdate( @@ -181,8 +179,8 @@ Mono> beginUpdate( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/images/{imageName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images" + + "/{imageName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginDelete( diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/LogAnalyticsInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/LogAnalyticsInner.java index 5ce053052cbe..9f4a2f308f59 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/LogAnalyticsInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/LogAnalyticsInner.java @@ -59,8 +59,8 @@ public final class LogAnalyticsInner { private interface LogAnalyticsService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics" - + "/apiAccess/getRequestRateByInterval") + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics/apiAccess" + + "/getRequestRateByInterval") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> exportRequestRateByInterval( @@ -73,8 +73,8 @@ Mono>> exportRequestRateByInterval( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics" - + "/apiAccess/getThrottledRequests") + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics/apiAccess" + + "/getThrottledRequests") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> exportThrottledRequests( @@ -87,8 +87,8 @@ Mono>> exportThrottledRequests( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics" - + "/apiAccess/getRequestRateByInterval") + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics/apiAccess" + + "/getRequestRateByInterval") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginExportRequestRateByInterval( @@ -101,8 +101,8 @@ Mono> beginExportRequestRateByI @Headers({"Accept: application/json", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics" - + "/apiAccess/getThrottledRequests") + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics/apiAccess" + + "/getThrottledRequests") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginExportThrottledRequests( diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ResourceSkusInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ResourceSkusInner.java index 5e02f4d23539..d496354ca287 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ResourceSkusInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/ResourceSkusInner.java @@ -77,7 +77,7 @@ Mono> listNext( /** * Gets the list of Microsoft.Compute SKUs available for your Subscription. * - * @param filter The filter to apply on the operation. + * @param filter The filter to apply on the operation. Only **location** filter is supported currently. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -115,7 +115,7 @@ public Mono> listSinglePageAsync(String filter) /** * Gets the list of Microsoft.Compute SKUs available for your Subscription. * - * @param filter The filter to apply on the operation. + * @param filter The filter to apply on the operation. Only **location** filter is supported currently. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. @@ -151,7 +151,7 @@ public Mono> listSinglePageAsync(String filter, /** * Gets the list of Microsoft.Compute SKUs available for your Subscription. * - * @param filter The filter to apply on the operation. + * @param filter The filter to apply on the operation. Only **location** filter is supported currently. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -165,7 +165,7 @@ public PagedFlux listAsync(String filter) { /** * Gets the list of Microsoft.Compute SKUs available for your Subscription. * - * @param filter The filter to apply on the operation. + * @param filter The filter to apply on the operation. Only **location** filter is supported currently. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. @@ -195,7 +195,7 @@ public PagedFlux listAsync() { /** * Gets the list of Microsoft.Compute SKUs available for your Subscription. * - * @param filter The filter to apply on the operation. + * @param filter The filter to apply on the operation. Only **location** filter is supported currently. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/SnapshotInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/SnapshotInner.java index a2e9d3557655..a397d256336d 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/SnapshotInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/SnapshotInner.java @@ -9,6 +9,7 @@ import com.azure.core.management.Resource; import com.azure.core.util.logging.ClientLogger; import com.azure.management.compute.CreationData; +import com.azure.management.compute.Encryption; import com.azure.management.compute.EncryptionSettingsCollection; import com.azure.management.compute.HyperVGeneration; import com.azure.management.compute.OperatingSystemTypes; @@ -104,6 +105,13 @@ public class SnapshotInner extends Resource { @JsonProperty(value = "properties.incremental") private Boolean incremental; + /* + * Encryption property can be used to encrypt data at rest with customer + * managed keys or platform managed keys. + */ + @JsonProperty(value = "properties.encryption") + private Encryption encryption; + /** * Get the managedBy property: Unused. Always Null. * @@ -301,6 +309,28 @@ public SnapshotInner withIncremental(Boolean incremental) { return this; } + /** + * Get the encryption property: Encryption property can be used to encrypt data at rest with customer managed keys + * or platform managed keys. + * + * @return the encryption value. + */ + public Encryption encryption() { + return this.encryption; + } + + /** + * Set the encryption property: Encryption property can be used to encrypt data at rest with customer managed keys + * or platform managed keys. + * + * @param encryption the encryption value to set. + * @return the SnapshotInner object itself. + */ + public SnapshotInner withEncryption(Encryption encryption) { + this.encryption = encryption; + return this; + } + /** * Validates the instance. * @@ -316,5 +346,8 @@ public void validate() { if (encryptionSettingsCollection() != null) { encryptionSettingsCollection().validate(); } + if (encryption() != null) { + encryption().validate(); + } } } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/SnapshotsInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/SnapshotsInner.java index 869690a21e7e..fd2f4c789ad4 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/SnapshotsInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/SnapshotsInner.java @@ -72,8 +72,8 @@ public final class SnapshotsInner private interface SnapshotsService { @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> createOrUpdate( @@ -87,8 +87,8 @@ Mono>> createOrUpdate( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Patch( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> update( @@ -102,8 +102,8 @@ Mono>> update( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> getByResourceGroup( @@ -116,8 +116,8 @@ Mono> getByResourceGroup( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> delete( @@ -129,9 +129,7 @@ Mono>> delete( Context context); @Headers({"Accept: application/json", "Content-Type: application/json"}) - @Get( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots") + @Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> listByResourceGroup( @@ -153,8 +151,8 @@ Mono> list( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}/beginGetAccess") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}/beginGetAccess") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> grantAccess( @@ -168,8 +166,8 @@ Mono>> grantAccess( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}/endGetAccess") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}/endGetAccess") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono>> revokeAccess( @@ -182,8 +180,8 @@ Mono>> revokeAccess( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Put( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginCreateOrUpdate( @@ -197,8 +195,8 @@ Mono> beginCreateOrUpdate( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Patch( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginUpdate( @@ -212,8 +210,8 @@ Mono> beginUpdate( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Delete( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}") @ExpectedResponses({200, 202, 204}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginDelete( @@ -226,8 +224,8 @@ Mono> beginDelete( @Headers({"Accept: application/json", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}/beginGetAccess") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}/beginGetAccess") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginGrantAccess( @@ -241,8 +239,8 @@ Mono> beginGrantAccess( @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"}) @Post( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute" - + "/snapshots/{snapshotName}/endGetAccess") + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots" + + "/{snapshotName}/endGetAccess") @ExpectedResponses({200, 202}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> beginRevokeAccess( @@ -305,7 +303,7 @@ public Mono>> createOrUpdateWithResponseAsync( } else { snapshot.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -400,7 +398,7 @@ public Mono>> updateWithResponseAsync( } else { snapshot.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -488,7 +486,7 @@ public Mono> getByResourceGroupWithResponseAsync( if (snapshotName == null) { return Mono.error(new IllegalArgumentException("Parameter snapshotName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -535,7 +533,7 @@ public Mono> getByResourceGroupWithResponseAsync( if (snapshotName == null) { return Mono.error(new IllegalArgumentException("Parameter snapshotName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .getByResourceGroup( this.client.getHost(), @@ -617,7 +615,7 @@ public Mono>> deleteWithResponseAsync( if (snapshotName == null) { return Mono.error(new IllegalArgumentException("Parameter snapshotName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -693,7 +691,7 @@ public Mono> listByResourceGroupSinglePageAsync(Str return Mono .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -743,7 +741,7 @@ public Mono> listByResourceGroupSinglePageAsync( return Mono .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .listByResourceGroup( this.client.getHost(), this.client.getSubscriptionId(), resourceGroupName, apiVersion, context) @@ -824,7 +822,7 @@ public Mono> listSinglePageAsync() { new IllegalArgumentException( "Parameter this.client.getSubscriptionId() is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> service.list(this.client.getHost(), this.client.getSubscriptionId(), apiVersion, context)) @@ -861,7 +859,7 @@ public Mono> listSinglePageAsync(Context context) { new IllegalArgumentException( "Parameter this.client.getSubscriptionId() is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .list(this.client.getHost(), this.client.getSubscriptionId(), apiVersion, context) .map( @@ -951,7 +949,7 @@ public Mono>> grantAccessWithResponseAsync( } else { grantAccessData.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1040,7 +1038,7 @@ public Mono>> revokeAccessWithResponseAsync( if (snapshotName == null) { return Mono.error(new IllegalArgumentException("Parameter snapshotName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1128,7 +1126,7 @@ public Mono> beginCreateOrUpdateWithResponseAsync( } else { snapshot.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1182,7 +1180,7 @@ public Mono> beginCreateOrUpdateWithResponseAsync( } else { snapshot.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginCreateOrUpdate( this.client.getHost(), @@ -1274,7 +1272,7 @@ public Mono> beginUpdateWithResponseAsync( } else { snapshot.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1328,7 +1326,7 @@ public Mono> beginUpdateWithResponseAsync( } else { snapshot.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginUpdate( this.client.getHost(), @@ -1413,7 +1411,7 @@ public Mono> beginDeleteWithResponseAsync(String resourceGroupNam if (snapshotName == null) { return Mono.error(new IllegalArgumentException("Parameter snapshotName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1460,7 +1458,7 @@ public Mono> beginDeleteWithResponseAsync( if (snapshotName == null) { return Mono.error(new IllegalArgumentException("Parameter snapshotName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginDelete( this.client.getHost(), @@ -1541,7 +1539,7 @@ public Mono> beginGrantAccessWithResponseAsync( } else { grantAccessData.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1596,7 +1594,7 @@ public Mono> beginGrantAccessWithResponseAsync( } else { grantAccessData.validate(); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginGrantAccess( this.client.getHost(), @@ -1682,7 +1680,7 @@ public Mono> beginRevokeAccessWithResponseAsync(String resourceGr if (snapshotName == null) { return Mono.error(new IllegalArgumentException("Parameter snapshotName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return FluxUtil .withContext( context -> @@ -1729,7 +1727,7 @@ public Mono> beginRevokeAccessWithResponseAsync( if (snapshotName == null) { return Mono.error(new IllegalArgumentException("Parameter snapshotName is required and cannot be null.")); } - final String apiVersion = "2019-03-01"; + final String apiVersion = "2019-07-01"; return service .beginRevokeAccess( this.client.getHost(), diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineExtensionInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineExtensionInner.java index 7b8439aa561f..16348463c043 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineExtensionInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineExtensionInner.java @@ -121,22 +121,24 @@ public VirtualMachineExtensionInner withPublisher(String publisher) { } /** - * Get the typePropertiesType property: Specifies the type of the extension; an example is "CustomScriptExtension". + * Get the virtualMachineExtensionType property: Specifies the type of the extension; an example is + * "CustomScriptExtension". * - * @return the typePropertiesType value. + * @return the virtualMachineExtensionType value. */ public String virtualMachineExtensionType() { return this.virtualMachineExtensionType; } /** - * Set the typePropertiesType property: Specifies the type of the extension; an example is "CustomScriptExtension". + * Set the virtualMachineExtensionType property: Specifies the type of the extension; an example is + * "CustomScriptExtension". * - * @param typePropertiesType the typePropertiesType value to set. + * @param virtualMachineExtensionType the typePropertiesType value to set. * @return the VirtualMachineExtensionInner object itself. */ - public VirtualMachineExtensionInner withVirtualMachineExtensionType(String typePropertiesType) { - this.virtualMachineExtensionType = typePropertiesType; + public VirtualMachineExtensionInner withVirtualMachineExtensionType(String virtualMachineExtensionType) { + this.virtualMachineExtensionType = virtualMachineExtensionType; return this; } diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineRunCommandsInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineRunCommandsInner.java index f86747ea7737..6a3cc0d580ea 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineRunCommandsInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineRunCommandsInner.java @@ -69,9 +69,7 @@ Mono> list( Context context); @Headers({"Accept: application/json,text/json", "Content-Type: application/json"}) - @Get( - "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/runCommands" - + "/{commandId}") + @Get("/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/runCommands/{commandId}") @ExpectedResponses({200}) @UnexpectedResponseExceptionType(ManagementException.class) Mono> get( diff --git a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineScaleSetsInner.java b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineScaleSetsInner.java index 286f274ee26d..8a11c018c78d 100644 --- a/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineScaleSetsInner.java +++ b/sdk/compute/mgmt/src/main/java/com/azure/management/compute/models/VirtualMachineScaleSetsInner.java @@ -32,11 +32,11 @@ import com.azure.core.util.FluxUtil; import com.azure.core.util.logging.ClientLogger; import com.azure.core.util.polling.AsyncPollResponse; +import com.azure.management.compute.VMScaleSetConvertToSinglePlacementGroupInput; import com.azure.management.compute.VirtualMachineScaleSetReimageParameters; import com.azure.management.compute.VirtualMachineScaleSetUpdate; import com.azure.management.compute.VirtualMachineScaleSetVMInstanceIDs; import com.azure.management.compute.VirtualMachineScaleSetVMInstanceRequiredIDs; -import com.azure.management.compute.VMScaleSetConvertToSinglePlacementGroupInput; import com.azure.management.resources.fluentcore.collection.InnerSupportsDelete; import com.azure.management.resources.fluentcore.collection.InnerSupportsGet; import com.azure.management.resources.fluentcore.collection.InnerSupportsListing; diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateImageFromManagedDisk.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateImageFromManagedDisk.json index 442aee84ef2d..20047a3fede3 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateImageFromManagedDisk.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateImageFromManagedDisk.json @@ -1,1525 +1,1460 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg49578?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67641?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:36:59 GMT", + "date" : "Mon, 18 May 2020 06:37:55 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1efa1dfa-07fe-4fc3-b28c-41dd67c9a829", + "x-ms-correlation-request-id" : "c1236b25-d55c-4508-a572-2a297000c907", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083700Z:1efa1dfa-07fe-4fc3-b28c-41dd67c9a829", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063756Z:c1236b25-d55c-4508-a572-2a297000c907", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1efa1dfa-07fe-4fc3-b28c-41dd67c9a829", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578\",\"name\":\"javacsmrg49578\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:36:56.141Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "c1236b25-d55c-4508-a572-2a297000c907", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641\",\"name\":\"javacsmrg67641\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:37:53.146Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/virtualNetworks/vnet8373800352?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:04 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b4a8bb26-f640-4ffe-84b5-1818c095432c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083705Z:b4a8bb26-f640-4ffe-84b5-1818c095432c", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/e5b735a7-c85b-4fa0-a8e1-449ae4ddb6c6?monitor=true&api-version=2019-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "e5b735a7-c85b-4fa0-a8e1-449ae4ddb6c6", - "Body" : "" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/virtualNetworks/vnet3367430e83?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:09 GMT", + "date" : "Mon, 18 May 2020 06:38:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1349", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6f029b9e-a753-489b-863e-eebab27961c7", + "x-ms-correlation-request-id" : "9e60d071-388e-4ad0-b8f4-e0bb01bd0780", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c465c26c-a007-43f8-8fe1-d25f6819f327", + "x-ms-arm-service-request-id" : "8522c601-058e-4628-8e5f-c2a058aea358", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083709Z:6f029b9e-a753-489b-863e-eebab27961c7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063803Z:9e60d071-388e-4ad0-b8f4-e0bb01bd0780", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "12c766e3-6022-493f-9cb5-47f88932903e", - "Body" : "{\r\n \"name\": \"vnet3367430e83\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/virtualNetworks/vnet3367430e83\",\r\n \"etag\": \"W/\\\"462beaa0-f2c4-45b2-b003-6df54e92e75e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"870ff3a7-bf2b-4a95-9db1-b188e2739dbf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/virtualNetworks/vnet3367430e83/subnets/subnet1\",\r\n \"etag\": \"W/\\\"462beaa0-f2c4-45b2-b003-6df54e92e75e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/12c766e3-6022-493f-9cb5-47f88932903e?api-version=2019-06-01" + "x-ms-request-id" : "0edcf228-86eb-4b61-91d6-31a00fe79b35", + "Body" : "{\r\n \"name\": \"vnet8373800352\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/virtualNetworks/vnet8373800352\",\r\n \"etag\": \"W/\\\"30b70bb3-5077-41d5-99bd-44a7e9ae4135\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9fa090a5-90ee-43ee-9717-de774d6dc323\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/virtualNetworks/vnet8373800352/subnets/subnet1\",\r\n \"etag\": \"W/\\\"30b70bb3-5077-41d5-99bd-44a7e9ae4135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0edcf228-86eb-4b61-91d6-31a00fe79b35?api-version=2019-06-01" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/e5b735a7-c85b-4fa0-a8e1-449ae4ddb6c6?monitor=true&api-version=2019-06-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:35 GMT", + "date" : "Mon, 18 May 2020 06:38:04 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1195", + "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10561", - "StatusCode" : "200", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bc2015e8-a8da-4f16-8235-83f6c2a5cfe1", + "x-ms-correlation-request-id" : "6e35627e-ab32-4df5-ba44-ca2afb97cd8b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083735Z:bc2015e8-a8da-4f16-8235-83f6c2a5cfe1", - "content-type" : "application/json", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063805Z:6e35627e-ab32-4df5-ba44-ca2afb97cd8b", + "content-type" : "text/plain; charset=utf-8", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/cd7ba556-48d3-43ab-8f95-f80f7ed2501c?monitor=true&api-version=2019-06-01", "cache-control" : "no-cache", - "x-ms-request-id" : "cbf18cc2-d1b6-4e1a-a3fa-d8dfcb5c1af6", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\"name\":\"stga429212020e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-05T08:37:04.8750117Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-05T08:37:04.8750117Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-03-05T08:37:04.8281275Z\",\"primaryEndpoints\":{\"blob\":\"https://stga429212020e.blob.core.windows.net/\",\"queue\":\"https://stga429212020e.queue.core.windows.net/\",\"table\":\"https://stga429212020e.table.core.windows.net/\",\"file\":\"https://stga429212020e.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "cd7ba556-48d3-43ab-8f95-f80f7ed2501c", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/12c766e3-6022-493f-9cb5-47f88932903e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0edcf228-86eb-4b61-91d6-31a00fe79b35?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:40 GMT", + "date" : "Mon, 18 May 2020 06:38:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10229", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "554b0650-bcd6-42e3-8ad5-1b5483513b9c", + "x-ms-correlation-request-id" : "2b11494a-4536-45a3-b6b3-7ced7c90a3e4", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "238994b3-7caa-465b-add3-348fb9c6599e", + "x-ms-arm-service-request-id" : "75295c22-a81a-44a7-b74a-5257f98ec767", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083740Z:554b0650-bcd6-42e3-8ad5-1b5483513b9c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063835Z:2b11494a-4536-45a3-b6b3-7ced7c90a3e4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5f29d088-4c00-4817-80bf-eae05416ef2f", + "x-ms-request-id" : "4263c051-000c-4290-8fd7-23d6c5641910", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/cd7ba556-48d3-43ab-8f95-f80f7ed2501c?monitor=true&api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:05 GMT", + "date" : "Mon, 18 May 2020 06:38:35 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1195", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10265", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5c9a7cd8-ae9f-4a8e-b436-a9cc9f53f4e1", + "x-ms-correlation-request-id" : "4b44926a-16e3-46d7-b03c-1bb016833870", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083806Z:5c9a7cd8-ae9f-4a8e-b436-a9cc9f53f4e1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063835Z:4b44926a-16e3-46d7-b03c-1bb016833870", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "04dcfcfe-a007-4272-b49b-703ad2a2a8c4", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\"name\":\"stga429212020e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-05T08:37:04.8750117Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-05T08:37:04.8750117Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-03-05T08:37:04.8281275Z\",\"primaryEndpoints\":{\"blob\":\"https://stga429212020e.blob.core.windows.net/\",\"queue\":\"https://stga429212020e.queue.core.windows.net/\",\"table\":\"https://stga429212020e.table.core.windows.net/\",\"file\":\"https://stga429212020e.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "65320d4f-d8b7-4ca6-b4d3-93739cd7209c", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\"name\":\"stg8c219277079\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T06:38:04.3953423Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T06:38:04.3953423Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T06:38:04.3484641Z\",\"primaryEndpoints\":{\"blob\":\"https://stg8c219277079.blob.core.windows.net/\",\"queue\":\"https://stg8c219277079.queue.core.windows.net/\",\"table\":\"https://stg8c219277079.table.core.windows.net/\",\"file\":\"https://stg8c219277079.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/virtualNetworks/vnet3367430e83?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/virtualNetworks/vnet8373800352?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:10 GMT", + "date" : "Mon, 18 May 2020 06:39:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1351", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10576", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2e0ac885-0093-4b07-8080-57cc37c101b1", + "x-ms-correlation-request-id" : "9c51563e-d241-4426-acec-c8bbb06337ee", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "a4b21f99-1caa-404a-bf10-e063ba1517c8", + "x-ms-arm-service-request-id" : "779f4586-c754-4d35-9eba-d2c2d51039bc", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083810Z:2e0ac885-0093-4b07-8080-57cc37c101b1", - "etag" : "W/\"929bffca-d9a8-4e2b-a398-5394aa842176\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063905Z:9c51563e-d241-4426-acec-c8bbb06337ee", + "etag" : "W/\"e1906d15-fc9d-4616-a729-121521e0cc35\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bb6e4559-40c9-4f16-8c53-db9e83b1f230", - "Body" : "{\r\n \"name\": \"vnet3367430e83\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/virtualNetworks/vnet3367430e83\",\r\n \"etag\": \"W/\\\"929bffca-d9a8-4e2b-a398-5394aa842176\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"870ff3a7-bf2b-4a95-9db1-b188e2739dbf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/virtualNetworks/vnet3367430e83/subnets/subnet1\",\r\n \"etag\": \"W/\\\"929bffca-d9a8-4e2b-a398-5394aa842176\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/networkInterfaces/nic7243268f5c2?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1642", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "028120f2-cb80-4fda-be65-b9991307d741", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "30e8804c-bee2-4255-be69-b47f195fc775", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083817Z:028120f2-cb80-4fda-be65-b9991307d741", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "529205a9-47c0-41f2-91f8-22c7c61b9389", - "Body" : "{\r\n \"name\": \"nic7243268f5c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/networkInterfaces/nic7243268f5c2\",\r\n \"etag\": \"W/\\\"43d747f2-c360-43c5-af6b-a640ce0e3f86\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7fd0a866-15a1-4884-8a6e-a2ef93f48ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/networkInterfaces/nic7243268f5c2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"43d747f2-c360-43c5-af6b-a640ce0e3f86\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/virtualNetworks/vnet3367430e83/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"u5zq5bzlx4kuvhnrwgeoe223xh.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/529205a9-47c0-41f2-91f8-22c7c61b9389?api-version=2019-06-01" + "x-ms-request-id" : "cc7717b4-dcb3-4f44-964f-891f219078f1", + "Body" : "{\r\n \"name\": \"vnet8373800352\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/virtualNetworks/vnet8373800352\",\r\n \"etag\": \"W/\\\"e1906d15-fc9d-4616-a729-121521e0cc35\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fa090a5-90ee-43ee-9717-de774d6dc323\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/virtualNetworks/vnet8373800352/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e1906d15-fc9d-4616-a729-121521e0cc35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/529205a9-47c0-41f2-91f8-22c7c61b9389?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:47 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10095", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0c7c2779-5398-488a-822a-7f56fe7b75a6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "9085f9ea-8998-4eb6-99c6-9ad8cd7c0039", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083847Z:0c7c2779-5398-488a-822a-7f56fe7b75a6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f625a826-b423-4f10-9291-617eba07cffd", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/networkInterfaces/nic7243268f5c2?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1642", + "date" : "Mon, 18 May 2020 06:39:06 GMT", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "content-length" : "1195", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9959", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5eaad53a-88b5-4438-9b46-0267b55985f3", + "x-ms-correlation-request-id" : "5216073e-e852-4a9b-ad06-c3142e639e3e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d49e8eee-364f-452a-9002-c582424e90dd", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083918Z:5eaad53a-88b5-4438-9b46-0267b55985f3", - "etag" : "W/\"43d747f2-c360-43c5-af6b-a640ce0e3f86\"", - "content-type" : "application/json; charset=utf-8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063906Z:5216073e-e852-4a9b-ad06-c3142e639e3e", + "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "78dba106-2058-4887-b783-8c90f172f95a", - "Body" : "{\r\n \"name\": \"nic7243268f5c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/networkInterfaces/nic7243268f5c2\",\r\n \"etag\": \"W/\\\"43d747f2-c360-43c5-af6b-a640ce0e3f86\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7fd0a866-15a1-4884-8a6e-a2ef93f48ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/networkInterfaces/nic7243268f5c2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"43d747f2-c360-43c5-af6b-a640ce0e3f86\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/virtualNetworks/vnet3367430e83/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"u5zq5bzlx4kuvhnrwgeoe223xh.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "32ae6ded-fd53-46ad-9676-df7893142018", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\"name\":\"stg8c219277079\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T06:38:04.3953423Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T06:38:04.3953423Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T06:38:04.3484641Z\",\"primaryEndpoints\":{\"blob\":\"https://stg8c219277079.blob.core.windows.net/\",\"queue\":\"https://stg8c219277079.queue.core.windows.net/\",\"table\":\"https://stg8c219277079.table.core.windows.net/\",\"file\":\"https://stg8c219277079.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/virtualMachines/vm7-180524324d71?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/networkInterfaces/nic29856823ca0?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:22 GMT", + "date" : "Mon, 18 May 2020 06:39:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "2379", + "content-length" : "1642", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ac77bef-e2da-4c7f-801a-5a3a28df4b02", + "x-ms-correlation-request-id" : "494288de-f643-4cb1-9892-dad3bf41968e", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "3fafadf0-8c2b-4034-a74d-b54a64d87f07", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083922Z:8ac77bef-e2da-4c7f-801a-5a3a28df4b02", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063912Z:494288de-f643-4cb1-9892-dad3bf41968e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9f3bbec3-f1ed-48a0-b770-f25a34bb5859", - "Body" : "{\r\n \"name\": \"vm7-180524324d71\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/virtualMachines/vm7-180524324d71\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ef7b0347-51d9-490b-bc9b-757a4b926868\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm7-180524324d71-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-os-disk-f0b6c097-db79-451b-9d40-c2a98c7ec819.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"disk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-data-disk-0-4133ce29-ae3c-4b91-80fd-2ec4efc3a874.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm7-180524324d71-data-disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-data-disk-1-622667eb-ec43-4abe-9198-2e984cd2f352.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm219597bc3\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/networkInterfaces/nic7243268f5c2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9f3bbec3-f1ed-48a0-b770-f25a34bb5859?api-version=2019-03-01" + "x-ms-request-id" : "93f55e77-df2b-4b9b-b746-c09360dd528a", + "Body" : "{\r\n \"name\": \"nic29856823ca0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/networkInterfaces/nic29856823ca0\",\r\n \"etag\": \"W/\\\"38533f83-90d6-45af-9361-a64240c05096\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9de20165-7032-49be-9d7a-e9c27b258868\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/networkInterfaces/nic29856823ca0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"38533f83-90d6-45af-9361-a64240c05096\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/virtualNetworks/vnet8373800352/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uwikbh5osdxehfyx1z1u01oded.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/93f55e77-df2b-4b9b-b746-c09360dd528a?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9f3bbec3-f1ed-48a0-b770-f25a34bb5859?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/93f55e77-df2b-4b9b-b746-c09360dd528a?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:52 GMT", + "date" : "Mon, 18 May 2020 06:39:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", + "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9954", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b18da645-c076-45eb-9264-43843e23b9d0", + "x-ms-correlation-request-id" : "27cd98cd-1e79-4934-bfd7-fcdfd03da957", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "afe2522f-4d88-47f3-ab4c-e689e6aac4d5", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083952Z:b18da645-c076-45eb-9264-43843e23b9d0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063943Z:27cd98cd-1e79-4934-bfd7-fcdfd03da957", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "87e0d3f9-f4fe-4cb4-8e5f-cc41278872ab", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:21.085273+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9f3bbec3-f1ed-48a0-b770-f25a34bb5859\"\r\n}" + "x-ms-request-id" : "69373f10-8b3a-45cd-93c4-241f8f66a07a", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9f3bbec3-f1ed-48a0-b770-f25a34bb5859?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/networkInterfaces/nic29856823ca0?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:22 GMT", + "date" : "Mon, 18 May 2020 06:40:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", + "content-length" : "1642", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10338", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ed077216-77b3-48ec-bda5-6dd1a4041790", + "x-ms-correlation-request-id" : "23cded75-2301-4c35-9198-e8da62bb3cda", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "aca6c029-449c-45e8-bf47-3f5e37b4ff18", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084023Z:ed077216-77b3-48ec-bda5-6dd1a4041790", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064014Z:23cded75-2301-4c35-9198-e8da62bb3cda", + "etag" : "W/\"38533f83-90d6-45af-9361-a64240c05096\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "89a74ac9-5a1b-4199-adec-2602da311ee3", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:21.085273+00:00\",\r\n \"endTime\": \"2020-03-05T08:40:16.3196723+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9f3bbec3-f1ed-48a0-b770-f25a34bb5859\"\r\n}" + "x-ms-request-id" : "5cbcf228-9d0b-4fba-b2ee-d12e85dfc610", + "Body" : "{\r\n \"name\": \"nic29856823ca0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/networkInterfaces/nic29856823ca0\",\r\n \"etag\": \"W/\\\"38533f83-90d6-45af-9361-a64240c05096\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9de20165-7032-49be-9d7a-e9c27b258868\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/networkInterfaces/nic29856823ca0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"38533f83-90d6-45af-9361-a64240c05096\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/virtualNetworks/vnet8373800352/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uwikbh5osdxehfyx1z1u01oded.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/virtualMachines/vm7-180524324d71?api-version=2019-03-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/virtualMachines/vm7-f44954430266?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:53 GMT", + "date" : "Mon, 18 May 2020 06:40:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2407", + "azure-asyncnotification" : "Enabled", + "content-length" : "2379", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10507", - "StatusCode" : "200", + "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f07810f5-eb99-43b8-a373-5f3f9ebd71df", + "x-ms-correlation-request-id" : "77aa591d-6c5e-4545-a634-97174b64ed96", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084053Z:f07810f5-eb99-43b8-a373-5f3f9ebd71df", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064021Z:77aa591d-6c5e-4545-a634-97174b64ed96", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d1f4518a-d0e0-4fe4-8365-ddc0e47f9b8d", - "Body" : "{\r\n \"name\": \"vm7-180524324d71\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/virtualMachines/vm7-180524324d71\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ef7b0347-51d9-490b-bc9b-757a4b926868\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm7-180524324d71-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-os-disk-f0b6c097-db79-451b-9d40-c2a98c7ec819.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"disk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-data-disk-0-4133ce29-ae3c-4b91-80fd-2ec4efc3a874.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm7-180524324d71-data-disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-data-disk-1-622667eb-ec43-4abe-9198-2e984cd2f352.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm219597bc3\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Network/networkInterfaces/nic7243268f5c2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "411b2305-3371-460c-8d3c-fd107b6ead24", + "Body" : "{\r\n \"name\": \"vm7-f44954430266\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/virtualMachines/vm7-f44954430266\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"110c6d49-0657-421a-bc05-fa9e3d591658\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm7-f44954430266-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-os-disk-9504ccd0-c92c-441f-817c-e75f0d112c03.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"disk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-data-disk-0-152bb059-74fc-462d-9095-57de0db81ff8.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm7-f44954430266-data-disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-data-disk-1-60c1fd87-4fa8-4733-b58f-20643e716ccb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm96630070f\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/networkInterfaces/nic29856823ca0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/411b2305-3371-460c-8d3c-fd107b6ead24?api-version=2019-03-01" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/virtualMachines/vm7-180524324d71?api-version=2019-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/411b2305-3371-460c-8d3c-fd107b6ead24?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:54 GMT", + "date" : "Mon, 18 May 2020 06:40:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "0", + "content-length" : "134", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", - "StatusCode" : "202", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", + "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "acfcc5ee-e0ef-4da7-8e21-b7af8b677d8d", + "x-ms-correlation-request-id" : "95a31d65-37b1-4ec3-9228-95cdcd6cad13", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084054Z:acfcc5ee-e0ef-4da7-8e21-b7af8b677d8d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064053Z:95a31d65-37b1-4ec3-9228-95cdcd6cad13", + "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c915dab7-fa98-498f-a7b5-5c85926bc7b1", - "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?api-version=2019-03-01" + "x-ms-request-id" : "ae3d0428-e2e6-47c6-b21d-4e6f87ec5694", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:40:19.7680165+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"411b2305-3371-460c-8d3c-fd107b6ead24\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/411b2305-3371-460c-8d3c-fd107b6ead24?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:23 GMT", + "date" : "Mon, 18 May 2020 06:41:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10420", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b88ab34e-8cbb-4fd6-affa-327dbec8b6a4", + "x-ms-correlation-request-id" : "b26452cd-1dab-4ab0-aa20-45b2e165c59d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084124Z:b88ab34e-8cbb-4fd6-affa-327dbec8b6a4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064123Z:b26452cd-1dab-4ab0-aa20-45b2e165c59d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "be920eac-d673-430f-8112-0ec3ff50b6c1", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:54.3511162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c915dab7-fa98-498f-a7b5-5c85926bc7b1\"\r\n}" + "x-ms-request-id" : "186b1fa0-dc67-40e3-a145-51a0f230ed10", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:40:19.7680165+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"411b2305-3371-460c-8d3c-fd107b6ead24\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/411b2305-3371-460c-8d3c-fd107b6ead24?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:54 GMT", + "date" : "Mon, 18 May 2020 06:41:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10504", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fbe34ae3-7161-4155-b39c-d931f301fc99", + "x-ms-correlation-request-id" : "739dec58-a4aa-4634-a29c-33ad8647de8a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084155Z:fbe34ae3-7161-4155-b39c-d931f301fc99", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064154Z:739dec58-a4aa-4634-a29c-33ad8647de8a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "95b87c49-709c-49b5-841e-fe0491cf816e", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:54.3511162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c915dab7-fa98-498f-a7b5-5c85926bc7b1\"\r\n}" + "x-ms-request-id" : "95ac0487-4aa5-4ea9-8843-f3f43e9b78a2", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:40:19.7680165+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"411b2305-3371-460c-8d3c-fd107b6ead24\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/411b2305-3371-460c-8d3c-fd107b6ead24?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:25 GMT", + "date" : "Mon, 18 May 2020 06:42:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10845", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eac6fac3-39dd-4844-9d14-80a5041b3fa0", + "x-ms-correlation-request-id" : "57d33639-ad94-41dd-b0ab-4fb62fdd3bc5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084226Z:eac6fac3-39dd-4844-9d14-80a5041b3fa0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064224Z:57d33639-ad94-41dd-b0ab-4fb62fdd3bc5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b6d51551-b1eb-4a6d-9305-1dad6bd8666d", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:54.3511162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c915dab7-fa98-498f-a7b5-5c85926bc7b1\"\r\n}" + "x-ms-request-id" : "53477b84-d3b0-4abc-90bc-599d527d2878", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:40:19.7680165+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"411b2305-3371-460c-8d3c-fd107b6ead24\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/411b2305-3371-460c-8d3c-fd107b6ead24?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:56 GMT", + "date" : "Mon, 18 May 2020 06:42:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10413", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2d3788da-194f-467e-861e-99dbb292b37a", + "x-ms-correlation-request-id" : "96e8332a-ba94-4e1f-a6ca-be5ec760ae5c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084256Z:2d3788da-194f-467e-861e-99dbb292b37a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064255Z:96e8332a-ba94-4e1f-a6ca-be5ec760ae5c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5bf8b337-3785-4001-8f7b-83feb5590d06", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:54.3511162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c915dab7-fa98-498f-a7b5-5c85926bc7b1\"\r\n}" + "x-ms-request-id" : "c9046601-c872-40e3-a34d-48d436566867", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:40:19.7680165+00:00\",\r\n \"endTime\": \"2020-05-18T06:42:40.3624089+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"411b2305-3371-460c-8d3c-fd107b6ead24\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/virtualMachines/vm7-f44954430266?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:26 GMT", + "date" : "Mon, 18 May 2020 06:43:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "2407", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9924", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6095727d-b5a0-4580-a1fc-1f087d5d8a3b", + "x-ms-correlation-request-id" : "0b59778e-cbaf-48f9-8944-44e5460a3f81", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084326Z:6095727d-b5a0-4580-a1fc-1f087d5d8a3b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064326Z:0b59778e-cbaf-48f9-8944-44e5460a3f81", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "71f4e596-4021-4cba-add2-cc06d26196e7", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:54.3511162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c915dab7-fa98-498f-a7b5-5c85926bc7b1\"\r\n}" + "x-ms-request-id" : "06162cf8-42fe-4c5f-85c8-76361fa1e732", + "Body" : "{\r\n \"name\": \"vm7-f44954430266\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/virtualMachines/vm7-f44954430266\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"110c6d49-0657-421a-bc05-fa9e3d591658\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm7-f44954430266-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-os-disk-9504ccd0-c92c-441f-817c-e75f0d112c03.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"disk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-data-disk-0-152bb059-74fc-462d-9095-57de0db81ff8.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm7-f44954430266-data-disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-data-disk-1-60c1fd87-4fa8-4733-b58f-20643e716ccb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm96630070f\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Network/networkInterfaces/nic29856823ca0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?api-version=2019-03-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/virtualMachines/vm7-f44954430266?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:57 GMT", + "date" : "Mon, 18 May 2020 06:43:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "azure-asyncnotification" : "Enabled", + "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10191", - "StatusCode" : "200", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8b4e34cf-d6bb-427e-9344-1cffd5288529", + "x-ms-correlation-request-id" : "e31d9363-9cf1-4dab-8dce-aa85252fb835", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084357Z:8b4e34cf-d6bb-427e-9344-1cffd5288529", - "content-type" : "application/json; charset=utf-8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064328Z:e31d9363-9cf1-4dab-8dce-aa85252fb835", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53a42a63-ebf3-449c-a1cd-37917da232ab?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "d0d544de-8062-4b8d-abbd-03d023f3159d", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:54.3511162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c915dab7-fa98-498f-a7b5-5c85926bc7b1\"\r\n}" + "x-ms-request-id" : "53a42a63-ebf3-449c-a1cd-37917da232ab", + "Body" : "", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53a42a63-ebf3-449c-a1cd-37917da232ab?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53a42a63-ebf3-449c-a1cd-37917da232ab?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:26 GMT", + "date" : "Mon, 18 May 2020 06:43:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9919", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4fb6605f-2bdf-47f6-8eab-2ff1dbb593f5", + "x-ms-correlation-request-id" : "9e0b31ad-794e-4919-abe4-75552eae3d98", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084427Z:4fb6605f-2bdf-47f6-8eab-2ff1dbb593f5", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064358Z:9e0b31ad-794e-4919-abe4-75552eae3d98", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "18ad2c78-8249-4557-a278-389984fe71c7", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:54.3511162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c915dab7-fa98-498f-a7b5-5c85926bc7b1\"\r\n}" + "x-ms-request-id" : "4ea2932f-35c1-46e9-b2f8-543b6a206481", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:43:28.1592101+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"53a42a63-ebf3-449c-a1cd-37917da232ab\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53a42a63-ebf3-449c-a1cd-37917da232ab?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:57 GMT", + "date" : "Mon, 18 May 2020 06:44:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10396", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8043ce62-854f-4e41-af9c-717255fae49f", + "x-ms-correlation-request-id" : "28ecf13c-8caa-4c7c-a4c7-b6ef47af321b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084457Z:8043ce62-854f-4e41-af9c-717255fae49f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064429Z:28ecf13c-8caa-4c7c-a4c7-b6ef47af321b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6bb8bbad-0591-4bb8-9d78-1364859a06df", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:54.3511162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c915dab7-fa98-498f-a7b5-5c85926bc7b1\"\r\n}" + "x-ms-request-id" : "8702f965-e12a-4d83-85f9-a950a6bd9d60", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:43:28.1592101+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"53a42a63-ebf3-449c-a1cd-37917da232ab\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53a42a63-ebf3-449c-a1cd-37917da232ab?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:27 GMT", + "date" : "Mon, 18 May 2020 06:45:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10535", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0c3b1d85-9f0b-4d57-ae3e-33668e5fca77", + "x-ms-correlation-request-id" : "e85d4dc0-fbf3-4744-97bf-faf9a77ef856", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084527Z:0c3b1d85-9f0b-4d57-ae3e-33668e5fca77", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064500Z:e85d4dc0-fbf3-4744-97bf-faf9a77ef856", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "979f1c5e-2a08-4427-886e-d23fd977cb27", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:54.3511162+00:00\",\r\n \"endTime\": \"2020-03-05T08:45:20.9765795+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c915dab7-fa98-498f-a7b5-5c85926bc7b1\"\r\n}" + "x-ms-request-id" : "99cfeb77-f382-4b3e-9741-0b90f2ce1394", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:43:28.1592101+00:00\",\r\n \"endTime\": \"2020-05-18T06:44:59.0344169+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"53a42a63-ebf3-449c-a1cd-37917da232ab\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c915dab7-fa98-498f-a7b5-5c85926bc7b1?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53a42a63-ebf3-449c-a1cd-37917da232ab?monitor=true&api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:58 GMT", + "date" : "Mon, 18 May 2020 06:45:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10506", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a502b822-fe44-486e-a87c-75b981e09bfe", + "x-ms-correlation-request-id" : "9f20123a-92e5-435e-9fbf-44a664c34c21", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084558Z:a502b822-fe44-486e-a87c-75b981e09bfe", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064530Z:9f20123a-92e5-435e-9fbf-44a664c34c21", "cache-control" : "no-cache", - "x-ms-request-id" : "d478f99c-2792-4618-98d9-8194513d9f6a", + "x-ms-request-id" : "45905dce-f643-496d-a2b6-8466e2d4290f", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg49578?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67641?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:06 GMT", + "date" : "Mon, 18 May 2020 06:45:33 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9b7fa1f3-26d1-4eb6-99e9-61798c081c05", + "x-ms-correlation-request-id" : "effd1fec-c6f1-4a61-968a-ff38a6dfb8c4", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084606Z:9b7fa1f3-26d1-4eb6-99e9-61798c081c05", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064533Z:effd1fec-c6f1-4a61-968a-ff38a6dfb8c4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9b7fa1f3-26d1-4eb6-99e9-61798c081c05", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578\",\"name\":\"javacsmrg49578\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:45:58.930Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "effd1fec-c6f1-4a61-968a-ff38a6dfb8c4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641\",\"name\":\"javacsmrg67641\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:45:31.328Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskfdd7493792?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk9b046337a1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:11 GMT", + "date" : "Mon, 18 May 2020 06:45:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "600", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ec694e6-b9b3-4426-bed3-de6393c5a439", + "x-ms-correlation-request-id" : "87132156-71c9-4bf1-93e7-a7acfb1c4840", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084611Z:8ec694e6-b9b3-4426-bed3-de6393c5a439", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064539Z:87132156-71c9-4bf1-93e7-a7acfb1c4840", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/aea4a0b0-5e07-42fa-bddf-b7cd1383b424?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ae8d40f8-f766-4d39-b2c8-5391d3f39046?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "aea4a0b0-5e07-42fa-bddf-b7cd1383b424", - "Body" : "{\r\n \"name\": \"dskfdd7493792\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\r\n \"sourceUri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-os-disk-f0b6c097-db79-451b-9d40-c2a98c7ec819.vhd\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"diskSizeBytes\": 32212254720,\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/aea4a0b0-5e07-42fa-bddf-b7cd1383b424?api-version=2019-03-01" + "x-ms-request-id" : "ae8d40f8-f766-4d39-b2c8-5391d3f39046", + "Body" : "{\r\n \"name\": \"dsk9b046337a1\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\r\n \"sourceUri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-os-disk-9504ccd0-c92c-441f-817c-e75f0d112c03.vhd\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"diskSizeBytes\": 32212254720,\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ae8d40f8-f766-4d39-b2c8-5391d3f39046?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/aea4a0b0-5e07-42fa-bddf-b7cd1383b424?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ae8d40f8-f766-4d39-b2c8-5391d3f39046?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:41 GMT", + "date" : "Mon, 18 May 2020 06:46:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1117", + "content-length" : "1171", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10383", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a3ec3d00-c501-44a7-9fad-cc4ef3fc3d0c", + "x-ms-correlation-request-id" : "87b5b503-9b6a-4c62-8e5a-b2438e8c1b8c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084642Z:a3ec3d00-c501-44a7-9fad-cc4ef3fc3d0c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399958", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064609Z:87b5b503-9b6a-4c62-8e5a-b2438e8c1b8c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d0b5d1dd-8932-4dbd-931b-2f6100307468", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:46:11.0002176+00:00\",\r\n \"endTime\": \"2020-03-05T08:46:12.3908325+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dskfdd7493792\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskfdd7493792\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\"sourceUri\":\"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-os-disk-f0b6c097-db79-451b-9d40-c2a98c7ec819.vhd\"},\"diskSizeGB\":30,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:46:11.2346065+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":32212254720,\"uniqueId\":\"cc8ed357-1d54-4ec3-b709-c3b235324167\"}}\r\n },\r\n \"name\": \"aea4a0b0-5e07-42fa-bddf-b7cd1383b424\"\r\n}" + "x-ms-request-id" : "32ea793b-9e2a-4c5b-9100-2768525732a7", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:45:38.81091+00:00\",\r\n \"endTime\": \"2020-05-18T06:45:39.9515435+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk9b046337a1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk9b046337a1\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\"sourceUri\":\"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-os-disk-9504ccd0-c92c-441f-817c-e75f0d112c03.vhd\"},\"diskSizeGB\":30,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:45:38.9515416+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":32212254720,\"uniqueId\":\"f9ed3eac-aab8-4ee9-a17f-633d289be4b0\"}}\r\n },\r\n \"name\": \"ae8d40f8-f766-4d39-b2c8-5391d3f39046\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskfdd7493792?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk9b046337a1?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:12 GMT", + "date" : "Mon, 18 May 2020 06:46:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1054", + "content-length" : "1132", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9900", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1fdb8783-5db9-417b-b837-a21845a6c0b1", + "x-ms-correlation-request-id" : "3d4dd164-b5ed-4b47-b023-e737f3a44107", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084713Z:1fdb8783-5db9-417b-b837-a21845a6c0b1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39945", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064640Z:3d4dd164-b5ed-4b47-b023-e737f3a44107", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e1c65cdc-1f2c-4547-8945-b1666db3a8e9", - "Body" : "{\r\n \"name\": \"dskfdd7493792\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskfdd7493792\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\r\n \"sourceUri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-os-disk-f0b6c097-db79-451b-9d40-c2a98c7ec819.vhd\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:46:11.2346065+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"cc8ed357-1d54-4ec3-b709-c3b235324167\"\r\n }\r\n}" + "x-ms-request-id" : "084e36ab-56de-4e79-a27e-e4400f2b8d16", + "Body" : "{\r\n \"name\": \"dsk9b046337a1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk9b046337a1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\r\n \"sourceUri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-os-disk-9504ccd0-c92c-441f-817c-e75f0d112c03.vhd\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:45:38.9515416+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"f9ed3eac-aab8-4ee9-a17f-633d289be4b0\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:12 GMT", + "date" : "Mon, 18 May 2020 06:46:41 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1195", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10381", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d4565283-a585-462e-8f26-684878ef5395", + "x-ms-correlation-request-id" : "6413f6b5-df02-4208-a587-e2298b5cd609", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084713Z:d4565283-a585-462e-8f26-684878ef5395", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064641Z:6413f6b5-df02-4208-a587-e2298b5cd609", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "15b2b2dd-1406-45b3-9881-03faa0ec9986", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\"name\":\"stga429212020e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-05T08:37:04.8750117Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-05T08:37:04.8750117Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-03-05T08:37:04.8281275Z\",\"primaryEndpoints\":{\"blob\":\"https://stga429212020e.blob.core.windows.net/\",\"queue\":\"https://stga429212020e.queue.core.windows.net/\",\"table\":\"https://stga429212020e.table.core.windows.net/\",\"file\":\"https://stga429212020e.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "72574c2a-8df2-4660-ab61-2b37081c37ed", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\"name\":\"stg8c219277079\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T06:38:04.3953423Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T06:38:04.3953423Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T06:38:04.3484641Z\",\"primaryEndpoints\":{\"blob\":\"https://stg8c219277079.blob.core.windows.net/\",\"queue\":\"https://stg8c219277079.queue.core.windows.net/\",\"table\":\"https://stg8c219277079.table.core.windows.net/\",\"file\":\"https://stg8c219277079.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg49578?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67641?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:17 GMT", + "date" : "Mon, 18 May 2020 06:46:44 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bd17accf-b39e-4137-9051-1cc9624c7cfb", + "x-ms-correlation-request-id" : "87ce803e-fd8e-499e-b282-c68ec105d493", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084717Z:bd17accf-b39e-4137-9051-1cc9624c7cfb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064644Z:87ce803e-fd8e-499e-b282-c68ec105d493", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bd17accf-b39e-4137-9051-1cc9624c7cfb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578\",\"name\":\"javacsmrg49578\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:47:14.068Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "87ce803e-fd8e-499e-b282-c68ec105d493", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641\",\"name\":\"javacsmrg67641\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:46:42.381Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskd7501122fb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dske0c96327f1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:21 GMT", + "date" : "Mon, 18 May 2020 06:46:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "581", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ad8a8a2-4ef3-4c03-8dbe-bea511dc63c0", + "x-ms-correlation-request-id" : "4879f58f-6bdf-4399-8dcc-367504288074", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084722Z:8ad8a8a2-4ef3-4c03-8dbe-bea511dc63c0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064649Z:4879f58f-6bdf-4399-8dcc-367504288074", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a926e55f-b539-4990-93c0-936f93513c21?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/18d38baa-3e33-4f11-94d3-c67f457c43f0?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a926e55f-b539-4990-93c0-936f93513c21", - "Body" : "{\r\n \"name\": \"dskd7501122fb\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\r\n \"sourceUri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-data-disk-0-4133ce29-ae3c-4b91-80fd-2ec4efc3a874.vhd\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a926e55f-b539-4990-93c0-936f93513c21?api-version=2019-03-01" + "x-ms-request-id" : "18d38baa-3e33-4f11-94d3-c67f457c43f0", + "Body" : "{\r\n \"name\": \"dske0c96327f1\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\r\n \"sourceUri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-data-disk-0-152bb059-74fc-462d-9095-57de0db81ff8.vhd\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/18d38baa-3e33-4f11-94d3-c67f457c43f0?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a926e55f-b539-4990-93c0-936f93513c21?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/18d38baa-3e33-4f11-94d3-c67f457c43f0?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:51 GMT", + "date" : "Mon, 18 May 2020 06:47:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1106", + "content-length" : "1162", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9898", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aae2921d-25e8-45bd-831d-3d8997fe3f44", + "x-ms-correlation-request-id" : "4dc240ac-2d42-422a-8abf-1a4d5849c25f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084752Z:aae2921d-25e8-45bd-831d-3d8997fe3f44", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399956", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064720Z:4dc240ac-2d42-422a-8abf-1a4d5849c25f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d2ca4dd4-5248-4030-b813-c5177ab39bea", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:47:21.8746975+00:00\",\r\n \"endTime\": \"2020-03-05T08:47:22.5465765+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dskd7501122fb\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskd7501122fb\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\"sourceUri\":\"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-data-disk-0-4133ce29-ae3c-4b91-80fd-2ec4efc3a874.vhd\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:47:21.9215871+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"455607a0-a097-4f30-909b-a412b31dc349\"}}\r\n },\r\n \"name\": \"a926e55f-b539-4990-93c0-936f93513c21\"\r\n}" + "x-ms-request-id" : "eff97800-ba6d-45c9-83f3-8268eae700fd", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:46:49.4672964+00:00\",\r\n \"endTime\": \"2020-05-18T06:46:50.1391252+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dske0c96327f1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dske0c96327f1\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\"sourceUri\":\"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-data-disk-0-152bb059-74fc-462d-9095-57de0db81ff8.vhd\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:46:49.5610293+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"93f3445d-60c8-4ece-b745-05966cea0fc8\"}}\r\n },\r\n \"name\": \"18d38baa-3e33-4f11-94d3-c67f457c43f0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskd7501122fb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dske0c96327f1?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:22 GMT", + "date" : "Mon, 18 May 2020 06:47:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1036", + "content-length" : "1114", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10500", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f71df6ee-3d37-4d9b-bc32-4adf5b0aee5e", + "x-ms-correlation-request-id" : "51300b60-b01d-4f07-aad2-c308bc4aba8b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084822Z:f71df6ee-3d37-4d9b-bc32-4adf5b0aee5e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39942", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064751Z:51300b60-b01d-4f07-aad2-c308bc4aba8b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "dede0898-054f-49db-a890-809bfd0237b7", - "Body" : "{\r\n \"name\": \"dskd7501122fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskd7501122fb\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\r\n \"sourceUri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-data-disk-0-4133ce29-ae3c-4b91-80fd-2ec4efc3a874.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:47:21.9215871+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"455607a0-a097-4f30-909b-a412b31dc349\"\r\n }\r\n}" + "x-ms-request-id" : "3d30016d-8b18-4007-bde1-f3b526b6b4d9", + "Body" : "{\r\n \"name\": \"dske0c96327f1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dske0c96327f1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\r\n \"sourceUri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-data-disk-0-152bb059-74fc-462d-9095-57de0db81ff8.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:46:49.5610293+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"93f3445d-60c8-4ece-b745-05966cea0fc8\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg49578?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67641?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:26 GMT", + "date" : "Mon, 18 May 2020 06:47:53 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fe52776b-8a6a-4be7-a45d-7fcc6e35ea41", + "x-ms-correlation-request-id" : "94afe203-1561-4580-92c3-442f964c2426", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084826Z:fe52776b-8a6a-4be7-a45d-7fcc6e35ea41", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064754Z:94afe203-1561-4580-92c3-442f964c2426", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fe52776b-8a6a-4be7-a45d-7fcc6e35ea41", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578\",\"name\":\"javacsmrg49578\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:48:22.804Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "94afe203-1561-4580-92c3-442f964c2426", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641\",\"name\":\"javacsmrg67641\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:47:51.674Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskb68162315f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk7ff03921e0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:30 GMT", + "date" : "Mon, 18 May 2020 06:47:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "581", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3ff96b96-b970-469e-be53-8ed337e5905c", + "x-ms-correlation-request-id" : "e29eab2e-5c50-4ef6-9cc4-f7da4b0f20b2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084831Z:3ff96b96-b970-469e-be53-8ed337e5905c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064759Z:e29eab2e-5c50-4ef6-9cc4-f7da4b0f20b2", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5c067151-bd5b-49c8-9b99-8b440c157e85?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d1f09ead-1b3c-4a5c-af34-6b6bd4c392a1?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5c067151-bd5b-49c8-9b99-8b440c157e85", - "Body" : "{\r\n \"name\": \"dskb68162315f\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\r\n \"sourceUri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-data-disk-1-622667eb-ec43-4abe-9198-2e984cd2f352.vhd\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5c067151-bd5b-49c8-9b99-8b440c157e85?api-version=2019-03-01" + "x-ms-request-id" : "d1f09ead-1b3c-4a5c-af34-6b6bd4c392a1", + "Body" : "{\r\n \"name\": \"dsk7ff03921e0\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\r\n \"sourceUri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-data-disk-1-60c1fd87-4fa8-4733-b58f-20643e716ccb.vhd\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d1f09ead-1b3c-4a5c-af34-6b6bd4c392a1?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5c067151-bd5b-49c8-9b99-8b440c157e85?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d1f09ead-1b3c-4a5c-af34-6b6bd4c392a1?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:01 GMT", + "date" : "Mon, 18 May 2020 06:48:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1106", + "content-length" : "1162", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10272", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0f8bd041-7386-481d-9b72-0e0b96937d7d", + "x-ms-correlation-request-id" : "77a9d7c1-9fd2-4a83-9cdc-10b7f8a5841c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084902Z:0f8bd041-7386-481d-9b72-0e0b96937d7d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399954", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064830Z:77a9d7c1-9fd2-4a83-9cdc-10b7f8a5841c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "eb2f6fcb-c05e-4de2-bb88-8f75eaad55c5", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:48:31.0929664+00:00\",\r\n \"endTime\": \"2020-03-05T08:48:31.7960842+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dskb68162315f\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskb68162315f\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\"sourceUri\":\"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-data-disk-1-622667eb-ec43-4abe-9198-2e984cd2f352.vhd\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:48:31.2492129+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"27ce8030-2dc5-4828-9224-ae876805c252\"}}\r\n },\r\n \"name\": \"5c067151-bd5b-49c8-9b99-8b440c157e85\"\r\n}" + "x-ms-request-id" : "4bd5efd0-28b4-463f-8875-a4b5da90d0ef", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:47:59.0454875+00:00\",\r\n \"endTime\": \"2020-05-18T06:47:59.7173995+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk7ff03921e0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk7ff03921e0\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\"sourceUri\":\"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-data-disk-1-60c1fd87-4fa8-4733-b58f-20643e716ccb.vhd\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:47:59.0923841+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"beda8c57-6297-45b3-a37b-9c15a9509714\"}}\r\n },\r\n \"name\": \"d1f09ead-1b3c-4a5c-af34-6b6bd4c392a1\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskb68162315f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk7ff03921e0?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:31 GMT", + "date" : "Mon, 18 May 2020 06:49:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1036", + "content-length" : "1114", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10472", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "90fa0ea2-744b-4b6b-b049-119f3b63019d", + "x-ms-correlation-request-id" : "92d3fb36-cfcd-4563-ae65-618a8286795d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4978,Microsoft.Compute/LowCostGet30Min;39951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084932Z:90fa0ea2-744b-4b6b-b049-119f3b63019d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39939", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064901Z:92d3fb36-cfcd-4563-ae65-618a8286795d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f7eeaaec-a2ea-4a56-b670-87a5ca600f4c", - "Body" : "{\r\n \"name\": \"dskb68162315f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskb68162315f\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Storage/storageAccounts/stga429212020e\",\r\n \"sourceUri\": \"https://stga429212020e.blob.core.windows.net/vhds/vm7-180524324d71-data-disk-1-622667eb-ec43-4abe-9198-2e984cd2f352.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:48:31.2492129+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"27ce8030-2dc5-4828-9224-ae876805c252\"\r\n }\r\n}" + "x-ms-request-id" : "84bea0ed-4b52-4cfe-b35a-e33fd89a8727", + "Body" : "{\r\n \"name\": \"dsk7ff03921e0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk7ff03921e0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Storage/storageAccounts/stg8c219277079\",\r\n \"sourceUri\": \"https://stg8c219277079.blob.core.windows.net/vhds/vm7-f44954430266-data-disk-1-60c1fd87-4fa8-4733-b58f-20643e716ccb.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:47:59.0923841+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"beda8c57-6297-45b3-a37b-9c15a9509714\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg49578?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67641?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:35 GMT", + "date" : "Mon, 18 May 2020 06:49:03 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "759988c2-c269-4893-8570-2380ad1a2df8", + "x-ms-correlation-request-id" : "cb4b1c29-c5d1-4b26-9d1b-79c9f6d6d738", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084936Z:759988c2-c269-4893-8570-2380ad1a2df8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064904Z:cb4b1c29-c5d1-4b26-9d1b-79c9f6d6d738", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "759988c2-c269-4893-8570-2380ad1a2df8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578\",\"name\":\"javacsmrg49578\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:49:32.690Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "cb4b1c29-c5d1-4b26-9d1b-79c9f6d6d738", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641\",\"name\":\"javacsmrg67641\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:49:01.742Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/images/img439005211f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/images/img85d5979955?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:41 GMT", + "date" : "Mon, 18 May 2020 06:49:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1463", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "921bbe92-3b01-4e0a-ab48-e077c054daa9", + "x-ms-correlation-request-id" : "5638449a-95a8-4d1f-b52f-07c6040328a9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084942Z:921bbe92-3b01-4e0a-ab48-e077c054daa9", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064911Z:5638449a-95a8-4d1f-b52f-07c6040328a9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "eb0f6f20-db2a-4f82-823b-a4cc8fdd60fd", - "Body" : "{\r\n \"name\": \"img439005211f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/images/img439005211f\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskfdd7493792\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 110,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskd7501122fb\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 110,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskb68162315f\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/eb0f6f20-db2a-4f82-823b-a4cc8fdd60fd?api-version=2019-03-01" + "x-ms-request-id" : "9cba0b06-88f9-4a2c-b4a7-52bf97c9b819", + "Body" : "{\r\n \"name\": \"img85d5979955\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/images/img85d5979955\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk9b046337a1\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 110,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dske0c96327f1\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 110,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk7ff03921e0\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9cba0b06-88f9-4a2c-b4a7-52bf97c9b819?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/eb0f6f20-db2a-4f82-823b-a4cc8fdd60fd?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9cba0b06-88f9-4a2c-b4a7-52bf97c9b819?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:12 GMT", + "date" : "Mon, 18 May 2020 06:49:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10366", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6abe6693-c6d4-446a-be33-8861c897bb07", + "x-ms-correlation-request-id" : "f2a1c317-b58e-4e87-963c-755c4301fd57", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085012Z:6abe6693-c6d4-446a-be33-8861c897bb07", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29986", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T064941Z:f2a1c317-b58e-4e87-963c-755c4301fd57", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b01f72d4-e555-4d6b-9dde-099fd9b3b28c", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:49:40.7737213+00:00\",\r\n \"endTime\": \"2020-03-05T08:49:45.914383+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"eb0f6f20-db2a-4f82-823b-a4cc8fdd60fd\"\r\n}" + "x-ms-request-id" : "a55da6dd-4f48-4d15-83c4-ae338941e036", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:49:09.8627617+00:00\",\r\n \"endTime\": \"2020-05-18T06:49:15.1127785+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9cba0b06-88f9-4a2c-b4a7-52bf97c9b819\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/images/img439005211f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/images/img85d5979955?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:42 GMT", + "date" : "Mon, 18 May 2020 06:50:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1491", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10503", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "44f26432-e91f-4b92-baf2-f0926bb65fc8", + "x-ms-correlation-request-id" : "9502dd8b-1f87-4965-b7ac-7794d18be467", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085043Z:44f26432-e91f-4b92-baf2-f0926bb65fc8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065012Z:9502dd8b-1f87-4965-b7ac-7794d18be467", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fe435f66-2ad1-4da6-a07e-1de46fb429b8", - "Body" : "{\r\n \"name\": \"img439005211f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/images/img439005211f\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskfdd7493792\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 110,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskd7501122fb\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 110,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskb68162315f\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" + "x-ms-request-id" : "059ba3b5-857d-4c40-9dbe-d597c7d7e115", + "Body" : "{\r\n \"name\": \"img85d5979955\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/images/img85d5979955\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk9b046337a1\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 110,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dske0c96327f1\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 110,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk7ff03921e0\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskfdd7493792?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk9b046337a1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:44 GMT", + "date" : "Mon, 18 May 2020 06:50:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14996", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d691112c-f16c-468d-9969-dfa132349ee5", + "x-ms-correlation-request-id" : "14c843a8-5515-4b42-95ce-19fa1cb20efe", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;999,Microsoft.Compute/DeleteDisks30Min;7993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085044Z:d691112c-f16c-468d-9969-dfa132349ee5", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/31a97408-3d70-418c-980f-12a98f7227e5?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;999,Microsoft.Compute/DeleteDisks30Min;7992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065015Z:14c843a8-5515-4b42-95ce-19fa1cb20efe", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/658f3a93-4413-49b3-a942-1883f4675953?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "31a97408-3d70-418c-980f-12a98f7227e5", + "x-ms-request-id" : "658f3a93-4413-49b3-a942-1883f4675953", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/31a97408-3d70-418c-980f-12a98f7227e5?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/658f3a93-4413-49b3-a942-1883f4675953?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/31a97408-3d70-418c-980f-12a98f7227e5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/658f3a93-4413-49b3-a942-1883f4675953?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:16 GMT", + "date" : "Mon, 18 May 2020 06:50:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10721", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dcd39d06-cdb9-4ff4-a8f7-62e854cdcf95", + "x-ms-correlation-request-id" : "87d3fdea-b4ea-44c9-b0d9-85fe04330605", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085116Z:dcd39d06-cdb9-4ff4-a8f7-62e854cdcf95", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399950", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065046Z:87d3fdea-b4ea-44c9-b0d9-85fe04330605", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "67882a0c-d6fd-415c-ae67-3f079f7be8e2", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:50:44.7326282+00:00\",\r\n \"endTime\": \"2020-03-05T08:50:44.8888827+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"31a97408-3d70-418c-980f-12a98f7227e5\"\r\n}" + "x-ms-request-id" : "637c62b6-1dfb-4a31-95bf-1ba5d51213be", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:50:14.9991274+00:00\",\r\n \"endTime\": \"2020-05-18T06:50:15.1866775+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"658f3a93-4413-49b3-a942-1883f4675953\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/31a97408-3d70-418c-980f-12a98f7227e5?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/658f3a93-4413-49b3-a942-1883f4675953?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:47 GMT", + "date" : "Mon, 18 May 2020 06:51:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10143", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cbc41dfe-4b5e-41b1-abe5-e3027115a64c", + "x-ms-correlation-request-id" : "0ce0ac9b-7e41-4e0e-8552-f7d1e809eab1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085147Z:cbc41dfe-4b5e-41b1-abe5-e3027115a64c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399949", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065117Z:0ce0ac9b-7e41-4e0e-8552-f7d1e809eab1", "cache-control" : "no-cache", - "x-ms-request-id" : "82548a54-cea3-4bf9-85fe-ae5e483c8860", + "x-ms-request-id" : "b1b4e8ec-9d12-4967-90af-13f8f0f9efd7", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskd7501122fb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dske0c96327f1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:47 GMT", + "date" : "Mon, 18 May 2020 06:51:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "938293c2-4546-4d40-9289-038542495a35", + "x-ms-correlation-request-id" : "f3795566-24e3-484d-ba97-4356b0b95883", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;996,Microsoft.Compute/DeleteDisks30Min;7990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085148Z:938293c2-4546-4d40-9289-038542495a35", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/90df67ef-a641-4583-bdc7-fd3580cba78b?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;998,Microsoft.Compute/DeleteDisks30Min;7991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065118Z:f3795566-24e3-484d-ba97-4356b0b95883", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1b8dfa0e-3c3b-4eaf-950d-4d59334be79a?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "90df67ef-a641-4583-bdc7-fd3580cba78b", + "x-ms-request-id" : "1b8dfa0e-3c3b-4eaf-950d-4d59334be79a", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/90df67ef-a641-4583-bdc7-fd3580cba78b?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1b8dfa0e-3c3b-4eaf-950d-4d59334be79a?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/90df67ef-a641-4583-bdc7-fd3580cba78b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1b8dfa0e-3c3b-4eaf-950d-4d59334be79a?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:18 GMT", + "date" : "Mon, 18 May 2020 06:51:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9864", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1d11f510-ada4-44f3-982d-2a2df0228b6e", + "x-ms-correlation-request-id" : "0619670f-1138-438d-9c32-701f9eb18cc2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085218Z:1d11f510-ada4-44f3-982d-2a2df0228b6e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399947", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065148Z:0619670f-1138-438d-9c32-701f9eb18cc2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5ffed759-ff15-4a2d-86c5-04de79fade69", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:51:48.3258987+00:00\",\r\n \"endTime\": \"2020-03-05T08:51:48.4978207+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"90df67ef-a641-4583-bdc7-fd3580cba78b\"\r\n}" + "x-ms-request-id" : "dc03bbb7-2136-4bd6-84f3-36e45ac0cf05", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:51:17.9211432+00:00\",\r\n \"endTime\": \"2020-05-18T06:51:18.0930183+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1b8dfa0e-3c3b-4eaf-950d-4d59334be79a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/90df67ef-a641-4583-bdc7-fd3580cba78b?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1b8dfa0e-3c3b-4eaf-950d-4d59334be79a?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:48 GMT", + "date" : "Mon, 18 May 2020 06:52:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9665", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6083c09b-7abb-4cb5-b7ce-ba0d4cd4fa79", + "x-ms-correlation-request-id" : "a314633b-4275-48d6-8f0d-5632cf962d42", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085248Z:6083c09b-7abb-4cb5-b7ce-ba0d4cd4fa79", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399946", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065219Z:a314633b-4275-48d6-8f0d-5632cf962d42", "cache-control" : "no-cache", - "x-ms-request-id" : "4a830f8c-2020-403f-9be1-5bfecce7a336", + "x-ms-request-id" : "67c1bedb-48bf-4642-a36a-73df3675661b", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/disks/dskb68162315f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/disks/dsk7ff03921e0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:49 GMT", + "date" : "Mon, 18 May 2020 06:52:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3303f304-ebeb-4330-984a-12eb3e85b40b", + "x-ms-correlation-request-id" : "45fa65e9-75de-4ab5-a826-e5098480615c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;995,Microsoft.Compute/DeleteDisks30Min;7989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085250Z:3303f304-ebeb-4330-984a-12eb3e85b40b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f09086fe-9683-4b3f-b460-837e85ecfc45?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;997,Microsoft.Compute/DeleteDisks30Min;7990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065221Z:45fa65e9-75de-4ab5-a826-e5098480615c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2acb4efa-2ab9-428a-8e0e-d7ed5697e786?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f09086fe-9683-4b3f-b460-837e85ecfc45", + "x-ms-request-id" : "2acb4efa-2ab9-428a-8e0e-d7ed5697e786", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f09086fe-9683-4b3f-b460-837e85ecfc45?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2acb4efa-2ab9-428a-8e0e-d7ed5697e786?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f09086fe-9683-4b3f-b460-837e85ecfc45?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2acb4efa-2ab9-428a-8e0e-d7ed5697e786?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:20 GMT", + "date" : "Mon, 18 May 2020 06:52:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9856", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eab39dc5-55ea-4632-be3e-a3294d270a7a", + "x-ms-correlation-request-id" : "36d66cc5-7205-420f-8eda-5ed95d4604c1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085321Z:eab39dc5-55ea-4632-be3e-a3294d270a7a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399944", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065251Z:36d66cc5-7205-420f-8eda-5ed95d4604c1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ec519abb-0433-4bb3-bea8-d99b542c36d9", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:52:50.1081711+00:00\",\r\n \"endTime\": \"2020-03-05T08:52:50.2644114+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f09086fe-9683-4b3f-b460-837e85ecfc45\"\r\n}" + "x-ms-request-id" : "73eb9a47-bae5-4db6-8215-7577aa335cf3", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:52:21.0774627+00:00\",\r\n \"endTime\": \"2020-05-18T06:52:21.2337369+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2acb4efa-2ab9-428a-8e0e-d7ed5697e786\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f09086fe-9683-4b3f-b460-837e85ecfc45?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2acb4efa-2ab9-428a-8e0e-d7ed5697e786?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:50 GMT", + "date" : "Mon, 18 May 2020 06:53:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10710", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2b4b9e94-9ec6-41fe-80f2-25bde92b8d0d", + "x-ms-correlation-request-id" : "be118b08-5925-4df9-9eba-632d1a18b54b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085351Z:2b4b9e94-9ec6-41fe-80f2-25bde92b8d0d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399943", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065322Z:be118b08-5925-4df9-9eba-632d1a18b54b", "cache-control" : "no-cache", - "x-ms-request-id" : "a04aa58f-368a-443c-9d56-af58f3e492fd", + "x-ms-request-id" : "fcb150f3-02b0-4203-ba3a-d63428fec4d4", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49578/providers/Microsoft.Compute/images/img439005211f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67641/providers/Microsoft.Compute/images/img85d5979955?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:52 GMT", + "date" : "Mon, 18 May 2020 06:53:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14993", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e0332c35-2af5-457b-a06b-5869626d11c6", + "x-ms-correlation-request-id" : "4c4a3926-97cb-42bb-ae4a-ba8a35411e7d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteImages3Min;119,Microsoft.Compute/DeleteImages30Min;599", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085352Z:e0332c35-2af5-457b-a06b-5869626d11c6", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c153d5b6-0187-46a5-b95a-415cd2611e0c?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065323Z:4c4a3926-97cb-42bb-ae4a-ba8a35411e7d", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1e00e7c4-fd4b-4cbc-a6f0-3e7a99822d76?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "c153d5b6-0187-46a5-b95a-415cd2611e0c", + "x-ms-request-id" : "1e00e7c4-fd4b-4cbc-a6f0-3e7a99822d76", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c153d5b6-0187-46a5-b95a-415cd2611e0c?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1e00e7c4-fd4b-4cbc-a6f0-3e7a99822d76?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c153d5b6-0187-46a5-b95a-415cd2611e0c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1e00e7c4-fd4b-4cbc-a6f0-3e7a99822d76?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:23 GMT", + "date" : "Mon, 18 May 2020 06:53:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "183", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10478", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "72298d31-4725-48fc-b98c-a74a10ef9839", + "x-ms-correlation-request-id" : "1a865d30-99ad-42a0-882c-73f69ef53b4b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29863", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085423Z:72298d31-4725-48fc-b98c-a74a10ef9839", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29984", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065354Z:1a865d30-99ad-42a0-882c-73f69ef53b4b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e6d5acba-fc93-47bd-82f7-af9982e17b21", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:53:52.4623399+00:00\",\r\n \"endTime\": \"2020-03-05T08:53:57.5717179+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c153d5b6-0187-46a5-b95a-415cd2611e0c\"\r\n}" + "x-ms-request-id" : "2e5bee48-1201-4341-80d2-a4a75cc93f6b", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:53:23.4723554+00:00\",\r\n \"endTime\": \"2020-05-18T06:53:28.581732+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1e00e7c4-fd4b-4cbc-a6f0-3e7a99822d76\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c153d5b6-0187-46a5-b95a-415cd2611e0c?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1e00e7c4-fd4b-4cbc-a6f0-3e7a99822d76?monitor=true&api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:53 GMT", + "date" : "Mon, 18 May 2020 06:54:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10738", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2b81d2bb-ff13-428b-86d4-b954ddac3e54", + "x-ms-correlation-request-id" : "47d2502f-a332-4575-8dd0-41c82081de46", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29860", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085454Z:2b81d2bb-ff13-428b-86d4-b954ddac3e54", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29983", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065425Z:47d2502f-a332-4575-8dd0-41c82081de46", "cache-control" : "no-cache", - "x-ms-request-id" : "9738490b-0b16-4201-a51a-6beef511b52f", + "x-ms-request-id" : "4ddf2183-894e-478e-8c22-74c2f19abf74", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg49578?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67641?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:59 GMT", + "date" : "Mon, 18 May 2020 06:54:29 GMT", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14995", + "x-ms-ratelimit-remaining-subscription-deletes" : "14996", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "df29a6bf-cb51-4de3-a104-b82d3744b08f", + "x-ms-correlation-request-id" : "79285d1c-9180-4d05-bd59-064a12afb08c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085459Z:df29a6bf-cb51-4de3-a104-b82d3744b08f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0OTU3OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065429Z:79285d1c-9180-4d05-bd59-064a12afb08c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzY0MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "df29a6bf-cb51-4de3-a104-b82d3744b08f", + "x-ms-request-id" : "79285d1c-9180-4d05-bd59-064a12afb08c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0OTU3OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzY0MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:55:30 GMT", + "date" : "Mon, 18 May 2020 06:55:00 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10364", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "53af81ab-d409-47ef-9007-2662af2ee9d5", + "x-ms-correlation-request-id" : "8979cedd-da2d-4766-8e61-476ae54e3eff", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085530Z:53af81ab-d409-47ef-9007-2662af2ee9d5", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0OTU3OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065501Z:8979cedd-da2d-4766-8e61-476ae54e3eff", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzY0MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "53af81ab-d409-47ef-9007-2662af2ee9d5", + "x-ms-request-id" : "8979cedd-da2d-4766-8e61-476ae54e3eff", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0OTU3OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzY0MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:56:01 GMT", + "date" : "Mon, 18 May 2020 06:55:31 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10337", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aab50dab-b3df-4bb8-86e1-3dbed79dd0d7", + "x-ms-correlation-request-id" : "69f5c664-8b64-4df7-ac37-f86330457906", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085601Z:aab50dab-b3df-4bb8-86e1-3dbed79dd0d7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0OTU3OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065532Z:69f5c664-8b64-4df7-ac37-f86330457906", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzY0MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "aab50dab-b3df-4bb8-86e1-3dbed79dd0d7", + "x-ms-request-id" : "69f5c664-8b64-4df7-ac37-f86330457906", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0OTU3OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzY0MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:56:32 GMT", + "date" : "Mon, 18 May 2020 06:56:03 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9999", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ce291c0f-120b-4589-a1c4-e9f138b9986b", + "x-ms-correlation-request-id" : "0b379d3c-c1ea-4071-93ab-c4576de5a6da", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085632Z:ce291c0f-120b-4589-a1c4-e9f138b9986b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0OTU3OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065603Z:0b379d3c-c1ea-4071-93ab-c4576de5a6da", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzY0MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ce291c0f-120b-4589-a1c4-e9f138b9986b", + "x-ms-request-id" : "0b379d3c-c1ea-4071-93ab-c4576de5a6da", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0OTU3OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzY0MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:03 GMT", + "date" : "Mon, 18 May 2020 06:56:35 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10885", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "affc2cf8-e955-49dc-b20d-a6687ec8a675", + "x-ms-correlation-request-id" : "8e74cd55-3847-4461-8526-ebb95935b85b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085703Z:affc2cf8-e955-49dc-b20d-a6687ec8a675", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0OTU3OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065635Z:8e74cd55-3847-4461-8526-ebb95935b85b", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzY0MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "affc2cf8-e955-49dc-b20d-a6687ec8a675", + "x-ms-request-id" : "8e74cd55-3847-4461-8526-ebb95935b85b", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0OTU3OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzY0MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:33 GMT", + "date" : "Mon, 18 May 2020 06:57:05 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10883", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a1abc17c-56b4-4b90-a064-aa41598aa052", + "x-ms-correlation-request-id" : "d2712170-23d7-4e77-be3b-df4ca0388b09", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085734Z:a1abc17c-56b4-4b90-a064-aa41598aa052", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065706Z:d2712170-23d7-4e77-be3b-df4ca0388b09", "cache-control" : "no-cache", - "x-ms-request-id" : "a1abc17c-56b4-4b90-a064-aa41598aa052", + "x-ms-request-id" : "d2712170-23d7-4e77-be3b-df4ca0388b09", "Body" : "" } } ], - "variables" : [ "javacsmrg49578", "vm7-180524324d71", "stga429212020e", "nic7243268f5c2", "vnet3367430e83", "vm219597bc3", "dskfdd7493792", "dskd7501122fb", "dskb68162315f", "img439005211f" ] + "variables" : [ "javacsmrg67641", "vm7-f44954430266", "stg8c219277079", "nic29856823ca0", "vnet8373800352", "vm96630070f", "dsk9b046337a1", "dske0c96327f1", "dsk7ff03921e0", "img85d5979955" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateGetDeleteGalleryImage.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateGetDeleteGalleryImage.json index 85d7743efe0f..1463805822f4 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateGetDeleteGalleryImage.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateGetDeleteGalleryImage.json @@ -1,497 +1,511 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg55798?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg01598?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:01 GMT", + "date" : "Mon, 18 May 2020 06:00:06 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "210124d2-bb7b-4d77-89ad-875d5ba7ab99", + "x-ms-correlation-request-id" : "0a72bbbc-717d-4141-8b58-67cf25e35522", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083701Z:210124d2-bb7b-4d77-89ad-875d5ba7ab99", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060007Z:0a72bbbc-717d-4141-8b58-67cf25e35522", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "210124d2-bb7b-4d77-89ad-875d5ba7ab99", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798\",\"name\":\"javacsmrg55798\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:36:56.471Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "0a72bbbc-717d-4141-8b58-67cf25e35522", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598\",\"name\":\"javacsmrg01598\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:00:03.972Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:04 GMT", + "date" : "Mon, 18 May 2020 06:00:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "475", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3f34f95b-0de8-4033-af33-3fad60d00498", + "x-ms-correlation-request-id" : "f72dcdaf-7869-4ca3-ab1e-d3ccb8b2dbb5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083705Z:3f34f95b-0de8-4033-af33-3fad60d00498", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060015Z:f72dcdaf-7869-4ca3-ab1e-d3ccb8b2dbb5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9f9528a7-8e61-43e1-bded-75f26aa332a6", - "Body" : "{\r\n \"name\": \"jsimff3882018\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JSIMFF3882018\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/9f9528a7-8e61-43e1-bded-75f26aa332a6?api-version=2019-03-01" + "x-ms-request-id" : "3ce429d9-8655-420e-99c8-594a592ef3d9", + "Body" : "{\r\n \"name\": \"jsim4e3719815\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JSIM4E3719815\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/3ce429d9-8655-420e-99c8-594a592ef3d9?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/9f9528a7-8e61-43e1-bded-75f26aa332a6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/3ce429d9-8655-420e-99c8-594a592ef3d9?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:35 GMT", + "date" : "Mon, 18 May 2020 06:00:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10434", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b0ed523a-9d5a-4dfe-9648-ad23d6ce7c66", + "x-ms-correlation-request-id" : "74e6a685-c265-465b-93f1-236e278cdf6b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083735Z:b0ed523a-9d5a-4dfe-9648-ad23d6ce7c66", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;2396", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060045Z:74e6a685-c265-465b-93f1-236e278cdf6b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ca23dcb5-0a57-4184-8f23-5a26d4b40580", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:37:04.0117375+00:00\",\r\n \"endTime\": \"2020-03-05T08:37:04.3555105+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9f9528a7-8e61-43e1-bded-75f26aa332a6\"\r\n}" + "x-ms-request-id" : "71a45925-4a16-4cca-8a0c-da1e861988ab", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:00:13.2864321+00:00\",\r\n \"endTime\": \"2020-05-18T06:00:14.0207634+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3ce429d9-8655-420e-99c8-594a592ef3d9\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:06 GMT", + "date" : "Mon, 18 May 2020 06:01:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "476", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9972", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cfcae4d2-08be-4159-8bed-3a0e48b23773", + "x-ms-correlation-request-id" : "3ae8a81d-188f-43ad-a5bb-5b281a719830", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetGallery3Min;296,Microsoft.Compute/GetGallery30Min;1974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083806Z:cfcae4d2-08be-4159-8bed-3a0e48b23773", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2492", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060116Z:3ae8a81d-188f-43ad-a5bb-5b281a719830", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7747f008-379a-4fea-9ce5-e3a2d2137858", - "Body" : "{\r\n \"name\": \"jsimff3882018\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JSIMFF3882018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "a09df7a5-9ec8-4a29-83bd-362f3168f172", + "Body" : "{\r\n \"name\": \"jsim4e3719815\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JSIM4E3719815\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:12 GMT", + "date" : "Mon, 18 May 2020 06:01:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "735", + "content-length" : "766", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3e77e929-8e27-4bab-835c-cede00551c3a", + "x-ms-correlation-request-id" : "b3011dfc-ca6a-4d18-8a96-0c8149ccfd5e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083812Z:3e77e929-8e27-4bab-835c-cede00551c3a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060122Z:b3011dfc-ca6a-4d18-8a96-0c8149ccfd5e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9a966f6f-6406-4238-9184-be1eabfc6523", - "Body" : "{\r\n \"name\": \"JavaImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"recommended\": {\r\n \"vCPUs\": {\r\n \"max\": 25\r\n },\r\n \"memory\": {\r\n \"max\": 3200\r\n }\r\n },\r\n \"disallowed\": {\r\n \"diskTypes\": [\r\n \"Standard_LRS\",\r\n \"Premium_LRS\"\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/9a966f6f-6406-4238-9184-be1eabfc6523?api-version=2019-03-01" + "x-ms-request-id" : "dfb47593-c927-4e02-8ac5-6bdded2799b9", + "Body" : "{\r\n \"name\": \"JavaImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"recommended\": {\r\n \"vCPUs\": {\r\n \"max\": 25\r\n },\r\n \"memory\": {\r\n \"max\": 3200\r\n }\r\n },\r\n \"disallowed\": {\r\n \"diskTypes\": [\r\n \"Standard_LRS\",\r\n \"Premium_LRS\"\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/dfb47593-c927-4e02-8ac5-6bdded2799b9?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/9a966f6f-6406-4238-9184-be1eabfc6523?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/dfb47593-c927-4e02-8ac5-6bdded2799b9?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:43 GMT", + "date" : "Mon, 18 May 2020 06:01:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10437", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2a94fb7b-2316-4e70-9f23-b2214f4dfa72", + "x-ms-correlation-request-id" : "9a67cd89-e9e7-4bf7-b6b8-1b8d24cdb317", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083843Z:2a94fb7b-2316-4e70-9f23-b2214f4dfa72", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;2393", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060153Z:9a67cd89-e9e7-4bf7-b6b8-1b8d24cdb317", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "733fc6d5-268c-4f68-9d2c-a72f7c62c5d0", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:38:11.2304978+00:00\",\r\n \"endTime\": \"2020-03-05T08:38:11.3398891+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9a966f6f-6406-4238-9184-be1eabfc6523\"\r\n}" + "x-ms-request-id" : "094b9cf2-3e55-492f-8440-2995559d2c85", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:01:20.5519811+00:00\",\r\n \"endTime\": \"2020-05-18T06:01:20.7706926+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dfb47593-c927-4e02-8ac5-6bdded2799b9\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:14 GMT", + "date" : "Mon, 18 May 2020 06:02:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "736", + "content-length" : "767", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10868", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e935d642-b3f9-4070-ae31-b894c0fb41c1", + "x-ms-correlation-request-id" : "1dc0ebbe-660a-4336-87da-7a0d33f7e8fa", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083914Z:e935d642-b3f9-4070-ae31-b894c0fb41c1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060223Z:1dc0ebbe-660a-4336-87da-7a0d33f7e8fa", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "010f7c2d-419e-4d09-898f-0bee5eabe61f", - "Body" : "{\r\n \"name\": \"JavaImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"recommended\": {\r\n \"vCPUs\": {\r\n \"max\": 25\r\n },\r\n \"memory\": {\r\n \"max\": 3200\r\n }\r\n },\r\n \"disallowed\": {\r\n \"diskTypes\": [\r\n \"Standard_LRS\",\r\n \"Premium_LRS\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "001ec8b1-5c5e-4f69-b50d-87d8763dc9be", + "Body" : "{\r\n \"name\": \"JavaImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"recommended\": {\r\n \"vCPUs\": {\r\n \"max\": 25\r\n },\r\n \"memory\": {\r\n \"max\": 3200\r\n }\r\n },\r\n \"disallowed\": {\r\n \"diskTypes\": [\r\n \"Standard_LRS\",\r\n \"Premium_LRS\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:15 GMT", + "date" : "Mon, 18 May 2020 06:02:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "753", + "content-length" : "784", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a3bcb423-e24b-482e-8538-01f8e81d9d66", + "x-ms-correlation-request-id" : "f1d9ed51-5c72-47b2-8816-02dda7d71c26", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083915Z:a3bcb423-e24b-482e-8538-01f8e81d9d66", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060224Z:f1d9ed51-5c72-47b2-8816-02dda7d71c26", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "595c26e3-d797-4eb4-ac39-3867090ce232", - "Body" : "{\r\n \"name\": \"JavaImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"recommended\": {\r\n \"vCPUs\": {\r\n \"min\": 15,\r\n \"max\": 25\r\n },\r\n \"memory\": {\r\n \"min\": 2200,\r\n \"max\": 3200\r\n }\r\n },\r\n \"disallowed\": {\r\n \"diskTypes\": [\r\n \"Standard_LRS\"\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/595c26e3-d797-4eb4-ac39-3867090ce232?api-version=2019-03-01" + "x-ms-request-id" : "adfd3857-b516-4902-bd3b-349efb82d573", + "Body" : "{\r\n \"name\": \"JavaImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"recommended\": {\r\n \"vCPUs\": {\r\n \"min\": 15,\r\n \"max\": 25\r\n },\r\n \"memory\": {\r\n \"min\": 2200,\r\n \"max\": 3200\r\n }\r\n },\r\n \"disallowed\": {\r\n \"diskTypes\": [\r\n \"Standard_LRS\"\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/adfd3857-b516-4902-bd3b-349efb82d573?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:45 GMT", + "date" : "Mon, 18 May 2020 06:02:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "754", + "content-length" : "785", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10544", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3c7b7892-e8f0-4c54-8dc0-364a23ba707b", + "x-ms-correlation-request-id" : "5a86c11d-4533-48d9-bce6-562c0a1f8fe1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083946Z:3c7b7892-e8f0-4c54-8dc0-364a23ba707b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060255Z:5a86c11d-4533-48d9-bce6-562c0a1f8fe1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8896de28-3624-49ac-ab40-7d85c8ab4c2d", - "Body" : "{\r\n \"name\": \"JavaImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"recommended\": {\r\n \"vCPUs\": {\r\n \"min\": 15,\r\n \"max\": 25\r\n },\r\n \"memory\": {\r\n \"min\": 2200,\r\n \"max\": 3200\r\n }\r\n },\r\n \"disallowed\": {\r\n \"diskTypes\": [\r\n \"Standard_LRS\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "02772a70-f55d-471e-a130-04d1dcc84fe9", + "Body" : "{\r\n \"name\": \"JavaImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"recommended\": {\r\n \"vCPUs\": {\r\n \"min\": 15,\r\n \"max\": 25\r\n },\r\n \"memory\": {\r\n \"min\": 2200,\r\n \"max\": 3200\r\n }\r\n },\r\n \"disallowed\": {\r\n \"diskTypes\": [\r\n \"Standard_LRS\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:17 GMT", - "content-length" : "543", + "date" : "Mon, 18 May 2020 06:03:25 GMT", + "content-length" : "567", "expires" : "-1", - "x-ms-original-request-ids" : "3f5cd68e-4c49-4cdf-bf3d-449208ef81a7", + "x-ms-original-request-ids" : "6466899e-0e33-489c-a0ad-3b41c1d2c870", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10540", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ad04ef63-46ca-4cc2-bba3-b3c20f189bdb", + "x-ms-correlation-request-id" : "65b9e94e-275a-4315-a575-50c482aeca79", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084017Z:ad04ef63-46ca-4cc2-bba3-b3c20f189bdb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060326Z:65b9e94e-275a-4315-a575-50c482aeca79", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ad04ef63-46ca-4cc2-bba3-b3c20f189bdb", - "Body" : "{\"value\":[{\"name\":\"JavaImages\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages\",\"type\":\"Microsoft.Compute/galleries/images\",\"location\":\"westcentralus\",\"properties\":{\"osType\":\"Windows\",\"osState\":\"Generalized\",\"identifier\":{\"publisher\":\"JavaSDKTeam\",\"offer\":\"JDK\",\"sku\":\"Jdk-9\"},\"recommended\":{\"vCPUs\":{\"min\":15,\"max\":25},\"memory\":{\"min\":2200,\"max\":3200}},\"disallowed\":{\"diskTypes\":[\"Standard_LRS\"]},\"provisioningState\":\"Succeeded\"}}]}" + "x-ms-request-id" : "65b9e94e-275a-4315-a575-50c482aeca79", + "Body" : "{\"value\":[{\"name\":\"JavaImages\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages\",\"type\":\"Microsoft.Compute/galleries/images\",\"location\":\"westcentralus\",\"properties\":{\"hyperVGeneration\":\"V1\",\"osType\":\"Windows\",\"osState\":\"Generalized\",\"identifier\":{\"publisher\":\"JavaSDKTeam\",\"offer\":\"JDK\",\"sku\":\"Jdk-9\"},\"recommended\":{\"vCPUs\":{\"min\":15,\"max\":25},\"memory\":{\"min\":2200,\"max\":3200}},\"disallowed\":{\"diskTypes\":[\"Standard_LRS\"]},\"provisioningState\":\"Succeeded\"}}]}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:16 GMT", + "date" : "Mon, 18 May 2020 06:03:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "754", + "content-length" : "785", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10086", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "af84e614-e67e-4d5f-8fa9-b53eea0687a3", + "x-ms-correlation-request-id" : "bda12b9e-6a76-4992-a53b-d30920518846", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084017Z:af84e614-e67e-4d5f-8fa9-b53eea0687a3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetGalleryImage3Min;589,Microsoft.Compute/GetGalleryImage30Min;2989", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060326Z:bda12b9e-6a76-4992-a53b-d30920518846", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c2aed194-30d7-4079-9ad0-7cac11725b81", - "Body" : "{\r\n \"name\": \"JavaImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"recommended\": {\r\n \"vCPUs\": {\r\n \"min\": 15,\r\n \"max\": 25\r\n },\r\n \"memory\": {\r\n \"min\": 2200,\r\n \"max\": 3200\r\n }\r\n },\r\n \"disallowed\": {\r\n \"diskTypes\": [\r\n \"Standard_LRS\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "84eae075-7959-4e8e-b242-25d62b0ff057", + "Body" : "{\r\n \"name\": \"JavaImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"recommended\": {\r\n \"vCPUs\": {\r\n \"min\": 15,\r\n \"max\": 25\r\n },\r\n \"memory\": {\r\n \"min\": 2200,\r\n \"max\": 3200\r\n }\r\n },\r\n \"disallowed\": {\r\n \"diskTypes\": [\r\n \"Standard_LRS\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55798/providers/Microsoft.Compute/galleries/jsimff3882018/images/JavaImages?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01598/providers/Microsoft.Compute/galleries/jsim4e3719815/images/JavaImages?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:18 GMT", + "date" : "Mon, 18 May 2020 06:03:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b3bfb004-0a49-4e33-9a62-3dd51450400e", + "x-ms-correlation-request-id" : "bf356f00-cc99-413c-ad10-dabb3cd41d35", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084019Z:b3bfb004-0a49-4e33-9a62-3dd51450400e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/3869e17b-2f48-4761-8a7c-1f9f100db3bf?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060328Z:bf356f00-cc99-413c-ad10-dabb3cd41d35", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/25d6208d-3a02-4ce8-8dc2-c514c294923e?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "3869e17b-2f48-4761-8a7c-1f9f100db3bf", + "x-ms-request-id" : "25d6208d-3a02-4ce8-8dc2-c514c294923e", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/3869e17b-2f48-4761-8a7c-1f9f100db3bf?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/25d6208d-3a02-4ce8-8dc2-c514c294923e?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/3869e17b-2f48-4761-8a7c-1f9f100db3bf?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/25d6208d-3a02-4ce8-8dc2-c514c294923e?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:49 GMT", + "date" : "Mon, 18 May 2020 06:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "182", + "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10081", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9006af02-1538-48fe-9cf2-6e66114ff600", + "x-ms-correlation-request-id" : "0502fcb3-8f9d-4c1f-902c-9e01f02c1b2c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084049Z:9006af02-1538-48fe-9cf2-6e66114ff600", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;2388", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060359Z:0502fcb3-8f9d-4c1f-902c-9e01f02c1b2c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ffc4cecd-c6ce-47c5-a060-2ef23b75aff3", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:18.90165+00:00\",\r\n \"endTime\": \"2020-03-05T08:40:19.0422977+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3869e17b-2f48-4761-8a7c-1f9f100db3bf\"\r\n}" + "x-ms-request-id" : "9a158c9e-487b-46ee-80aa-2a89f6ea3af7", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:03:28.3955883+00:00\",\r\n \"endTime\": \"2020-05-18T06:03:28.8330668+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"25d6208d-3a02-4ce8-8dc2-c514c294923e\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/3869e17b-2f48-4761-8a7c-1f9f100db3bf?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/25d6208d-3a02-4ce8-8dc2-c514c294923e?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:19 GMT", + "date" : "Mon, 18 May 2020 06:04:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10404", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "26bdf9a3-d048-4397-bea9-8512f86e554f", + "x-ms-correlation-request-id" : "d69fa349-d85b-47c9-9b54-42da56060027", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084120Z:26bdf9a3-d048-4397-bea9-8512f86e554f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;2387", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060429Z:d69fa349-d85b-47c9-9b54-42da56060027", "cache-control" : "no-cache", - "x-ms-request-id" : "180c2f90-e66f-4359-abb3-8892a8244755", + "x-ms-request-id" : "6e0c7b88-b67d-4b3c-8472-07125f52e261", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg55798?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg01598?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:23 GMT", + "date" : "Mon, 18 May 2020 06:04:33 GMT", "content-length" : "0", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8f0601e5-f58b-4c76-9e57-938cd83a9a7d", + "x-ms-correlation-request-id" : "d1d3d4c5-86ee-4b77-b4bd-0aee338c2db0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084123Z:8f0601e5-f58b-4c76-9e57-938cd83a9a7d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTc5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060434Z:d1d3d4c5-86ee-4b77-b4bd-0aee338c2db0", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMTU5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "8f0601e5-f58b-4c76-9e57-938cd83a9a7d", + "x-ms-request-id" : "d1d3d4c5-86ee-4b77-b4bd-0aee338c2db0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTc5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMTU5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:54 GMT", + "date" : "Mon, 18 May 2020 06:05:05 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10529", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a9b68b2d-6bdb-434a-89e6-42d26fc582b7", + "x-ms-correlation-request-id" : "4a3c72a8-8951-4f50-b48b-e22d07bcd7eb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084154Z:a9b68b2d-6bdb-434a-89e6-42d26fc582b7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTc5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060505Z:4a3c72a8-8951-4f50-b48b-e22d07bcd7eb", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMTU5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a9b68b2d-6bdb-434a-89e6-42d26fc582b7", + "x-ms-request-id" : "4a3c72a8-8951-4f50-b48b-e22d07bcd7eb", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTc5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMTU5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:25 GMT", + "date" : "Mon, 18 May 2020 06:05:35 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10758", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "63e702e7-0deb-4a67-9b84-51ed2e799b2b", + "x-ms-correlation-request-id" : "b0382a05-eb36-4ae8-bcd0-0fef71617a8e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084225Z:63e702e7-0deb-4a67-9b84-51ed2e799b2b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTc5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060536Z:b0382a05-eb36-4ae8-bcd0-0fef71617a8e", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMTU5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "63e702e7-0deb-4a67-9b84-51ed2e799b2b", + "x-ms-request-id" : "b0382a05-eb36-4ae8-bcd0-0fef71617a8e", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTc5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMTU5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:56 GMT", + "date" : "Mon, 18 May 2020 06:06:07 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9929", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1c4e3e46-41ab-4b6f-ae7a-7f844c41632e", + "x-ms-correlation-request-id" : "4af64955-7728-4d5b-9d75-dc4cbebafbac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084256Z:1c4e3e46-41ab-4b6f-ae7a-7f844c41632e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTc5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060608Z:4af64955-7728-4d5b-9d75-dc4cbebafbac", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMTU5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "1c4e3e46-41ab-4b6f-ae7a-7f844c41632e", + "x-ms-request-id" : "4af64955-7728-4d5b-9d75-dc4cbebafbac", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTc5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMTU5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:27 GMT", + "date" : "Mon, 18 May 2020 06:06:38 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10071", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c23688d7-5979-4a59-bbb1-5b29c0649ae1", + "x-ms-correlation-request-id" : "0e7c6422-1edd-424d-b621-6c43d716cabd", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084327Z:c23688d7-5979-4a59-bbb1-5b29c0649ae1", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTc5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060639Z:0e7c6422-1edd-424d-b621-6c43d716cabd", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMTU5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "c23688d7-5979-4a59-bbb1-5b29c0649ae1", + "x-ms-request-id" : "0e7c6422-1edd-424d-b621-6c43d716cabd", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTc5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMTU5OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:57 GMT", + "date" : "Mon, 18 May 2020 06:07:10 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10177", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "64b47e74-1afa-4a82-b45f-2f874a0f1e6f", + "x-ms-correlation-request-id" : "8d8b05f4-1e13-4d55-920c-0125548ef532", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084358Z:64b47e74-1afa-4a82-b45f-2f874a0f1e6f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060710Z:8d8b05f4-1e13-4d55-920c-0125548ef532", "cache-control" : "no-cache", - "x-ms-request-id" : "64b47e74-1afa-4a82-b45f-2f874a0f1e6f", + "x-ms-request-id" : "8d8b05f4-1e13-4d55-920c-0125548ef532", "Body" : "" } } ], - "variables" : [ "javacsmrg55798", "jsimff3882018" ] + "variables" : [ "javacsmrg01598", "jsim4e3719815" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateListGetDeleteGallery.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateListGetDeleteGallery.json index 9c19241fdf65..5c9351d473ea 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateListGetDeleteGallery.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateListGetDeleteGallery.json @@ -1,331 +1,338 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg62550?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg85223?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:41 GMT", + "date" : "Mon, 18 May 2020 06:00:06 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "24d6651a-3d1f-42c1-bc55-411444c31b05", + "x-ms-correlation-request-id" : "9848d8a9-b73c-46bc-9661-e0566b15968a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083742Z:24d6651a-3d1f-42c1-bc55-411444c31b05", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060007Z:9848d8a9-b73c-46bc-9661-e0566b15968a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "24d6651a-3d1f-42c1-bc55-411444c31b05", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg62550\",\"name\":\"javacsmrg62550\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:37:28.394Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "9848d8a9-b73c-46bc-9661-e0566b15968a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg85223\",\"name\":\"javacsmrg85223\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:00:03.996Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg62550/providers/Microsoft.Compute/galleries/JavaImageGallery?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg85223/providers/Microsoft.Compute/galleries/JavaImageGallery?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:16 GMT", + "date" : "Mon, 18 May 2020 06:00:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "484", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a115824a-86bf-4afd-933d-b51045648b17", + "x-ms-correlation-request-id" : "b95ac4bb-23e1-437a-ac4f-a5a7d74244bb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083816Z:a115824a-86bf-4afd-933d-b51045648b17", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060014Z:b95ac4bb-23e1-437a-ac4f-a5a7d74244bb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a9c33b5c-1d38-4073-bfed-043eb7e83709", - "Body" : "{\r\n \"name\": \"JavaImageGallery\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg62550/providers/Microsoft.Compute/galleries/JavaImageGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JAVAIMAGEGALLERY\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/a9c33b5c-1d38-4073-bfed-043eb7e83709?api-version=2019-03-01" + "x-ms-request-id" : "c1862e03-90f7-4b38-80ff-a34f929ffb6a", + "Body" : "{\r\n \"name\": \"JavaImageGallery\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg85223/providers/Microsoft.Compute/galleries/JavaImageGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JAVAIMAGEGALLERY\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/c1862e03-90f7-4b38-80ff-a34f929ffb6a?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/a9c33b5c-1d38-4073-bfed-043eb7e83709?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/c1862e03-90f7-4b38-80ff-a34f929ffb6a?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:46 GMT", + "date" : "Mon, 18 May 2020 06:00:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", + "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10220", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b806beb3-982b-45cc-a4d6-e6aa18a309d3", + "x-ms-correlation-request-id" : "584653b8-8dd3-4964-81eb-7fdf41651fa9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083847Z:b806beb3-982b-45cc-a4d6-e6aa18a309d3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;2397", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060045Z:584653b8-8dd3-4964-81eb-7fdf41651fa9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "11ec5d0e-45c5-49d6-a197-7b3306af5fca", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:38:14.5117558+00:00\",\r\n \"endTime\": \"2020-03-05T08:38:14.605486+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a9c33b5c-1d38-4073-bfed-043eb7e83709\"\r\n}" + "x-ms-request-id" : "8c02e908-8b3e-4867-84f6-d1811430bb1a", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:00:12.8957851+00:00\",\r\n \"endTime\": \"2020-05-18T06:00:14.0207634+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c1862e03-90f7-4b38-80ff-a34f929ffb6a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg62550/providers/Microsoft.Compute/galleries/JavaImageGallery?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg85223/providers/Microsoft.Compute/galleries/JavaImageGallery?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:17 GMT", + "date" : "Mon, 18 May 2020 06:01:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "485", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10431", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2aa1dc3d-2589-4fa5-b24a-a187a52c47bf", + "x-ms-correlation-request-id" : "1c139fb9-e131-4ae8-99b6-5f285df327bd", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetGallery3Min;291,Microsoft.Compute/GetGallery30Min;1969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083917Z:2aa1dc3d-2589-4fa5-b24a-a187a52c47bf", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2493", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060115Z:1c139fb9-e131-4ae8-99b6-5f285df327bd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d9c14ef4-dfaf-413d-8586-77cf86db1d33", - "Body" : "{\r\n \"name\": \"JavaImageGallery\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg62550/providers/Microsoft.Compute/galleries/JavaImageGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JAVAIMAGEGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "0a3f5a6b-588e-402c-84b6-7a626eb8db8f", + "Body" : "{\r\n \"name\": \"JavaImageGallery\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg85223/providers/Microsoft.Compute/galleries/JavaImageGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JAVAIMAGEGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg62550/providers/Microsoft.Compute/galleries/JavaImageGallery?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg85223/providers/Microsoft.Compute/galleries/JavaImageGallery?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:23 GMT", + "date" : "Mon, 18 May 2020 06:01:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "519", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6720ceeb-ffb8-499f-9d2e-36f366a36cdf", + "x-ms-correlation-request-id" : "a6a22ff8-ed2b-4edd-89e2-f543ecf796d5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;295", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083924Z:6720ceeb-ffb8-499f-9d2e-36f366a36cdf", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;297", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060120Z:a6a22ff8-ed2b-4edd-89e2-f543ecf796d5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a441c893-f25f-43ab-bdd4-abf108938161", - "Body" : "{\r\n \"name\": \"JavaImageGallery\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg62550/providers/Microsoft.Compute/galleries/JavaImageGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"jdk\": \"openjdk\"\r\n },\r\n \"properties\": {\r\n \"description\": \"updated java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JAVAIMAGEGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/a441c893-f25f-43ab-bdd4-abf108938161?api-version=2019-03-01" + "x-ms-request-id" : "ab59a215-9e80-4b44-90e6-1f62e5b8e556", + "Body" : "{\r\n \"name\": \"JavaImageGallery\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg85223/providers/Microsoft.Compute/galleries/JavaImageGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"jdk\": \"openjdk\"\r\n },\r\n \"properties\": {\r\n \"description\": \"updated java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JAVAIMAGEGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/ab59a215-9e80-4b44-90e6-1f62e5b8e556?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg62550/providers/Microsoft.Compute/galleries?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg85223/providers/Microsoft.Compute/galleries?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:24 GMT", + "date" : "Mon, 18 May 2020 06:01:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "608", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10866", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a3eabcb4-7740-4ff9-aa23-0724564bfdd3", + "x-ms-correlation-request-id" : "dae7b64f-97fa-4267-b205-ca9db917a94c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListGalleryInResourceGroup3Min;99,Microsoft.Compute/ListGalleryInResourceGroup30Min;999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083924Z:a3eabcb4-7740-4ff9-aa23-0724564bfdd3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060121Z:dae7b64f-97fa-4267-b205-ca9db917a94c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "aa45331a-4110-4564-8556-d8f968d6d2d6", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"JavaImageGallery\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG62550/providers/Microsoft.Compute/galleries/JavaImageGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"jdk\": \"openjdk\"\r\n },\r\n \"properties\": {\r\n \"description\": \"updated java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JAVAIMAGEGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "58005659-3d10-4af0-895f-090649faf9a0", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"JavaImageGallery\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG85223/providers/Microsoft.Compute/galleries/JavaImageGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"jdk\": \"openjdk\"\r\n },\r\n \"properties\": {\r\n \"description\": \"updated java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JAVAIMAGEGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/galleries?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/galleries?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:24 GMT", + "date" : "Mon, 18 May 2020 06:01:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1143", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10865", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "804dbced-d3ee-45e9-8a1c-cf080f7af6db", + "x-ms-correlation-request-id" : "e223e4bd-eb57-4172-9876-bc785f12b62d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListGalleryInSubscription3Min;99,Microsoft.Compute/ListGalleryInSubscription30Min;999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083924Z:804dbced-d3ee-45e9-8a1c-cf080f7af6db", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060121Z:e223e4bd-eb57-4172-9876-bc785f12b62d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8b7385ef-21e3-49f5-89e3-96ffd58fab15", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"jsimff3882018\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG55798/providers/Microsoft.Compute/galleries/jsimff3882018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JSIMFF3882018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"JavaImageGallery\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG62550/providers/Microsoft.Compute/galleries/JavaImageGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"jdk\": \"openjdk\"\r\n },\r\n \"properties\": {\r\n \"description\": \"updated java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JAVAIMAGEGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "33207670-aaaa-4063-8085-c60732912f2f", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"jsim4e3719815\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG01598/providers/Microsoft.Compute/galleries/jsim4e3719815\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JSIM4E3719815\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"JavaImageGallery\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG85223/providers/Microsoft.Compute/galleries/JavaImageGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"jdk\": \"openjdk\"\r\n },\r\n \"properties\": {\r\n \"description\": \"updated java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JAVAIMAGEGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg62550/providers/Microsoft.Compute/galleries/JavaImageGallery?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg85223/providers/Microsoft.Compute/galleries/JavaImageGallery?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:26 GMT", + "date" : "Mon, 18 May 2020 06:01:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fe196d35-4c56-4e86-85c9-685939e00860", + "x-ms-correlation-request-id" : "7550281e-cefd-4c38-bf5c-6d2b160fd5f2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;297", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083926Z:fe196d35-4c56-4e86-85c9-685939e00860", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/725e9c5c-55eb-44b8-b3dd-f24508de6563?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060123Z:7550281e-cefd-4c38-bf5c-6d2b160fd5f2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/d70da5a6-8cad-4f23-a151-2f3d01563f4d?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "725e9c5c-55eb-44b8-b3dd-f24508de6563", + "x-ms-request-id" : "d70da5a6-8cad-4f23-a151-2f3d01563f4d", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/725e9c5c-55eb-44b8-b3dd-f24508de6563?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/d70da5a6-8cad-4f23-a151-2f3d01563f4d?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/725e9c5c-55eb-44b8-b3dd-f24508de6563?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/d70da5a6-8cad-4f23-a151-2f3d01563f4d?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:56 GMT", + "date" : "Mon, 18 May 2020 06:01:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10571", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "78c316e7-f28a-41c1-9b0a-429e8b53ab45", + "x-ms-correlation-request-id" : "8be47a87-897d-49ab-a07d-697dc6d4c579", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083956Z:78c316e7-f28a-41c1-9b0a-429e8b53ab45", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;2392", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060153Z:8be47a87-897d-49ab-a07d-697dc6d4c579", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0a8b06cb-59e8-4a9e-a407-aff41c26a1fb", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:26.0738399+00:00\",\r\n \"endTime\": \"2020-03-05T08:39:26.2457171+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"725e9c5c-55eb-44b8-b3dd-f24508de6563\"\r\n}" + "x-ms-request-id" : "621523b1-2ba9-45fe-929c-23636fa1d9fa", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:01:22.3488119+00:00\",\r\n \"endTime\": \"2020-05-18T06:01:23.0050842+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d70da5a6-8cad-4f23-a151-2f3d01563f4d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/725e9c5c-55eb-44b8-b3dd-f24508de6563?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/d70da5a6-8cad-4f23-a151-2f3d01563f4d?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:27 GMT", + "date" : "Mon, 18 May 2020 06:02:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555,3d1b70e0-80c1-42d3-8289-132ab8f818d5_131844983401017555", + "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167,3d1b70e0-80c1-42d3-8289-132ab8f818d5_132168765960585167", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9739", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0d2a22f8-ec72-4369-b6ed-98a4f1084966", + "x-ms-correlation-request-id" : "d641df6d-c195-45a0-bf66-89b9f93f0e3e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084027Z:0d2a22f8-ec72-4369-b6ed-98a4f1084966", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;2391", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060224Z:d641df6d-c195-45a0-bf66-89b9f93f0e3e", "cache-control" : "no-cache", - "x-ms-request-id" : "d48fa2b7-def2-4d95-b4cb-13c8ac6df6f6", + "x-ms-request-id" : "cc83eb5b-b00d-4f6e-a47c-2e2bd827614d", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg62550?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg85223?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:32 GMT", + "date" : "Mon, 18 May 2020 06:02:27 GMT", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6b8cecf8-2b5a-410a-b6d3-91cda7c8129d", + "x-ms-correlation-request-id" : "885e6fb4-7939-476a-8d6f-6896ec34c364", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084033Z:6b8cecf8-2b5a-410a-b6d3-91cda7c8129d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2MjU1MC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060228Z:885e6fb4-7939-476a-8d6f-6896ec34c364", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NTIyMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "6b8cecf8-2b5a-410a-b6d3-91cda7c8129d", + "x-ms-request-id" : "885e6fb4-7939-476a-8d6f-6896ec34c364", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2MjU1MC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NTIyMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:03 GMT", + "date" : "Mon, 18 May 2020 06:02:59 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10424", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9b449717-e03d-4fef-8a0b-faa9ffbe8d66", + "x-ms-correlation-request-id" : "5ea446f5-7611-4ffc-a737-94b55aa5fb0c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084103Z:9b449717-e03d-4fef-8a0b-faa9ffbe8d66", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2MjU1MC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060259Z:5ea446f5-7611-4ffc-a737-94b55aa5fb0c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NTIyMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "9b449717-e03d-4fef-8a0b-faa9ffbe8d66", + "x-ms-request-id" : "5ea446f5-7611-4ffc-a737-94b55aa5fb0c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2MjU1MC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NTIyMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:34 GMT", + "date" : "Mon, 18 May 2020 06:03:30 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10189", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8957513a-43bd-4196-aed1-df34af310e7e", + "x-ms-correlation-request-id" : "eaeda6aa-f298-4bc6-8b1c-f6443b89c0cb", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084134Z:8957513a-43bd-4196-aed1-df34af310e7e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060330Z:eaeda6aa-f298-4bc6-8b1c-f6443b89c0cb", "cache-control" : "no-cache", - "x-ms-request-id" : "8957513a-43bd-4196-aed1-df34af310e7e", + "x-ms-request-id" : "eaeda6aa-f298-4bc6-8b1c-f6443b89c0cb", "Body" : "" } } ], - "variables" : [ "javacsmrg62550" ] + "variables" : [ "javacsmrg85223" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateVirtualMachineScaleSetFromPIRWithManagedDisk.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateVirtualMachineScaleSetFromPIRWithManagedDisk.json index 248ca7ec070b..ffb2782540ca 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateVirtualMachineScaleSetFromPIRWithManagedDisk.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateVirtualMachineScaleSetFromPIRWithManagedDisk.json @@ -1,1211 +1,1384 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg82769?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg09426?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:36:59 GMT", + "date" : "Mon, 18 May 2020 07:28:00 GMT", "content-length" : "309", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "16fa1570-6915-421d-85ab-afd65873f2fb", + "x-ms-correlation-request-id" : "8666eb85-427b-45b2-8c27-bc9683a587bf", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083700Z:16fa1570-6915-421d-85ab-afd65873f2fb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072801Z:8666eb85-427b-45b2-8c27-bc9683a587bf", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "16fa1570-6915-421d-85ab-afd65873f2fb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769\",\"name\":\"javacsmrg82769\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-03-05T08:36:56.300Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "8666eb85-427b-45b2-8c27-bc9683a587bf", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426\",\"name\":\"javacsmrg09426\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-05-18T07:27:59.653Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:06 GMT", + "date" : "Mon, 18 May 2020 07:28:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1342", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "41560181-3cce-4981-ae0d-170fdd425a88", + "x-ms-correlation-request-id" : "997d531f-5787-4323-bab2-9149e4b9b9f6", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "eed6f319-d0e0-473d-b67e-cf16d3bcd03b", + "x-ms-arm-service-request-id" : "eb701949-910d-4939-b1e5-190a079a2360", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083707Z:41560181-3cce-4981-ae0d-170fdd425a88", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072810Z:997d531f-5787-4323-bab2-9149e4b9b9f6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "236c70b5-cb48-44d4-9548-0df73e627812", - "Body" : "{\r\n \"name\": \"vmssvnet95451c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c\",\r\n \"etag\": \"W/\\\"aa81e63f-a04a-4d53-9683-c8b4f75f3b49\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a6072c1e-5258-4c16-9416-cfc09d10eb3f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"aa81e63f-a04a-4d53-9683-c8b4f75f3b49\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/236c70b5-cb48-44d4-9548-0df73e627812?api-version=2019-06-01" + "x-ms-request-id" : "93fe014d-196a-42a4-aa21-1aef2954004f", + "Body" : "{\r\n \"name\": \"vmssvnet008399\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399\",\r\n \"etag\": \"W/\\\"5730d39b-a025-43cc-bea2-1e51b11a8ced\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b77ebd40-92c0-4297-995d-febf767ebbd7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5730d39b-a025-43cc-bea2-1e51b11a8ced\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/93fe014d-196a-42a4-aa21-1aef2954004f?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/236c70b5-cb48-44d4-9548-0df73e627812?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/93fe014d-196a-42a4-aa21-1aef2954004f?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:37 GMT", + "date" : "Mon, 18 May 2020 07:28:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10107", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "11e838ea-da08-4dfb-ad0d-ba3308ed9f12", + "x-ms-correlation-request-id" : "fd9bda31-f53f-4e89-b793-33b49624baf6", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6dc5980d-81db-43d1-8fb5-f4b6e017bf1b", + "x-ms-arm-service-request-id" : "632fd275-7a47-441a-a5b2-c4b4a0616378", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083738Z:11e838ea-da08-4dfb-ad0d-ba3308ed9f12", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072841Z:fd9bda31-f53f-4e89-b793-33b49624baf6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "93717234-06c7-4c5f-9b98-a146946acdc4", + "x-ms-request-id" : "d24646de-4d60-40e0-a3b4-9c32d397d603", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:08 GMT", + "date" : "Mon, 18 May 2020 07:29:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1344", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10206", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0cdd39bf-971d-42be-88d2-8e91c4582849", + "x-ms-correlation-request-id" : "fbb877bc-f696-4d06-a9f7-d210b72414a8", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5282a94c-44a1-4ead-b720-cb0620bbc236", + "x-ms-arm-service-request-id" : "9fd5aea7-f945-420d-b96f-a33f4402d62c", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083808Z:0cdd39bf-971d-42be-88d2-8e91c4582849", - "etag" : "W/\"68033475-d5c1-498f-b50c-9374cb750dbd\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072912Z:fbb877bc-f696-4d06-a9f7-d210b72414a8", + "etag" : "W/\"da212451-62c6-4849-839b-61868c19defe\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "600ee012-c632-4ed9-add1-2c1230873a74", - "Body" : "{\r\n \"name\": \"vmssvnet95451c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c\",\r\n \"etag\": \"W/\\\"68033475-d5c1-498f-b50c-9374cb750dbd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a6072c1e-5258-4c16-9416-cfc09d10eb3f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"68033475-d5c1-498f-b50c-9374cb750dbd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "7a1752b3-e37d-4da7-8ac2-4c8e7a55c30c", + "Body" : "{\r\n \"name\": \"vmssvnet008399\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399\",\r\n \"etag\": \"W/\\\"da212451-62c6-4849-839b-61868c19defe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b77ebd40-92c0-4297-995d-febf767ebbd7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\",\r\n \"etag\": \"W/\\\"da212451-62c6-4849-839b-61868c19defe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-e2f85294a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-d45801352?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:15 GMT", + "date" : "Mon, 18 May 2020 07:29:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "786", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "822510de-0d91-4be5-8095-c6118b604071", + "x-ms-correlation-request-id" : "d073761a-67fc-4c5a-9a3f-e604f6f32ac2", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0fde5f35-b542-42dd-8603-2b1d67a8f75b", + "x-ms-arm-service-request-id" : "54752b1b-1c88-492b-8e3c-0d3f1958fdbd", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083815Z:822510de-0d91-4be5-8095-c6118b604071", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072921Z:d073761a-67fc-4c5a-9a3f-e604f6f32ac2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "439edb7b-68d4-4499-92d0-93e47112d948", - "Body" : "{\r\n \"name\": \"pip-extlb1-e2f85294a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-e2f85294a\",\r\n \"etag\": \"W/\\\"6bcbdee2-7e00-46df-947b-ad3e025f3a27\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"16d62c9d-3a8e-4260-b013-736b60e7da80\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-extlb1-e2f85294a\",\r\n \"fqdn\": \"pip-extlb1-e2f85294a.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/439edb7b-68d4-4499-92d0-93e47112d948?api-version=2019-06-01" + "x-ms-request-id" : "85e86fe0-f186-4f22-83ae-73e6f9debec6", + "Body" : "{\r\n \"name\": \"pip-extlb1-d45801352\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-d45801352\",\r\n \"etag\": \"W/\\\"58640d5f-42dc-4ed1-8d60-0b376a9dc0ed\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8d5f5af2-9074-4f91-9977-01bf8a0f3d2b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-extlb1-d45801352\",\r\n \"fqdn\": \"pip-extlb1-d45801352.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/85e86fe0-f186-4f22-83ae-73e6f9debec6?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/439edb7b-68d4-4499-92d0-93e47112d948?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/85e86fe0-f186-4f22-83ae-73e6f9debec6?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:46 GMT", + "date" : "Mon, 18 May 2020 07:29:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10874", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "89c504b2-45e2-42d2-b48a-eba0f24ad13b", + "x-ms-correlation-request-id" : "ae32c71f-17a0-4dbf-bfd9-073c6d5ccbf2", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ce95d142-eb35-4fb6-8b16-ba3d142c63f9", + "x-ms-arm-service-request-id" : "a680f763-a7f8-4eee-b5cd-30781b635e27", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083846Z:89c504b2-45e2-42d2-b48a-eba0f24ad13b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072952Z:ae32c71f-17a0-4dbf-bfd9-073c6d5ccbf2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ab590338-efb8-4548-b76f-9e2876601f2c", + "x-ms-request-id" : "0b837667-577a-4a03-9b82-16673636d704", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-e2f85294a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-d45801352?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:16 GMT", + "date" : "Mon, 18 May 2020 07:30:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "787", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10314", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "51b5bffe-7289-4120-b91b-b22005215009", + "x-ms-correlation-request-id" : "c4e52e39-543a-4489-bd24-955907785818", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1366188a-4902-44ae-a67b-8f2306721260", + "x-ms-arm-service-request-id" : "77ef65a4-bb45-46c7-ba7d-662230b94ab7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083917Z:51b5bffe-7289-4120-b91b-b22005215009", - "etag" : "W/\"148e51e7-b53b-4eea-a9ed-6316d82c18b3\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073023Z:c4e52e39-543a-4489-bd24-955907785818", + "etag" : "W/\"e78bcf0d-edae-4064-83e1-93c71a891bdd\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "11004b20-5be7-407e-90b6-be104189f85a", - "Body" : "{\r\n \"name\": \"pip-extlb1-e2f85294a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-e2f85294a\",\r\n \"etag\": \"W/\\\"148e51e7-b53b-4eea-a9ed-6316d82c18b3\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16d62c9d-3a8e-4260-b013-736b60e7da80\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-extlb1-e2f85294a\",\r\n \"fqdn\": \"pip-extlb1-e2f85294a.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "c0d4745f-ea42-48f9-9fa5-44cd12e9a2c2", + "Body" : "{\r\n \"name\": \"pip-extlb1-d45801352\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-d45801352\",\r\n \"etag\": \"W/\\\"e78bcf0d-edae-4064-83e1-93c71a891bdd\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8d5f5af2-9074-4f91-9977-01bf8a0f3d2b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-extlb1-d45801352\",\r\n \"fqdn\": \"pip-extlb1-d45801352.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:24 GMT", + "date" : "Mon, 18 May 2020 07:30:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "6250", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "865b2705-17f0-41ad-9060-37a6e0c70f85", + "x-ms-correlation-request-id" : "a272046f-907f-46b1-a6b9-270131ad71f2", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e4723a51-8f6f-425c-ac42-28b9be91cd7f", + "x-ms-arm-service-request-id" : "7094020b-1504-4f1a-a846-a7347408f4c7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083924Z:865b2705-17f0-41ad-9060-37a6e0c70f85", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073032Z:a272046f-907f-46b1-a6b9-270131ad71f2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3ad411aa-326a-4236-82b6-b6b9bf2d3953", - "Body" : "{\r\n \"name\": \"extlb1-e2f85294a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e17281bf-8a00-4b19-8b4e-135a860b3c3e\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-e2f85294a\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/probes/httpProbe\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-INP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3ad411aa-326a-4236-82b6-b6b9bf2d3953?api-version=2019-06-01" + "x-ms-request-id" : "c44f344f-7b09-4842-8f85-bb2478ce28d5", + "Body" : "{\r\n \"name\": \"extlb1-d45801352\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7e10050-2254-4201-97f4-b2f78bd3ebd1\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"extlb1-d45801352-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-d45801352\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"extlb1-d45801352-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/probes/httpProbe\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"extlb1-d45801352-INP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c44f344f-7b09-4842-8f85-bb2478ce28d5?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3ad411aa-326a-4236-82b6-b6b9bf2d3953?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c44f344f-7b09-4842-8f85-bb2478ce28d5?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:54 GMT", + "date" : "Mon, 18 May 2020 07:31:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10511", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b5c74a78-851a-4e4b-9766-b2d27373d131", + "x-ms-correlation-request-id" : "58a1bcee-0a15-42a6-b8e9-0e73825b9c8b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "bc2a2bfc-9368-4a70-9a95-2e1501f415f2", + "x-ms-arm-service-request-id" : "49827c8b-edb5-4496-915c-ef1be7f9f8fa", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083955Z:b5c74a78-851a-4e4b-9766-b2d27373d131", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073103Z:58a1bcee-0a15-42a6-b8e9-0e73825b9c8b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c9a18eba-92bc-459b-b1a1-95e36fa2b43e", + "x-ms-request-id" : "8a93ce42-e668-415d-94dd-4bf86a553fbd", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:25 GMT", + "date" : "Mon, 18 May 2020 07:31:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "6250", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10213", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1d0bd96b-c531-4380-915f-96c56f2e2a26", + "x-ms-correlation-request-id" : "b51facd4-51f9-44bd-ace9-5260d796640c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "fd53ffbf-9328-4493-bfb5-eae04e04ab29", + "x-ms-arm-service-request-id" : "723333eb-56fb-456e-a6ad-7dae8a40745d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084025Z:1d0bd96b-c531-4380-915f-96c56f2e2a26", - "etag" : "W/\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073134Z:b51facd4-51f9-44bd-ace9-5260d796640c", + "etag" : "W/\"b4bc8353-e1e6-4867-9130-85a834da2d7d\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a613ca0c-afa6-4d50-bd1e-d3eec9e2dfa6", - "Body" : "{\r\n \"name\": \"extlb1-e2f85294a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e17281bf-8a00-4b19-8b4e-135a860b3c3e\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-e2f85294a\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/probes/httpProbe\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-INP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "1f30e1f4-f644-44bf-9533-fb529c86670f", + "Body" : "{\r\n \"name\": \"extlb1-d45801352\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7e10050-2254-4201-97f4-b2f78bd3ebd1\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"extlb1-d45801352-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-d45801352\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"extlb1-d45801352-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/probes/httpProbe\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"extlb1-d45801352-INP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:26 GMT", + "date" : "Mon, 18 May 2020 07:31:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "6250", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10194", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "79fa6631-b0d1-4cdb-b397-91a6403dd9cb", + "x-ms-correlation-request-id" : "d6175bfe-998e-4236-957a-4d6b1da52a0d", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "faa0506f-8f4d-4c75-b21b-5a91532f4484", + "x-ms-arm-service-request-id" : "97f306be-9130-4aae-8238-22866fe379dc", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084026Z:79fa6631-b0d1-4cdb-b397-91a6403dd9cb", - "etag" : "W/\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073134Z:d6175bfe-998e-4236-957a-4d6b1da52a0d", + "etag" : "W/\"b4bc8353-e1e6-4867-9130-85a834da2d7d\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "515844bc-fafd-49f9-a5a4-cce6799152c3", - "Body" : "{\r\n \"name\": \"extlb1-e2f85294a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e17281bf-8a00-4b19-8b4e-135a860b3c3e\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-e2f85294a\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/probes/httpProbe\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-INP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\",\r\n \"etag\": \"W/\\\"f4596a56-2637-409e-a46c-5e8d6e32e8ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "436776bd-7bd7-48ba-b801-b72a693118f2", + "Body" : "{\r\n \"name\": \"extlb1-d45801352\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7e10050-2254-4201-97f4-b2f78bd3ebd1\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"extlb1-d45801352-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-d45801352\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"extlb1-d45801352-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/probes/httpProbe\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"extlb1-d45801352-INP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\",\r\n \"etag\": \"W/\\\"b4bc8353-e1e6-4867-9130-85a834da2d7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:34 GMT", + "date" : "Mon, 18 May 2020 07:31:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3240", "expires" : "-1", "x-ms-request-charge" : "4", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9e204167-9f9f-4d99-bca1-fe680fe1ff27", + "x-ms-correlation-request-id" : "0994e6ec-20ca-40cb-8e07-2ef6b9275962", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084035Z:9e204167-9f9f-4d99-bca1-fe680fe1ff27", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073143Z:0994e6ec-20ca-40cb-8e07-2ef6b9275962", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2f520e5e-8910-475f-98f2-355579905084", - "Body" : "{\r\n \"name\": \"vmss04126\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss04126-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"45a2919f-fc86-47dd-a756-a6b1416a0b05\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f520e5e-8910-475f-98f2-355579905084?api-version=2019-03-01" + "x-ms-request-id" : "fd8b666b-7871-4eca-816f-6186aef6f731", + "Body" : "{\r\n \"name\": \"vmss82227\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss82227-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"8f44c5a4-229b-43ac-8d16-b96277ea91ce\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fd8b666b-7871-4eca-816f-6186aef6f731?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f520e5e-8910-475f-98f2-355579905084?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fd8b666b-7871-4eca-816f-6186aef6f731?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:05 GMT", + "date" : "Mon, 18 May 2020 07:32:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10207", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8bafd0cd-98c8-4aa5-8d57-e17af4af8684", + "x-ms-correlation-request-id" : "bdefd3fc-be0f-468e-ba6a-630e68c016ad", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084105Z:8bafd0cd-98c8-4aa5-8d57-e17af4af8684", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29949", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073214Z:bdefd3fc-be0f-468e-ba6a-630e68c016ad", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "417151e3-b1ff-4f62-bdf7-457d7a4458d6", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:33.4518887+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f520e5e-8910-475f-98f2-355579905084\"\r\n}" + "x-ms-request-id" : "cb3a13a5-2d01-42d8-918b-e03d183f9e14", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:31:41.0052744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fd8b666b-7871-4eca-816f-6186aef6f731\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f520e5e-8910-475f-98f2-355579905084?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fd8b666b-7871-4eca-816f-6186aef6f731?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:35 GMT", + "date" : "Mon, 18 May 2020 07:32:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10418", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "21a7691e-2d41-4796-876c-6c9f88c17b80", + "x-ms-correlation-request-id" : "e88e816b-73d7-45d7-b643-c3ff0c6fe83f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084135Z:21a7691e-2d41-4796-876c-6c9f88c17b80", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29948", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073244Z:e88e816b-73d7-45d7-b643-c3ff0c6fe83f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9b1d1f53-ebf5-4e04-875a-fd88452d7977", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:33.4518887+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f520e5e-8910-475f-98f2-355579905084\"\r\n}" + "x-ms-request-id" : "bb6de4a1-29f7-4a4a-a689-5eb1efe0df8e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:31:41.0052744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fd8b666b-7871-4eca-816f-6186aef6f731\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f520e5e-8910-475f-98f2-355579905084?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fd8b666b-7871-4eca-816f-6186aef6f731?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:05 GMT", + "date" : "Mon, 18 May 2020 07:33:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10203", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "272daea9-2ba0-418b-83f3-b771b405ad91", + "x-ms-correlation-request-id" : "75c37e58-2339-460d-b71f-606d80e19e88", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084206Z:272daea9-2ba0-418b-83f3-b771b405ad91", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29947", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073315Z:75c37e58-2339-460d-b71f-606d80e19e88", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "02358bd0-0d42-4b7d-81f6-eddf332fe783", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:33.4518887+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f520e5e-8910-475f-98f2-355579905084\"\r\n}" + "x-ms-request-id" : "63e8e6f7-5312-4758-985c-109c9563e6c7", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:31:41.0052744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fd8b666b-7871-4eca-816f-6186aef6f731\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f520e5e-8910-475f-98f2-355579905084?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fd8b666b-7871-4eca-816f-6186aef6f731?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:36 GMT", + "date" : "Mon, 18 May 2020 07:33:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10414", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ba2c8733-cb99-425b-a03a-49d7198f87b2", + "x-ms-correlation-request-id" : "ab42d954-d445-4f53-9dc1-9e02800e7564", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084236Z:ba2c8733-cb99-425b-a03a-49d7198f87b2", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29945", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073345Z:ab42d954-d445-4f53-9dc1-9e02800e7564", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "efb0f24b-0bc6-469f-ac01-a94143568903", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:33.4518887+00:00\",\r\n \"endTime\": \"2020-03-05T08:42:17.4368691+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2f520e5e-8910-475f-98f2-355579905084\"\r\n}" + "x-ms-request-id" : "ae787d25-3366-4e89-a803-7036fe78889c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:31:41.0052744+00:00\",\r\n \"endTime\": \"2020-05-18T07:33:26.9587095+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fd8b666b-7871-4eca-816f-6186aef6f731\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:06 GMT", + "date" : "Mon, 18 May 2020 07:34:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3241", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10297", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3cad1a07-83cb-4a7a-876c-b29f04a38213", + "x-ms-correlation-request-id" : "c46d7fb6-f0d2-4c96-8df0-d755c9e3f7ee", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2597", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084306Z:3cad1a07-83cb-4a7a-876c-b29f04a38213", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2596", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073416Z:c46d7fb6-f0d2-4c96-8df0-d755c9e3f7ee", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f329e693-5ba1-40e3-b3cf-7f25144e6b76", - "Body" : "{\r\n \"name\": \"vmss04126\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss04126-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"45a2919f-fc86-47dd-a756-a6b1416a0b05\"\r\n }\r\n}" + "x-ms-request-id" : "7202bcea-bbcf-4637-9c52-2b91cf5e481a", + "Body" : "{\r\n \"name\": \"vmss82227\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss82227-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"8f44c5a4-229b-43ac-8d16-b96277ea91ce\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:06 GMT", + "date" : "Mon, 18 May 2020 07:34:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "9938", + "content-length" : "9937", "expires" : "-1", - "x-ms-request-charge" : "2", + "x-ms-request-charge" : "4", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9722", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b786c988-350b-45f1-af84-fd905d8b68e3", + "x-ms-correlation-request-id" : "6162ec2b-146b-4494-985d-2a622a6996c6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;178,Microsoft.Compute/HighCostGetVMScaleSet30Min;898,Microsoft.Compute/VMScaleSetVMViews3Min;4998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084307Z:b786c988-350b-45f1-af84-fd905d8b68e3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;178,Microsoft.Compute/HighCostGetVMScaleSet30Min;898,Microsoft.Compute/VMScaleSetVMViews3Min;4992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073416Z:6162ec2b-146b-4494-985d-2a622a6996c6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7aff52e7-e72d-4377-8f78-f2c724035916", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss04126_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"769c1519-3038-461d-8ec6-07023ad7fefd\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss04126_vmss04126_2_disk2_00267409226e4c1d9174f33493dfdfb7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk2_00267409226e4c1d9174f33493dfdfb7\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss04126_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"dc57262f-16db-44d2-bbf9-11db5e7e34f3\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_3_OsDisk_1_af9c8a894ede48f784a4798f4dba4be2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_OsDisk_1_af9c8a894ede48f784a4798f4dba4be2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss04126_vmss04126_3_disk2_c4ed4983a7c341dab413c022f8b53a1c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk2_c4ed4983a7c341dab413c022f8b53a1c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_3_disk3_d90ec696d6b8452da42f5d4da8d01c92\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk3_d90ec696d6b8452da42f5d4da8d01c92\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_3_disk4_f73b413f1cf44ec2ba1c174f3ffea8e2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk4_f73b413f1cf44ec2ba1c174f3ffea8e2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000003\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "e47f5634-200e-4aa5-97af-d6eb838f4a5a", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss82227_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d4ab02b2-4a0a-4f06-a803-be03f13727b4\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss82227_vmss82227_1_disk2_31905b83efdd45ccbbacf68a5cc693b3\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk2_31905b83efdd45ccbbacf68a5cc693b3\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss82227_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d60147af-0600-4667-9a65-6549da7c1043\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_2_OsDisk_1_ad97984de8f14dc28e288fbfb5f5cb56\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_OsDisk_1_ad97984de8f14dc28e288fbfb5f5cb56\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss82227_vmss82227_2_disk2_4c5bd5ba6cf24b038cd9ed2fdc82931e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk2_4c5bd5ba6cf24b038cd9ed2fdc82931e\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_2_disk3_849ae63f062a44bca1611b8c758a8bb0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk3_849ae63f062a44bca1611b8c758a8bb0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_2_disk4_91563d75080c41d28811ddeefbafc2d9\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk4_91563d75080c41d28811ddeefbafc2d9\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:06 GMT", + "date" : "Mon, 18 May 2020 07:34:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "9938", + "content-length" : "9937", "expires" : "-1", - "x-ms-request-charge" : "2", + "x-ms-request-charge" : "4", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10551", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3ff02851-22ac-4b6f-9bf7-81bf1db294ba", + "x-ms-correlation-request-id" : "2def2d7e-28ec-43b5-bd0b-df30d8047a4b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;177,Microsoft.Compute/HighCostGetVMScaleSet30Min;897,Microsoft.Compute/VMScaleSetVMViews3Min;4996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084307Z:3ff02851-22ac-4b6f-9bf7-81bf1db294ba", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;177,Microsoft.Compute/HighCostGetVMScaleSet30Min;897,Microsoft.Compute/VMScaleSetVMViews3Min;4988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073417Z:2def2d7e-28ec-43b5-bd0b-df30d8047a4b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "89b5f37c-5582-4746-a57a-3b8c8f779494", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss04126_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"769c1519-3038-461d-8ec6-07023ad7fefd\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss04126_vmss04126_2_disk2_00267409226e4c1d9174f33493dfdfb7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk2_00267409226e4c1d9174f33493dfdfb7\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss04126_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"dc57262f-16db-44d2-bbf9-11db5e7e34f3\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_3_OsDisk_1_af9c8a894ede48f784a4798f4dba4be2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_OsDisk_1_af9c8a894ede48f784a4798f4dba4be2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss04126_vmss04126_3_disk2_c4ed4983a7c341dab413c022f8b53a1c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk2_c4ed4983a7c341dab413c022f8b53a1c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_3_disk3_d90ec696d6b8452da42f5d4da8d01c92\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk3_d90ec696d6b8452da42f5d4da8d01c92\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_3_disk4_f73b413f1cf44ec2ba1c174f3ffea8e2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk4_f73b413f1cf44ec2ba1c174f3ffea8e2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000003\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "8755993f-ba2e-4ac7-a839-878d856f6e2f", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss82227_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d4ab02b2-4a0a-4f06-a803-be03f13727b4\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss82227_vmss82227_1_disk2_31905b83efdd45ccbbacf68a5cc693b3\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk2_31905b83efdd45ccbbacf68a5cc693b3\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss82227_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d60147af-0600-4667-9a65-6549da7c1043\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_2_OsDisk_1_ad97984de8f14dc28e288fbfb5f5cb56\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_OsDisk_1_ad97984de8f14dc28e288fbfb5f5cb56\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss82227_vmss82227_2_disk2_4c5bd5ba6cf24b038cd9ed2fdc82931e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk2_4c5bd5ba6cf24b038cd9ed2fdc82931e\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_2_disk3_849ae63f062a44bca1611b8c758a8bb0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk3_849ae63f062a44bca1611b8c758a8bb0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_2_disk4_91563d75080c41d28811ddeefbafc2d9\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk4_91563d75080c41d28811ddeefbafc2d9\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:06 GMT", + "date" : "Mon, 18 May 2020 07:34:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "10087", + "content-length" : "13821", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10833", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cf611ffb-1687-4522-a606-94bc45281615", + "x-ms-correlation-request-id" : "4441c901-30fd-401a-9a15-dc0c9e85943c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "45fa531e-82c1-4de7-963e-5e8c31e317e6", + "x-ms-arm-service-request-id" : "ee44b3ef-f64e-4d24-9198-ea59ddf69913", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084307Z:cf611ffb-1687-4522-a606-94bc45281615", - "etag" : "W/\"8c699b85-ab7b-4254-a49e-88bcf82e7c7b\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073418Z:4441c901-30fd-401a-9a15-dc0c9e85943c", + "etag" : "W/\"cfd8cc48-4046-41b7-b475-127eeee2891d\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "535494c6-abb7-4948-9c35-e1730e48e4ce", - "Body" : "{\r\n \"name\": \"extlb1-e2f85294a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a\",\r\n \"etag\": \"W/\\\"8c699b85-ab7b-4254-a49e-88bcf82e7c7b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e17281bf-8a00-4b19-8b4e-135a860b3c3e\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\",\r\n \"etag\": \"W/\\\"8c699b85-ab7b-4254-a49e-88bcf82e7c7b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-e2f85294a\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatRules/extlb1-e2f85294a-INP1.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatRules/extlb1-e2f85294a-INP1.3\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\",\r\n \"etag\": \"W/\\\"8c699b85-ab7b-4254-a49e-88bcf82e7c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"8c699b85-ab7b-4254-a49e-88bcf82e7c7b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/probes/httpProbe\",\r\n \"etag\": \"W/\\\"8c699b85-ab7b-4254-a49e-88bcf82e7c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-INP1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatRules/extlb1-e2f85294a-INP1.2\",\r\n \"etag\": \"W/\\\"8c699b85-ab7b-4254-a49e-88bcf82e7c7b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"extlb1-e2f85294a-INP1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatRules/extlb1-e2f85294a-INP1.3\",\r\n \"etag\": \"W/\\\"8c699b85-ab7b-4254-a49e-88bcf82e7c7b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"extlb1-e2f85294a-INP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\",\r\n \"etag\": \"W/\\\"8c699b85-ab7b-4254-a49e-88bcf82e7c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/frontendIPConfigurations/extlb1-e2f85294a-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "3d78b3be-e051-433d-a406-fc626c2270f1", + "Body" : "{\r\n \"name\": \"extlb1-d45801352\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352\",\r\n \"etag\": \"W/\\\"cfd8cc48-4046-41b7-b475-127eeee2891d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7e10050-2254-4201-97f4-b2f78bd3ebd1\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"extlb1-d45801352-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\",\r\n \"etag\": \"W/\\\"cfd8cc48-4046-41b7-b475-127eeee2891d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-d45801352\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatRules/extlb1-d45801352-INP1.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatRules/extlb1-d45801352-INP1.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatRules/extlb1-d45801352-INP1.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatRules/extlb1-d45801352-INP1.3\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"extlb1-d45801352-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\",\r\n \"etag\": \"W/\\\"cfd8cc48-4046-41b7-b475-127eeee2891d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"cfd8cc48-4046-41b7-b475-127eeee2891d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/probes/httpProbe\",\r\n \"etag\": \"W/\\\"cfd8cc48-4046-41b7-b475-127eeee2891d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"extlb1-d45801352-INP1.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatRules/extlb1-d45801352-INP1.0\",\r\n \"etag\": \"W/\\\"cfd8cc48-4046-41b7-b475-127eeee2891d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"extlb1-d45801352-INP1.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatRules/extlb1-d45801352-INP1.1\",\r\n \"etag\": \"W/\\\"cfd8cc48-4046-41b7-b475-127eeee2891d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"extlb1-d45801352-INP1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatRules/extlb1-d45801352-INP1.2\",\r\n \"etag\": \"W/\\\"cfd8cc48-4046-41b7-b475-127eeee2891d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"extlb1-d45801352-INP1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatRules/extlb1-d45801352-INP1.3\",\r\n \"etag\": \"W/\\\"cfd8cc48-4046-41b7-b475-127eeee2891d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"extlb1-d45801352-INP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\",\r\n \"etag\": \"W/\\\"cfd8cc48-4046-41b7-b475-127eeee2891d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/frontendIPConfigurations/extlb1-d45801352-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:12 GMT", + "date" : "Mon, 18 May 2020 07:34:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3239", "expires" : "-1", "x-ms-request-charge" : "2", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dfbe17c6-b540-4e2f-9bda-896982ddb360", + "x-ms-correlation-request-id" : "02028dba-43e6-417f-9d58-e487b5a31e3b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;4798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084313Z:dfbe17c6-b540-4e2f-9bda-896982ddb360", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073424Z:02028dba-43e6-417f-9d58-e487b5a31e3b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8fd64fa8-07b1-4749-a3db-2bb2fd0c9689", - "Body" : "{\r\n \"name\": \"vmss04126\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss04126-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"45a2919f-fc86-47dd-a756-a6b1416a0b05\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8fd64fa8-07b1-4749-a3db-2bb2fd0c9689?api-version=2019-03-01" + "x-ms-request-id" : "09bc1d00-a010-4b72-845f-0454dc12573b", + "Body" : "{\r\n \"name\": \"vmss82227\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss82227-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"8f44c5a4-229b-43ac-8d16-b96277ea91ce\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/09bc1d00-a010-4b72-845f-0454dc12573b?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:43 GMT", + "date" : "Mon, 18 May 2020 07:34:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3240", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10753", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4051a5ae-200c-499b-a652-0e99e8f630e5", + "x-ms-correlation-request-id" : "72094482-d171-42e9-9a2e-cbf38fcbc05f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;395,Microsoft.Compute/GetVMScaleSet30Min;2595", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084344Z:4051a5ae-200c-499b-a652-0e99e8f630e5", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;394,Microsoft.Compute/GetVMScaleSet30Min;2594", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073455Z:72094482-d171-42e9-9a2e-cbf38fcbc05f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "36203003-d77d-4efd-a29a-ae76bb8c055d", - "Body" : "{\r\n \"name\": \"vmss04126\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss04126-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"45a2919f-fc86-47dd-a756-a6b1416a0b05\"\r\n }\r\n}" + "x-ms-request-id" : "ad5916e2-b150-4c99-a7e2-c0aa5342e3a5", + "Body" : "{\r\n \"name\": \"vmss82227\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss82227-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"8f44c5a4-229b-43ac-8d16-b96277ea91ce\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:14 GMT", + "date" : "Mon, 18 May 2020 07:35:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "9936", "expires" : "-1", "x-ms-request-charge" : "2", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10404", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c65acb25-5993-40de-ada2-9f8d7884a557", + "x-ms-correlation-request-id" : "b226e10a-3b3b-4340-b03c-b9385f604832", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;176,Microsoft.Compute/HighCostGetVMScaleSet30Min;896,Microsoft.Compute/VMScaleSetVMViews3Min;4994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084414Z:c65acb25-5993-40de-ada2-9f8d7884a557", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;175,Microsoft.Compute/HighCostGetVMScaleSet30Min;895,Microsoft.Compute/VMScaleSetVMViews3Min;4984", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073525Z:b226e10a-3b3b-4340-b03c-b9385f604832", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "18ce2fad-0511-4f0d-a743-6934c43afb82", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss04126_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"769c1519-3038-461d-8ec6-07023ad7fefd\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss04126_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"dc57262f-16db-44d2-bbf9-11db5e7e34f3\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_3_OsDisk_1_af9c8a894ede48f784a4798f4dba4be2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_OsDisk_1_af9c8a894ede48f784a4798f4dba4be2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_3_disk3_d90ec696d6b8452da42f5d4da8d01c92\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk3_d90ec696d6b8452da42f5d4da8d01c92\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_3_disk4_f73b413f1cf44ec2ba1c174f3ffea8e2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk4_f73b413f1cf44ec2ba1c174f3ffea8e2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss04126_vmss04126_3_disk5_a4ff7068bc1c47018529cccb3f5d1b5e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk5_a4ff7068bc1c47018529cccb3f5d1b5e\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000003\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "202fa6df-c4b0-4a57-b8d1-69b8f12f3808", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss82227_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d4ab02b2-4a0a-4f06-a803-be03f13727b4\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss82227_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d60147af-0600-4667-9a65-6549da7c1043\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_2_OsDisk_1_ad97984de8f14dc28e288fbfb5f5cb56\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_OsDisk_1_ad97984de8f14dc28e288fbfb5f5cb56\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_2_disk3_849ae63f062a44bca1611b8c758a8bb0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk3_849ae63f062a44bca1611b8c758a8bb0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_2_disk4_91563d75080c41d28811ddeefbafc2d9\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk4_91563d75080c41d28811ddeefbafc2d9\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss82227_vmss82227_2_disk5_a68e140206fa4a2cbf468e438cd5a7da\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk5_a68e140206fa4a2cbf468e438cd5a7da\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:13 GMT", + "date" : "Mon, 18 May 2020 07:35:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "9936", "expires" : "-1", "x-ms-request-charge" : "2", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10821", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "90080b17-d21d-47d8-a055-f12415dd37bf", + "x-ms-correlation-request-id" : "fbc28b72-b527-44f1-83e6-6f3e782c0c4e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;175,Microsoft.Compute/HighCostGetVMScaleSet30Min;895,Microsoft.Compute/VMScaleSetVMViews3Min;4992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084414Z:90080b17-d21d-47d8-a055-f12415dd37bf", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;174,Microsoft.Compute/HighCostGetVMScaleSet30Min;894,Microsoft.Compute/VMScaleSetVMViews3Min;4982", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073526Z:fbc28b72-b527-44f1-83e6-6f3e782c0c4e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "db36298d-78f9-4d35-ba4c-f8c7fda076b0", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss04126_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"769c1519-3038-461d-8ec6-07023ad7fefd\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss04126_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"dc57262f-16db-44d2-bbf9-11db5e7e34f3\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_3_OsDisk_1_af9c8a894ede48f784a4798f4dba4be2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_OsDisk_1_af9c8a894ede48f784a4798f4dba4be2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_3_disk3_d90ec696d6b8452da42f5d4da8d01c92\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk3_d90ec696d6b8452da42f5d4da8d01c92\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_3_disk4_f73b413f1cf44ec2ba1c174f3ffea8e2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk4_f73b413f1cf44ec2ba1c174f3ffea8e2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss04126_vmss04126_3_disk5_a4ff7068bc1c47018529cccb3f5d1b5e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk5_a4ff7068bc1c47018529cccb3f5d1b5e\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000003\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "c5b70085-979d-4687-b167-3650b53c109c", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss82227_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d4ab02b2-4a0a-4f06-a803-be03f13727b4\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss82227_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d60147af-0600-4667-9a65-6549da7c1043\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_2_OsDisk_1_ad97984de8f14dc28e288fbfb5f5cb56\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_OsDisk_1_ad97984de8f14dc28e288fbfb5f5cb56\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_2_disk3_849ae63f062a44bca1611b8c758a8bb0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk3_849ae63f062a44bca1611b8c758a8bb0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_2_disk4_91563d75080c41d28811ddeefbafc2d9\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk4_91563d75080c41d28811ddeefbafc2d9\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss82227_vmss82227_2_disk5_a68e140206fa4a2cbf468e438cd5a7da\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk5_a68e140206fa4a2cbf468e438cd5a7da\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/disks/disk49659?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/disks/disk17309?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:19 GMT", + "date" : "Mon, 18 May 2020 07:35:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "242", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d09bdb6b-6589-454f-8d56-07b10fe14fe3", + "x-ms-correlation-request-id" : "4835242a-69ab-44fd-90c9-ac2a92383e05", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084420Z:d09bdb6b-6589-454f-8d56-07b10fe14fe3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073531Z:4835242a-69ab-44fd-90c9-ac2a92383e05", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/7dede2b8-cb1a-45e5-9498-9f8b344a1f60?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/4c27c290-1841-41ab-820a-293164277d52?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "7dede2b8-cb1a-45e5-9498-9f8b344a1f60", - "Body" : "{\r\n \"name\": \"disk49659\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/7dede2b8-cb1a-45e5-9498-9f8b344a1f60?api-version=2019-03-01" + "x-ms-request-id" : "4c27c290-1841-41ab-820a-293164277d52", + "Body" : "{\r\n \"name\": \"disk17309\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/4c27c290-1841-41ab-820a-293164277d52?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/7dede2b8-cb1a-45e5-9498-9f8b344a1f60?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/4c27c290-1841-41ab-820a-293164277d52?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:50 GMT", + "date" : "Mon, 18 May 2020 07:36:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "792", + "content-length" : "848", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10816", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "40a463f5-0a3d-4bc2-933f-16a22bf1ee6d", + "x-ms-correlation-request-id" : "6acf7b10-1ffc-4552-8313-fda18149ba91", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084450Z:40a463f5-0a3d-4bc2-933f-16a22bf1ee6d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399929", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073602Z:6acf7b10-1ffc-4552-8313-fda18149ba91", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "258d0215-f510-434a-9f4b-b25a86b0968a", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:44:20.0517062+00:00\",\r\n \"endTime\": \"2020-03-05T08:44:20.1923666+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"disk49659\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/disks/disk49659\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":32,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:44:20.0517062+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":34359738368,\"uniqueId\":\"e2c89a8e-58d7-428c-8cfa-f419898ef90d\"}}\r\n },\r\n \"name\": \"7dede2b8-cb1a-45e5-9498-9f8b344a1f60\"\r\n}" + "x-ms-request-id" : "aa0bab57-84e8-4663-9b3f-27e2f1b88d50", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:35:31.4259034+00:00\",\r\n \"endTime\": \"2020-05-18T07:35:31.5977737+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"disk17309\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/disks/disk17309\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":32,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:35:31.4259034+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":34359738368,\"uniqueId\":\"656116a6-6608-4279-80b1-77c293262112\"}}\r\n },\r\n \"name\": \"4c27c290-1841-41ab-820a-293164277d52\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/disks/disk49659?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/disks/disk17309?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:20 GMT", + "date" : "Mon, 18 May 2020 07:36:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "704", + "content-length" : "782", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10908", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "147cf929-a073-4a1a-834f-86fb1aa48029", + "x-ms-correlation-request-id" : "fd5d3f05-ae6f-4161-b6a6-defd9d6c5d02", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084521Z:147cf929-a073-4a1a-834f-86fb1aa48029", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39887", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073632Z:fd5d3f05-ae6f-4161-b6a6-defd9d6c5d02", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "30db9b28-9a4f-4357-97f1-993360ff4d94", - "Body" : "{\r\n \"name\": \"disk49659\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/disks/disk49659\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:44:20.0517062+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 34359738368,\r\n \"uniqueId\": \"e2c89a8e-58d7-428c-8cfa-f419898ef90d\"\r\n }\r\n}" + "x-ms-request-id" : "832acc9e-1410-4d1f-ac76-88fd07b259f0", + "Body" : "{\r\n \"name\": \"disk17309\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/disks/disk17309\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:35:31.4259034+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 34359738368,\r\n \"uniqueId\": \"656116a6-6608-4279-80b1-77c293262112\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:20 GMT", + "date" : "Mon, 18 May 2020 07:36:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "9936", "expires" : "-1", "x-ms-request-charge" : "2", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10288", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6e99b1e5-a1ab-4ae3-84db-ec24cd40900b", + "x-ms-correlation-request-id" : "14f9d4ec-8e54-488b-b27e-114d6862c475", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;174,Microsoft.Compute/HighCostGetVMScaleSet30Min;894,Microsoft.Compute/VMScaleSetVMViews3Min;4990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084521Z:6e99b1e5-a1ab-4ae3-84db-ec24cd40900b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;174,Microsoft.Compute/HighCostGetVMScaleSet30Min;893,Microsoft.Compute/VMScaleSetVMViews3Min;4984", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073633Z:14f9d4ec-8e54-488b-b27e-114d6862c475", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1a69ea97-6c60-4264-9375-095470b02efd", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss04126_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"769c1519-3038-461d-8ec6-07023ad7fefd\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss04126_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"dc57262f-16db-44d2-bbf9-11db5e7e34f3\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_3_OsDisk_1_af9c8a894ede48f784a4798f4dba4be2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_OsDisk_1_af9c8a894ede48f784a4798f4dba4be2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_3_disk3_d90ec696d6b8452da42f5d4da8d01c92\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk3_d90ec696d6b8452da42f5d4da8d01c92\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_3_disk4_f73b413f1cf44ec2ba1c174f3ffea8e2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk4_f73b413f1cf44ec2ba1c174f3ffea8e2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss04126_vmss04126_3_disk5_a4ff7068bc1c47018529cccb3f5d1b5e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_3_disk5_a4ff7068bc1c47018529cccb3f5d1b5e\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000003\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/3/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "4502f44d-eecc-45cb-a150-0e140b8ce6f5", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss82227_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d4ab02b2-4a0a-4f06-a803-be03f13727b4\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss82227_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d60147af-0600-4667-9a65-6549da7c1043\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_2_OsDisk_1_ad97984de8f14dc28e288fbfb5f5cb56\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_OsDisk_1_ad97984de8f14dc28e288fbfb5f5cb56\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_2_disk3_849ae63f062a44bca1611b8c758a8bb0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk3_849ae63f062a44bca1611b8c758a8bb0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_2_disk4_91563d75080c41d28811ddeefbafc2d9\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk4_91563d75080c41d28811ddeefbafc2d9\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss82227_vmss82227_2_disk5_a68e140206fa4a2cbf468e438cd5a7da\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_2_disk5_a68e140206fa4a2cbf468e438cd5a7da\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualmachines/2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualmachines/1?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:21 GMT", + "date" : "Mon, 18 May 2020 07:36:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "5048", "expires" : "-1", "x-ms-request-charge" : "1", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "871812b7-a7f8-4918-b671-f0fef2a7fe67", + "x-ms-correlation-request-id" : "204c5ed9-7bd6-4681-a853-ff6bb9c3abf9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1197,Microsoft.Compute/VmssQueuedVMOperations;4799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084522Z:871812b7-a7f8-4918-b671-f0fef2a7fe67", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073635Z:204c5ed9-7bd6-4681-a853-ff6bb9c3abf9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8a3cdf76-9990-4546-a835-ea5f43e1e9c7", - "Body" : "{\r\n \"name\": \"vmss04126_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"769c1519-3038-461d-8ec6-07023ad7fefd\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 10,\r\n \"name\": \"disk49659\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/disks/disk49659\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8a3cdf76-9990-4546-a835-ea5f43e1e9c7?api-version=2019-03-01" + "x-ms-request-id" : "8ea60652-ff47-4279-8a51-1dea739347a4", + "Body" : "{\r\n \"name\": \"vmss82227_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d4ab02b2-4a0a-4f06-a803-be03f13727b4\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 10,\r\n \"name\": \"disk17309\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/disks/disk17309\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ea60652-ff47-4279-8a51-1dea739347a4?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualmachines/2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualmachines/1?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:51 GMT", + "date" : "Mon, 18 May 2020 07:37:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "5049", "expires" : "-1", "x-ms-request-charge" : "1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10490", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1645a1d7-8458-47ed-8454-10aa9173d927", + "x-ms-correlation-request-id" : "315ac314-535d-4d3b-b290-6ec62e60cfe3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSetVM3Min;999,Microsoft.Compute/GetVMScaleSetVM30Min;4999,Microsoft.Compute/VMScaleSetVMViews3Min;4989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084552Z:1645a1d7-8458-47ed-8454-10aa9173d927", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSetVM3Min;998,Microsoft.Compute/GetVMScaleSetVM30Min;4998,Microsoft.Compute/VMScaleSetVMViews3Min;4990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073705Z:315ac314-535d-4d3b-b290-6ec62e60cfe3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2df63d41-9c9f-4cbf-b729-e85d2666e4fb", - "Body" : "{\r\n \"name\": \"vmss04126_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"769c1519-3038-461d-8ec6-07023ad7fefd\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 10,\r\n \"name\": \"disk49659\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/disks/disk49659\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "bd0a0ef6-3143-4c7a-8f4f-cb0650684584", + "Body" : "{\r\n \"name\": \"vmss82227_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d4ab02b2-4a0a-4f06-a803-be03f13727b4\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 10,\r\n \"name\": \"disk17309\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/disks/disk17309\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/disks/disk49659?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/disks/disk17309?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:22 GMT", + "date" : "Mon, 18 May 2020 07:37:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "893", + "content-length" : "971", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10486", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "27cb1747-246c-441b-b6e3-e07557165bfe", + "x-ms-correlation-request-id" : "0ec08bf4-19e8-47db-8274-803a7652374e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084622Z:27cb1747-246c-441b-b6e3-e07557165bfe", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39884", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073736Z:0ec08bf4-19e8-47db-8274-803a7652374e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "44d4bcd3-79dd-4494-a0aa-16298c87ed08", - "Body" : "{\r\n \"name\": \"disk49659\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/disks/disk49659\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/vmss04126_2\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:44:20.0517062+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 34359738368,\r\n \"uniqueId\": \"e2c89a8e-58d7-428c-8cfa-f419898ef90d\"\r\n }\r\n}" + "x-ms-request-id" : "4b9a9f9b-1bd8-4e9d-aebd-35fc03efe579", + "Body" : "{\r\n \"name\": \"disk17309\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/disks/disk17309\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/vmss82227_1\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:35:31.4259034+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 34359738368,\r\n \"uniqueId\": \"656116a6-6608-4279-80b1-77c293262112\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualmachines/2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualmachines/1?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:23 GMT", + "date" : "Mon, 18 May 2020 07:37:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "5047", "expires" : "-1", "x-ms-request-charge" : "1", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cbfc6416-b909-40dc-bd79-750300de2b41", + "x-ms-correlation-request-id" : "73d12b4f-4daa-4f38-b788-85540429ffdd", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084623Z:cbfc6416-b909-40dc-bd79-750300de2b41", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073737Z:73d12b4f-4daa-4f38-b788-85540429ffdd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "60af49ba-8bcc-43eb-b989-500385216378", - "Body" : "{\r\n \"name\": \"vmss04126_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"769c1519-3038-461d-8ec6-07023ad7fefd\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 10,\r\n \"name\": \"disk49659\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/disks/disk49659\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"toBeDetached\": true\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/60af49ba-8bcc-43eb-b989-500385216378?api-version=2019-03-01" + "x-ms-request-id" : "e68a75b5-eabb-4838-99ac-57ae9753ff2c", + "Body" : "{\r\n \"name\": \"vmss82227_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d4ab02b2-4a0a-4f06-a803-be03f13727b4\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 10,\r\n \"name\": \"disk17309\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/disks/disk17309\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"toBeDetached\": true\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e68a75b5-eabb-4838-99ac-57ae9753ff2c?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualmachines/2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualmachines/1?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:53 GMT", + "date" : "Mon, 18 May 2020 07:38:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "4598", "expires" : "-1", "x-ms-request-charge" : "1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10280", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "52832b0a-b346-499f-a204-af0b0f405ab4", + "x-ms-correlation-request-id" : "f9e842cf-9a90-47c2-92e7-d011ffc46b2c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSetVM3Min;998,Microsoft.Compute/GetVMScaleSetVM30Min;4998,Microsoft.Compute/VMScaleSetVMViews3Min;4992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084654Z:52832b0a-b346-499f-a204-af0b0f405ab4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSetVM3Min;996,Microsoft.Compute/GetVMScaleSetVM30Min;4996,Microsoft.Compute/VMScaleSetVMViews3Min;4994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073808Z:f9e842cf-9a90-47c2-92e7-d011ffc46b2c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5002e35a-ffab-4016-b5a6-a572cb460de1", - "Body" : "{\r\n \"name\": \"vmss04126_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/virtualNetworks/vmssvnet95451c/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/backendAddressPools/extlb1-e2f85294a-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Network/loadBalancers/extlb1-e2f85294a/inboundNatPools/extlb1-e2f85294a-INP1\"}]}}]}}]},\r\n \"vmId\": \"769c1519-3038-461d-8ec6-07023ad7fefd\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202002181\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_OsDisk_1_2cf613661eac4e85a8697c8a92cd7f6d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk3_b12207ee72a84645850e38b34fad89ad\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk4_b8d3857561b246bdaa63aa77d9cbed0c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG82769/providers/Microsoft.Compute/disks/vmss04126_vmss04126_2_disk5_a3fe55934f92458a8d9f184394abd533\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss04126-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg82769/providers/Microsoft.Compute/virtualMachineScaleSets/vmss04126/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "b4594143-b503-41b6-8b57-7de530fc0209", + "Body" : "{\r\n \"name\": \"vmss82227_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/virtualNetworks/vmssvnet008399/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/backendAddressPools/extlb1-d45801352-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Network/loadBalancers/extlb1-d45801352/inboundNatPools/extlb1-d45801352-INP1\"}]}}]}}]},\r\n \"vmId\": \"d4ab02b2-4a0a-4f06-a803-be03f13727b4\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.202004290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_OsDisk_1_e7b0f2b3111a45a8b8aecf052ecaba34\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk3_fd036ac6bf304f84951a87a7b38a8e6d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk4_6eb25b3d0a224df7ae8d5884349189ee\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG09426/providers/Microsoft.Compute/disks/vmss82227_vmss82227_1_disk5_7a257b5360624a6bb10510c07c0d3b9d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss82227-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg09426/providers/Microsoft.Compute/virtualMachineScaleSets/vmss82227/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg82769?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg09426?api-version=2019-08-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" + }, + "Response" : { + "date" : "Mon, 18 May 2020 07:38:43 GMT", + "content-length" : "0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "6e961fa9-8642-40e8-89a2-033c3d49d3d7", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073843Z:6e961fa9-8642-40e8-89a2-033c3d49d3d7", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "6e961fa9-8642-40e8-89a2-033c3d49d3d7", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + }, + "Response" : { + "date" : "Mon, 18 May 2020 07:39:13 GMT", + "content-length" : "0", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b7d3e9a0-9152-4219-8137-0f10787478e1", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073914Z:b7d3e9a0-9152-4219-8137-0f10787478e1", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "b7d3e9a0-9152-4219-8137-0f10787478e1", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + }, + "Response" : { + "date" : "Mon, 18 May 2020 07:39:43 GMT", + "content-length" : "0", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "ce51d9e6-5b1d-4761-9a3e-13fbc3078c73", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T073944Z:ce51d9e6-5b1d-4761-9a3e-13fbc3078c73", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "ce51d9e6-5b1d-4761-9a3e-13fbc3078c73", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + }, + "Response" : { + "date" : "Mon, 18 May 2020 07:40:15 GMT", + "content-length" : "0", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "2851a77c-a6e1-4fdb-b413-57a2a77efc73", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074015Z:2851a77c-a6e1-4fdb-b413-57a2a77efc73", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "2851a77c-a6e1-4fdb-b413-57a2a77efc73", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + }, + "Response" : { + "date" : "Mon, 18 May 2020 07:40:46 GMT", + "content-length" : "0", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "14555615-0a1e-46ff-898b-02f5e3a640c3", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074046Z:14555615-0a1e-46ff-898b-02f5e3a640c3", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "14555615-0a1e-46ff-898b-02f5e3a640c3", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + }, + "Response" : { + "date" : "Mon, 18 May 2020 07:41:16 GMT", + "content-length" : "0", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b891c7b6-c75f-41f9-aed4-dbe4cc1098dc", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074117Z:b891c7b6-c75f-41f9-aed4-dbe4cc1098dc", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "b891c7b6-c75f-41f9-aed4-dbe4cc1098dc", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + }, + "Response" : { + "date" : "Mon, 18 May 2020 07:41:47 GMT", + "content-length" : "0", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "8c40d7a2-6595-4ad2-881f-a726c980f8df", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074148Z:8c40d7a2-6595-4ad2-881f-a726c980f8df", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "8c40d7a2-6595-4ad2-881f-a726c980f8df", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:29 GMT", + "date" : "Mon, 18 May 2020 07:42:18 GMT", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14996", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac9878fe-1692-47cc-bf4d-93d1da63a409", + "x-ms-correlation-request-id" : "3ca528e6-302b-4fa2-b72f-89d54e265493", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084730Z:ac9878fe-1692-47cc-bf4d-93d1da63a409", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074218Z:3ca528e6-302b-4fa2-b72f-89d54e265493", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ac9878fe-1692-47cc-bf4d-93d1da63a409", + "x-ms-request-id" : "3ca528e6-302b-4fa2-b72f-89d54e265493", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:59 GMT", + "date" : "Mon, 18 May 2020 07:42:49 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10050", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fa503541-8a48-4884-a0b6-40e6d3283e35", + "x-ms-correlation-request-id" : "79503584-bc48-440a-9fdd-e9e5af950923", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084800Z:fa503541-8a48-4884-a0b6-40e6d3283e35", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074249Z:79503584-bc48-440a-9fdd-e9e5af950923", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "fa503541-8a48-4884-a0b6-40e6d3283e35", + "x-ms-request-id" : "79503584-bc48-440a-9fdd-e9e5af950923", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:31 GMT", + "date" : "Mon, 18 May 2020 07:43:19 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10274", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9fc82b47-6a4c-452c-8efc-25af884356a7", + "x-ms-correlation-request-id" : "f2d7c32d-c27e-4446-ba4e-8ed6f90885dc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084831Z:9fc82b47-6a4c-452c-8efc-25af884356a7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074320Z:f2d7c32d-c27e-4446-ba4e-8ed6f90885dc", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "9fc82b47-6a4c-452c-8efc-25af884356a7", + "x-ms-request-id" : "f2d7c32d-c27e-4446-ba4e-8ed6f90885dc", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:01 GMT", + "date" : "Mon, 18 May 2020 07:43:51 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10475", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c883db6f-325d-4868-98bd-bf2d3ca1bc01", + "x-ms-correlation-request-id" : "9b9b7909-cba8-4e8f-a698-04472b84476d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084902Z:c883db6f-325d-4868-98bd-bf2d3ca1bc01", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074351Z:9b9b7909-cba8-4e8f-a698-04472b84476d", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "c883db6f-325d-4868-98bd-bf2d3ca1bc01", + "x-ms-request-id" : "9b9b7909-cba8-4e8f-a698-04472b84476d", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:32 GMT", + "date" : "Mon, 18 May 2020 07:44:22 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10150", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1e590e7e-7129-420c-ad62-6b4dc010809b", + "x-ms-correlation-request-id" : "8977d22e-66e1-4b15-87ca-7402bd331024", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084932Z:1e590e7e-7129-420c-ad62-6b4dc010809b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074422Z:8977d22e-66e1-4b15-87ca-7402bd331024", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "1e590e7e-7129-420c-ad62-6b4dc010809b", + "x-ms-request-id" : "8977d22e-66e1-4b15-87ca-7402bd331024", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:03 GMT", + "date" : "Mon, 18 May 2020 07:45:05 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10369", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "666366aa-f683-47f3-b4a2-3e7a1df7e11f", + "x-ms-correlation-request-id" : "916a4774-7261-417b-b45c-5ab21e72df7f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085004Z:666366aa-f683-47f3-b4a2-3e7a1df7e11f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074506Z:916a4774-7261-417b-b45c-5ab21e72df7f", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "666366aa-f683-47f3-b4a2-3e7a1df7e11f", + "x-ms-request-id" : "916a4774-7261-417b-b45c-5ab21e72df7f", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:35 GMT", + "date" : "Mon, 18 May 2020 07:45:37 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10374", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "76772d8f-1066-4570-88ca-a8d7147703ad", + "x-ms-correlation-request-id" : "f54d0105-db36-4ba9-905e-0cabb39c0d77", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085035Z:76772d8f-1066-4570-88ca-a8d7147703ad", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074537Z:f54d0105-db36-4ba9-905e-0cabb39c0d77", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "76772d8f-1066-4570-88ca-a8d7147703ad", + "x-ms-request-id" : "f54d0105-db36-4ba9-905e-0cabb39c0d77", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:06 GMT", + "date" : "Mon, 18 May 2020 07:46:07 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10488", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "158e76ee-1e97-4ada-8419-28c62a6dfe12", + "x-ms-correlation-request-id" : "7401ea97-c59c-4262-a551-92946db2f13c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085106Z:158e76ee-1e97-4ada-8419-28c62a6dfe12", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074608Z:7401ea97-c59c-4262-a551-92946db2f13c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "158e76ee-1e97-4ada-8419-28c62a6dfe12", + "x-ms-request-id" : "7401ea97-c59c-4262-a551-92946db2f13c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:37 GMT", + "date" : "Mon, 18 May 2020 07:46:38 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10720", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e62272b1-3115-45cd-ac9c-d31fa2403a7d", + "x-ms-correlation-request-id" : "2cd0cf20-6dbb-4ded-a83c-941e46ff363d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085137Z:e62272b1-3115-45cd-ac9c-d31fa2403a7d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074639Z:2cd0cf20-6dbb-4ded-a83c-941e46ff363d", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e62272b1-3115-45cd-ac9c-d31fa2403a7d", + "x-ms-request-id" : "2cd0cf20-6dbb-4ded-a83c-941e46ff363d", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:09 GMT", + "date" : "Mon, 18 May 2020 07:47:09 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10758", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e1e8b6e2-9a2e-4371-b5f0-e434aa13308d", + "x-ms-correlation-request-id" : "46736dd6-e079-452a-b9d8-440467025dd7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085209Z:e1e8b6e2-9a2e-4371-b5f0-e434aa13308d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074709Z:46736dd6-e079-452a-b9d8-440467025dd7", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e1e8b6e2-9a2e-4371-b5f0-e434aa13308d", + "x-ms-request-id" : "46736dd6-e079-452a-b9d8-440467025dd7", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:40 GMT", + "date" : "Mon, 18 May 2020 07:47:39 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10483", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ff9973df-478e-40c6-802f-eb5a52ef286b", + "x-ms-correlation-request-id" : "526a4695-a2ed-43de-b65a-7434c45d88aa", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085240Z:ff9973df-478e-40c6-802f-eb5a52ef286b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074740Z:526a4695-a2ed-43de-b65a-7434c45d88aa", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ff9973df-478e-40c6-802f-eb5a52ef286b", + "x-ms-request-id" : "526a4695-a2ed-43de-b65a-7434c45d88aa", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:10 GMT", + "date" : "Mon, 18 May 2020 07:48:10 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10481", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60dbf48d-f28a-4893-8d38-be7b7fc3d39b", + "x-ms-correlation-request-id" : "81d6f3fc-5173-4e38-99dd-3fb3fb03e803", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085310Z:60dbf48d-f28a-4893-8d38-be7b7fc3d39b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074811Z:81d6f3fc-5173-4e38-99dd-3fb3fb03e803", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "60dbf48d-f28a-4893-8d38-be7b7fc3d39b", + "x-ms-request-id" : "81d6f3fc-5173-4e38-99dd-3fb3fb03e803", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:41 GMT", + "date" : "Mon, 18 May 2020 07:48:41 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10346", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b3e92354-5cdb-4303-bb4b-15b555ff6252", + "x-ms-correlation-request-id" : "1e429912-026d-43ab-b90f-34d8b650cff4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085342Z:b3e92354-5cdb-4303-bb4b-15b555ff6252", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074841Z:1e429912-026d-43ab-b90f-34d8b650cff4", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b3e92354-5cdb-4303-bb4b-15b555ff6252", + "x-ms-request-id" : "1e429912-026d-43ab-b90f-34d8b650cff4", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:12 GMT", + "date" : "Mon, 18 May 2020 07:49:12 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9849", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e9cdb0d1-83cb-45a8-955f-1cbc7dd0adfe", + "x-ms-correlation-request-id" : "03862ba2-aa5c-440d-8611-5fda87e75144", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085413Z:e9cdb0d1-83cb-45a8-955f-1cbc7dd0adfe", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074912Z:03862ba2-aa5c-440d-8611-5fda87e75144", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e9cdb0d1-83cb-45a8-955f-1cbc7dd0adfe", + "x-ms-request-id" : "03862ba2-aa5c-440d-8611-5fda87e75144", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4Mjc2OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwOTQyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:44 GMT", + "date" : "Mon, 18 May 2020 07:49:42 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10707", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f91bba62-44ee-4063-a6fc-c0014f04103d", + "x-ms-correlation-request-id" : "e2ced9db-6bd3-4a99-8410-e57c9ea4f04e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085444Z:f91bba62-44ee-4063-a6fc-c0014f04103d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T074943Z:e2ced9db-6bd3-4a99-8410-e57c9ea4f04e", "cache-control" : "no-cache", - "x-ms-request-id" : "f91bba62-44ee-4063-a6fc-c0014f04103d", + "x-ms-request-id" : "e2ced9db-6bd3-4a99-8410-e57c9ea4f04e", "Body" : "" } } ], - "variables" : [ "javacsmrg82769", "vmss04126", "vmssvnet95451c", "extlb1-e2f85294a", "disk49659" ] + "variables" : [ "javacsmrg09426", "vmss82227", "vmssvnet008399", "extlb1-d45801352", "disk17309" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateVirtualMachineWithEmptyManagedDataDisks.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateVirtualMachineWithEmptyManagedDataDisks.json index f8489010a702..b4cc3d61fc4b 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateVirtualMachineWithEmptyManagedDataDisks.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateUpdateVirtualMachineWithEmptyManagedDataDisks.json @@ -1,1138 +1,979 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg91927?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg98060?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:11 GMT", + "date" : "Mon, 18 May 2020 06:59:58 GMT", "content-length" : "309", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f6be6935-8600-477a-a293-ff053f03431b", + "x-ms-correlation-request-id" : "1a29ae03-a4d8-4fbc-be9c-ec11eeab3022", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083712Z:f6be6935-8600-477a-a293-ff053f03431b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065959Z:1a29ae03-a4d8-4fbc-be9c-ec11eeab3022", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f6be6935-8600-477a-a293-ff053f03431b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927\",\"name\":\"javacsmrg91927\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-03-05T08:37:10.192Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "1a29ae03-a4d8-4fbc-be9c-ec11eeab3022", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060\",\"name\":\"javacsmrg98060\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-05-18T06:59:57.346Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_1d93720609?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_58d0944298?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:14 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "256", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7087de6e-ad4d-42cd-92a7-aa803f4c2bd3", + "x-ms-correlation-request-id" : "fe0cbb95-7a1f-44a2-89b0-8d71a8ad5f79", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083715Z:7087de6e-ad4d-42cd-92a7-aa803f4c2bd3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070005Z:fe0cbb95-7a1f-44a2-89b0-8d71a8ad5f79", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/bd71033b-cfb3-47f5-9314-62095971ac00?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/124263bb-399e-4acf-b618-71cb322dd3ff?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "bd71033b-cfb3-47f5-9314-62095971ac00", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_1d93720609\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/bd71033b-cfb3-47f5-9314-62095971ac00?api-version=2019-03-01" + "x-ms-request-id" : "124263bb-399e-4acf-b618-71cb322dd3ff", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_58d0944298\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/124263bb-399e-4acf-b618-71cb322dd3ff?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_d6004676fe?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_b6366667fd?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:15 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "256", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "df30e189-71e1-470b-914b-0e53e72b1729", + "x-ms-correlation-request-id" : "5d8b6ec4-6891-421c-a783-abbaaad06c8e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083716Z:df30e189-71e1-470b-914b-0e53e72b1729", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070005Z:5d8b6ec4-6891-421c-a783-abbaaad06c8e", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5e017fb6-a0b3-4ed6-aaeb-7383b2c7444c?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/835381e4-2d0c-4147-beda-2de339803e48?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5e017fb6-a0b3-4ed6-aaeb-7383b2c7444c", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_d6004676fe\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5e017fb6-a0b3-4ed6-aaeb-7383b2c7444c?api-version=2019-03-01" + "x-ms-request-id" : "835381e4-2d0c-4147-beda-2de339803e48", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_b6366667fd\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/835381e4-2d0c-4147-beda-2de339803e48?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_56856524a9?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_c7260946f8?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:16 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "256", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aabb063f-4cf8-4470-81e3-91a98cf622ba", + "x-ms-correlation-request-id" : "3cbfa016-75c8-497d-9385-b960c3368642", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083716Z:aabb063f-4cf8-4470-81e3-91a98cf622ba", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;991,Microsoft.Compute/CreateUpdateDisks30Min;7991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070006Z:3cbfa016-75c8-497d-9385-b960c3368642", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6b40dadd-4268-4501-92d6-7dbc9572629d?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0db30be6-bbee-420c-9fb2-aa854fe3146c?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "6b40dadd-4268-4501-92d6-7dbc9572629d", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_56856524a9\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6b40dadd-4268-4501-92d6-7dbc9572629d?api-version=2019-03-01" + "x-ms-request-id" : "0db30be6-bbee-420c-9fb2-aa854fe3146c", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_c7260946f8\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0db30be6-bbee-420c-9fb2-aa854fe3146c?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/virtualNetworks/vnet402192fa96?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/virtualNetworks/vnet7132691b1a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:20 GMT", + "date" : "Mon, 18 May 2020 07:00:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1342", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "49acd769-bfca-4a20-9e70-3ff7f7325f10", + "x-ms-correlation-request-id" : "d46ec0e5-ea8c-44d5-8ec2-270800e428d1", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "bc80e712-9331-48e5-91c9-6f4a5f3b7788", + "x-ms-arm-service-request-id" : "ae7bbc34-08ff-492a-839e-4c756762bc73", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083721Z:49acd769-bfca-4a20-9e70-3ff7f7325f10", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070008Z:d46ec0e5-ea8c-44d5-8ec2-270800e428d1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "35763b53-ffe3-46af-a583-95805673267d", - "Body" : "{\r\n \"name\": \"vnet402192fa96\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/virtualNetworks/vnet402192fa96\",\r\n \"etag\": \"W/\\\"01275fc8-e25b-4a53-bfe7-aff0a80fbe62\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"571818b0-5699-4192-93bc-85a11469c347\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/virtualNetworks/vnet402192fa96/subnets/subnet1\",\r\n \"etag\": \"W/\\\"01275fc8-e25b-4a53-bfe7-aff0a80fbe62\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35763b53-ffe3-46af-a583-95805673267d?api-version=2019-06-01" + "x-ms-request-id" : "358479b9-aee6-4cff-b1f6-f3a7117773f8", + "Body" : "{\r\n \"name\": \"vnet7132691b1a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/virtualNetworks/vnet7132691b1a\",\r\n \"etag\": \"W/\\\"c185246a-8a45-46e4-bd90-8787c9eab5a4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"70b9d0ba-5d2c-476b-985d-b368c6b43ee3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/virtualNetworks/vnet7132691b1a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c185246a-8a45-46e4-bd90-8787c9eab5a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/358479b9-aee6-4cff-b1f6-f3a7117773f8?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/publicIPAddresses/pip31611a59?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/publicIPAddresses/pip7725161b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:21 GMT", + "date" : "Mon, 18 May 2020 07:00:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "758", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "714eedba-ec0d-4a71-ae67-08827eda035b", + "x-ms-correlation-request-id" : "e3701333-28ee-4147-968e-04f3eda0eaf8", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "67e3e68a-861a-4738-9cca-c5d41a747ec8", + "x-ms-arm-service-request-id" : "b1ba0861-fd0b-41c3-ad62-39344ad81452", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083722Z:714eedba-ec0d-4a71-ae67-08827eda035b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070008Z:e3701333-28ee-4147-968e-04f3eda0eaf8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7d386f81-6a4c-4449-8d83-2ebc4ebef0b7", - "Body" : "{\r\n \"name\": \"pip31611a59\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/publicIPAddresses/pip31611a59\",\r\n \"etag\": \"W/\\\"81981adf-fa34-4a19-8f4c-6d5a0470939c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6e634961-a3f8-4909-84dd-b317e247cc4c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipe3578893e641\",\r\n \"fqdn\": \"pipe3578893e641.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7d386f81-6a4c-4449-8d83-2ebc4ebef0b7?api-version=2019-06-01" + "x-ms-request-id" : "621c84e5-c636-4d41-9d04-c076cf11fa23", + "Body" : "{\r\n \"name\": \"pip7725161b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/publicIPAddresses/pip7725161b\",\r\n \"etag\": \"W/\\\"95732a92-1526-468e-9bdb-94ec179643db\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ee93d28d-9871-47bc-a7ad-d1d43769e91e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipdaa68441df85\",\r\n \"fqdn\": \"pipdaa68441df85.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/621c84e5-c636-4d41-9d04-c076cf11fa23?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/bd71033b-cfb3-47f5-9314-62095971ac00?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/124263bb-399e-4acf-b618-71cb322dd3ff?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:44 GMT", + "date" : "Mon, 18 May 2020 07:00:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "820", + "content-length" : "876", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10424", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fa7d6e5b-7081-440e-a5af-fedd91a17f65", + "x-ms-correlation-request-id" : "761fa040-f644-43a0-94d1-9093250587d7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083745Z:fa7d6e5b-7081-440e-a5af-fedd91a17f65", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070035Z:761fa040-f644-43a0-94d1-9093250587d7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "907c9d49-bd87-42cf-a438-408431492f93", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:37:14.7386141+00:00\",\r\n \"endTime\": \"2020-03-05T08:37:14.8479787+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_1d93720609\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_1d93720609\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:37:14.7386141+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"dfdde5e1-af68-481f-9776-510637be50c3\"}}\r\n },\r\n \"name\": \"bd71033b-cfb3-47f5-9314-62095971ac00\"\r\n}" + "x-ms-request-id" : "76c60439-a836-4403-b613-6fb3d01dcca5", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:00:04.9407765+00:00\",\r\n \"endTime\": \"2020-05-18T07:00:05.1126724+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_58d0944298\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_58d0944298\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:00:04.9407765+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"b7e02c84-81b0-4a4d-8bc1-21113c01702d\"}}\r\n },\r\n \"name\": \"124263bb-399e-4acf-b618-71cb322dd3ff\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5e017fb6-a0b3-4ed6-aaeb-7383b2c7444c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/835381e4-2d0c-4147-beda-2de339803e48?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:47 GMT", + "date" : "Mon, 18 May 2020 07:00:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "820", + "content-length" : "876", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10227", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "54ff3573-b579-4cc5-9848-c75e7eff092b", + "x-ms-correlation-request-id" : "23531c2b-5dd7-457e-af93-31c3ceefe1ba", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083747Z:54ff3573-b579-4cc5-9848-c75e7eff092b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399987", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070036Z:23531c2b-5dd7-457e-af93-31c3ceefe1ba", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c5b1f2fc-b175-4439-b81f-4658eb5f5809", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:37:16.3167294+00:00\",\r\n \"endTime\": \"2020-03-05T08:37:16.4260907+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_d6004676fe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_d6004676fe\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:37:16.3167294+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"ff48d75d-901c-44af-ab03-d6fa7aa6a858\"}}\r\n },\r\n \"name\": \"5e017fb6-a0b3-4ed6-aaeb-7383b2c7444c\"\r\n}" + "x-ms-request-id" : "606d4d9c-8129-4d20-9e87-e75b0651fdf2", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:00:05.3626683+00:00\",\r\n \"endTime\": \"2020-05-18T07:00:05.5189196+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_b6366667fd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_b6366667fd\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:00:05.3626683+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"4ac77ad1-f6f1-43c2-92dd-70bd6e695b85\"}}\r\n },\r\n \"name\": \"835381e4-2d0c-4147-beda-2de339803e48\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6b40dadd-4268-4501-92d6-7dbc9572629d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0db30be6-bbee-420c-9fb2-aa854fe3146c?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:47 GMT", + "date" : "Mon, 18 May 2020 07:00:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "819", + "content-length" : "876", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9973", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "502316c3-64b1-4a94-b76b-4e76a212d3d0", + "x-ms-correlation-request-id" : "2a8dfb89-b4d0-4284-8a70-ebf38774c2fc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083747Z:502316c3-64b1-4a94-b76b-4e76a212d3d0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399982", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070037Z:2a8dfb89-b4d0-4284-8a70-ebf38774c2fc", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "39a5f2b9-b487-48eb-a8a7-6974bafddc11", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:37:16.5354873+00:00\",\r\n \"endTime\": \"2020-03-05T08:37:16.644841+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_56856524a9\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_56856524a9\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:37:16.5354873+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"f296baf4-6713-440a-ae48-76b575ba7ff5\"}}\r\n },\r\n \"name\": \"6b40dadd-4268-4501-92d6-7dbc9572629d\"\r\n}" + "x-ms-request-id" : "7aafc49d-d1c2-4512-a116-62a201f304f9", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:00:06.5501756+00:00\",\r\n \"endTime\": \"2020-05-18T07:00:06.6907997+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_c7260946f8\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_c7260946f8\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:00:06.5501756+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"83c3224b-a8c5-4e5b-a2bb-7d529642e1c6\"}}\r\n },\r\n \"name\": \"0db30be6-bbee-420c-9fb2-aa854fe3146c\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35763b53-ffe3-46af-a583-95805673267d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/358479b9-aee6-4cff-b1f6-f3a7117773f8?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:51 GMT", + "date" : "Mon, 18 May 2020 07:00:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10423", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aa817a8a-b215-4e35-a204-149e23e99237", + "x-ms-correlation-request-id" : "ca5469a3-3e97-4871-9821-1bc9b26a7519", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "aceac42f-c65e-4a5b-8e0d-d62ed6dddeb8", + "x-ms-arm-service-request-id" : "d121191f-795a-4c8a-a725-3d52360c95e7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083752Z:aa817a8a-b215-4e35-a204-149e23e99237", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070039Z:ca5469a3-3e97-4871-9821-1bc9b26a7519", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0a323154-afba-44b3-ad86-7f19fe4475fb", + "x-ms-request-id" : "df156d5a-ac95-48a5-9762-fe51200b4609", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7d386f81-6a4c-4449-8d83-2ebc4ebef0b7?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/621c84e5-c636-4d41-9d04-c076cf11fa23?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:52 GMT", + "date" : "Mon, 18 May 2020 07:00:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10266", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c93bd001-4e26-42cc-881a-b95068bbd3dc", + "x-ms-correlation-request-id" : "1ab9688c-378f-4b32-9caf-59e2abc89472", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7463c627-726b-4e67-83f4-75ff7e4a9dc7", + "x-ms-arm-service-request-id" : "d5fd1333-8f74-4c3c-8cc5-90d1bc1bde39", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083753Z:c93bd001-4e26-42cc-881a-b95068bbd3dc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070039Z:1ab9688c-378f-4b32-9caf-59e2abc89472", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "217698a0-9932-4ce9-a46a-1bcc97484945", + "x-ms-request-id" : "28e2edf9-b5be-49c6-8da7-f032c52f1997", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_1d93720609?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_58d0944298?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:15 GMT", + "date" : "Mon, 18 May 2020 07:01:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "732", + "content-length" : "810", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10204", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "303e6b50-ccfd-403b-a905-c5f2fd171d54", + "x-ms-correlation-request-id" : "8d46a65b-4af8-4300-afbe-6c9312281909", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083815Z:303e6b50-ccfd-403b-a905-c5f2fd171d54", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39980", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070106Z:8d46a65b-4af8-4300-afbe-6c9312281909", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bb50b099-b042-4abb-bcd8-c4ac9cc94de4", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_1d93720609\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_1d93720609\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:37:14.7386141+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"dfdde5e1-af68-481f-9776-510637be50c3\"\r\n }\r\n}" + "x-ms-request-id" : "07005688-6fcd-4ff6-ba85-3cc6e606e39e", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_58d0944298\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_58d0944298\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:00:04.9407765+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"b7e02c84-81b0-4a4d-8bc1-21113c01702d\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_d6004676fe?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_b6366667fd?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:17 GMT", + "date" : "Mon, 18 May 2020 07:01:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "732", + "content-length" : "810", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10226", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "869f3ea8-659e-4ec6-b4b5-e6837ac861ce", + "x-ms-correlation-request-id" : "2ba2b9ac-8346-4be8-aed4-c37ca28dbefe", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083817Z:869f3ea8-659e-4ec6-b4b5-e6837ac861ce", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4978,Microsoft.Compute/LowCostGet30Min;39978", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070106Z:2ba2b9ac-8346-4be8-aed4-c37ca28dbefe", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c0b40e73-ee89-4cc9-ab15-0b2a0b74e79c", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_d6004676fe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_d6004676fe\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:37:16.3167294+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"ff48d75d-901c-44af-ab03-d6fa7aa6a858\"\r\n }\r\n}" + "x-ms-request-id" : "aeacdc0c-c891-4207-9daf-28dd798f4a25", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_b6366667fd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_b6366667fd\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:00:05.3626683+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"4ac77ad1-f6f1-43c2-92dd-70bd6e695b85\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_56856524a9?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_c7260946f8?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:17 GMT", + "date" : "Mon, 18 May 2020 07:01:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "732", + "content-length" : "810", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10225", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ebe53c9c-f44b-4396-a1df-d059d85febba", + "x-ms-correlation-request-id" : "8064cc99-4ab8-4599-952b-d5e542d989c2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083818Z:ebe53c9c-f44b-4396-a1df-d059d85febba", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4973,Microsoft.Compute/LowCostGet30Min;39973", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070107Z:8064cc99-4ab8-4599-952b-d5e542d989c2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8132ab38-e880-437f-8e08-64ae0c85743e", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_56856524a9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_56856524a9\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:37:16.5354873+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"f296baf4-6713-440a-ae48-76b575ba7ff5\"\r\n }\r\n}" + "x-ms-request-id" : "a5bc8cae-38f7-4177-8233-16efd1b1d063", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_c7260946f8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_c7260946f8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:00:06.5501756+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"83c3224b-a8c5-4e5b-a2bb-7d529642e1c6\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/virtualNetworks/vnet402192fa96?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/virtualNetworks/vnet7132691b1a?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:21 GMT", + "date" : "Mon, 18 May 2020 07:01:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1344", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9749", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "393bad6f-1721-4403-b96e-cb6912b5ef1f", + "x-ms-correlation-request-id" : "eb9ed7c1-f146-4b7f-949c-6597b42da203", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ee3a5431-91d9-40b5-acc9-81c81b7b2326", + "x-ms-arm-service-request-id" : "ee7d4871-ad64-45d0-b886-948c55ed0005", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083822Z:393bad6f-1721-4403-b96e-cb6912b5ef1f", - "etag" : "W/\"5157a2c7-575b-4134-831b-954d00e813d2\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070109Z:eb9ed7c1-f146-4b7f-949c-6597b42da203", + "etag" : "W/\"39b342c3-401e-4331-8817-16209b404024\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "28f23a35-aafe-48f7-af3f-270e2e38cdbb", - "Body" : "{\r\n \"name\": \"vnet402192fa96\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/virtualNetworks/vnet402192fa96\",\r\n \"etag\": \"W/\\\"5157a2c7-575b-4134-831b-954d00e813d2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"571818b0-5699-4192-93bc-85a11469c347\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/virtualNetworks/vnet402192fa96/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5157a2c7-575b-4134-831b-954d00e813d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "3d46a0e2-fbf2-430e-baa5-60ea7dcdf7e6", + "Body" : "{\r\n \"name\": \"vnet7132691b1a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/virtualNetworks/vnet7132691b1a\",\r\n \"etag\": \"W/\\\"39b342c3-401e-4331-8817-16209b404024\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"70b9d0ba-5d2c-476b-985d-b368c6b43ee3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/virtualNetworks/vnet7132691b1a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"39b342c3-401e-4331-8817-16209b404024\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/publicIPAddresses/pip31611a59?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/publicIPAddresses/pip7725161b?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:22 GMT", + "date" : "Mon, 18 May 2020 07:01:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "759", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10223", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "97df8c3c-3988-4d0a-8484-9b5e2e498dcc", + "x-ms-correlation-request-id" : "cee907d4-c364-4c26-beaa-d861dcf32a37", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "78efec25-8959-4e16-8187-0b34a4624768", + "x-ms-arm-service-request-id" : "ae9d1a4c-aa01-45b0-9aa3-c73a61542f65", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083823Z:97df8c3c-3988-4d0a-8484-9b5e2e498dcc", - "etag" : "W/\"56a1f284-0d9c-410b-99f8-fb449e3db70a\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070110Z:cee907d4-c364-4c26-beaa-d861dcf32a37", + "etag" : "W/\"c2c49255-2985-4ec8-b21f-840990097da9\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ebf0c084-b3cf-427d-afed-dee5917b0e42", - "Body" : "{\r\n \"name\": \"pip31611a59\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/publicIPAddresses/pip31611a59\",\r\n \"etag\": \"W/\\\"56a1f284-0d9c-410b-99f8-fb449e3db70a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6e634961-a3f8-4909-84dd-b317e247cc4c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipe3578893e641\",\r\n \"fqdn\": \"pipe3578893e641.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "28e5c83d-faca-4037-85f5-bb54e5c479f8", + "Body" : "{\r\n \"name\": \"pip7725161b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/publicIPAddresses/pip7725161b\",\r\n \"etag\": \"W/\\\"c2c49255-2985-4ec8-b21f-840990097da9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee93d28d-9871-47bc-a7ad-d1d43769e91e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipdaa68441df85\",\r\n \"fqdn\": \"pipdaa68441df85.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/networkInterfaces/nicmyvm18be631279a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/networkInterfaces/nicmyvm1b9202535a9?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:30 GMT", + "date" : "Mon, 18 May 2020 07:01:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1854", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "80f7f0d6-3e2a-41a8-9ba9-ef925e2713b0", + "x-ms-correlation-request-id" : "d1113f5a-cca8-4e6d-9e92-e9ae631154ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5e9e20cd-b85d-42ea-acc7-1f1c903de788", + "x-ms-arm-service-request-id" : "3387fafd-9cc8-4fe9-867f-8b6cf9075da2", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083830Z:80f7f0d6-3e2a-41a8-9ba9-ef925e2713b0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070117Z:d1113f5a-cca8-4e6d-9e92-e9ae631154ac", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "32a7a28e-6ec0-4c6c-93e4-b9947c369b26", - "Body" : "{\r\n \"name\": \"nicmyvm18be631279a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/networkInterfaces/nicmyvm18be631279a\",\r\n \"etag\": \"W/\\\"8bee6faa-cb03-4638-a8a1-768d82db1102\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d443cc86-b956-4983-bfcf-679076955113\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/networkInterfaces/nicmyvm18be631279a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8bee6faa-cb03-4638-a8a1-768d82db1102\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/publicIPAddresses/pip31611a59\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/virtualNetworks/vnet402192fa96/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wambqv2zk0jede32qwqri0odih.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/32a7a28e-6ec0-4c6c-93e4-b9947c369b26?api-version=2019-06-01" + "x-ms-request-id" : "02665e7b-3129-4ca8-9f22-68855c8b0726", + "Body" : "{\r\n \"name\": \"nicmyvm1b9202535a9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/networkInterfaces/nicmyvm1b9202535a9\",\r\n \"etag\": \"W/\\\"fa5a5e87-fb98-49ce-b53b-72ab183b2b78\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e5aad4bc-216c-42ad-880a-08e7b7fd5d96\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/networkInterfaces/nicmyvm1b9202535a9/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"fa5a5e87-fb98-49ce-b53b-72ab183b2b78\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/publicIPAddresses/pip7725161b\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/virtualNetworks/vnet7132691b1a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xlils2bmlvvupgc3wnumnnb42d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/02665e7b-3129-4ca8-9f22-68855c8b0726?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/32a7a28e-6ec0-4c6c-93e4-b9947c369b26?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/02665e7b-3129-4ca8-9f22-68855c8b0726?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:00 GMT", + "date" : "Mon, 18 May 2020 07:01:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9961", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2dda92f8-0f22-4da8-8197-54a5870e6a60", + "x-ms-correlation-request-id" : "f7a3af19-4185-4b5b-b546-101901954181", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1da7a790-7284-4480-a3b4-b37fa0769590", + "x-ms-arm-service-request-id" : "cd1bca53-95fc-43dc-bc6a-87ef26843028", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083901Z:2dda92f8-0f22-4da8-8197-54a5870e6a60", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070148Z:f7a3af19-4185-4b5b-b546-101901954181", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "016c8321-a890-4ad7-b4c8-1530b96ddb99", + "x-ms-request-id" : "6b13a76b-7781-43af-bd60-d51d6894e4fc", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/networkInterfaces/nicmyvm18be631279a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/networkInterfaces/nicmyvm1b9202535a9?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:31 GMT", + "date" : "Mon, 18 May 2020 07:02:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1854", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10198", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "076f03ca-ec51-42fa-99d0-312360fc8b79", + "x-ms-correlation-request-id" : "4e7dfb55-e49e-4efc-9a0b-368fe1b802f0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8a6db051-7ff7-4476-821a-8e353c87ae14", + "x-ms-arm-service-request-id" : "e3cf9b8e-9753-4ce2-8d25-696b187e89fa", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083932Z:076f03ca-ec51-42fa-99d0-312360fc8b79", - "etag" : "W/\"8bee6faa-cb03-4638-a8a1-768d82db1102\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070219Z:4e7dfb55-e49e-4efc-9a0b-368fe1b802f0", + "etag" : "W/\"fa5a5e87-fb98-49ce-b53b-72ab183b2b78\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fc6de68a-47f0-4ef8-8d25-e0dc5c2ea2d3", - "Body" : "{\r\n \"name\": \"nicmyvm18be631279a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/networkInterfaces/nicmyvm18be631279a\",\r\n \"etag\": \"W/\\\"8bee6faa-cb03-4638-a8a1-768d82db1102\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d443cc86-b956-4983-bfcf-679076955113\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/networkInterfaces/nicmyvm18be631279a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8bee6faa-cb03-4638-a8a1-768d82db1102\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/publicIPAddresses/pip31611a59\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/virtualNetworks/vnet402192fa96/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wambqv2zk0jede32qwqri0odih.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "7e71a3bb-5aea-4d9b-9880-86e7a35e3faf", + "Body" : "{\r\n \"name\": \"nicmyvm1b9202535a9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/networkInterfaces/nicmyvm1b9202535a9\",\r\n \"etag\": \"W/\\\"fa5a5e87-fb98-49ce-b53b-72ab183b2b78\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e5aad4bc-216c-42ad-880a-08e7b7fd5d96\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/networkInterfaces/nicmyvm1b9202535a9/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"fa5a5e87-fb98-49ce-b53b-72ab183b2b78\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/publicIPAddresses/pip7725161b\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/virtualNetworks/vnet7132691b1a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xlils2bmlvvupgc3wnumnnb42d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:38 GMT", + "date" : "Mon, 18 May 2020 07:02:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3424", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b0a755b7-9d4a-4d28-b0c4-87f8e9260840", + "x-ms-correlation-request-id" : "75880f1f-40fb-487e-8b1c-0375b89fc885", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1194", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083939Z:b0a755b7-9d4a-4d28-b0c4-87f8e9260840", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070227Z:75880f1f-40fb-487e-8b1c-0375b89fc885", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c47c7a7f-7eee-45ca-9430-935774c63e73", - "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"aa191a00-789f-4a4c-9997-d3dde3d0575a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_56856524a9\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_56856524a9\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_d6004676fe\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_d6004676fe\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_1d93720609\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_1d93720609\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/networkInterfaces/nicmyvm18be631279a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c47c7a7f-7eee-45ca-9430-935774c63e73?api-version=2019-03-01" + "x-ms-request-id" : "c04f2e55-53ad-4f86-ae6a-658d18505088", + "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2ea0d43f-0ac2-45db-92d6-4d40b8bc9d0f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_c7260946f8\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_c7260946f8\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_58d0944298\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_58d0944298\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_b6366667fd\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_b6366667fd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/networkInterfaces/nicmyvm1b9202535a9\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c04f2e55-53ad-4f86-ae6a-658d18505088?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c47c7a7f-7eee-45ca-9430-935774c63e73?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c04f2e55-53ad-4f86-ae6a-658d18505088?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:08 GMT", + "date" : "Mon, 18 May 2020 07:02:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10569", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "223247bb-39f2-45e2-9c18-9694a669e58c", + "x-ms-correlation-request-id" : "6299c402-f069-4ae6-8f27-ff2e93e99b9e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084009Z:223247bb-39f2-45e2-9c18-9694a669e58c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "835c3308-35bd-456b-a811-f3f3bc26fe9a", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:37.4985339+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c47c7a7f-7eee-45ca-9430-935774c63e73\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c47c7a7f-7eee-45ca-9430-935774c63e73?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:39 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10537", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cb709add-bed8-4b3b-962d-c23a25b3d8ce", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084039Z:cb709add-bed8-4b3b-962d-c23a25b3d8ce", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070257Z:6299c402-f069-4ae6-8f27-ff2e93e99b9e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c328fe79-b75c-48d5-896a-98038993e818", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:37.4985339+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c47c7a7f-7eee-45ca-9430-935774c63e73\"\r\n}" + "x-ms-request-id" : "68139e47-e823-46c3-9d0a-262224b0066f", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:25.4354033+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c04f2e55-53ad-4f86-ae6a-658d18505088\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c47c7a7f-7eee-45ca-9430-935774c63e73?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c04f2e55-53ad-4f86-ae6a-658d18505088?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:09 GMT", + "date" : "Mon, 18 May 2020 07:03:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10205", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c36cbc33-86f5-4b45-8593-93bb779bb0f0", + "x-ms-correlation-request-id" : "8ad2e53b-744f-41ca-8ca8-9ccb70f2440b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084109Z:c36cbc33-86f5-4b45-8593-93bb779bb0f0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070328Z:8ad2e53b-744f-41ca-8ca8-9ccb70f2440b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9ce2b7a9-f291-4cc1-979f-cb1562eebc52", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:37.4985339+00:00\",\r\n \"endTime\": \"2020-03-05T08:40:57.1083123+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c47c7a7f-7eee-45ca-9430-935774c63e73\"\r\n}" + "x-ms-request-id" : "7500cba1-7dde-48c9-88af-9e1cd9aa4a00", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:25.4354033+00:00\",\r\n \"endTime\": \"2020-05-18T07:03:25.6231878+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c04f2e55-53ad-4f86-ae6a-658d18505088\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:39 GMT", + "date" : "Mon, 18 May 2020 07:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "4177", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10402", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "559917fe-06e8-4db3-a471-9362871d64cf", + "x-ms-correlation-request-id" : "5a793ee0-7037-427a-b031-d40e530af841", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084140Z:559917fe-06e8-4db3-a471-9362871d64cf", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31987", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070358Z:5a793ee0-7037-427a-b031-d40e530af841", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0eca4f14-4610-49a1-8a31-b30fe52caf99", - "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"aa191a00-789f-4a4c-9997-d3dde3d0575a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_4236c3e809484703856afd3445d1f2ef\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG91927/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_4236c3e809484703856afd3445d1f2ef\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_56856524a9\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_56856524a9\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_d6004676fe\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_d6004676fe\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_1d93720609\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Compute/disks/myvm1_mdisk_1d93720609\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm1_disk5_b6b828dff2134d129ed861f2d2f314c9\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG91927/providers/Microsoft.Compute/disks/myvm1_disk5_b6b828dff2134d129ed861f2d2f314c9\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm1_disk6_8d53fcfa4ab34beca62e00ec236f5328\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG91927/providers/Microsoft.Compute/disks/myvm1_disk6_8d53fcfa4ab34beca62e00ec236f5328\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg91927/providers/Microsoft.Network/networkInterfaces/nicmyvm18be631279a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "cd5fd102-2912-4311-906e-beaf0b2fab30", + "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2ea0d43f-0ac2-45db-92d6-4d40b8bc9d0f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_ad2c3461ad7242728a9e52c8d4cef6de\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG98060/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_ad2c3461ad7242728a9e52c8d4cef6de\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_c7260946f8\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_c7260946f8\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_58d0944298\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_58d0944298\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_b6366667fd\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Compute/disks/myvm1_mdisk_b6366667fd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm1_disk5_0fd078705a504aeab8c512cf6c098598\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG98060/providers/Microsoft.Compute/disks/myvm1_disk5_0fd078705a504aeab8c512cf6c098598\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm1_disk6_df6ca042b7bb440caa23176a6da738e8\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG98060/providers/Microsoft.Compute/disks/myvm1_disk6_df6ca042b7bb440caa23176a6da738e8\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg98060/providers/Microsoft.Network/networkInterfaces/nicmyvm1b9202535a9\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg91927?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg98060?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:47 GMT", + "date" : "Mon, 18 May 2020 07:04:03 GMT", "content-length" : "0", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5735a621-4fba-4738-8dbc-7537c3bdd84b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084147Z:5735a621-4fba-4738-8dbc-7537c3bdd84b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "5735a621-4fba-4738-8dbc-7537c3bdd84b", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:17 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10199", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ef666611-a64e-43c3-8b02-32f6767f8f8c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084218Z:ef666611-a64e-43c3-8b02-32f6767f8f8c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "ef666611-a64e-43c3-8b02-32f6767f8f8c", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:49 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10298", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "68be431b-1b61-4427-8116-289e5ce98499", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084249Z:68be431b-1b61-4427-8116-289e5ce98499", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "68be431b-1b61-4427-8116-289e5ce98499", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:20 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9720", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e3f8a182-1b7f-4b37-ae5a-5edd14510b40", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084321Z:e3f8a182-1b7f-4b37-ae5a-5edd14510b40", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "e3f8a182-1b7f-4b37-ae5a-5edd14510b40", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:52 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10195", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8e9d97a3-f662-4e89-94fb-3d97dfb5ea11", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084352Z:8e9d97a3-f662-4e89-94fb-3d97dfb5ea11", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "8e9d97a3-f662-4e89-94fb-3d97dfb5ea11", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:23 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10291", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "78e8859d-9020-4481-96ae-6d867625305a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084423Z:78e8859d-9020-4481-96ae-6d867625305a", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "78e8859d-9020-4481-96ae-6d867625305a", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:54 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10540", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3fe883cf-5143-4afb-be85-5ce1b4b97468", + "x-ms-correlation-request-id" : "9ef2aa2d-1de5-449e-a818-f42b413bfec0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084454Z:3fe883cf-5143-4afb-be85-5ce1b4b97468", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070403Z:9ef2aa2d-1de5-449e-a818-f42b413bfec0", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "3fe883cf-5143-4afb-be85-5ce1b4b97468", + "x-ms-request-id" : "9ef2aa2d-1de5-449e-a818-f42b413bfec0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:25 GMT", + "date" : "Mon, 18 May 2020 07:04:33 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10064", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "301edc7f-0f7a-4dbd-bffc-230b0909895d", + "x-ms-correlation-request-id" : "ed94b5c7-43d8-481f-8159-a86252e6da96", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084525Z:301edc7f-0f7a-4dbd-bffc-230b0909895d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070434Z:ed94b5c7-43d8-481f-8159-a86252e6da96", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "301edc7f-0f7a-4dbd-bffc-230b0909895d", + "x-ms-request-id" : "ed94b5c7-43d8-481f-8159-a86252e6da96", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:56 GMT", + "date" : "Mon, 18 May 2020 07:05:04 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10178", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "774e8a21-2798-40cd-88da-0e8488d24909", + "x-ms-correlation-request-id" : "94c12678-6000-4708-a512-fefee41b9846", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084556Z:774e8a21-2798-40cd-88da-0e8488d24909", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070505Z:94c12678-6000-4708-a512-fefee41b9846", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "774e8a21-2798-40cd-88da-0e8488d24909", + "x-ms-request-id" : "94c12678-6000-4708-a512-fefee41b9846", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:27 GMT", + "date" : "Mon, 18 May 2020 07:05:36 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10253", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "402c6df2-3e03-4d5a-bf88-ef6b048b8929", + "x-ms-correlation-request-id" : "7fad3ecf-73fd-4c5d-9cf0-10315e4bb1c5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084627Z:402c6df2-3e03-4d5a-bf88-ef6b048b8929", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070537Z:7fad3ecf-73fd-4c5d-9cf0-10315e4bb1c5", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "402c6df2-3e03-4d5a-bf88-ef6b048b8929", + "x-ms-request-id" : "7fad3ecf-73fd-4c5d-9cf0-10315e4bb1c5", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:58 GMT", + "date" : "Mon, 18 May 2020 07:06:07 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10528", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "21205cae-69d2-42d9-86f6-2aec19a7c32c", + "x-ms-correlation-request-id" : "1e0cf5aa-494a-40ce-b285-4a13f00b4483", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084659Z:21205cae-69d2-42d9-86f6-2aec19a7c32c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070608Z:1e0cf5aa-494a-40ce-b285-4a13f00b4483", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "21205cae-69d2-42d9-86f6-2aec19a7c32c", + "x-ms-request-id" : "1e0cf5aa-494a-40ce-b285-4a13f00b4483", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:29 GMT", + "date" : "Mon, 18 May 2020 07:06:39 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9697", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "50981edb-94e7-4ae2-9cb5-53fd20b00407", + "x-ms-correlation-request-id" : "6621f69c-55e8-4b3a-999a-9671670ed907", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084729Z:50981edb-94e7-4ae2-9cb5-53fd20b00407", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070640Z:6621f69c-55e8-4b3a-999a-9671670ed907", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "50981edb-94e7-4ae2-9cb5-53fd20b00407", + "x-ms-request-id" : "6621f69c-55e8-4b3a-999a-9671670ed907", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:00 GMT", + "date" : "Mon, 18 May 2020 07:07:10 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10794", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f4a0999d-a1ac-43fb-9b43-99507285161b", + "x-ms-correlation-request-id" : "39a83f4c-05e6-43f5-88b7-843419ef34ef", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084800Z:f4a0999d-a1ac-43fb-9b43-99507285161b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070710Z:39a83f4c-05e6-43f5-88b7-843419ef34ef", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f4a0999d-a1ac-43fb-9b43-99507285161b", + "x-ms-request-id" : "39a83f4c-05e6-43f5-88b7-843419ef34ef", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:31 GMT", + "date" : "Mon, 18 May 2020 07:07:41 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9892", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bbaa2501-9924-4a9b-9cbe-634fef0f2793", + "x-ms-correlation-request-id" : "5de9b1e9-e52c-448c-8cae-25752be7a494", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084832Z:bbaa2501-9924-4a9b-9cbe-634fef0f2793", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070742Z:5de9b1e9-e52c-448c-8cae-25752be7a494", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "bbaa2501-9924-4a9b-9cbe-634fef0f2793", + "x-ms-request-id" : "5de9b1e9-e52c-448c-8cae-25752be7a494", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:02 GMT", + "date" : "Mon, 18 May 2020 07:08:12 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10900", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b9e2d2c7-aa62-4977-82a0-bfc3ed41fb73", + "x-ms-correlation-request-id" : "f2f8b00f-31aa-4a82-bb79-83c86eaf24ad", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084903Z:b9e2d2c7-aa62-4977-82a0-bfc3ed41fb73", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070813Z:f2f8b00f-31aa-4a82-bb79-83c86eaf24ad", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b9e2d2c7-aa62-4977-82a0-bfc3ed41fb73", + "x-ms-request-id" : "f2f8b00f-31aa-4a82-bb79-83c86eaf24ad", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:33 GMT", + "date" : "Mon, 18 May 2020 07:08:44 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10041", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "064c5b4f-4ccc-44e2-b9a3-105372ecd5d3", + "x-ms-correlation-request-id" : "4039e2a0-78ed-49ce-b043-aeb250d582ca", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084934Z:064c5b4f-4ccc-44e2-b9a3-105372ecd5d3", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070844Z:4039e2a0-78ed-49ce-b043-aeb250d582ca", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "064c5b4f-4ccc-44e2-b9a3-105372ecd5d3", + "x-ms-request-id" : "4039e2a0-78ed-49ce-b043-aeb250d582ca", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:04 GMT", + "date" : "Mon, 18 May 2020 07:09:15 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10368", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cf06d047-9f61-4d5e-a66f-a465715cd2cb", + "x-ms-correlation-request-id" : "cdcb840f-454f-4f53-8b91-adda634a8489", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085004Z:cf06d047-9f61-4d5e-a66f-a465715cd2cb", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070915Z:cdcb840f-454f-4f53-8b91-adda634a8489", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "cf06d047-9f61-4d5e-a66f-a465715cd2cb", + "x-ms-request-id" : "cdcb840f-454f-4f53-8b91-adda634a8489", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:35 GMT", + "date" : "Mon, 18 May 2020 07:09:45 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10374", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "df75a88a-5da5-4aae-a14d-1f6a5792792d", + "x-ms-correlation-request-id" : "a7eda415-f744-4e59-98ef-58328cef5df9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085036Z:df75a88a-5da5-4aae-a14d-1f6a5792792d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070946Z:a7eda415-f744-4e59-98ef-58328cef5df9", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "df75a88a-5da5-4aae-a14d-1f6a5792792d", + "x-ms-request-id" : "a7eda415-f744-4e59-98ef-58328cef5df9", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:06 GMT", + "date" : "Mon, 18 May 2020 07:10:16 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9674", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "11c3c2bb-a977-42e5-bb52-caf3a1fcf45e", + "x-ms-correlation-request-id" : "7b419005-d620-4cbc-b09b-7e54f19d7a81", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085107Z:11c3c2bb-a977-42e5-bb52-caf3a1fcf45e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071016Z:7b419005-d620-4cbc-b09b-7e54f19d7a81", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "11c3c2bb-a977-42e5-bb52-caf3a1fcf45e", + "x-ms-request-id" : "7b419005-d620-4cbc-b09b-7e54f19d7a81", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:38 GMT", + "date" : "Mon, 18 May 2020 07:10:48 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10464", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d4e2dd1e-3b28-4b53-8c08-f651b87bc7d8", + "x-ms-correlation-request-id" : "db884086-1705-4f13-bccc-869040982d65", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085138Z:d4e2dd1e-3b28-4b53-8c08-f651b87bc7d8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071048Z:db884086-1705-4f13-bccc-869040982d65", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "d4e2dd1e-3b28-4b53-8c08-f651b87bc7d8", + "x-ms-request-id" : "db884086-1705-4f13-bccc-869040982d65", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:09 GMT", + "date" : "Mon, 18 May 2020 07:11:18 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10758", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f1438d07-dd92-4dec-9911-baaf4ba503fc", + "x-ms-correlation-request-id" : "b74c5dd8-2316-43db-a142-373c56d1129d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085209Z:f1438d07-dd92-4dec-9911-baaf4ba503fc", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071119Z:b74c5dd8-2316-43db-a142-373c56d1129d", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f1438d07-dd92-4dec-9911-baaf4ba503fc", + "x-ms-request-id" : "b74c5dd8-2316-43db-a142-373c56d1129d", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MTkyNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5ODA2MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:40 GMT", + "date" : "Mon, 18 May 2020 07:11:49 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9861", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "08c51a6a-9562-4294-83e9-778c2e8d00fb", + "x-ms-correlation-request-id" : "b46795c6-c621-4059-aee7-7b35418daee1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085241Z:08c51a6a-9562-4294-83e9-778c2e8d00fb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071150Z:b46795c6-c621-4059-aee7-7b35418daee1", "cache-control" : "no-cache", - "x-ms-request-id" : "08c51a6a-9562-4294-83e9-778c2e8d00fb", + "x-ms-request-id" : "b46795c6-c621-4059-aee7-7b35418daee1", "Body" : "" } } ], - "variables" : [ "javacsmrg91927", "pipe3578893e641", "myvm1_mdisk_d6004676fe", "myvm1_mdisk_1d93720609", "myvm1_mdisk_56856524a9", "nicmyvm18be631279a", "vnet402192fa96", "pip31611a59" ] + "variables" : [ "javacsmrg98060", "pipdaa68441df85", "myvm1_mdisk_c7260946f8", "myvm1_mdisk_b6366667fd", "myvm1_mdisk_58d0944298", "nicmyvm1b9202535a9", "vnet7132691b1a", "pip7725161b" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineByAttachingManagedOsDisk.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineByAttachingManagedOsDisk.json index c776c9abe961..80d56e38cc87 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineByAttachingManagedOsDisk.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineByAttachingManagedOsDisk.json @@ -1,1417 +1,1084 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg02372?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg07415?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:24 GMT", + "date" : "Mon, 18 May 2020 06:59:59 GMT", "content-length" : "309", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2cb45dcc-3609-4390-8c2f-8e41486ae17d", + "x-ms-correlation-request-id" : "bc3fdee5-6d7b-4270-bb79-da5acee7ffa3", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085125Z:2cb45dcc-3609-4390-8c2f-8e41486ae17d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065959Z:bc3fdee5-6d7b-4270-bb79-da5acee7ffa3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2cb45dcc-3609-4390-8c2f-8e41486ae17d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372\",\"name\":\"javacsmrg02372\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-03-05T08:51:20.993Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "bc3fdee5-6d7b-4270-bb79-da5acee7ffa3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415\",\"name\":\"javacsmrg07415\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-05-18T06:59:57.322Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Storage/storageAccounts/stg9c229830cc8?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Storage/storageAccounts/stg4e132363e80?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:29 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7e1bccac-7145-4be9-99df-19303e70f7bb", + "x-ms-correlation-request-id" : "0a81b4ea-63cd-457d-b94c-06f0a404e169", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085130Z:7e1bccac-7145-4be9-99df-19303e70f7bb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070006Z:0a81b4ea-63cd-457d-b94c-06f0a404e169", "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/5b1217ae-db9b-4621-bea7-dc5d2556e6b3?monitor=true&api-version=2019-06-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/b65ed416-8c3e-49b2-acbd-a4f32c234d57?monitor=true&api-version=2019-06-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5b1217ae-db9b-4621-bea7-dc5d2556e6b3", + "x-ms-request-id" : "b65ed416-8c3e-49b2-acbd-a4f32c234d57", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet12882392ea?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet91838be07a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:31 GMT", + "date" : "Mon, 18 May 2020 07:00:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1342", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3e73803f-03cb-40b5-8fc6-e338b2ef8376", + "x-ms-correlation-request-id" : "0dc72986-ba49-4d9f-90b3-530313325834", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6c908946-05c7-4b06-af4c-9219b3e65f2a", + "x-ms-arm-service-request-id" : "2023d6c6-7f7e-4ab1-9c94-867cff0a5345", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085131Z:3e73803f-03cb-40b5-8fc6-e338b2ef8376", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070007Z:0dc72986-ba49-4d9f-90b3-530313325834", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a92b4a3a-4611-4087-a8c7-711a77c5e9a5", - "Body" : "{\r\n \"name\": \"vnet12882392ea\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet12882392ea\",\r\n \"etag\": \"W/\\\"f83832f7-6ea4-4bd1-bf0f-50aa13abeadc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"44a6a6c7-ee4f-4b1d-b3de-171ce94e5faf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet12882392ea/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f83832f7-6ea4-4bd1-bf0f-50aa13abeadc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a92b4a3a-4611-4087-a8c7-711a77c5e9a5?api-version=2019-06-01" + "x-ms-request-id" : "79ec803d-9ab9-4e0f-8d3d-9f122c97683f", + "Body" : "{\r\n \"name\": \"vnet91838be07a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet91838be07a\",\r\n \"etag\": \"W/\\\"d8934921-3fb6-42ae-9239-17a9baf067fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a35c3d9a-28ea-48d4-a6ec-a415168fad55\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet91838be07a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d8934921-3fb6-42ae-9239-17a9baf067fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/79ec803d-9ab9-4e0f-8d3d-9f122c97683f?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/5b1217ae-db9b-4621-bea7-dc5d2556e6b3?monitor=true&api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/b65ed416-8c3e-49b2-acbd-a4f32c234d57?monitor=true&api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:01 GMT", + "date" : "Mon, 18 May 2020 07:00:36 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1180", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10357", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3d8203bf-9c6d-46cb-ae04-816f68aaf578", + "x-ms-correlation-request-id" : "b154d5a9-e74c-4c77-b8ed-cd5c312258ba", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085201Z:3d8203bf-9c6d-46cb-ae04-816f68aaf578", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070036Z:b154d5a9-e74c-4c77-b8ed-cd5c312258ba", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "0174da12-14db-4c1b-9c0f-ecc5bb2c36e0", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Storage/storageAccounts/stg9c229830cc8\",\"name\":\"stg9c229830cc8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-05T08:51:30.1674259Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-05T08:51:30.1674259Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-03-05T08:51:30.0893419Z\",\"primaryEndpoints\":{\"blob\":\"https://stg9c229830cc8.blob.core.windows.net/\",\"queue\":\"https://stg9c229830cc8.queue.core.windows.net/\",\"table\":\"https://stg9c229830cc8.table.core.windows.net/\",\"file\":\"https://stg9c229830cc8.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "208109e0-fbe9-414b-978e-38c69827b8e3", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Storage/storageAccounts/stg4e132363e80\",\"name\":\"stg4e132363e80\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T07:00:05.5038574Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T07:00:05.5038574Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T07:00:05.4257261Z\",\"primaryEndpoints\":{\"blob\":\"https://stg4e132363e80.blob.core.windows.net/\",\"queue\":\"https://stg4e132363e80.queue.core.windows.net/\",\"table\":\"https://stg4e132363e80.table.core.windows.net/\",\"file\":\"https://stg4e132363e80.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a92b4a3a-4611-4087-a8c7-711a77c5e9a5?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/79ec803d-9ab9-4e0f-8d3d-9f122c97683f?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:02 GMT", + "date" : "Mon, 18 May 2020 07:00:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10372", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cb8274bf-8e9c-4d72-a721-b3d3db7ce289", + "x-ms-correlation-request-id" : "a9733d6d-2c21-4162-bf7f-06962a6ce448", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "02f70df9-8388-41b3-9ea8-c4146a002141", + "x-ms-arm-service-request-id" : "dab7f460-bef0-4664-b931-d0766bf47ae6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085202Z:cb8274bf-8e9c-4d72-a721-b3d3db7ce289", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070039Z:a9733d6d-2c21-4162-bf7f-06962a6ce448", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d59c2d77-1055-497c-b162-79d538bf15cb", + "x-ms-request-id" : "00071cf0-cd89-4c40-978f-1dc781039e47", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Storage/storageAccounts/stg9c229830cc8?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Storage/storageAccounts/stg4e132363e80?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:31 GMT", + "date" : "Mon, 18 May 2020 07:01:06 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1180", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10026", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6f8d07ca-8f56-411a-969b-cdc2fb67448d", + "x-ms-correlation-request-id" : "7bd9d3d9-ae0d-49ea-a434-b0aa7bdf7376", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085232Z:6f8d07ca-8f56-411a-969b-cdc2fb67448d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070107Z:7bd9d3d9-ae0d-49ea-a434-b0aa7bdf7376", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "2f6d6886-bda7-4804-bfa1-214bd745462d", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Storage/storageAccounts/stg9c229830cc8\",\"name\":\"stg9c229830cc8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-05T08:51:30.1674259Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-05T08:51:30.1674259Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-03-05T08:51:30.0893419Z\",\"primaryEndpoints\":{\"blob\":\"https://stg9c229830cc8.blob.core.windows.net/\",\"queue\":\"https://stg9c229830cc8.queue.core.windows.net/\",\"table\":\"https://stg9c229830cc8.table.core.windows.net/\",\"file\":\"https://stg9c229830cc8.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "17818753-af9c-4b23-8b48-bc9121635c3c", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Storage/storageAccounts/stg4e132363e80\",\"name\":\"stg4e132363e80\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T07:00:05.5038574Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T07:00:05.5038574Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T07:00:05.4257261Z\",\"primaryEndpoints\":{\"blob\":\"https://stg4e132363e80.blob.core.windows.net/\",\"queue\":\"https://stg4e132363e80.queue.core.windows.net/\",\"table\":\"https://stg4e132363e80.table.core.windows.net/\",\"file\":\"https://stg4e132363e80.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet12882392ea?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet91838be07a?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:33 GMT", + "date" : "Mon, 18 May 2020 07:01:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1344", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10243", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "902b8dc9-46ba-4dd4-aede-c43005bf0f87", + "x-ms-correlation-request-id" : "e65f05e5-b401-4aa0-8629-0306c1888f57", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8212694b-eeed-4f0b-b69a-e96ee4fcc33e", + "x-ms-arm-service-request-id" : "655539eb-b76b-4fd6-9e2a-5db70d8629bf", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085233Z:902b8dc9-46ba-4dd4-aede-c43005bf0f87", - "etag" : "W/\"e829ced0-936b-4248-9659-921c590fa20e\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070109Z:e65f05e5-b401-4aa0-8629-0306c1888f57", + "etag" : "W/\"566da7e0-af30-4255-b6ce-ea503ba6bc2c\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f92aff2c-7d64-4494-a93c-4c9389ee50d6", - "Body" : "{\r\n \"name\": \"vnet12882392ea\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet12882392ea\",\r\n \"etag\": \"W/\\\"e829ced0-936b-4248-9659-921c590fa20e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"44a6a6c7-ee4f-4b1d-b3de-171ce94e5faf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet12882392ea/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e829ced0-936b-4248-9659-921c590fa20e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "e8ce0567-c1df-4415-87e8-616818f9f0f8", + "Body" : "{\r\n \"name\": \"vnet91838be07a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet91838be07a\",\r\n \"etag\": \"W/\\\"566da7e0-af30-4255-b6ce-ea503ba6bc2c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a35c3d9a-28ea-48d4-a6ec-a415168fad55\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet91838be07a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"566da7e0-af30-4255-b6ce-ea503ba6bc2c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm6a453091404?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm679b103354e?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:39 GMT", + "date" : "Mon, 18 May 2020 07:01:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1647", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b6d09bf5-2d5c-4882-86cc-111f7a8caead", + "x-ms-correlation-request-id" : "e7467630-c3af-477a-93c2-1889f934d2ee", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "51c2ec9a-37d6-47c2-b5db-21138b2c40ae", + "x-ms-arm-service-request-id" : "e5c64d08-c4e3-44f5-97f6-8e994adfd8fc", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085239Z:b6d09bf5-2d5c-4882-86cc-111f7a8caead", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070115Z:e7467630-c3af-477a-93c2-1889f934d2ee", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7afa6a8a-add2-4a6f-ba27-778c14dc79fa", - "Body" : "{\r\n \"name\": \"nicmyvm6a453091404\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm6a453091404\",\r\n \"etag\": \"W/\\\"085af24e-c7df-4a94-9ec3-bb9caa5e7546\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"98f64b5e-f1e5-4702-9934-2080714d5bc5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm6a453091404/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"085af24e-c7df-4a94-9ec3-bb9caa5e7546\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet12882392ea/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"y4tkmrcp3youxm44c2oosts5vh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7afa6a8a-add2-4a6f-ba27-778c14dc79fa?api-version=2019-06-01" + "x-ms-request-id" : "f246a10d-7c9a-418e-acb4-7b1d2daa6c3b", + "Body" : "{\r\n \"name\": \"nicmyvm679b103354e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm679b103354e\",\r\n \"etag\": \"W/\\\"abca87d2-77d4-4986-9935-0a407b5786ea\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b2d20b65-0ebd-4575-82d8-8dc8371b7d4d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm679b103354e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"abca87d2-77d4-4986-9935-0a407b5786ea\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet91838be07a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ti4vzi5kfdkerjxmuqkrnd3nkf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f246a10d-7c9a-418e-acb4-7b1d2daa6c3b?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7afa6a8a-add2-4a6f-ba27-778c14dc79fa?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f246a10d-7c9a-418e-acb4-7b1d2daa6c3b?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:10 GMT", + "date" : "Mon, 18 May 2020 07:01:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10017", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac0064fa-3c61-485d-8237-fea7adf5e335", + "x-ms-correlation-request-id" : "2254e21a-db32-40f1-83ec-c59b6d3171c2", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2f202d1a-3c0d-4b3a-9ac5-0fe22d29d17c", + "x-ms-arm-service-request-id" : "8fc0427e-559b-4530-838f-7f4a6900f2dd", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085310Z:ac0064fa-3c61-485d-8237-fea7adf5e335", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070146Z:2254e21a-db32-40f1-83ec-c59b6d3171c2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "03dfc67a-939d-4a43-9d5b-7ecc4ea006ce", + "x-ms-request-id" : "29520935-4e07-40df-9c1f-60bc7858888d", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm6a453091404?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm679b103354e?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:40 GMT", + "date" : "Mon, 18 May 2020 07:02:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1647", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9660", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9b9a1292-9f4d-4fff-ad69-9665f1e9c206", + "x-ms-correlation-request-id" : "8d929661-e725-4ccd-90ff-21b39692b089", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c36ea2d7-5d54-47a9-b459-41ebadf7d937", + "x-ms-arm-service-request-id" : "49177037-33df-48a8-b311-ca8f9420b9c9", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085341Z:9b9a1292-9f4d-4fff-ad69-9665f1e9c206", - "etag" : "W/\"085af24e-c7df-4a94-9ec3-bb9caa5e7546\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070217Z:8d929661-e725-4ccd-90ff-21b39692b089", + "etag" : "W/\"abca87d2-77d4-4986-9935-0a407b5786ea\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bd9f26bb-59ff-47d0-8609-645d85c2f674", - "Body" : "{\r\n \"name\": \"nicmyvm6a453091404\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm6a453091404\",\r\n \"etag\": \"W/\\\"085af24e-c7df-4a94-9ec3-bb9caa5e7546\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"98f64b5e-f1e5-4702-9934-2080714d5bc5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm6a453091404/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"085af24e-c7df-4a94-9ec3-bb9caa5e7546\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet12882392ea/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"y4tkmrcp3youxm44c2oosts5vh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "1d578cd6-a82f-4e78-9c1d-a043cc56c839", + "Body" : "{\r\n \"name\": \"nicmyvm679b103354e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm679b103354e\",\r\n \"etag\": \"W/\\\"abca87d2-77d4-4986-9935-0a407b5786ea\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b2d20b65-0ebd-4575-82d8-8dc8371b7d4d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm679b103354e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"abca87d2-77d4-4986-9935-0a407b5786ea\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet91838be07a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ti4vzi5kfdkerjxmuqkrnd3nkf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:47 GMT", + "date" : "Mon, 18 May 2020 07:02:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1533", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac6cee3d-5502-4eb7-9bc5-0b2aaef94f66", + "x-ms-correlation-request-id" : "7f4b3c96-90f6-4c0d-88e1-e6646083f81c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1185", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085348Z:ac6cee3d-5502-4eb7-9bc5-0b2aaef94f66", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070225Z:7f4b3c96-90f6-4c0d-88e1-e6646083f81c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d6a44814-d50a-403e-ae0a-c7e3fc3e3287", - "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"adf7056b-0158-478d-a1ad-7aeda9344232\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm6-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg9c229830cc8.blob.core.windows.net/vhds/myvm6-os-disk-b609b990-c2df-4b66-85e7-430d13da27ec.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm6\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm6a453091404\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d6a44814-d50a-403e-ae0a-c7e3fc3e3287?api-version=2019-03-01" + "x-ms-request-id" : "c6045e3e-aded-47b3-ad32-5e83cb548d99", + "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ce9f591c-8823-4035-a139-dd96bedd5d27\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm6-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4e132363e80.blob.core.windows.net/vhds/myvm6-os-disk-129c6624-3aff-4db7-b135-718628d4097b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm6\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm679b103354e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c6045e3e-aded-47b3-ad32-5e83cb548d99?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d6a44814-d50a-403e-ae0a-c7e3fc3e3287?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c6045e3e-aded-47b3-ad32-5e83cb548d99?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:18 GMT", + "date" : "Mon, 18 May 2020 07:02:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10455", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "10c745d7-5b2d-44b3-b85f-8edf4b726f56", + "x-ms-correlation-request-id" : "db956022-0f6e-45b8-a4f4-622400ddbdb5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29825", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085419Z:10c745d7-5b2d-44b3-b85f-8edf4b726f56", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070256Z:db956022-0f6e-45b8-a4f4-622400ddbdb5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fa82dc51-4e14-4801-a45c-8bbc0820881b", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:53:46.7668883+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6a44814-d50a-403e-ae0a-c7e3fc3e3287\"\r\n}" + "x-ms-request-id" : "2320243c-16f0-46f7-9c25-04ee168d0f0f", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:23.1228656+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c6045e3e-aded-47b3-ad32-5e83cb548d99\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d6a44814-d50a-403e-ae0a-c7e3fc3e3287?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c6045e3e-aded-47b3-ad32-5e83cb548d99?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:49 GMT", + "date" : "Mon, 18 May 2020 07:03:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10132", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8f48968a-aa15-40cd-afbc-f1df32e308db", + "x-ms-correlation-request-id" : "2697ed3f-6953-4d9f-8487-1b25854f68bd", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29818", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085450Z:8f48968a-aa15-40cd-afbc-f1df32e308db", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070326Z:2697ed3f-6953-4d9f-8487-1b25854f68bd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5e48ec1b-dd9b-493c-ad29-43da36c49aa2", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:53:46.7668883+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6a44814-d50a-403e-ae0a-c7e3fc3e3287\"\r\n}" + "x-ms-request-id" : "62c67d77-f422-483a-a1fb-d86f995734d9", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:23.1228656+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c6045e3e-aded-47b3-ad32-5e83cb548d99\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d6a44814-d50a-403e-ae0a-c7e3fc3e3287?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c6045e3e-aded-47b3-ad32-5e83cb548d99?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:55:20 GMT", + "date" : "Mon, 18 May 2020 07:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10734", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8c1b9702-faa6-4af4-bc23-0cc8876cab90", + "x-ms-correlation-request-id" : "825c4f8f-8d07-48b0-9c0a-1a4d2eb222b2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29816", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085520Z:8c1b9702-faa6-4af4-bc23-0cc8876cab90", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070357Z:825c4f8f-8d07-48b0-9c0a-1a4d2eb222b2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5a47ac14-4df5-4b6e-8cc5-8d360d0906af", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:53:46.7668883+00:00\",\r\n \"endTime\": \"2020-03-05T08:54:58.1109852+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d6a44814-d50a-403e-ae0a-c7e3fc3e3287\"\r\n}" + "x-ms-request-id" : "84bf483b-adc3-4d9e-8569-c9a0b84df0cb", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:23.1228656+00:00\",\r\n \"endTime\": \"2020-05-18T07:03:42.9826253+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c6045e3e-aded-47b3-ad32-5e83cb548d99\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:55:50 GMT", + "date" : "Mon, 18 May 2020 07:04:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1561", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10125", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "196f359a-7414-487f-90fb-9ec8daaebd22", + "x-ms-correlation-request-id" : "2a6eb2d0-6a6a-49ee-afcf-c3b0d174105c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085550Z:196f359a-7414-487f-90fb-9ec8daaebd22", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31982", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070428Z:2a6eb2d0-6a6a-49ee-afcf-c3b0d174105c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "12a91c79-0669-436f-81fe-dcefe833a0fb", - "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"adf7056b-0158-478d-a1ad-7aeda9344232\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm6-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg9c229830cc8.blob.core.windows.net/vhds/myvm6-os-disk-b609b990-c2df-4b66-85e7-430d13da27ec.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm6\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm6a453091404\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "882845ea-5c7b-4a4d-9a78-149cc089deba", + "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ce9f591c-8823-4035-a139-dd96bedd5d27\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm6-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4e132363e80.blob.core.windows.net/vhds/myvm6-os-disk-129c6624-3aff-4db7-b135-718628d4097b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm6\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm679b103354e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:55:50 GMT", + "date" : "Mon, 18 May 2020 07:04:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14995", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4120d479-626b-4826-9c4b-fe381ecf7783", + "x-ms-correlation-request-id" : "f2cf2ad3-7954-445d-a93e-097cb1022ef3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;234,Microsoft.Compute/DeleteVM30Min;1185", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085551Z:4120d479-626b-4826-9c4b-fe381ecf7783", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070429Z:f2cf2ad3-7954-445d-a93e-097cb1022ef3", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ffa8f35-8053-4d93-8ef6-8121a017dc2d?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "1a8c6a6a-1bea-406a-86db-70104997f5a6", + "x-ms-request-id" : "4ffa8f35-8053-4d93-8ef6-8121a017dc2d", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:56:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10335", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "624718c9-1cc1-4d98-b741-bd366b0702dd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29809", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085621Z:624718c9-1cc1-4d98-b741-bd366b0702dd", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ce7eeb93-a99a-4df0-b05f-b71c0cc605df", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:51.3611982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a8c6a6a-1bea-406a-86db-70104997f5a6\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:56:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10722", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e3852a3d-2977-4058-959b-6f85ef7c90a5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29804", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085652Z:e3852a3d-2977-4058-959b-6f85ef7c90a5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d6a3ce4a-1f19-433c-88fb-52e29355be8a", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:51.3611982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a8c6a6a-1bea-406a-86db-70104997f5a6\"\r\n}" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ffa8f35-8053-4d93-8ef6-8121a017dc2d?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ffa8f35-8053-4d93-8ef6-8121a017dc2d?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:22 GMT", + "date" : "Mon, 18 May 2020 07:04:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "133", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10117", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8994e658-9102-4251-ad1f-53eab179984a", + "x-ms-correlation-request-id" : "4570f199-d5e0-45cf-bc68-6b4b29bfd059", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085723Z:8994e658-9102-4251-ad1f-53eab179984a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29974", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070459Z:4570f199-d5e0-45cf-bc68-6b4b29bfd059", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b858fccf-c5ba-49c7-a234-694b5f5f6253", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:51.3611982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a8c6a6a-1bea-406a-86db-70104997f5a6\"\r\n}" + "x-ms-request-id" : "39ad6881-9b67-4c0b-af09-20eef014daa3", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:04:28.857956+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ffa8f35-8053-4d93-8ef6-8121a017dc2d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ffa8f35-8053-4d93-8ef6-8121a017dc2d?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:52 GMT", + "date" : "Mon, 18 May 2020 07:05:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "182", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9993", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "82146ac1-951f-4643-bd10-e7d9b50d5980", + "x-ms-correlation-request-id" : "1537ad33-86a2-49aa-b6ab-bcad948020c4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085753Z:82146ac1-951f-4643-bd10-e7d9b50d5980", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29969", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070530Z:1537ad33-86a2-49aa-b6ab-bcad948020c4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "742900a7-a38f-4a09-b4cc-92b6d9c0d7cb", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:51.3611982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a8c6a6a-1bea-406a-86db-70104997f5a6\"\r\n}" + "x-ms-request-id" : "d1eef6a3-9180-40c4-8cbe-0f02427aee9c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:04:28.857956+00:00\",\r\n \"endTime\": \"2020-05-18T07:05:08.154972+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4ffa8f35-8053-4d93-8ef6-8121a017dc2d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ffa8f35-8053-4d93-8ef6-8121a017dc2d?monitor=true&api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10322", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3e6fccb6-1108-48cf-9c3e-3f401fd79d99", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29786", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085823Z:3e6fccb6-1108-48cf-9c3e-3f401fd79d99", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e1c843e9-abb0-4fcc-83f0-2f1d65e9430e", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:51.3611982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a8c6a6a-1bea-406a-86db-70104997f5a6\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:53 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10461", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "30f189c3-4f22-4443-97cf-09402e5d9514", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29779", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085853Z:30f189c3-4f22-4443-97cf-09402e5d9514", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "59f25772-5439-4ba9-b1e9-938149165dfa", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:51.3611982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a8c6a6a-1bea-406a-86db-70104997f5a6\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9810", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f401d757-93d5-4857-a7af-24c4438dc615", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29776", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085924Z:f401d757-93d5-4857-a7af-24c4438dc615", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bb1993d1-44bf-4736-abec-1a768a90aa32", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:51.3611982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a8c6a6a-1bea-406a-86db-70104997f5a6\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9628", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "52ac8a01-2748-43cd-9ac9-636c8a45a9e6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29771", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085954Z:52ac8a01-2748-43cd-9ac9-636c8a45a9e6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "315411c4-4ddc-416f-bee9-10526e329a5a", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:51.3611982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a8c6a6a-1bea-406a-86db-70104997f5a6\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10685", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c0e3e976-6a0b-4f42-bb77-bad57a3d0925", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29765", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090024Z:c0e3e976-6a0b-4f42-bb77-bad57a3d0925", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8298d2c8-4838-439c-ab6d-8acf2743ff07", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:51.3611982+00:00\",\r\n \"endTime\": \"2020-03-05T09:00:03.862498+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1a8c6a6a-1bea-406a-86db-70104997f5a6\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a8c6a6a-1bea-406a-86db-70104997f5a6?monitor=true&api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:55 GMT", + "date" : "Mon, 18 May 2020 07:05:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10450", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9ccd1661-c9c6-484a-a552-9a124089cbe2", + "x-ms-correlation-request-id" : "0f92eabe-3f33-408c-8284-8654a77ec68d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29758", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090055Z:9ccd1661-c9c6-484a-a552-9a124089cbe2", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29966", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070600Z:0f92eabe-3f33-408c-8284-8654a77ec68d", "cache-control" : "no-cache", - "x-ms-request-id" : "676e28e0-9bb6-4676-a973-e06704ce3f75", + "x-ms-request-id" : "3a53dd83-a0ca-4836-bef2-326fb12f03bf", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/disks/dsk-2ba355805?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/disks/dsk-96b210236?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:59 GMT", + "date" : "Mon, 18 May 2020 07:06:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "582", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1154", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "63b5092f-e785-4b60-af02-9304d503bec5", + "x-ms-correlation-request-id" : "bd5876cb-d07a-4174-9d4e-483e6f35dd9d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090100Z:63b5092f-e785-4b60-af02-9304d503bec5", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070606Z:bd5876cb-d07a-4174-9d4e-483e6f35dd9d", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/dd008c00-5abe-46ca-8dfa-f587e2f8a25b?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/a89660b8-fabd-4359-b410-dbfd2b52e6b8?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "dd008c00-5abe-46ca-8dfa-f587e2f8a25b", - "Body" : "{\r\n \"name\": \"dsk-2ba355805\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg02372/providers/Microsoft.Storage/storageAccounts/stg9c229830cc8\",\r\n \"sourceUri\": \"https://stg9c229830cc8.blob.core.windows.net/vhds/myvm6-os-disk-b609b990-c2df-4b66-85e7-430d13da27ec.vhd\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"diskSizeBytes\": 32212254720,\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/dd008c00-5abe-46ca-8dfa-f587e2f8a25b?api-version=2019-03-01" + "x-ms-request-id" : "a89660b8-fabd-4359-b410-dbfd2b52e6b8", + "Body" : "{\r\n \"name\": \"dsk-96b210236\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg07415/providers/Microsoft.Storage/storageAccounts/stg4e132363e80\",\r\n \"sourceUri\": \"https://stg4e132363e80.blob.core.windows.net/vhds/myvm6-os-disk-129c6624-3aff-4db7-b135-718628d4097b.vhd\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"diskSizeBytes\": 32212254720,\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/a89660b8-fabd-4359-b410-dbfd2b52e6b8?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/dd008c00-5abe-46ca-8dfa-f587e2f8a25b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/a89660b8-fabd-4359-b410-dbfd2b52e6b8?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:29 GMT", + "date" : "Mon, 18 May 2020 07:06:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1099", + "content-length" : "1155", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10090", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1240e127-4ce1-42c5-b705-fa48f10e73b9", + "x-ms-correlation-request-id" : "b3d8522e-1aee-4c06-b148-2870ebcd634d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49961,Microsoft.Compute/GetOperation30Min;399870", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090130Z:1240e127-4ce1-42c5-b705-fa48f10e73b9", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399980", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070636Z:b3d8522e-1aee-4c06-b148-2870ebcd634d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "19917784-580f-446b-aae8-2d658e013e2b", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:00:59.8224198+00:00\",\r\n \"endTime\": \"2020-03-05T09:01:00.8224308+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-2ba355805\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/disks/dsk-2ba355805\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg02372/providers/Microsoft.Storage/storageAccounts/stg9c229830cc8\",\"sourceUri\":\"https://stg9c229830cc8.blob.core.windows.net/vhds/myvm6-os-disk-b609b990-c2df-4b66-85e7-430d13da27ec.vhd\"},\"diskSizeGB\":30,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T09:00:59.9474364+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":32212254720,\"uniqueId\":\"c5861904-a7be-4572-817b-3e2ec211fd01\"}}\r\n },\r\n \"name\": \"dd008c00-5abe-46ca-8dfa-f587e2f8a25b\"\r\n}" + "x-ms-request-id" : "2ab86469-329e-46f0-b0de-34ec4f59289f", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:06:05.7166303+00:00\",\r\n \"endTime\": \"2020-05-18T07:06:06.4666577+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-96b210236\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/disks/dsk-96b210236\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg07415/providers/Microsoft.Storage/storageAccounts/stg4e132363e80\",\"sourceUri\":\"https://stg4e132363e80.blob.core.windows.net/vhds/myvm6-os-disk-129c6624-3aff-4db7-b135-718628d4097b.vhd\"},\"diskSizeGB\":30,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:06:05.7947605+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":32212254720,\"uniqueId\":\"5cab3c0b-b07e-42e9-8816-dc73c879d441\"}}\r\n },\r\n \"name\": \"a89660b8-fabd-4359-b410-dbfd2b52e6b8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/disks/dsk-2ba355805?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/disks/dsk-96b210236?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:01 GMT", + "date" : "Mon, 18 May 2020 07:07:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1036", + "content-length" : "1114", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10677", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "48d5727c-1e6e-44ee-9b7e-85245af8fb78", + "x-ms-correlation-request-id" : "920d6d52-2595-44ba-bffc-444b2cb02a99", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090201Z:48d5727c-1e6e-44ee-9b7e-85245af8fb78", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39954", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070707Z:920d6d52-2595-44ba-bffc-444b2cb02a99", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7f43af40-48ed-4fdc-b376-0a995fb3f359", - "Body" : "{\r\n \"name\": \"dsk-2ba355805\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/disks/dsk-2ba355805\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg02372/providers/Microsoft.Storage/storageAccounts/stg9c229830cc8\",\r\n \"sourceUri\": \"https://stg9c229830cc8.blob.core.windows.net/vhds/myvm6-os-disk-b609b990-c2df-4b66-85e7-430d13da27ec.vhd\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T09:00:59.9474364+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"c5861904-a7be-4572-817b-3e2ec211fd01\"\r\n }\r\n}" + "x-ms-request-id" : "c7c04f31-9f3e-4b1a-ad51-d6499006e2d9", + "Body" : "{\r\n \"name\": \"dsk-96b210236\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/disks/dsk-96b210236\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg07415/providers/Microsoft.Storage/storageAccounts/stg4e132363e80\",\r\n \"sourceUri\": \"https://stg4e132363e80.blob.core.windows.net/vhds/myvm6-os-disk-129c6624-3aff-4db7-b135-718628d4097b.vhd\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:06:05.7947605+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"5cab3c0b-b07e-42e9-8816-dc73c879d441\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet81106714db?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet69872361b2?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:07 GMT", + "date" : "Mon, 18 May 2020 07:07:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1342", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1165", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4fd210b9-4097-409c-a93c-64cfd8e3d837", + "x-ms-correlation-request-id" : "da72b7d5-75a3-423b-88dd-08a01e0dae4c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "832bdad3-7398-47b3-8dd5-02e53b5425c1", + "x-ms-arm-service-request-id" : "1ad0344d-0a55-4670-9e30-ef64e8a67455", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090208Z:4fd210b9-4097-409c-a93c-64cfd8e3d837", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070715Z:da72b7d5-75a3-423b-88dd-08a01e0dae4c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2fcea247-ed8d-48eb-b0af-1ff2d6aea54c", - "Body" : "{\r\n \"name\": \"vnet81106714db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet81106714db\",\r\n \"etag\": \"W/\\\"902c36b4-ec59-4f02-9ab3-e9cddb10bff3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c2b9481a-e530-43b2-8510-625b55065ddf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet81106714db/subnets/subnet1\",\r\n \"etag\": \"W/\\\"902c36b4-ec59-4f02-9ab3-e9cddb10bff3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2fcea247-ed8d-48eb-b0af-1ff2d6aea54c?api-version=2019-06-01" + "x-ms-request-id" : "cb2c8218-8a59-4b6e-87f0-ac10af1591b9", + "Body" : "{\r\n \"name\": \"vnet69872361b2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet69872361b2\",\r\n \"etag\": \"W/\\\"b1409e58-4296-4a33-b8f1-cd69e3fc0995\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"905dcd89-f1ac-4ebb-9b89-8c00d422bb19\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet69872361b2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b1409e58-4296-4a33-b8f1-cd69e3fc0995\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cb2c8218-8a59-4b6e-87f0-ac10af1591b9?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2fcea247-ed8d-48eb-b0af-1ff2d6aea54c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cb2c8218-8a59-4b6e-87f0-ac10af1591b9?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:38 GMT", + "date" : "Mon, 18 May 2020 07:07:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10674", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a7d67676-4f5c-42ba-b6b0-1e063cc1d8e8", + "x-ms-correlation-request-id" : "8e29b2f4-81d2-43e1-8dec-aa804b00ac4f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7096bbc3-d22d-47ed-ae72-ae955121367f", + "x-ms-arm-service-request-id" : "3266e53b-0ec4-4c73-b3fe-2b9dc216b838", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090239Z:a7d67676-4f5c-42ba-b6b0-1e063cc1d8e8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070746Z:8e29b2f4-81d2-43e1-8dec-aa804b00ac4f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c294746b-b31c-4fa1-b448-5a9d841135e0", + "x-ms-request-id" : "275d0494-dbbb-4a84-9fa3-94d80840bd63", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet81106714db?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet69872361b2?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:03:09 GMT", + "date" : "Mon, 18 May 2020 07:08:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1344", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9614", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5d183cf7-2bcf-4054-9496-d1ec6a2f55f3", + "x-ms-correlation-request-id" : "462c525a-4714-464f-91fa-1a76cdb90972", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "eebc8176-ec7e-4ca7-b3a0-427bf0b5bf4e", + "x-ms-arm-service-request-id" : "f30736ae-7c05-46b7-b9aa-11f674f0849e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090309Z:5d183cf7-2bcf-4054-9496-d1ec6a2f55f3", - "etag" : "W/\"f2f2fe84-673c-4f6f-ab3e-0b4e784c3cb9\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070817Z:462c525a-4714-464f-91fa-1a76cdb90972", + "etag" : "W/\"91da64c8-690a-4d0d-82a5-6141e1cd81dc\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9c81425f-bdd6-46d4-82be-e46e56a1ad9e", - "Body" : "{\r\n \"name\": \"vnet81106714db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet81106714db\",\r\n \"etag\": \"W/\\\"f2f2fe84-673c-4f6f-ab3e-0b4e784c3cb9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c2b9481a-e530-43b2-8510-625b55065ddf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet81106714db/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f2f2fe84-673c-4f6f-ab3e-0b4e784c3cb9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "98039636-359e-4579-a6e1-4c3db46a0eec", + "Body" : "{\r\n \"name\": \"vnet69872361b2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet69872361b2\",\r\n \"etag\": \"W/\\\"91da64c8-690a-4d0d-82a5-6141e1cd81dc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"905dcd89-f1ac-4ebb-9b89-8c00d422bb19\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet69872361b2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"91da64c8-690a-4d0d-82a5-6141e1cd81dc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm66ef898183b?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm6e6d9767754?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:03:15 GMT", + "date" : "Mon, 18 May 2020 07:08:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1647", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1148", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7d73997d-79fe-4dfb-b355-4a649de55be8", + "x-ms-correlation-request-id" : "13349ffe-3c06-40af-9925-db2a9e345246", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "fab816a4-3f0f-4b0d-9105-758201771518", + "x-ms-arm-service-request-id" : "0e38cc3b-dc35-483e-a799-df54f4cbd1f9", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090316Z:7d73997d-79fe-4dfb-b355-4a649de55be8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070825Z:13349ffe-3c06-40af-9925-db2a9e345246", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e57029ce-ff5b-436f-aebb-7c100daac63e", - "Body" : "{\r\n \"name\": \"nicmyvm66ef898183b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm66ef898183b\",\r\n \"etag\": \"W/\\\"f1e5d2e0-8d23-4318-a7f8-275011ca6256\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a53ada80-a936-4487-a99e-c8666b03bbe4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm66ef898183b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f1e5d2e0-8d23-4318-a7f8-275011ca6256\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet81106714db/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"djeltqrq2wzehbiqmjnvkbs31h.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e57029ce-ff5b-436f-aebb-7c100daac63e?api-version=2019-06-01" + "x-ms-request-id" : "f50cf632-ea26-4fbf-a4f9-1b0727c124ca", + "Body" : "{\r\n \"name\": \"nicmyvm6e6d9767754\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm6e6d9767754\",\r\n \"etag\": \"W/\\\"32c456fc-4a32-4eac-9f5b-ea790c059588\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40a0d196-0f75-4e05-8ec1-83fbf6e9ce4e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm6e6d9767754/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"32c456fc-4a32-4eac-9f5b-ea790c059588\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet69872361b2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rhgv1efm4g3u3g2jrqaniiv1db.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f50cf632-ea26-4fbf-a4f9-1b0727c124ca?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e57029ce-ff5b-436f-aebb-7c100daac63e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f50cf632-ea26-4fbf-a4f9-1b0727c124ca?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:03:46 GMT", + "date" : "Mon, 18 May 2020 07:08:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10671", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ff8c5988-51e3-463b-b0d8-ec3d8aa73c73", + "x-ms-correlation-request-id" : "d1442a9f-af96-4992-886f-39263a8c3d60", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3a911540-3671-4fae-9431-d4963b96b517", + "x-ms-arm-service-request-id" : "2c6da4c6-671c-435b-a61d-dcd98933d4f6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090346Z:ff8c5988-51e3-463b-b0d8-ec3d8aa73c73", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070856Z:d1442a9f-af96-4992-886f-39263a8c3d60", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ee1ed6b1-2818-4df5-8550-ec73b273399f", + "x-ms-request-id" : "90895a21-6eeb-497b-876d-48feea6b1ce3", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm66ef898183b?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm6e6d9767754?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:04:17 GMT", + "date" : "Mon, 18 May 2020 07:09:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1647", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10090", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3c52eb2f-3ab2-416b-bc60-12df64300a07", + "x-ms-correlation-request-id" : "ffcb885a-4ed7-473d-a8c3-b3f1a3d88d16", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1647c8db-ad3e-4c92-b64f-8eb4e49838fe", + "x-ms-arm-service-request-id" : "8acd60b8-5a82-4215-b32c-9693b0152ee2", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090417Z:3c52eb2f-3ab2-416b-bc60-12df64300a07", - "etag" : "W/\"f1e5d2e0-8d23-4318-a7f8-275011ca6256\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070926Z:ffcb885a-4ed7-473d-a8c3-b3f1a3d88d16", + "etag" : "W/\"32c456fc-4a32-4eac-9f5b-ea790c059588\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e0590b31-ee35-4b18-8490-df4e97acd4fc", - "Body" : "{\r\n \"name\": \"nicmyvm66ef898183b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm66ef898183b\",\r\n \"etag\": \"W/\\\"f1e5d2e0-8d23-4318-a7f8-275011ca6256\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a53ada80-a936-4487-a99e-c8666b03bbe4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm66ef898183b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f1e5d2e0-8d23-4318-a7f8-275011ca6256\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/virtualNetworks/vnet81106714db/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"djeltqrq2wzehbiqmjnvkbs31h.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "228dfedf-45d2-4ac0-9493-bd9fd8816a1c", + "Body" : "{\r\n \"name\": \"nicmyvm6e6d9767754\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm6e6d9767754\",\r\n \"etag\": \"W/\\\"32c456fc-4a32-4eac-9f5b-ea790c059588\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40a0d196-0f75-4e05-8ec1-83fbf6e9ce4e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm6e6d9767754/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"32c456fc-4a32-4eac-9f5b-ea790c059588\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/virtualNetworks/vnet69872361b2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rhgv1efm4g3u3g2jrqaniiv1db.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:04:21 GMT", + "date" : "Mon, 18 May 2020 07:09:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1149", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1164", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9ea8bfc4-a76e-4aa5-844c-a14648dc3f22", + "x-ms-correlation-request-id" : "36110521-f78c-46c5-a6a9-bb16ea17d5f0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1172", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090421Z:9ea8bfc4-a76e-4aa5-844c-a14648dc3f22", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1191", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070935Z:36110521-f78c-46c5-a6a9-bb16ea17d5f0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fc6618f7-235d-42fe-b416-98f1d365a2dd", - "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"06fc9009-79f2-43eb-8b43-62eb4d2bbb3f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-2ba355805\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/disks/dsk-2ba355805\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm66ef898183b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc6618f7-235d-42fe-b416-98f1d365a2dd?api-version=2019-03-01" + "x-ms-request-id" : "84d63e9f-d436-4b50-97dd-8ca6bf0fecf2", + "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b9500162-7e82-4066-92a3-f1c2093e0beb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-96b210236\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/disks/dsk-96b210236\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm6e6d9767754\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84d63e9f-d436-4b50-97dd-8ca6bf0fecf2?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc6618f7-235d-42fe-b416-98f1d365a2dd?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84d63e9f-d436-4b50-97dd-8ca6bf0fecf2?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:04:51 GMT", + "date" : "Mon, 18 May 2020 07:10:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9948", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ed47b030-30f7-4224-845b-d88b0bd0561c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29693", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090451Z:ed47b030-30f7-4224-845b-d88b0bd0561c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e27eb1e7-11f4-4a58-b4d1-3e7dd0b15cbb", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:04:20.0200056+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc6618f7-235d-42fe-b416-98f1d365a2dd\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc6618f7-235d-42fe-b416-98f1d365a2dd?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:05:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10277", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4c6598ff-5c61-429a-9604-6a7cd82d3496", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29691", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090522Z:4c6598ff-5c61-429a-9604-6a7cd82d3496", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ad07f4ad-a6e2-4249-92d2-c57bafcfa73b", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:04:20.0200056+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc6618f7-235d-42fe-b416-98f1d365a2dd\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc6618f7-235d-42fe-b416-98f1d365a2dd?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:05:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10428", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0833780d-749f-4cf4-9e02-aed84edf224f", + "x-ms-correlation-request-id" : "ed748c9e-199a-4c2b-aa4b-86cf31c12989", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29681", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090552Z:0833780d-749f-4cf4-9e02-aed84edf224f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29948", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071005Z:ed748c9e-199a-4c2b-aa4b-86cf31c12989", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "dbb24cd0-2a5d-419a-8fb3-5b26ae31a9fe", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:04:20.0200056+00:00\",\r\n \"endTime\": \"2020-03-05T09:05:46.566963+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fc6618f7-235d-42fe-b416-98f1d365a2dd\"\r\n}" + "x-ms-request-id" : "7c12bfe4-069f-4f83-b44b-2474856d2d1a", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:09:32.8439878+00:00\",\r\n \"endTime\": \"2020-05-18T07:09:51.8596741+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"84d63e9f-d436-4b50-97dd-8ca6bf0fecf2\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:06:23 GMT", + "date" : "Mon, 18 May 2020 07:10:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1150", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10424", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "84a1a88d-d525-4974-a829-2037564972ae", + "x-ms-correlation-request-id" : "54ab4b0e-5b65-4ba3-90fc-acee95f0ac8e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3981,Microsoft.Compute/LowCostGet30Min;31893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090623Z:84a1a88d-d525-4974-a829-2037564972ae", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31968", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071036Z:54ab4b0e-5b65-4ba3-90fc-acee95f0ac8e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2c6770ed-8ce4-4b0a-a6ca-4a0f2d1dcf65", - "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"06fc9009-79f2-43eb-8b43-62eb4d2bbb3f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-2ba355805\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Compute/disks/dsk-2ba355805\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg02372/providers/Microsoft.Network/networkInterfaces/nicmyvm66ef898183b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "0b1d740d-e5c0-445d-8ed6-05481a8229f3", + "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b9500162-7e82-4066-92a3-f1c2093e0beb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-96b210236\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Compute/disks/dsk-96b210236\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg07415/providers/Microsoft.Network/networkInterfaces/nicmyvm6e6d9767754\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg02372?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:06:28 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14991", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c30813d2-9ccb-4630-af52-1f0ee4bc6ad8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090628Z:c30813d2-9ccb-4630-af52-1f0ee4bc6ad8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "c30813d2-9ccb-4630-af52-1f0ee4bc6ad8", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:06:58 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10636", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "29c391c1-22f3-46b6-9ecb-da2401ecf9b8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090659Z:29c391c1-22f3-46b6-9ecb-da2401ecf9b8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "29c391c1-22f3-46b6-9ecb-da2401ecf9b8", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg07415?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:07:29 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10265", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6e0c7531-da92-4930-9802-9d4137b5dadf", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090730Z:6e0c7531-da92-4930-9802-9d4137b5dadf", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "6e0c7531-da92-4930-9802-9d4137b5dadf", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:08:01 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10405", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "db9c70c7-bcf3-4bf2-92d4-7252962dc4a7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090801Z:db9c70c7-bcf3-4bf2-92d4-7252962dc4a7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "db9c70c7-bcf3-4bf2-92d4-7252962dc4a7", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:08:31 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10657", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "74fb5f72-9b6a-4b15-ab16-b0519d433e83", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090832Z:74fb5f72-9b6a-4b15-ab16-b0519d433e83", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "74fb5f72-9b6a-4b15-ab16-b0519d433e83", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:09:02 GMT", + "date" : "Mon, 18 May 2020 07:10:39 GMT", "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9931", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "34912208-0fcb-4a85-832c-106b8fc8724f", + "x-ms-correlation-request-id" : "dd22472a-d561-4d75-a439-37e9a4d427f4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090902Z:34912208-0fcb-4a85-832c-106b8fc8724f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071039Z:dd22472a-d561-4d75-a439-37e9a4d427f4", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "34912208-0fcb-4a85-832c-106b8fc8724f", + "x-ms-request-id" : "dd22472a-d561-4d75-a439-37e9a4d427f4", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:09:33 GMT", + "date" : "Mon, 18 May 2020 07:11:10 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10257", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60833506-7682-4723-9123-d402f6d77a90", + "x-ms-correlation-request-id" : "106ffa60-921a-45bb-886f-73f553668456", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090934Z:60833506-7682-4723-9123-d402f6d77a90", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071111Z:106ffa60-921a-45bb-886f-73f553668456", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "60833506-7682-4723-9123-d402f6d77a90", + "x-ms-request-id" : "106ffa60-921a-45bb-886f-73f553668456", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:10:05 GMT", + "date" : "Mon, 18 May 2020 07:11:42 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10610", + "x-ms-ratelimit-remaining-subscription-reads" : "11953", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f7476a79-5b9e-4110-a03a-126ff280edce", + "x-ms-correlation-request-id" : "9f7066fb-f0f5-48b3-b8bf-b17262fd30b5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091005Z:f7476a79-5b9e-4110-a03a-126ff280edce", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071142Z:9f7066fb-f0f5-48b3-b8bf-b17262fd30b5", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f7476a79-5b9e-4110-a03a-126ff280edce", + "x-ms-request-id" : "9f7066fb-f0f5-48b3-b8bf-b17262fd30b5", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:10:36 GMT", + "date" : "Mon, 18 May 2020 07:12:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10389", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d711536e-f218-4d58-a9a5-c8f71e3bf606", + "x-ms-correlation-request-id" : "5c5f6e40-1c92-486f-9436-350191486d0e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091036Z:d711536e-f218-4d58-a9a5-c8f71e3bf606", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071214Z:5c5f6e40-1c92-486f-9436-350191486d0e", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "d711536e-f218-4d58-a9a5-c8f71e3bf606", + "x-ms-request-id" : "5c5f6e40-1c92-486f-9436-350191486d0e", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:11:06 GMT", + "date" : "Mon, 18 May 2020 07:12:44 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9922", + "x-ms-ratelimit-remaining-subscription-reads" : "11952", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4909310d-03f1-445b-9a2e-a65c72d83e9d", + "x-ms-correlation-request-id" : "036bb933-b5b1-48c6-ac76-10534ebfa3b8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091106Z:4909310d-03f1-445b-9a2e-a65c72d83e9d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071245Z:036bb933-b5b1-48c6-ac76-10534ebfa3b8", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "4909310d-03f1-445b-9a2e-a65c72d83e9d", + "x-ms-request-id" : "036bb933-b5b1-48c6-ac76-10534ebfa3b8", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:11:37 GMT", + "date" : "Mon, 18 May 2020 07:13:16 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10249", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "56323ef4-6a91-4b7a-b0c3-25c8ef668493", + "x-ms-correlation-request-id" : "e963f675-d335-4ef4-811f-170566c5dab9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091138Z:56323ef4-6a91-4b7a-b0c3-25c8ef668493", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071316Z:e963f675-d335-4ef4-811f-170566c5dab9", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "56323ef4-6a91-4b7a-b0c3-25c8ef668493", + "x-ms-request-id" : "e963f675-d335-4ef4-811f-170566c5dab9", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:12:09 GMT", + "date" : "Mon, 18 May 2020 07:13:47 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10596", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2d95e632-c7e2-47be-8818-c4ac16fd7418", + "x-ms-correlation-request-id" : "a4c21bb6-3f8c-4c7a-b82d-1a7739ab7f2e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091209Z:2d95e632-c7e2-47be-8818-c4ac16fd7418", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071347Z:a4c21bb6-3f8c-4c7a-b82d-1a7739ab7f2e", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "2d95e632-c7e2-47be-8818-c4ac16fd7418", + "x-ms-request-id" : "a4c21bb6-3f8c-4c7a-b82d-1a7739ab7f2e", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:12:39 GMT", + "date" : "Mon, 18 May 2020 07:14:17 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10595", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8a61cf20-1102-4eb1-af17-5446fd6d3ba5", + "x-ms-correlation-request-id" : "42b1d08d-39ff-405d-bac6-3d84a81b5d7d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091240Z:8a61cf20-1102-4eb1-af17-5446fd6d3ba5", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071418Z:42b1d08d-39ff-405d-bac6-3d84a81b5d7d", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "8a61cf20-1102-4eb1-af17-5446fd6d3ba5", + "x-ms-request-id" : "42b1d08d-39ff-405d-bac6-3d84a81b5d7d", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:13:09 GMT", + "date" : "Mon, 18 May 2020 07:14:48 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9916", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b2a42f72-b317-498f-a93b-d7dbb14f8edb", + "x-ms-correlation-request-id" : "7b174dfc-1caa-488f-82e1-1789b775e45c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091310Z:b2a42f72-b317-498f-a93b-d7dbb14f8edb", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071449Z:7b174dfc-1caa-488f-82e1-1789b775e45c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b2a42f72-b317-498f-a93b-d7dbb14f8edb", + "x-ms-request-id" : "7b174dfc-1caa-488f-82e1-1789b775e45c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:13:40 GMT", + "date" : "Mon, 18 May 2020 07:15:20 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10187", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a6ae9f7a-4d99-4880-bfa9-9743570f8200", + "x-ms-correlation-request-id" : "cb296be4-e7e6-4117-936c-33284d471f7a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091341Z:a6ae9f7a-4d99-4880-bfa9-9743570f8200", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071520Z:cb296be4-e7e6-4117-936c-33284d471f7a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a6ae9f7a-4d99-4880-bfa9-9743570f8200", + "x-ms-request-id" : "cb296be4-e7e6-4117-936c-33284d471f7a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:14:12 GMT", + "date" : "Mon, 18 May 2020 07:15:51 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10392", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2317150a-4d04-430b-9b95-73e2f4c32986", + "x-ms-correlation-request-id" : "4d9a8820-af11-4266-9051-3035f873c14e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091412Z:2317150a-4d04-430b-9b95-73e2f4c32986", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071552Z:4d9a8820-af11-4266-9051-3035f873c14e", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "2317150a-4d04-430b-9b95-73e2f4c32986", + "x-ms-request-id" : "4d9a8820-af11-4266-9051-3035f873c14e", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMjM3Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwNzQxNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:14:43 GMT", + "date" : "Mon, 18 May 2020 07:16:22 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10387", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3fa26180-c168-46bc-a545-88912f529a35", + "x-ms-correlation-request-id" : "9e7d77d1-c3bd-4922-97fe-5e3a3cb24f6f", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091443Z:3fa26180-c168-46bc-a545-88912f529a35", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071623Z:9e7d77d1-c3bd-4922-97fe-5e3a3cb24f6f", "cache-control" : "no-cache", - "x-ms-request-id" : "3fa26180-c168-46bc-a545-88912f529a35", + "x-ms-request-id" : "9e7d77d1-c3bd-4922-97fe-5e3a3cb24f6f", "Body" : "" } } ], - "variables" : [ "javacsmrg02372", "stg9c229830cc8", "nicmyvm6a453091404", "vnet12882392ea", "dsk-2ba355805", "nicmyvm66ef898183b", "vnet81106714db" ] + "variables" : [ "javacsmrg07415", "stg4e132363e80", "nicmyvm679b103354e", "vnet91838be07a", "dsk-96b210236", "nicmyvm6e6d9767754", "vnet69872361b2" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineFromCustomImageWithManagedDisks.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineFromCustomImageWithManagedDisks.json index 24cd19e1f818..66e42ad86f3b 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineFromCustomImageWithManagedDisks.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineFromCustomImageWithManagedDisks.json @@ -1,793 +1,800 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg48001?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg23378?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:44 GMT", + "date" : "Mon, 18 May 2020 06:59:59 GMT", "content-length" : "309", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "147bd503-0f92-4d8c-b4a5-4abf6ce9a1ef", + "x-ms-correlation-request-id" : "42e01b41-99f0-46d6-ad5f-87ad962acd38", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085945Z:147bd503-0f92-4d8c-b4a5-4abf6ce9a1ef", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070000Z:42e01b41-99f0-46d6-ad5f-87ad962acd38", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "147bd503-0f92-4d8c-b4a5-4abf6ce9a1ef", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001\",\"name\":\"javacsmrg48001\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-03-05T08:59:41.182Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "42e01b41-99f0-46d6-ad5f-87ad962acd38", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378\",\"name\":\"javacsmrg23378\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-05-18T06:59:57.391Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_7a18184032?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_74255501db?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:48 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "256", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c190868e-b26f-405c-a3b9-3213bd7e45aa", + "x-ms-correlation-request-id" : "a58e77f4-78b8-4bfa-9274-bce27e1ae6bc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085949Z:c190868e-b26f-405c-a3b9-3213bd7e45aa", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070005Z:a58e77f4-78b8-4bfa-9274-bce27e1ae6bc", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/9205cb73-8aad-425a-adbd-0df22d81599b?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/10da84ea-f2f9-4485-9b90-4fc9e7a261d1?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "9205cb73-8aad-425a-adbd-0df22d81599b", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_7a18184032\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/9205cb73-8aad-425a-adbd-0df22d81599b?api-version=2019-03-01" + "x-ms-request-id" : "10da84ea-f2f9-4485-9b90-4fc9e7a261d1", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_74255501db\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/10da84ea-f2f9-4485-9b90-4fc9e7a261d1?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_1c08338060?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_16c8129029?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:49 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "256", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "978486fc-106d-443d-91a1-8b2e52d5819d", + "x-ms-correlation-request-id" : "c7f3a221-f4ee-4959-9ce4-6777a4d2dd48", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085950Z:978486fc-106d-443d-91a1-8b2e52d5819d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070005Z:c7f3a221-f4ee-4959-9ce4-6777a4d2dd48", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/42680f57-60ae-49e3-89bb-2f415979aff3?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d5ab100e-345d-4d48-9920-06d7858037ce?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "42680f57-60ae-49e3-89bb-2f415979aff3", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_1c08338060\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/42680f57-60ae-49e3-89bb-2f415979aff3?api-version=2019-03-01" + "x-ms-request-id" : "d5ab100e-345d-4d48-9920-06d7858037ce", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_16c8129029\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d5ab100e-345d-4d48-9920-06d7858037ce?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet366690d8b7?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_bc64208401?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:50 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1342", + "content-length" : "256", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", - "StatusCode" : "201", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2e86a8b1-f1de-486c-ac30-0d8c7967b954", + "x-ms-correlation-request-id" : "3d7c7f48-7a07-4e1e-a78d-93148b7716ee", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "a8dd81b1-e5d5-4abd-bfda-ae102b3fb2f3", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085951Z:2e86a8b1-f1de-486c-ac30-0d8c7967b954", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;992,Microsoft.Compute/CreateUpdateDisks30Min;7992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070006Z:3d7c7f48-7a07-4e1e-a78d-93148b7716ee", "content-type" : "application/json; charset=utf-8", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6de09478-084f-46ed-9ecb-5c0c63cc62ed?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5adc9081-19a4-441f-8614-4084575f3cc7", - "Body" : "{\r\n \"name\": \"vnet366690d8b7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet366690d8b7\",\r\n \"etag\": \"W/\\\"72d99826-a9ca-43d5-875c-28a7bff0ff28\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e127116a-e872-462c-ae0f-4b5ee2563575\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet366690d8b7/subnets/subnet1\",\r\n \"etag\": \"W/\\\"72d99826-a9ca-43d5-875c-28a7bff0ff28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5adc9081-19a4-441f-8614-4084575f3cc7?api-version=2019-06-01" + "x-ms-request-id" : "6de09478-084f-46ed-9ecb-5c0c63cc62ed", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_bc64208401\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6de09478-084f-46ed-9ecb-5c0c63cc62ed?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/publicIPAddresses/pip57640919?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4526426fc5?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:51 GMT", + "date" : "Mon, 18 May 2020 07:00:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "758", + "azure-asyncnotification" : "Enabled", + "content-length" : "1342", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6526061a-e78e-411e-bf59-b70612c9611b", + "x-ms-correlation-request-id" : "1e197105-10fa-498a-b554-f045f85428e3", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b038f4de-edf4-43b5-9f3f-976fcf066513", + "x-ms-arm-service-request-id" : "08b689ca-7b20-42cd-ad8f-8f13c3037834", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085952Z:6526061a-e78e-411e-bf59-b70612c9611b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070007Z:1e197105-10fa-498a-b554-f045f85428e3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "44728bff-79c9-4855-969c-895776742d95", - "Body" : "{\r\n \"name\": \"pip57640919\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/publicIPAddresses/pip57640919\",\r\n \"etag\": \"W/\\\"2fbe8c5b-e500-49ff-aac7-7933bdb7d727\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e0a88ff5-2d54-490e-80d3-18402033ef7e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipf5668669157e\",\r\n \"fqdn\": \"pipf5668669157e.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/44728bff-79c9-4855-969c-895776742d95?api-version=2019-06-01" + "x-ms-request-id" : "6f0c9528-3ee4-440e-8af1-edf0aa903226", + "Body" : "{\r\n \"name\": \"vnet4526426fc5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4526426fc5\",\r\n \"etag\": \"W/\\\"5cbcab77-729b-4ee6-ab69-ad693c62ad43\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b08169cc-275d-4589-8984-6bad6d2455f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4526426fc5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5cbcab77-729b-4ee6-ab69-ad693c62ad43\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6f0c9528-3ee4-440e-8af1-edf0aa903226?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_ad2543405b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/publicIPAddresses/pip813367ca?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:51 GMT", + "date" : "Mon, 18 May 2020 07:00:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "256", + "azure-asyncnotification" : "Enabled", + "content-length" : "758", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1144", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", - "StatusCode" : "202", + "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac2ec09a-59fb-4b5f-9239-e9d68119105e", + "x-ms-correlation-request-id" : "19cc189f-ac30-4fac-8eee-a9292d53cd39", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "9487dbf0-c9f7-47db-84ec-098a4e52203a", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085952Z:ac2ec09a-59fb-4b5f-9239-e9d68119105e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070009Z:19cc189f-ac30-4fac-8eee-a9292d53cd39", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/1c37740a-a02a-4317-81e9-399092be36c6?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "1c37740a-a02a-4317-81e9-399092be36c6", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_ad2543405b\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/1c37740a-a02a-4317-81e9-399092be36c6?api-version=2019-03-01" + "x-ms-request-id" : "1acbd56f-c1a7-4a40-978e-423b139123c0", + "Body" : "{\r\n \"name\": \"pip813367ca\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/publicIPAddresses/pip813367ca\",\r\n \"etag\": \"W/\\\"6693f8eb-1051-427f-b336-f0c4473171fc\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"67e7ae36-4d53-40f7-96b6-4216aa6a1352\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipdab45808e425\",\r\n \"fqdn\": \"pipdab45808e425.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1acbd56f-c1a7-4a40-978e-423b139123c0?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/9205cb73-8aad-425a-adbd-0df22d81599b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6de09478-084f-46ed-9ecb-5c0c63cc62ed?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:19 GMT", + "date" : "Mon, 18 May 2020 07:00:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "820", + "content-length" : "875", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10354", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4184cdd9-e1c7-487f-8fdb-8023ea9376df", + "x-ms-correlation-request-id" : "b70eac10-45f6-43e1-bf1f-4d765a1311d1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49963,Microsoft.Compute/GetOperation30Min;399890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090020Z:4184cdd9-e1c7-487f-8fdb-8023ea9376df", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399985", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070036Z:b70eac10-45f6-43e1-bf1f-4d765a1311d1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1d0f2c2b-00e3-4f4d-af60-089425ed08c9", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:59:49.6193039+00:00\",\r\n \"endTime\": \"2020-03-05T08:59:49.7599261+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_7a18184032\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_7a18184032\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:59:49.6193039+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"3d3fbb29-8b14-4440-b66a-7252cba2146e\"}}\r\n },\r\n \"name\": \"9205cb73-8aad-425a-adbd-0df22d81599b\"\r\n}" + "x-ms-request-id" : "68832601-43bc-4285-9b54-3956be1b9136", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:00:05.7064191+00:00\",\r\n \"endTime\": \"2020-05-18T07:00:05.862675+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_bc64208401\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_bc64208401\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:00:05.7220456+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"99d0b954-4e07-4984-b508-ee7de57675a0\"}}\r\n },\r\n \"name\": \"6de09478-084f-46ed-9ecb-5c0c63cc62ed\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/42680f57-60ae-49e3-89bb-2f415979aff3?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d5ab100e-345d-4d48-9920-06d7858037ce?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:20 GMT", + "date" : "Mon, 18 May 2020 07:00:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "820", + "content-length" : "876", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10452", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2a28089a-508f-4631-80d8-c69c84df9b5a", + "x-ms-correlation-request-id" : "486bd557-d005-428b-91a4-f71f187c8a0c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49961,Microsoft.Compute/GetOperation30Min;399888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090021Z:2a28089a-508f-4631-80d8-c69c84df9b5a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399984", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070036Z:486bd557-d005-428b-91a4-f71f187c8a0c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b7765779-c9ed-4434-beb1-5ca91c14949b", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:59:49.8380505+00:00\",\r\n \"endTime\": \"2020-03-05T08:59:49.9786811+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_1c08338060\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_1c08338060\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:59:49.8380505+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"7e07cfff-7123-4caa-b8da-19532a5379c8\"}}\r\n },\r\n \"name\": \"42680f57-60ae-49e3-89bb-2f415979aff3\"\r\n}" + "x-ms-request-id" : "6e9a500b-875e-4d33-903d-de29b40c0f8f", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:00:05.6751494+00:00\",\r\n \"endTime\": \"2020-05-18T07:00:05.8158212+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_16c8129029\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_16c8129029\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:00:05.6751494+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"38ea9c42-a6cf-4f08-bdc9-e9fd0dcc4ce4\"}}\r\n },\r\n \"name\": \"d5ab100e-345d-4d48-9920-06d7858037ce\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5adc9081-19a4-441f-8614-4084575f3cc7?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/10da84ea-f2f9-4485-9b90-4fc9e7a261d1?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:21 GMT", + "date" : "Mon, 18 May 2020 07:00:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", + "content-length" : "876", "expires" : "-1", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10694", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "56c769ba-de39-4a19-b459-c090af9c58af", + "x-ms-correlation-request-id" : "1344b030-4195-4c3c-87cb-dd5fbcc83fa8", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8a5af3e7-3646-4dd1-9639-9e5d8188acef", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090022Z:56c769ba-de39-4a19-b459-c090af9c58af", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399983", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070036Z:1344b030-4195-4c3c-87cb-dd5fbcc83fa8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5dd8722c-9d5e-4426-9c5d-d75ed52185fc", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" + "x-ms-request-id" : "1bf74e1c-db95-4cb4-906f-2805da47245e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:00:05.6439222+00:00\",\r\n \"endTime\": \"2020-05-18T07:00:05.8001759+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_74255501db\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_74255501db\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:00:05.6439222+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"5439a478-fc8b-461e-9631-55b085ca2e0f\"}}\r\n },\r\n \"name\": \"10da84ea-f2f9-4485-9b90-4fc9e7a261d1\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/44728bff-79c9-4855-969c-895776742d95?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6f0c9528-3ee4-440e-8af1-edf0aa903226?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:22 GMT", + "date" : "Mon, 18 May 2020 07:00:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10693", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "908082af-1ab6-4e4b-a201-ee865410a439", + "x-ms-correlation-request-id" : "d40fc485-8ab5-4d1e-80c3-0209c72f7457", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8431651e-ab9e-453f-99ad-0d6d73a2eef2", + "x-ms-arm-service-request-id" : "d42c8ce5-8ff7-454d-835d-8d47f8916e4a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090022Z:908082af-1ab6-4e4b-a201-ee865410a439", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070038Z:d40fc485-8ab5-4d1e-80c3-0209c72f7457", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d678f76b-e367-4b85-bac6-96dbd6335d5a", + "x-ms-request-id" : "d21ee8a9-732e-475e-9ec6-878d825a3fe5", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/1c37740a-a02a-4317-81e9-399092be36c6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1acbd56f-c1a7-4a40-978e-423b139123c0?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:22 GMT", + "date" : "Mon, 18 May 2020 07:00:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "820", + "content-length" : "29", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10109", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5daddcc9-f72b-4fe7-9f6d-202e2eabbb22", + "x-ms-correlation-request-id" : "210b9926-b55b-4023-b6f4-af9e525f04db", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "f2dde861-7b33-43f4-bacf-3fab312c5695", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49960,Microsoft.Compute/GetOperation30Min;399887", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090023Z:5daddcc9-f72b-4fe7-9f6d-202e2eabbb22", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070039Z:210b9926-b55b-4023-b6f4-af9e525f04db", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4dc63bd5-a622-43a5-9c10-ce8126c00dc5", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:59:51.9161746+00:00\",\r\n \"endTime\": \"2020-03-05T08:59:52.0255168+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_ad2543405b\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_ad2543405b\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:59:51.9161746+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"8023f0d1-bd90-42ae-9264-acf4d659ab21\"}}\r\n },\r\n \"name\": \"1c37740a-a02a-4317-81e9-399092be36c6\"\r\n}" + "x-ms-request-id" : "c76eafc1-0594-4155-82dd-a50510faf2d2", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_7a18184032?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_bc64208401?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:50 GMT", + "date" : "Mon, 18 May 2020 07:01:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "732", + "content-length" : "810", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9799", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5247f10d-f3b0-4755-950c-aded1ecf9b5a", + "x-ms-correlation-request-id" : "e368de2d-e6aa-4d40-8592-453926029c3a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090050Z:5247f10d-f3b0-4755-950c-aded1ecf9b5a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39976", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070106Z:e368de2d-e6aa-4d40-8592-453926029c3a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "54b5a9d1-3a5a-40ab-98d2-b18702d8e083", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_7a18184032\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_7a18184032\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:59:49.6193039+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"3d3fbb29-8b14-4440-b66a-7252cba2146e\"\r\n }\r\n}" + "x-ms-request-id" : "e4991974-0d34-474c-a839-76a90154803c", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_bc64208401\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_bc64208401\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:00:05.7220456+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"99d0b954-4e07-4984-b508-ee7de57675a0\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_1c08338060?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_16c8129029?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:51 GMT", + "date" : "Mon, 18 May 2020 07:01:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "732", + "content-length" : "810", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10426", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e76b3f13-8136-44e3-8994-1c44c6e969d4", + "x-ms-correlation-request-id" : "454b76d5-3bdb-4de9-9b59-6148efd324b1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090051Z:e76b3f13-8136-44e3-8994-1c44c6e969d4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39975", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070106Z:454b76d5-3bdb-4de9-9b59-6148efd324b1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "832bfebd-65e3-4fa8-867d-626506b846d5", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_1c08338060\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_1c08338060\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:59:49.8380505+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"7e07cfff-7123-4caa-b8da-19532a5379c8\"\r\n }\r\n}" + "x-ms-request-id" : "de8d7cdd-514b-444c-b24c-a79a49281e35", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_16c8129029\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_16c8129029\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:00:05.6751494+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"38ea9c42-a6cf-4f08-bdc9-e9fd0dcc4ce4\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet366690d8b7?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_74255501db?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:52 GMT", + "date" : "Mon, 18 May 2020 07:01:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1344", + "content-length" : "810", "expires" : "-1", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10107", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "634dd3a0-f41f-4028-8f31-9688ede1f940", + "x-ms-correlation-request-id" : "a2a0f140-e08d-4f0d-9921-a7d769ec0082", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7faaa4bb-ebe9-476a-8f02-224f9569ab18", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090052Z:634dd3a0-f41f-4028-8f31-9688ede1f940", - "etag" : "W/\"4a0e00f8-0351-4f8e-acb2-d0b3b71de854\"", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39974", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070107Z:a2a0f140-e08d-4f0d-9921-a7d769ec0082", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d52e086a-a8e5-4259-8648-07cce97097e4", - "Body" : "{\r\n \"name\": \"vnet366690d8b7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet366690d8b7\",\r\n \"etag\": \"W/\\\"4a0e00f8-0351-4f8e-acb2-d0b3b71de854\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e127116a-e872-462c-ae0f-4b5ee2563575\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet366690d8b7/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4a0e00f8-0351-4f8e-acb2-d0b3b71de854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "dfe75f69-65a5-4aab-95d2-5189d1fd1bca", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_74255501db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_74255501db\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:00:05.6439222+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"5439a478-fc8b-461e-9631-55b085ca2e0f\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/publicIPAddresses/pip57640919?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4526426fc5?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:52 GMT", + "date" : "Mon, 18 May 2020 07:01:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "759", + "content-length" : "1344", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10446", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5941165b-89f3-4f09-98c6-8060c80c9534", + "x-ms-correlation-request-id" : "35812338-8d9a-4714-ada2-8ea3bfe2e0b4", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3efc2040-af0d-4995-9d36-53bcca9f1ed4", + "x-ms-arm-service-request-id" : "d4230889-7640-47ac-a257-33be394c4e63", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090053Z:5941165b-89f3-4f09-98c6-8060c80c9534", - "etag" : "W/\"1dcc402e-4c10-4cad-a07b-6cfdf742dc6b\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070109Z:35812338-8d9a-4714-ada2-8ea3bfe2e0b4", + "etag" : "W/\"65d88877-4c18-402f-9bb9-e102b3e98277\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "dea92e15-18ee-4282-94a6-7c4e9907226f", - "Body" : "{\r\n \"name\": \"pip57640919\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/publicIPAddresses/pip57640919\",\r\n \"etag\": \"W/\\\"1dcc402e-4c10-4cad-a07b-6cfdf742dc6b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0a88ff5-2d54-490e-80d3-18402033ef7e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipf5668669157e\",\r\n \"fqdn\": \"pipf5668669157e.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "26a34ed6-9d15-4d03-8252-0377fb07c804", + "Body" : "{\r\n \"name\": \"vnet4526426fc5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4526426fc5\",\r\n \"etag\": \"W/\\\"65d88877-4c18-402f-9bb9-e102b3e98277\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b08169cc-275d-4589-8984-6bad6d2455f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4526426fc5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"65d88877-4c18-402f-9bb9-e102b3e98277\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_ad2543405b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/publicIPAddresses/pip813367ca?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:52 GMT", + "date" : "Mon, 18 May 2020 07:01:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "732", + "content-length" : "759", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9623", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4b3ab39f-772f-42aa-8c80-362c6f6ae996", + "x-ms-correlation-request-id" : "b2379200-09af-4122-9725-e354daa5351c", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "c6b1d3fa-bca9-4306-8335-16278cd46a44", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090053Z:4b3ab39f-772f-42aa-8c80-362c6f6ae996", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070110Z:b2379200-09af-4122-9725-e354daa5351c", + "etag" : "W/\"406838c0-8257-4d0e-a511-9a2569cbc36a\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ab9d8064-bd12-4215-b7d4-211ddd9ce815", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_ad2543405b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_ad2543405b\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:59:51.9161746+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"8023f0d1-bd90-42ae-9264-acf4d659ab21\"\r\n }\r\n}" + "x-ms-request-id" : "8fb399f7-a439-4899-be9d-a2e6a70599cc", + "Body" : "{\r\n \"name\": \"pip813367ca\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/publicIPAddresses/pip813367ca\",\r\n \"etag\": \"W/\\\"406838c0-8257-4d0e-a511-9a2569cbc36a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"67e7ae36-4d53-40f7-96b6-4216aa6a1352\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipdab45808e425\",\r\n \"fqdn\": \"pipdab45808e425.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:59 GMT", + "date" : "Mon, 18 May 2020 07:01:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1854", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "22775768-d4ba-4ed8-afd8-62b27789ddfd", + "x-ms-correlation-request-id" : "8df6962d-90b4-4d74-8e85-fc20f732ac94", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e5a2a781-bd81-472c-a7f9-e92db2657bd9", + "x-ms-arm-service-request-id" : "581cecac-24e8-49f0-bd57-44d86345ea9f", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090059Z:22775768-d4ba-4ed8-afd8-62b27789ddfd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070117Z:8df6962d-90b4-4d74-8e85-fc20f732ac94", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6ce926bd-80a6-402c-a0ee-2b36c36bb6d8", - "Body" : "{\r\n \"name\": \"nicmyvm12d7300188f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f\",\r\n \"etag\": \"W/\\\"9dfbbd73-fe4d-4a59-a125-339e6a85fdd8\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f9a86ad-93d5-46f0-b8c2-b2a71b7828d5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9dfbbd73-fe4d-4a59-a125-339e6a85fdd8\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/publicIPAddresses/pip57640919\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet366690d8b7/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"niispyls3awenlqpjnpoevrvof.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ce926bd-80a6-402c-a0ee-2b36c36bb6d8?api-version=2019-06-01" + "x-ms-request-id" : "1bd947f8-9abc-4470-834d-cf8c78b2ebc9", + "Body" : "{\r\n \"name\": \"nicmyvm196a92103e5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5\",\r\n \"etag\": \"W/\\\"79edd91c-744c-4da9-aa99-3c97077fc27f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f3bfe51-6a1a-4f07-bf25-f4d4b83da51a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"79edd91c-744c-4da9-aa99-3c97077fc27f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/publicIPAddresses/pip813367ca\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4526426fc5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zruydmc3e4eulcmenoww0jcv4g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1bd947f8-9abc-4470-834d-cf8c78b2ebc9?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ce926bd-80a6-402c-a0ee-2b36c36bb6d8?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1bd947f8-9abc-4470-834d-cf8c78b2ebc9?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:30 GMT", + "date" : "Mon, 18 May 2020 07:01:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9792", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60d51ae0-a1f8-4ecf-a158-bbe99dddf382", + "x-ms-correlation-request-id" : "97bde8fb-b750-4db0-b994-a151460e9ee2", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "30bb2be6-cfc9-466c-9075-2622bab51a5e", + "x-ms-arm-service-request-id" : "c4596842-7476-4019-b505-c031f5197433", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090130Z:60d51ae0-a1f8-4ecf-a158-bbe99dddf382", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070148Z:97bde8fb-b750-4db0-b994-a151460e9ee2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2620f3fb-1ec2-435c-8890-96b676a5abe5", + "x-ms-request-id" : "eec5a099-4102-451f-8db4-ae57fcd84090", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:00 GMT", + "date" : "Mon, 18 May 2020 07:02:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1854", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10677", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6dbaa40c-2e7b-40d4-bea3-87f3ad6b12bf", + "x-ms-correlation-request-id" : "2973e2f1-a7a2-4c16-b8ba-c364547eb4ee", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c996ee3d-e434-4de9-9e3b-eb236d50334e", + "x-ms-arm-service-request-id" : "7458a3de-7077-4935-a722-87d36d0bef49", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090201Z:6dbaa40c-2e7b-40d4-bea3-87f3ad6b12bf", - "etag" : "W/\"9dfbbd73-fe4d-4a59-a125-339e6a85fdd8\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070219Z:2973e2f1-a7a2-4c16-b8ba-c364547eb4ee", + "etag" : "W/\"79edd91c-744c-4da9-aa99-3c97077fc27f\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a27a7756-569a-4059-a536-2416660137b1", - "Body" : "{\r\n \"name\": \"nicmyvm12d7300188f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f\",\r\n \"etag\": \"W/\\\"9dfbbd73-fe4d-4a59-a125-339e6a85fdd8\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f9a86ad-93d5-46f0-b8c2-b2a71b7828d5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9dfbbd73-fe4d-4a59-a125-339e6a85fdd8\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/publicIPAddresses/pip57640919\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet366690d8b7/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"niispyls3awenlqpjnpoevrvof.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "f815212e-377f-4b62-827a-a82dee291529", + "Body" : "{\r\n \"name\": \"nicmyvm196a92103e5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5\",\r\n \"etag\": \"W/\\\"79edd91c-744c-4da9-aa99-3c97077fc27f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f3bfe51-6a1a-4f07-bf25-f4d4b83da51a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"79edd91c-744c-4da9-aa99-3c97077fc27f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/publicIPAddresses/pip813367ca\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4526426fc5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zruydmc3e4eulcmenoww0jcv4g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:09 GMT", + "date" : "Mon, 18 May 2020 07:02:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3424", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1140", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "47dcb544-0300-4f61-9613-1d05c3ce6233", + "x-ms-correlation-request-id" : "63766af3-6e95-4a14-9969-2a44529e6435", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1178", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090209Z:47dcb544-0300-4f61-9613-1d05c3ce6233", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1193", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070227Z:63766af3-6e95-4a14-9969-2a44529e6435", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "72e693de-f441-48d0-aa08-f2cbdd57e137", - "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cf73191e-53ec-4d08-ac54-d9c02a229e7c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_1c08338060\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_1c08338060\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_7a18184032\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_7a18184032\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_ad2543405b\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_ad2543405b\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/72e693de-f441-48d0-aa08-f2cbdd57e137?api-version=2019-03-01" + "x-ms-request-id" : "4a559167-aae4-46a1-8ac0-3a7de257dcf1", + "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fea90b99-3383-4bdb-82bf-0be77155f851\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_74255501db\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_74255501db\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_16c8129029\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_16c8129029\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_bc64208401\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_bc64208401\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4a559167-aae4-46a1-8ac0-3a7de257dcf1?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/72e693de-f441-48d0-aa08-f2cbdd57e137?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4a559167-aae4-46a1-8ac0-3a7de257dcf1?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:39 GMT", + "date" : "Mon, 18 May 2020 07:02:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9783", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1b5f23ed-2d2e-4237-aab3-b15d61b8c9d8", + "x-ms-correlation-request-id" : "ea1a193c-9c4e-4d8f-aba8-a7fae539e114", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29743", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090239Z:1b5f23ed-2d2e-4237-aab3-b15d61b8c9d8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070258Z:ea1a193c-9c4e-4d8f-aba8-a7fae539e114", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "87997645-a1dc-4d61-915a-27ee86f5fa9a", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:02:07.7068206+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"72e693de-f441-48d0-aa08-f2cbdd57e137\"\r\n}" + "x-ms-request-id" : "bc6f2361-8263-4ba9-bb2b-0dc7391c0c8f", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:25.8260196+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a559167-aae4-46a1-8ac0-3a7de257dcf1\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/72e693de-f441-48d0-aa08-f2cbdd57e137?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4a559167-aae4-46a1-8ac0-3a7de257dcf1?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:03:09 GMT", + "date" : "Mon, 18 May 2020 07:03:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9957", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "55b8d40d-f41a-4429-93b1-c4bcd31e4f16", + "x-ms-correlation-request-id" : "14615fb6-16a4-485b-a24d-9973c3cbfa63", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29732", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090309Z:55b8d40d-f41a-4429-93b1-c4bcd31e4f16", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070328Z:14615fb6-16a4-485b-a24d-9973c3cbfa63", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "34e2ded5-13bc-4388-80a2-360fc7a3de4a", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:02:07.7068206+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"72e693de-f441-48d0-aa08-f2cbdd57e137\"\r\n}" + "x-ms-request-id" : "64060182-4a8e-4add-b086-610f1dbbe378", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:25.8260196+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a559167-aae4-46a1-8ac0-3a7de257dcf1\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/72e693de-f441-48d0-aa08-f2cbdd57e137?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4a559167-aae4-46a1-8ac0-3a7de257dcf1?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:03:39 GMT", + "date" : "Mon, 18 May 2020 07:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10310", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a8d4aec9-7f49-48a2-afd5-1fc78fbff488", + "x-ms-correlation-request-id" : "3c7393f4-6ac4-4248-ae8e-d395d68d9a2b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29722", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090340Z:a8d4aec9-7f49-48a2-afd5-1fc78fbff488", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29977", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070359Z:3c7393f4-6ac4-4248-ae8e-d395d68d9a2b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d614c9b0-9a07-437d-97c8-ee55a05d9a62", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:02:07.7068206+00:00\",\r\n \"endTime\": \"2020-03-05T09:03:19.9884573+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"72e693de-f441-48d0-aa08-f2cbdd57e137\"\r\n}" + "x-ms-request-id" : "28d4d7e1-1dab-46f3-b632-4c199b1d83c4", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:25.8260196+00:00\",\r\n \"endTime\": \"2020-05-18T07:03:36.5920079+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4a559167-aae4-46a1-8ac0-3a7de257dcf1\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:04:10 GMT", + "date" : "Mon, 18 May 2020 07:04:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "4177", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10092", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f8a6d2e0-1ead-4413-8650-e8a6e5b14b1c", + "x-ms-correlation-request-id" : "d48f9a6d-5888-41db-a41f-1f2ef09fb229", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090410Z:f8a6d2e0-1ead-4413-8650-e8a6e5b14b1c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31980", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070429Z:d48f9a6d-5888-41db-a41f-1f2ef09fb229", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f9d34f98-54c8-433f-a81c-ea127eec0591", - "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cf73191e-53ec-4d08-ac54-d9c02a229e7c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_ce709960edd14b4a9100c9517c5c3ee2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_ce709960edd14b4a9100c9517c5c3ee2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_1c08338060\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_1c08338060\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_7a18184032\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_7a18184032\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_ad2543405b\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_ad2543405b\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm1_disk5_45fb918afd274f5d8bebb15e280633a2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm1_disk5_45fb918afd274f5d8bebb15e280633a2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm1_disk6_e97fcabf12c44bdcafe9ce604cd45911\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm1_disk6_e97fcabf12c44bdcafe9ce604cd45911\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "acdc3863-f842-43db-8e4d-456515fed065", + "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fea90b99-3383-4bdb-82bf-0be77155f851\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_bf246c94eaef4adaa7620ce24e3d8297\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_bf246c94eaef4adaa7620ce24e3d8297\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_74255501db\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_74255501db\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_16c8129029\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_16c8129029\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_bc64208401\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_bc64208401\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm1_disk5_e357b7fe080844b4b6d0bc1ccfd0a6da\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm1_disk5_e357b7fe080844b4b6d0bc1ccfd0a6da\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm1_disk6_67a4888528674ebd8ea6a32eec0844f2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm1_disk6_67a4888528674ebd8ea6a32eec0844f2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:05:10 GMT", + "date" : "Mon, 18 May 2020 07:05:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2096", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10068", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e2d29856-5611-49c6-9727-cb58c91ea108", + "x-ms-correlation-request-id" : "1a95234a-cb91-4864-9d39-03c9f516bc2a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7a2bcbaa-6c6b-4a9d-9d11-55730dd274c4", + "x-ms-arm-service-request-id" : "a8c9c51c-b4b3-41d7-b6df-5f981313f2f1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090510Z:e2d29856-5611-49c6-9727-cb58c91ea108", - "etag" : "W/\"9e15476e-c1ff-4bb9-a4de-87167b0414c1\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070530Z:1a95234a-cb91-4864-9d39-03c9f516bc2a", + "etag" : "W/\"f85199ab-2952-4e42-93bb-aa9249bf9f4a\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f94fbf19-5149-41ae-8589-95629073521b", - "Body" : "{\r\n \"name\": \"nicmyvm12d7300188f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f\",\r\n \"etag\": \"W/\\\"9e15476e-c1ff-4bb9-a4de-87167b0414c1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f9a86ad-93d5-46f0-b8c2-b2a71b7828d5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9e15476e-c1ff-4bb9-a4de-87167b0414c1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/publicIPAddresses/pip57640919\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet366690d8b7/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"niispyls3awenlqpjnpoevrvof.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-10-6C-90\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "46213249-c289-4b98-8b17-a42780587cc4", + "Body" : "{\r\n \"name\": \"nicmyvm196a92103e5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5\",\r\n \"etag\": \"W/\\\"f85199ab-2952-4e42-93bb-aa9249bf9f4a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f3bfe51-6a1a-4f07-bf25-f4d4b83da51a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f85199ab-2952-4e42-93bb-aa9249bf9f4a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/publicIPAddresses/pip813367ca\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4526426fc5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zruydmc3e4eulcmenoww0jcv4g.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-9A-A0-13\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/publicIPAddresses/pip57640919?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/publicIPAddresses/pip813367ca?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:05:10 GMT", + "date" : "Mon, 18 May 2020 07:05:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1015", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10647", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d98463b6-58d9-4b8b-9d50-4a918748a4e5", + "x-ms-correlation-request-id" : "37a27160-c571-47e4-b49b-f19dc7a3ae81", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "25a4d5de-9ea7-484a-a089-d624aa9c9c80", + "x-ms-arm-service-request-id" : "a320e086-2cd1-4e3a-9cc6-31f1d0f4ad7b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090511Z:d98463b6-58d9-4b8b-9d50-4a918748a4e5", - "etag" : "W/\"3c180f1b-524d-43cb-9973-21ed3e4474fb\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070530Z:37a27160-c571-47e4-b49b-f19dc7a3ae81", + "etag" : "W/\"a15cdb5b-71c8-443e-b1f4-202c03b533b8\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e441a1fb-72ea-4811-bc22-0042100d66e9", - "Body" : "{\r\n \"name\": \"pip57640919\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/publicIPAddresses/pip57640919\",\r\n \"etag\": \"W/\\\"3c180f1b-524d-43cb-9973-21ed3e4474fb\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0a88ff5-2d54-490e-80d3-18402033ef7e\",\r\n \"ipAddress\": \"13.92.226.253\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipf5668669157e\",\r\n \"fqdn\": \"pipf5668669157e.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm12d7300188f/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "0d6180e1-fc4e-4f00-a8e8-33db7f43c5e3", + "Body" : "{\r\n \"name\": \"pip813367ca\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/publicIPAddresses/pip813367ca\",\r\n \"etag\": \"W/\\\"a15cdb5b-71c8-443e-b1f4-202c03b533b8\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"67e7ae36-4d53-40f7-96b6-4216aa6a1352\",\r\n \"ipAddress\": \"52.179.121.20\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipdab45808e425\",\r\n \"fqdn\": \"pipdab45808e425.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm196a92103e5/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm1/deallocate?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm1/deallocate?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:05:33 GMT", + "date" : "Mon, 18 May 2020 07:05:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "82f4003c-40b2-42ad-b741-87b8fde18db4", + "x-ms-correlation-request-id" : "91135746-d886-4cb6-b464-e82e4e36eeac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1178", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090534Z:82f4003c-40b2-42ad-b741-87b8fde18db4", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fb999443-e734-4ffa-9c19-74c9f079bbcf?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;233,Microsoft.Compute/DeleteVM30Min;1193", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070554Z:91135746-d886-4cb6-b464-e82e4e36eeac", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a60c849-a8d1-420d-9fa3-8cb4728dacda?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "fb999443-e734-4ffa-9c19-74c9f079bbcf", + "x-ms-request-id" : "1a60c849-a8d1-420d-9fa3-8cb4728dacda", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fb999443-e734-4ffa-9c19-74c9f079bbcf?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a60c849-a8d1-420d-9fa3-8cb4728dacda?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fb999443-e734-4ffa-9c19-74c9f079bbcf?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a60c849-a8d1-420d-9fa3-8cb4728dacda?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:06:03 GMT", + "date" : "Mon, 18 May 2020 07:06:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10271", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "85620ddc-ef90-4aaa-b963-424c507ee803", + "x-ms-correlation-request-id" : "ddd0b501-e810-481f-9757-6055e72fc20a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29678", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090604Z:85620ddc-ef90-4aaa-b963-424c507ee803", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29963", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070624Z:ddd0b501-e810-481f-9757-6055e72fc20a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "406e8894-6b73-43f8-81d1-862677857968", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:05:34.0982236+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fb999443-e734-4ffa-9c19-74c9f079bbcf\"\r\n}" + "x-ms-request-id" : "23e6c76a-fad5-418d-8a27-1369b630e2d0", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:05:54.1240085+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a60c849-a8d1-420d-9fa3-8cb4728dacda\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fb999443-e734-4ffa-9c19-74c9f079bbcf?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a60c849-a8d1-420d-9fa3-8cb4728dacda?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:06:34 GMT", + "date" : "Mon, 18 May 2020 07:06:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10064", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ba84c976-bf2f-4504-be68-4a9d9d67f867", + "x-ms-correlation-request-id" : "cdbf78f7-c6d2-49a0-a0ea-f5e03b247a23", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29668", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090634Z:ba84c976-bf2f-4504-be68-4a9d9d67f867", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29959", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070655Z:cdbf78f7-c6d2-49a0-a0ea-f5e03b247a23", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5737ccdf-63a3-4632-b405-c391a9041d58", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:05:34.0982236+00:00\",\r\n \"endTime\": \"2020-03-05T09:06:26.4107333+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fb999443-e734-4ffa-9c19-74c9f079bbcf\"\r\n}" + "x-ms-request-id" : "a3809078-d5f3-490c-b517-a3b0259cfce0", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:05:54.1240085+00:00\",\r\n \"endTime\": \"2020-05-18T07:06:33.3117418+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1a60c849-a8d1-420d-9fa3-8cb4728dacda\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fb999443-e734-4ffa-9c19-74c9f079bbcf?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1a60c849-a8d1-420d-9fa3-8cb4728dacda?monitor=true&api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:07:04 GMT", + "date" : "Mon, 18 May 2020 07:07:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9754", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f17970f5-79c5-437b-8d0e-ea403f38b029", + "x-ms-correlation-request-id" : "0c275a82-24ec-4e5b-af6c-ae4d897f4215", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29660", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090705Z:f17970f5-79c5-437b-8d0e-ea403f38b029", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29954", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070726Z:0c275a82-24ec-4e5b-af6c-ae4d897f4215", "cache-control" : "no-cache", - "x-ms-request-id" : "71fb3aab-ae52-40d6-8100-2dfdd2d1f650", + "x-ms-request-id" : "57fd199b-8bd6-48d9-812f-779379feb874", "Body" : "" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm1/generalize?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm1/generalize?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:07:04 GMT", + "date" : "Mon, 18 May 2020 07:07:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", @@ -795,1166 +802,966 @@ "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3c5390a1-3d5d-472e-af79-d1deb2074a79", + "x-ms-correlation-request-id" : "7c26b6c0-6784-44f4-9364-97c073f8d267", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090705Z:3c5390a1-3d5d-472e-af79-d1deb2074a79", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070726Z:7c26b6c0-6784-44f4-9364-97c073f8d267", "cache-control" : "no-cache", - "x-ms-request-id" : "4504fe74-b649-469e-a919-4125e55c9ca0", + "x-ms-request-id" : "088e25ab-5745-4ad4-be88-4247787d73ce", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/images/img-81185?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/images/img-19571?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:07:12 GMT", + "date" : "Mon, 18 May 2020 07:07:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2657", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a1cf4ab9-b77d-4441-9f6a-d6ea77eee064", + "x-ms-correlation-request-id" : "cd2cc251-8022-448c-b6f8-5ddae35d868a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090712Z:a1cf4ab9-b77d-4441-9f6a-d6ea77eee064", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070734Z:cd2cc251-8022-448c-b6f8-5ddae35d868a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "abe59dec-c833-4704-85e7-6087e5d3e9b5", - "Body" : "{\r\n \"name\": \"img-81185\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/images/img-81185\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm1\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_ce709960edd14b4a9100c9517c5c3ee2\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_1c08338060\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_7a18184032\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_ad2543405b\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 4,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm1_disk5_45fb918afd274f5d8bebb15e280633a2\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm1_disk6_e97fcabf12c44bdcafe9ce604cd45911\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abe59dec-c833-4704-85e7-6087e5d3e9b5?api-version=2019-03-01" + "x-ms-request-id" : "f47190e3-8712-4d04-bf5d-d4976166fdd4", + "Body" : "{\r\n \"name\": \"img-19571\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/images/img-19571\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm1\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_bf246c94eaef4adaa7620ce24e3d8297\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 3,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_74255501db\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_16c8129029\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_bc64208401\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 4,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm1_disk5_e357b7fe080844b4b6d0bc1ccfd0a6da\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm1_disk6_67a4888528674ebd8ea6a32eec0844f2\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f47190e3-8712-4d04-bf5d-d4976166fdd4?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abe59dec-c833-4704-85e7-6087e5d3e9b5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f47190e3-8712-4d04-bf5d-d4976166fdd4?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:07:42 GMT", + "date" : "Mon, 18 May 2020 07:08:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9747", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2ab3a48c-f781-4c08-acdd-f3b16f082a33", + "x-ms-correlation-request-id" : "9f919192-6813-4cb3-be92-ac3d47c74aed", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29647", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090742Z:2ab3a48c-f781-4c08-acdd-f3b16f082a33", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29950", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070805Z:9f919192-6813-4cb3-be92-ac3d47c74aed", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4e4177fe-69b7-4be5-919e-654b968b57b4", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:07:10.113845+00:00\",\r\n \"endTime\": \"2020-03-05T09:07:15.2857633+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"abe59dec-c833-4704-85e7-6087e5d3e9b5\"\r\n}" + "x-ms-request-id" : "85dcf5c8-5e78-4342-aff9-4b5181bdd9ca", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:07:32.7808188+00:00\",\r\n \"endTime\": \"2020-05-18T07:07:37.9215006+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f47190e3-8712-4d04-bf5d-d4976166fdd4\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/images/img-81185?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/images/img-19571?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:08:12 GMT", + "date" : "Mon, 18 May 2020 07:08:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2835", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10416", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "623469da-ab30-4249-8443-2ab22f8c7a1b", + "x-ms-correlation-request-id" : "c358e658-9acc-44eb-a926-b34383bd293f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1792", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090812Z:623469da-ab30-4249-8443-2ab22f8c7a1b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070835Z:c358e658-9acc-44eb-a926-b34383bd293f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "23adc66d-aa6f-4012-a45a-3148b3d06728", - "Body" : "{\r\n \"name\": \"img-81185\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/images/img-81185\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm1\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_ce709960edd14b4a9100c9517c5c3ee2\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 150,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_1c08338060\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 150,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_7a18184032\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 150,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/disks/myvm1_mdisk_ad2543405b\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 4,\r\n \"diskSizeGB\": 100,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm1_disk5_45fb918afd274f5d8bebb15e280633a2\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm1_disk6_e97fcabf12c44bdcafe9ce604cd45911\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" + "x-ms-request-id" : "ed94f1cb-d925-4127-8f2e-2cb323208c3f", + "Body" : "{\r\n \"name\": \"img-19571\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/images/img-19571\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm1\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_bf246c94eaef4adaa7620ce24e3d8297\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 150,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_74255501db\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 150,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_16c8129029\"\r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 150,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/disks/myvm1_mdisk_bc64208401\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 4,\r\n \"diskSizeGB\": 100,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm1_disk5_e357b7fe080844b4b6d0bc1ccfd0a6da\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm1_disk6_67a4888528674ebd8ea6a32eec0844f2\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet25542e4216?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4719377d09?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:08:19 GMT", + "date" : "Mon, 18 May 2020 07:08:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1342", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6d0b7b61-e1a7-419b-b9c8-0d13e67b2ef8", + "x-ms-correlation-request-id" : "c1fbd57b-5c1c-4e65-bf36-5450a8abe2e3", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "787a7508-b8ab-4678-92af-2c78bd947fa6", + "x-ms-arm-service-request-id" : "49c47a33-04fb-41da-9c2b-9bd1b9d3e593", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090820Z:6d0b7b61-e1a7-419b-b9c8-0d13e67b2ef8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070843Z:c1fbd57b-5c1c-4e65-bf36-5450a8abe2e3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1e408055-2ce9-4ea0-bcb7-45ac0f7285e5", - "Body" : "{\r\n \"name\": \"vnet25542e4216\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet25542e4216\",\r\n \"etag\": \"W/\\\"b2684893-60f3-4edc-b7ed-ad98a5f69921\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"01f57d5e-4f5d-41f9-873b-442e0c389e6f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet25542e4216/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b2684893-60f3-4edc-b7ed-ad98a5f69921\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1e408055-2ce9-4ea0-bcb7-45ac0f7285e5?api-version=2019-06-01" + "x-ms-request-id" : "8d984dbc-5c0a-4c64-9594-5cb30710d356", + "Body" : "{\r\n \"name\": \"vnet4719377d09\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4719377d09\",\r\n \"etag\": \"W/\\\"7eabcf75-1d07-4007-835a-7713af94c270\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a5c94f34-a078-4bc5-bbe5-d217557afd93\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4719377d09/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7eabcf75-1d07-4007-835a-7713af94c270\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8d984dbc-5c0a-4c64-9594-5cb30710d356?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1e408055-2ce9-4ea0-bcb7-45ac0f7285e5?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8d984dbc-5c0a-4c64-9594-5cb30710d356?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:08:50 GMT", + "date" : "Mon, 18 May 2020 07:09:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9932", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6056e58e-27b8-4f51-8ce8-3b139cb62961", + "x-ms-correlation-request-id" : "32104f48-4e2f-40d0-bb89-183765b2c5fe", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f4dcb420-ec57-47ee-b77c-1e6f78169850", + "x-ms-arm-service-request-id" : "81f7a8fd-0dd0-45de-88e2-953a489d72b3", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090851Z:6056e58e-27b8-4f51-8ce8-3b139cb62961", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070914Z:32104f48-4e2f-40d0-bb89-183765b2c5fe", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8d666202-4845-4b35-a546-8b0fa0de9f44", + "x-ms-request-id" : "982c23b8-bc47-4be8-9b64-50674d83b5b2", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet25542e4216?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4719377d09?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:09:20 GMT", + "date" : "Mon, 18 May 2020 07:09:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1344", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10337", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e7b4ecc5-cfa5-431b-bfd9-65ea9512d100", + "x-ms-correlation-request-id" : "3b2022b7-62c6-4873-8abf-c98ea52ef828", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ee90d44f-f97b-47b6-9cc4-042ab232c217", + "x-ms-arm-service-request-id" : "35dd27e0-a73d-420b-913d-7cb73f3c65f1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090921Z:e7b4ecc5-cfa5-431b-bfd9-65ea9512d100", - "etag" : "W/\"bd633742-8fa6-46b3-9a64-0193863912a3\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070945Z:3b2022b7-62c6-4873-8abf-c98ea52ef828", + "etag" : "W/\"a5c38dd0-a982-4193-86d3-0fb6425b729f\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6d25ca85-8490-4621-a7e3-2592f7204457", - "Body" : "{\r\n \"name\": \"vnet25542e4216\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet25542e4216\",\r\n \"etag\": \"W/\\\"bd633742-8fa6-46b3-9a64-0193863912a3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01f57d5e-4f5d-41f9-873b-442e0c389e6f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet25542e4216/subnets/subnet1\",\r\n \"etag\": \"W/\\\"bd633742-8fa6-46b3-9a64-0193863912a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "9fa2c6da-cb11-4e0a-9702-2ce0576f6928", + "Body" : "{\r\n \"name\": \"vnet4719377d09\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4719377d09\",\r\n \"etag\": \"W/\\\"a5c38dd0-a982-4193-86d3-0fb6425b729f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5c94f34-a078-4bc5-bbe5-d217557afd93\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4719377d09/subnets/subnet1\",\r\n \"etag\": \"W/\\\"a5c38dd0-a982-4193-86d3-0fb6425b729f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm20d8982379f?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm21d257616a0?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:09:27 GMT", + "date" : "Mon, 18 May 2020 07:09:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1647", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1136", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "00100660-c607-4774-a984-1d5257123b21", + "x-ms-correlation-request-id" : "36031eb0-0656-459a-8ed0-37e992f60f28", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d81c042f-e438-44ec-ad13-498eb8c5435f", + "x-ms-arm-service-request-id" : "bf732ce2-b163-4890-917d-047ab3f3add1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090928Z:00100660-c607-4774-a984-1d5257123b21", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070951Z:36031eb0-0656-459a-8ed0-37e992f60f28", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c2f9cc62-f7dd-4d54-9b11-1d38a39f144c", - "Body" : "{\r\n \"name\": \"nicmyvm20d8982379f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm20d8982379f\",\r\n \"etag\": \"W/\\\"3b6758e3-b5f4-4378-a438-11aca11eafe9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e3f0e142-acb0-4e1a-a10d-0877b4a5fad3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm20d8982379f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3b6758e3-b5f4-4378-a438-11aca11eafe9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet25542e4216/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lz45kak3j52udbz1iqxayoe4nh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c2f9cc62-f7dd-4d54-9b11-1d38a39f144c?api-version=2019-06-01" + "x-ms-request-id" : "2d0c0426-4a6f-436a-978f-2347ed39dd03", + "Body" : "{\r\n \"name\": \"nicmyvm21d257616a0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm21d257616a0\",\r\n \"etag\": \"W/\\\"652aa06e-5c7a-43fb-9d9c-36e8bbd5b7ed\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aaa107b8-d54c-4696-bb14-00a4a7aa9850\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm21d257616a0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"652aa06e-5c7a-43fb-9d9c-36e8bbd5b7ed\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4719377d09/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"grh2tjlyudcuxo5f0ilvk4x3sd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d0c0426-4a6f-436a-978f-2347ed39dd03?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c2f9cc62-f7dd-4d54-9b11-1d38a39f144c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d0c0426-4a6f-436a-978f-2347ed39dd03?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:09:58 GMT", + "date" : "Mon, 18 May 2020 07:10:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10253", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5cba9a77-d0a5-406f-a2b3-4d050e3c90e8", + "x-ms-correlation-request-id" : "76992ad7-62d9-44cd-b131-1ca066ffc2b0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6f5d4b72-6728-42de-963a-b14656de798e", + "x-ms-arm-service-request-id" : "f74c3972-fb95-461b-8b92-dd5234b4d612", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090959Z:5cba9a77-d0a5-406f-a2b3-4d050e3c90e8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071023Z:76992ad7-62d9-44cd-b131-1ca066ffc2b0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "63d1ba6a-8779-4043-81f6-bf3e95ff1c01", + "x-ms-request-id" : "701e91c2-ed58-4c85-bd03-691775e91cf1", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm20d8982379f?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm21d257616a0?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:10:29 GMT", + "date" : "Mon, 18 May 2020 07:10:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1647", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10196", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ebb97a3e-bbff-4091-8399-f94f36a43089", + "x-ms-correlation-request-id" : "d14a67da-53b8-492e-91b8-0cd731bda910", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f9675213-7907-4774-9b9f-f3a16483216b", + "x-ms-arm-service-request-id" : "ebfb588c-f669-410c-bcef-e6470baba64d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091029Z:ebb97a3e-bbff-4091-8399-f94f36a43089", - "etag" : "W/\"3b6758e3-b5f4-4378-a438-11aca11eafe9\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071053Z:d14a67da-53b8-492e-91b8-0cd731bda910", + "etag" : "W/\"652aa06e-5c7a-43fb-9d9c-36e8bbd5b7ed\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a2d4df5c-564c-4942-a7de-cf74c2a076ef", - "Body" : "{\r\n \"name\": \"nicmyvm20d8982379f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm20d8982379f\",\r\n \"etag\": \"W/\\\"3b6758e3-b5f4-4378-a438-11aca11eafe9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e3f0e142-acb0-4e1a-a10d-0877b4a5fad3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm20d8982379f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3b6758e3-b5f4-4378-a438-11aca11eafe9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet25542e4216/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lz45kak3j52udbz1iqxayoe4nh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "dbf3451e-674c-4f52-900e-77105853f9ba", + "Body" : "{\r\n \"name\": \"nicmyvm21d257616a0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm21d257616a0\",\r\n \"etag\": \"W/\\\"652aa06e-5c7a-43fb-9d9c-36e8bbd5b7ed\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aaa107b8-d54c-4696-bb14-00a4a7aa9850\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm21d257616a0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"652aa06e-5c7a-43fb-9d9c-36e8bbd5b7ed\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet4719377d09/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"grh2tjlyudcuxo5f0ilvk4x3sd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm2?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:10:35 GMT", + "date" : "Mon, 18 May 2020 07:11:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2838", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1157", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "abada0fa-eaa7-46c0-b090-5706fb69eed6", + "x-ms-correlation-request-id" : "45a893c1-656a-4891-a8c6-f8afb6c30c35", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1173", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091036Z:abada0fa-eaa7-46c0-b090-5706fb69eed6", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1190", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071101Z:45a893c1-656a-4891-a8c6-f8afb6c30c35", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "97b58c44-78a3-44ee-bb26-923c6a2fba87", - "Body" : "{\r\n \"name\": \"myvm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fbf84c0b-7c27-47e7-ae2d-ef081bca09f8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/images/img-81185\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm2\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm20d8982379f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97b58c44-78a3-44ee-bb26-923c6a2fba87?api-version=2019-03-01" + "x-ms-request-id" : "5d5c8073-341a-4bc5-b998-a290ed18e3c0", + "Body" : "{\r\n \"name\": \"myvm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"db7aa9ad-42ec-4a82-934e-77ef59cd5f4f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/images/img-19571\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm2\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm21d257616a0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5d5c8073-341a-4bc5-b998-a290ed18e3c0?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97b58c44-78a3-44ee-bb26-923c6a2fba87?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5d5c8073-341a-4bc5-b998-a290ed18e3c0?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:11:07 GMT", + "date" : "Mon, 18 May 2020 07:11:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10251", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8e25f101-c2d9-4865-9e03-23ca85b92985", + "x-ms-correlation-request-id" : "a5707bdb-1862-4182-96c6-e346d072a112", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29667", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091107Z:8e25f101-c2d9-4865-9e03-23ca85b92985", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29946", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071132Z:a5707bdb-1862-4182-96c6-e346d072a112", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1a090d97-78dd-4578-aaa1-9ab55c781cd7", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:10:34.7078607+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97b58c44-78a3-44ee-bb26-923c6a2fba87\"\r\n}" + "x-ms-request-id" : "03bd1aa3-c8c0-4bc5-bb90-6b9526dbf055", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:11:00.0475826+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5d5c8073-341a-4bc5-b998-a290ed18e3c0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97b58c44-78a3-44ee-bb26-923c6a2fba87?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5d5c8073-341a-4bc5-b998-a290ed18e3c0?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:11:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10192", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a1d4712c-89c5-43fc-8efe-4b5667f2c8a0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29663", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091138Z:a1d4712c-89c5-43fc-8efe-4b5667f2c8a0", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ccaf95d4-c792-4d05-885c-a31b581b4c33", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:10:34.7078607+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97b58c44-78a3-44ee-bb26-923c6a2fba87\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97b58c44-78a3-44ee-bb26-923c6a2fba87?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:12:08 GMT", + "date" : "Mon, 18 May 2020 07:12:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10859", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "db8bc977-0794-40a0-b3be-a5279106a4f9", + "x-ms-correlation-request-id" : "da44d9d5-a155-4d81-bc08-31c63255573b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29658", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091208Z:db8bc977-0794-40a0-b3be-a5279106a4f9", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29943", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071202Z:da44d9d5-a155-4d81-bc08-31c63255573b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b32637a7-6f1b-47e6-aaec-63103772fac9", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:10:34.7078607+00:00\",\r\n \"endTime\": \"2020-03-05T09:11:45.3175825+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"97b58c44-78a3-44ee-bb26-923c6a2fba87\"\r\n}" + "x-ms-request-id" : "e232cb3d-ecb8-4af9-84b9-157fe685cbe8", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:11:00.0475826+00:00\",\r\n \"endTime\": \"2020-05-18T07:11:55.8604002+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5d5c8073-341a-4bc5-b998-a290ed18e3c0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm2?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:12:38 GMT", + "date" : "Mon, 18 May 2020 07:12:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "4335", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10644", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "936229f1-a72b-4b39-ab92-a6a524f8a099", + "x-ms-correlation-request-id" : "a6d59681-2559-47b5-9113-febf90f1d7b7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31874", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091238Z:936229f1-a72b-4b39-ab92-a6a524f8a099", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31959", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071233Z:a6d59681-2559-47b5-9113-febf90f1d7b7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9239130f-0a7e-40ad-9c04-5f150653b61e", - "Body" : "{\r\n \"name\": \"myvm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fbf84c0b-7c27-47e7-ae2d-ef081bca09f8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/images/img-81185\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm2_disk1_883310f7d0d84bbcb56fcd93b14095e8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm2_disk1_883310f7d0d84bbcb56fcd93b14095e8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm2_disk2_9ef3d2935e2f40d69f3526f264aa6034\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm2_disk2_9ef3d2935e2f40d69f3526f264aa6034\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm2_disk3_9a084b87f2bc4f63a45267b40b7b70f9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm2_disk3_9a084b87f2bc4f63a45267b40b7b70f9\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm2_disk4_964e5de0ca104a438bdc278dd13d78f5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm2_disk4_964e5de0ca104a438bdc278dd13d78f5\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm2_disk5_e130d57762d44405a13b481cd7a33958\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm2_disk5_e130d57762d44405a13b481cd7a33958\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm2_disk6_2d91ba3af8064825a71d77917ea9bf66\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm2_disk6_2d91ba3af8064825a71d77917ea9bf66\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm2\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm20d8982379f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "27ae2ef0-2e57-4845-a423-70166d87c772", + "Body" : "{\r\n \"name\": \"myvm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"db7aa9ad-42ec-4a82-934e-77ef59cd5f4f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/images/img-19571\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm2_disk1_0703260428d84180a422f943f01f7ddf\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm2_disk1_0703260428d84180a422f943f01f7ddf\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm2_disk2_08956f10bde942859ee6f73622e33d6b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm2_disk2_08956f10bde942859ee6f73622e33d6b\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm2_disk3_e342ddc97f4e4dd88d4934b7d4eb6d08\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm2_disk3_e342ddc97f4e4dd88d4934b7d4eb6d08\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm2_disk4_831fe3702db0470eb590969c36e6a968\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm2_disk4_831fe3702db0470eb590969c36e6a968\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm2_disk5_2d5f9a02ef3540e5bdf56f53e61b2ff1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm2_disk5_2d5f9a02ef3540e5bdf56f53e61b2ff1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm2_disk6_583c7bdf6ff64ca39b73b3e7de1aad50\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm2_disk6_583c7bdf6ff64ca39b73b3e7de1aad50\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm2\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm21d257616a0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet1361156c67?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet61221bd4cd?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:12:45 GMT", + "date" : "Mon, 18 May 2020 07:12:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1342", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "620a6b74-8e19-4669-822b-abe495a5f326", + "x-ms-correlation-request-id" : "60ee0535-2ad6-4e66-9e20-702e9a2896ea", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ee5f65cf-0968-4adf-a094-417ff8d4f4e4", + "x-ms-arm-service-request-id" : "93f5a6d3-7970-4dd1-bffb-aefa3dffd9d5", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091246Z:620a6b74-8e19-4669-822b-abe495a5f326", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071241Z:60ee0535-2ad6-4e66-9e20-702e9a2896ea", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "460fbd16-0c7a-4b18-8e72-068a3107454d", - "Body" : "{\r\n \"name\": \"vnet1361156c67\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet1361156c67\",\r\n \"etag\": \"W/\\\"4bc898c2-082f-4ae9-8585-7a4a42a08874\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6ee6a0ad-fb1a-4316-a349-882aecd6fe87\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet1361156c67/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4bc898c2-082f-4ae9-8585-7a4a42a08874\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/460fbd16-0c7a-4b18-8e72-068a3107454d?api-version=2019-06-01" + "x-ms-request-id" : "53c1b396-9716-4a5f-8f4d-af56f7cea84b", + "Body" : "{\r\n \"name\": \"vnet61221bd4cd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet61221bd4cd\",\r\n \"etag\": \"W/\\\"880967a9-9f28-4f52-914f-cd5000769958\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"65a1e43e-f85c-43b4-9877-269521992c59\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet61221bd4cd/subnets/subnet1\",\r\n \"etag\": \"W/\\\"880967a9-9f28-4f52-914f-cd5000769958\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/53c1b396-9716-4a5f-8f4d-af56f7cea84b?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/460fbd16-0c7a-4b18-8e72-068a3107454d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/53c1b396-9716-4a5f-8f4d-af56f7cea84b?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:13:16 GMT", + "date" : "Mon, 18 May 2020 07:13:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10188", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2df10449-05bb-4ac8-b39b-5eee0b25204a", + "x-ms-correlation-request-id" : "e0e69540-b9e7-4aaf-a399-de6767d74a79", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3b6041fa-43a4-4798-9e85-fbde6879d1ee", + "x-ms-arm-service-request-id" : "7d2d1bb9-2bb2-4420-b6a5-791c37acd8f0", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091317Z:2df10449-05bb-4ac8-b39b-5eee0b25204a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071312Z:e0e69540-b9e7-4aaf-a399-de6767d74a79", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a47365a8-0f99-4319-ad4c-48769edcd6ac", + "x-ms-request-id" : "00f81381-8352-4967-84f7-649d4b3e1fc8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet1361156c67?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet61221bd4cd?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:13:46 GMT", + "date" : "Mon, 18 May 2020 07:13:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1344", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10241", + "x-ms-ratelimit-remaining-subscription-reads" : "11951", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e06d5579-7b10-4739-97ba-8331dba4bfa4", + "x-ms-correlation-request-id" : "f939fe9f-7c6d-482b-8ec4-e9c85e992f59", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "9d74fd33-f279-4ded-a1f4-2a6fa21d4dbe", + "x-ms-arm-service-request-id" : "94596d8c-df27-4516-b712-b0682b80fa38", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091347Z:e06d5579-7b10-4739-97ba-8331dba4bfa4", - "etag" : "W/\"5ca4451e-152f-4e78-baa6-329c64f51787\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071343Z:f939fe9f-7c6d-482b-8ec4-e9c85e992f59", + "etag" : "W/\"55e82602-5896-4652-8678-a189ece32cd1\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2ac6912d-0957-444b-aceb-89fe3650a552", - "Body" : "{\r\n \"name\": \"vnet1361156c67\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet1361156c67\",\r\n \"etag\": \"W/\\\"5ca4451e-152f-4e78-baa6-329c64f51787\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6ee6a0ad-fb1a-4316-a349-882aecd6fe87\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet1361156c67/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5ca4451e-152f-4e78-baa6-329c64f51787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "612c9b8f-2f7d-4897-9fe5-5733155d4e75", + "Body" : "{\r\n \"name\": \"vnet61221bd4cd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet61221bd4cd\",\r\n \"etag\": \"W/\\\"55e82602-5896-4652-8678-a189ece32cd1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"65a1e43e-f85c-43b4-9877-269521992c59\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet61221bd4cd/subnets/subnet1\",\r\n \"etag\": \"W/\\\"55e82602-5896-4652-8678-a189ece32cd1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm372a7091473?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm3c747383359?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:13:53 GMT", + "date" : "Mon, 18 May 2020 07:13:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1647", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1134", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b6894faf-ea28-46b7-9374-3efa61891864", + "x-ms-correlation-request-id" : "7ed16f4c-296c-4492-8e47-b69513ad0ef1", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2b27f7f9-72a0-40e3-9743-2c3591a132c8", + "x-ms-arm-service-request-id" : "0333ac41-b3c7-4a38-860c-85beb3b9f584", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091354Z:b6894faf-ea28-46b7-9374-3efa61891864", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071350Z:7ed16f4c-296c-4492-8e47-b69513ad0ef1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "292439fd-a6bd-42f9-9223-ede4d832c219", - "Body" : "{\r\n \"name\": \"nicmyvm372a7091473\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm372a7091473\",\r\n \"etag\": \"W/\\\"5f350e02-3a60-45f9-b955-d2c429008f2f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eed57009-f792-49d3-b799-effdd499a916\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm372a7091473/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5f350e02-3a60-45f9-b955-d2c429008f2f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet1361156c67/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vwqom1q05mlehi0jravozvx4qh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/292439fd-a6bd-42f9-9223-ede4d832c219?api-version=2019-06-01" + "x-ms-request-id" : "f2bfffce-54f0-4bb2-85ef-55671c3ca73d", + "Body" : "{\r\n \"name\": \"nicmyvm3c747383359\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm3c747383359\",\r\n \"etag\": \"W/\\\"ef579b35-11e2-4609-a0a6-55b911c5ee40\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0aa95376-2d69-4ddb-b1e8-0dd3617d6944\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm3c747383359/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ef579b35-11e2-4609-a0a6-55b911c5ee40\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet61221bd4cd/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"h1skczk25c0ehgdxe0ksdgjmlb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f2bfffce-54f0-4bb2-85ef-55671c3ca73d?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/292439fd-a6bd-42f9-9223-ede4d832c219?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f2bfffce-54f0-4bb2-85ef-55671c3ca73d?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:14:25 GMT", + "date" : "Mon, 18 May 2020 07:14:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10377", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dc6aadb9-80b1-408b-951b-750915f75a0c", + "x-ms-correlation-request-id" : "ace35c9a-693a-4448-bdde-4e30ef40e8ef", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4d015dc9-085b-4bac-85cd-db7c73584f23", + "x-ms-arm-service-request-id" : "147ec06b-1885-47e8-b874-858c1d56d3f8", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091425Z:dc6aadb9-80b1-408b-951b-750915f75a0c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071421Z:ace35c9a-693a-4448-bdde-4e30ef40e8ef", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d6d56454-4555-4834-a5ed-5cb83a3c77d7", + "x-ms-request-id" : "ff4b473e-efd2-4969-b00c-46f2ae607f3b", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm372a7091473?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm3c747383359?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:14:55 GMT", + "date" : "Mon, 18 May 2020 07:14:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1647", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9911", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3ae30b53-3b03-43eb-b40f-3918ef650cac", + "x-ms-correlation-request-id" : "a0460de0-482b-4a6f-aa2a-7d9840374d2c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d9c970ab-8a62-43b5-b1c8-89ab4faedcd4", + "x-ms-arm-service-request-id" : "1329bc50-1ad1-472e-b042-ba74e62cdfa4", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091456Z:3ae30b53-3b03-43eb-b40f-3918ef650cac", - "etag" : "W/\"5f350e02-3a60-45f9-b955-d2c429008f2f\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071453Z:a0460de0-482b-4a6f-aa2a-7d9840374d2c", + "etag" : "W/\"ef579b35-11e2-4609-a0a6-55b911c5ee40\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e18c5f81-ec62-4db5-ac4f-884d23c58291", - "Body" : "{\r\n \"name\": \"nicmyvm372a7091473\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm372a7091473\",\r\n \"etag\": \"W/\\\"5f350e02-3a60-45f9-b955-d2c429008f2f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eed57009-f792-49d3-b799-effdd499a916\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm372a7091473/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5f350e02-3a60-45f9-b955-d2c429008f2f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/virtualNetworks/vnet1361156c67/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vwqom1q05mlehi0jravozvx4qh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "5255c0c3-3a30-4c70-b438-0876fc8738c8", + "Body" : "{\r\n \"name\": \"nicmyvm3c747383359\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm3c747383359\",\r\n \"etag\": \"W/\\\"ef579b35-11e2-4609-a0a6-55b911c5ee40\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0aa95376-2d69-4ddb-b1e8-0dd3617d6944\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm3c747383359/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ef579b35-11e2-4609-a0a6-55b911c5ee40\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/virtualNetworks/vnet61221bd4cd/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"h1skczk25c0ehgdxe0ksdgjmlb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm3?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm3?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:15:02 GMT", + "date" : "Mon, 18 May 2020 07:14:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3114", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1143", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "864ee076-7290-4ec2-98f8-ad3247b88f25", + "x-ms-correlation-request-id" : "6049e8b3-b056-4a85-84e2-2ae6a19a6123", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1172", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091502Z:864ee076-7290-4ec2-98f8-ad3247b88f25", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1189", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071500Z:6049e8b3-b056-4a85-84e2-2ae6a19a6123", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "33e13db5-8e67-48d9-a62e-4fa60251a568", - "Body" : "{\r\n \"name\": \"myvm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"274592ec-c8b8-4ba7-b797-481d4143d626\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/images/img-81185\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 5,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm3\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm372a7091473\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/33e13db5-8e67-48d9-a62e-4fa60251a568?api-version=2019-03-01" + "x-ms-request-id" : "9072d4a8-112c-4371-a293-8432c262a1f5", + "Body" : "{\r\n \"name\": \"myvm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"993966a0-d5f4-40bb-8af2-d26be03daf2a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/images/img-19571\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 5,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm3\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm3c747383359\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9072d4a8-112c-4371-a293-8432c262a1f5?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/33e13db5-8e67-48d9-a62e-4fa60251a568?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9072d4a8-112c-4371-a293-8432c262a1f5?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:15:31 GMT", + "date" : "Mon, 18 May 2020 07:15:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10041", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1bce44ff-063c-49cb-92af-142eac89f61c", + "x-ms-correlation-request-id" : "28d9a4b8-9cbf-49da-9455-b43caabe8f21", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29692", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091532Z:1bce44ff-063c-49cb-92af-142eac89f61c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29940", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071531Z:28d9a4b8-9cbf-49da-9455-b43caabe8f21", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fd6aca8a-210f-47d0-a1dd-8de7088e6739", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:15:01.0373501+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"33e13db5-8e67-48d9-a62e-4fa60251a568\"\r\n}" + "x-ms-request-id" : "4569c1e3-2a76-4ba1-9a9e-8bf068ffc5bb", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:14:58.4235901+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9072d4a8-112c-4371-a293-8432c262a1f5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/33e13db5-8e67-48d9-a62e-4fa60251a568?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9072d4a8-112c-4371-a293-8432c262a1f5?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:16:03 GMT", + "date" : "Mon, 18 May 2020 07:16:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10181", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "184fc638-361d-4299-a6a1-f592b25b63bd", + "x-ms-correlation-request-id" : "91a9f71e-d036-4375-b251-86cf1c389efc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29690", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091603Z:184fc638-361d-4299-a6a1-f592b25b63bd", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29939", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071601Z:91a9f71e-d036-4375-b251-86cf1c389efc", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b5a250b2-95c5-4d10-ad69-abcd7395ee2c", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:15:01.0373501+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"33e13db5-8e67-48d9-a62e-4fa60251a568\"\r\n}" + "x-ms-request-id" : "80bb73f2-5303-410f-a438-ef0ffcc35d15", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:14:58.4235901+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9072d4a8-112c-4371-a293-8432c262a1f5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/33e13db5-8e67-48d9-a62e-4fa60251a568?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9072d4a8-112c-4371-a293-8432c262a1f5?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:16:33 GMT", + "date" : "Mon, 18 May 2020 07:16:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10036", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "43ab3b42-a1d3-4b70-b57a-f6a9d63ebd18", + "x-ms-correlation-request-id" : "14f1715c-0383-4681-a0af-b80a4a0d283a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29688", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091633Z:43ab3b42-a1d3-4b70-b57a-f6a9d63ebd18", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29938", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071632Z:14f1715c-0383-4681-a0af-b80a4a0d283a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b3cef419-46f5-4609-93e4-8c86cd93b2c4", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:15:01.0373501+00:00\",\r\n \"endTime\": \"2020-03-05T09:16:25.7233406+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"33e13db5-8e67-48d9-a62e-4fa60251a568\"\r\n}" + "x-ms-request-id" : "5371782e-a686-424f-95fb-367c25ee9112", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:14:58.4235901+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9072d4a8-112c-4371-a293-8432c262a1f5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm3?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9072d4a8-112c-4371-a293-8432c262a1f5?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:17:02 GMT", + "date" : "Mon, 18 May 2020 07:17:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "4861", + "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9905", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0f4c5584-02ac-41d5-b2d6-813fcd67150b", + "x-ms-correlation-request-id" : "5de2dd76-4e3e-41d5-aa96-fd2cbebae429", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31870", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091703Z:0f4c5584-02ac-41d5-b2d6-813fcd67150b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29936", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071703Z:5de2dd76-4e3e-41d5-aa96-fd2cbebae429", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9ed46fac-35c9-41a1-9a9f-965d29ea1876", - "Body" : "{\r\n \"name\": \"myvm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/virtualMachines/myvm3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"274592ec-c8b8-4ba7-b797-481d4143d626\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Compute/images/img-81185\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm3_disk1_dcec2b5105144b5c81d4b20ace9d008f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm3_disk1_dcec2b5105144b5c81d4b20ace9d008f\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 5,\r\n \"name\": \"myvm3_disk2_d339fc97eb9b4745a5f4b2da038a63b1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm3_disk2_d339fc97eb9b4745a5f4b2da038a63b1\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm3_disk3_ab9f9c513181469d9f317fdf17af6134\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm3_disk3_ab9f9c513181469d9f317fdf17af6134\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm3_disk4_28f7452847fc4ddf833a587702d2479a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm3_disk4_28f7452847fc4ddf833a587702d2479a\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm3_disk5_723b498d51d94ada98f2351ee5e0f6e6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm3_disk5_723b498d51d94ada98f2351ee5e0f6e6\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm3_disk6_fd2e91407aef47d9abe1a57fd753c652\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm3_disk6_fd2e91407aef47d9abe1a57fd753c652\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm3_disk7_380c40ea4ebf4823a9623de81c8bc877\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG48001/providers/Microsoft.Compute/disks/myvm3_disk7_380c40ea4ebf4823a9623de81c8bc877\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm3\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg48001/providers/Microsoft.Network/networkInterfaces/nicmyvm372a7091473\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg48001?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:17:10 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14987", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "37a87223-6291-4286-9a40-2b4ad04a78ea", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091710Z:37a87223-6291-4286-9a40-2b4ad04a78ea", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "37a87223-6291-4286-9a40-2b4ad04a78ea", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:17:41 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10235", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3028d666-af4a-46e0-9b0d-e90151fcce74", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091741Z:3028d666-af4a-46e0-9b0d-e90151fcce74", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "3028d666-af4a-46e0-9b0d-e90151fcce74", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:18:11 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10377", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b727c9aa-cf5c-47ff-89f6-1e0aab4c142b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091812Z:b727c9aa-cf5c-47ff-89f6-1e0aab4c142b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "b727c9aa-cf5c-47ff-89f6-1e0aab4c142b", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:18:42 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10374", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f724311c-9d8c-4ab4-961a-5d1485c2ff97", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091843Z:f724311c-9d8c-4ab4-961a-5d1485c2ff97", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "f724311c-9d8c-4ab4-961a-5d1485c2ff97", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:19:14 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9899", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8f23c149-6cb0-47a3-820d-97336a757062", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091914Z:8f23c149-6cb0-47a3-820d-97336a757062", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "8f23c149-6cb0-47a3-820d-97336a757062", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:19:44 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10233", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "48f7dca8-7048-4deb-a85e-af29b44816a4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091945Z:48f7dca8-7048-4deb-a85e-af29b44816a4", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "48f7dca8-7048-4deb-a85e-af29b44816a4", - "Body" : "" + "x-ms-request-id" : "59b5f099-c7df-4733-8c22-10158e919d35", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:14:58.4235901+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9072d4a8-112c-4371-a293-8432c262a1f5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9072d4a8-112c-4371-a293-8432c262a1f5?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:20:15 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10373", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2cadcfbc-5efe-432e-9fcc-dd38fdc0be9b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092016Z:2cadcfbc-5efe-432e-9fcc-dd38fdc0be9b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "2cadcfbc-5efe-432e-9fcc-dd38fdc0be9b", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:20:47 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9896", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4737d809-4254-42db-a87e-26457062a0b3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092047Z:4737d809-4254-42db-a87e-26457062a0b3", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4737d809-4254-42db-a87e-26457062a0b3", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:21:18 GMT", - "content-length" : "0", + "date" : "Mon, 18 May 2020 07:17:33 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9894", - "StatusCode" : "202", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6a433c03-083f-4835-ba71-cbfbdfa20d64", + "x-ms-correlation-request-id" : "c67bede2-af85-4a00-84f7-acc092614bac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092118Z:6a433c03-083f-4835-ba71-cbfbdfa20d64", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29934", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071733Z:c67bede2-af85-4a00-84f7-acc092614bac", + "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6a433c03-083f-4835-ba71-cbfbdfa20d64", - "Body" : "" + "x-ms-request-id" : "000c5315-cfd1-47c0-b190-857608a9bead", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:14:58.4235901+00:00\",\r\n \"endTime\": \"2020-05-18T07:17:08.6426291+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9072d4a8-112c-4371-a293-8432c262a1f5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm3?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:21:48 GMT", - "content-length" : "0", + "date" : "Mon, 18 May 2020 07:18:03 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "4861", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9893", - "StatusCode" : "202", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3602431d-e0cc-4046-a9b4-1edc43b97ded", + "x-ms-correlation-request-id" : "e1aba37b-e00a-4316-b382-663b935ae553", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092149Z:3602431d-e0cc-4046-a9b4-1edc43b97ded", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31941", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071804Z:e1aba37b-e00a-4316-b382-663b935ae553", + "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3602431d-e0cc-4046-a9b4-1edc43b97ded", - "Body" : "" + "x-ms-request-id" : "ad5039c6-8507-4c7b-a81e-8e2ed49200c6", + "Body" : "{\r\n \"name\": \"myvm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/virtualMachines/myvm3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"993966a0-d5f4-40bb-8af2-d26be03daf2a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Compute/images/img-19571\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm3_disk1_51a46b234c9a420ead74d142c3ed34d6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm3_disk1_51a46b234c9a420ead74d142c3ed34d6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 5,\r\n \"name\": \"myvm3_disk2_45c9db30d8db4071ac0f3e15f2141120\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm3_disk2_45c9db30d8db4071ac0f3e15f2141120\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm3_disk3_c262dc772da84571a63c9818cd65ab6c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm3_disk3_c262dc772da84571a63c9818cd65ab6c\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm3_disk4_70b2f22fec314b439104686261f6f34d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm3_disk4_70b2f22fec314b439104686261f6f34d\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm3_disk5_8daf4c3faaf548f6a97ed76b2f5e2539\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm3_disk5_8daf4c3faaf548f6a97ed76b2f5e2539\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm3_disk6_9157a9d7ad014ca59ae83673bae28c1f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm3_disk6_9157a9d7ad014ca59ae83673bae28c1f\"\r\n },\r\n \"diskSizeGB\": 160,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm3_disk7_8d9d267d7c1c48ccb329443fbcdf6dc1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG23378/providers/Microsoft.Compute/disks/myvm3_disk7_8d9d267d7c1c48ccb329443fbcdf6dc1\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm3\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23378/providers/Microsoft.Network/networkInterfaces/nicmyvm3c747383359\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg23378?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:22:20 GMT", + "date" : "Mon, 18 May 2020 07:18:08 GMT", "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14995", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10368", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3d80ab45-b500-412f-8b50-c79a79b3541e", + "x-ms-correlation-request-id" : "7c2840a7-1040-4eb4-8067-e4f0e1bd28f1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092220Z:3d80ab45-b500-412f-8b50-c79a79b3541e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071809Z:7c2840a7-1040-4eb4-8067-e4f0e1bd28f1", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "3d80ab45-b500-412f-8b50-c79a79b3541e", + "x-ms-request-id" : "7c2840a7-1040-4eb4-8067-e4f0e1bd28f1", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:22:50 GMT", + "date" : "Mon, 18 May 2020 07:18:40 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10170", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "31a8911f-dd5d-4db2-9900-1d0400cde541", + "x-ms-correlation-request-id" : "9257b5a9-57f0-4e5a-b0d2-aa2bf6e72aa7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092251Z:31a8911f-dd5d-4db2-9900-1d0400cde541", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071840Z:9257b5a9-57f0-4e5a-b0d2-aa2bf6e72aa7", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "31a8911f-dd5d-4db2-9900-1d0400cde541", + "x-ms-request-id" : "9257b5a9-57f0-4e5a-b0d2-aa2bf6e72aa7", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:23:21 GMT", + "date" : "Mon, 18 May 2020 07:19:10 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10169", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f8115b2a-f916-43b4-ae1c-485595faf4ed", + "x-ms-correlation-request-id" : "2b4ff970-23ee-463f-abe2-7894d3c091c2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092322Z:f8115b2a-f916-43b4-ae1c-485595faf4ed", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071911Z:2b4ff970-23ee-463f-abe2-7894d3c091c2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f8115b2a-f916-43b4-ae1c-485595faf4ed", + "x-ms-request-id" : "2b4ff970-23ee-463f-abe2-7894d3c091c2", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:23:52 GMT", + "date" : "Mon, 18 May 2020 07:19:41 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10632", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9c70426f-d9cf-4fba-838e-3bac150bfce3", + "x-ms-correlation-request-id" : "33b2398b-d930-466c-be96-357c59f6ef45", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092353Z:9c70426f-d9cf-4fba-838e-3bac150bfce3", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071942Z:33b2398b-d930-466c-be96-357c59f6ef45", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "9c70426f-d9cf-4fba-838e-3bac150bfce3", + "x-ms-request-id" : "33b2398b-d930-466c-be96-357c59f6ef45", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:24:23 GMT", + "date" : "Mon, 18 May 2020 07:20:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9573", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "11b4ab09-a0a6-4412-86f1-ede65501fab8", + "x-ms-correlation-request-id" : "55438a15-7001-4061-9fb5-27624a182704", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092424Z:11b4ab09-a0a6-4412-86f1-ede65501fab8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072013Z:55438a15-7001-4061-9fb5-27624a182704", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "11b4ab09-a0a6-4412-86f1-ede65501fab8", + "x-ms-request-id" : "55438a15-7001-4061-9fb5-27624a182704", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:24:55 GMT", + "date" : "Mon, 18 May 2020 07:20:44 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10167", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f9ea757e-8c1d-4eca-a153-06b6a26a6372", + "x-ms-correlation-request-id" : "d4fc9aa1-91cd-41b0-99bb-984004e803b4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092455Z:f9ea757e-8c1d-4eca-a153-06b6a26a6372", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072044Z:d4fc9aa1-91cd-41b0-99bb-984004e803b4", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f9ea757e-8c1d-4eca-a153-06b6a26a6372", + "x-ms-request-id" : "d4fc9aa1-91cd-41b0-99bb-984004e803b4", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:25:25 GMT", + "date" : "Mon, 18 May 2020 07:21:15 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10166", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "33bafd3a-e396-4ac4-8448-40dcffbe5002", + "x-ms-correlation-request-id" : "f6cb4ac2-c614-4694-aa8e-008535a763cb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092526Z:33bafd3a-e396-4ac4-8448-40dcffbe5002", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072116Z:f6cb4ac2-c614-4694-aa8e-008535a763cb", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "33bafd3a-e396-4ac4-8448-40dcffbe5002", + "x-ms-request-id" : "f6cb4ac2-c614-4694-aa8e-008535a763cb", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:25:56 GMT", + "date" : "Mon, 18 May 2020 07:21:47 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10631", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "33c54026-3101-4677-998d-fde7d4623381", + "x-ms-correlation-request-id" : "5a15ab23-f49f-401d-9341-5714f9d8fd14", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092557Z:33c54026-3101-4677-998d-fde7d4623381", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072147Z:5a15ab23-f49f-401d-9341-5714f9d8fd14", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "33c54026-3101-4677-998d-fde7d4623381", + "x-ms-request-id" : "5a15ab23-f49f-401d-9341-5714f9d8fd14", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:26:27 GMT", + "date" : "Mon, 18 May 2020 07:22:18 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10361", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7a55a49a-bf6c-4551-aec8-dc39eee893ca", + "x-ms-correlation-request-id" : "5e07e00b-5ecc-4111-b67e-f4a31f75a32c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092628Z:7a55a49a-bf6c-4551-aec8-dc39eee893ca", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072218Z:5e07e00b-5ecc-4111-b67e-f4a31f75a32c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "7a55a49a-bf6c-4551-aec8-dc39eee893ca", + "x-ms-request-id" : "5e07e00b-5ecc-4111-b67e-f4a31f75a32c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:26:59 GMT", + "date" : "Mon, 18 May 2020 07:22:49 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10165", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bc74b602-bc1b-4c82-8096-dae2e283e63f", + "x-ms-correlation-request-id" : "14428790-0072-424e-ae26-3bf04463904c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092659Z:bc74b602-bc1b-4c82-8096-dae2e283e63f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072250Z:14428790-0072-424e-ae26-3bf04463904c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "bc74b602-bc1b-4c82-8096-dae2e283e63f", + "x-ms-request-id" : "14428790-0072-424e-ae26-3bf04463904c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:27:30 GMT", + "date" : "Mon, 18 May 2020 07:23:20 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10020", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dc079fa3-cfd3-4428-ad07-36142946b268", + "x-ms-correlation-request-id" : "d690e973-5da6-400d-a34d-3979d52c24a9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092730Z:dc079fa3-cfd3-4428-ad07-36142946b268", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072321Z:d690e973-5da6-400d-a34d-3979d52c24a9", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "dc079fa3-cfd3-4428-ad07-36142946b268", + "x-ms-request-id" : "d690e973-5da6-400d-a34d-3979d52c24a9", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0ODAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMzM3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:28:01 GMT", + "date" : "Mon, 18 May 2020 07:23:51 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5ad29886-5119-46ff-b95b-3591c9f6f184", + "x-ms-correlation-request-id" : "348a2b7b-9fc7-439d-8673-d97e3d7cb80a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T092802Z:5ad29886-5119-46ff-b95b-3591c9f6f184", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T072352Z:348a2b7b-9fc7-439d-8673-d97e3d7cb80a", "cache-control" : "no-cache", - "x-ms-request-id" : "5ad29886-5119-46ff-b95b-3591c9f6f184", + "x-ms-request-id" : "348a2b7b-9fc7-439d-8673-d97e3d7cb80a", "Body" : "" } } ], - "variables" : [ "javacsmrg48001", "pipf5668669157e", "myvm1_mdisk_1c08338060", "myvm1_mdisk_7a18184032", "myvm1_mdisk_ad2543405b", "nicmyvm12d7300188f", "vnet366690d8b7", "pip57640919", "img-81185", "nicmyvm20d8982379f", "vnet25542e4216", "nicmyvm372a7091473", "vnet1361156c67" ] + "variables" : [ "javacsmrg23378", "pipdab45808e425", "myvm1_mdisk_bc64208401", "myvm1_mdisk_16c8129029", "myvm1_mdisk_74255501db", "nicmyvm196a92103e5", "vnet4526426fc5", "pip813367ca", "img-19571", "nicmyvm21d257616a0", "vnet4719377d09", "nicmyvm3c747383359", "vnet61221bd4cd" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineFromPIRImageWithManagedOsDisk.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineFromPIRImageWithManagedOsDisk.json index e042733d71b8..7bd06d7a0923 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineFromPIRImageWithManagedOsDisk.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineFromPIRImageWithManagedOsDisk.json @@ -1,786 +1,815 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg38881?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg15658?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:13 GMT", + "date" : "Mon, 18 May 2020 06:59:59 GMT", "content-length" : "309", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1164", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "65dd4327-a801-422e-bac1-00be7cb496d3", + "x-ms-correlation-request-id" : "92b8ebd3-66ff-4b2d-9722-29db42edca40", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085313Z:65dd4327-a801-422e-bac1-00be7cb496d3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065959Z:92b8ebd3-66ff-4b2d-9722-29db42edca40", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "65dd4327-a801-422e-bac1-00be7cb496d3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881\",\"name\":\"javacsmrg38881\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-03-05T08:53:11.604Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "92b8ebd3-66ff-4b2d-9722-29db42edca40", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658\",\"name\":\"javacsmrg15658\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-05-18T06:59:57.392Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/virtualNetworks/vnet565433a470?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/publicIPAddresses/pip11729463?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:20 GMT", + "date" : "Mon, 18 May 2020 07:00:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1342", + "azure-asyncnotification" : "Enabled", + "content-length" : "758", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1153", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "62a45062-4e92-4aba-acf4-cf1d08faea9f", + "x-ms-correlation-request-id" : "de07040b-ad5c-48ce-8633-89289eee44be", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "340cd8ba-aeaf-4d5e-9b3c-d8de0a515c84", + "x-ms-arm-service-request-id" : "24906b1c-872e-4d0e-8ca1-5d5bb6a1dbad", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085321Z:62a45062-4e92-4aba-acf4-cf1d08faea9f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070006Z:de07040b-ad5c-48ce-8633-89289eee44be", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3c8f8888-9ac9-4e82-943e-d19d27d3f981", - "Body" : "{\r\n \"name\": \"vnet565433a470\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/virtualNetworks/vnet565433a470\",\r\n \"etag\": \"W/\\\"ebe45043-f59f-4af9-aa6c-31cd62e5d419\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"15111a02-3423-455b-9bec-5b4467204432\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/virtualNetworks/vnet565433a470/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ebe45043-f59f-4af9-aa6c-31cd62e5d419\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3c8f8888-9ac9-4e82-943e-d19d27d3f981?api-version=2019-06-01" + "x-ms-request-id" : "cfefefad-f09b-4921-b856-e6e0bcac0833", + "Body" : "{\r\n \"name\": \"pip11729463\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/publicIPAddresses/pip11729463\",\r\n \"etag\": \"W/\\\"e1458204-fdd8-4f68-892c-f6a6663a633b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"96bca6dc-460b-4f20-936a-4fa32dd733f8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip42a40364ec20\",\r\n \"fqdn\": \"pip42a40364ec20.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cfefefad-f09b-4921-b856-e6e0bcac0833?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/publicIPAddresses/pip84944c7b?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/virtualNetworks/vnet95173428f0?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:20 GMT", + "date" : "Mon, 18 May 2020 07:00:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "758", + "azure-asyncnotification" : "Enabled", + "content-length" : "1342", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "54237b94-4529-4c2b-8d00-3d24aa3fcfbd", + "x-ms-correlation-request-id" : "135ef024-bfe5-4bb5-9d33-58624abf1041", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7353b951-ab57-4738-abe1-f2f4d36ee5dc", + "x-ms-arm-service-request-id" : "4468f7e3-9472-4279-ae83-ba68d5a47e76", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085321Z:54237b94-4529-4c2b-8d00-3d24aa3fcfbd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070006Z:135ef024-bfe5-4bb5-9d33-58624abf1041", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "14297ed7-b054-4e53-b591-e292cdeb11f5", - "Body" : "{\r\n \"name\": \"pip84944c7b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/publicIPAddresses/pip84944c7b\",\r\n \"etag\": \"W/\\\"f9fcac4b-42a7-45e8-817d-dfd72cdab7e3\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ac21e035-6ceb-4c6f-8a92-837db362e379\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip2b3554894172\",\r\n \"fqdn\": \"pip2b3554894172.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/14297ed7-b054-4e53-b591-e292cdeb11f5?api-version=2019-06-01" + "x-ms-request-id" : "2350e0a0-d6f6-4772-a626-6a54d4bd967d", + "Body" : "{\r\n \"name\": \"vnet95173428f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/virtualNetworks/vnet95173428f0\",\r\n \"etag\": \"W/\\\"2d30c72d-4ae7-429c-b099-7c6cdaccba2e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ba3a19a0-1517-4a3c-8dbb-2d25fe5c71a8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/virtualNetworks/vnet95173428f0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2d30c72d-4ae7-429c-b099-7c6cdaccba2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2350e0a0-d6f6-4772-a626-6a54d4bd967d?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/14297ed7-b054-4e53-b591-e292cdeb11f5?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cfefefad-f09b-4921-b856-e6e0bcac0833?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:51 GMT", + "date" : "Mon, 18 May 2020 07:00:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10483", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6883d787-8d37-4f10-ab9b-4556ca518cd7", + "x-ms-correlation-request-id" : "502493cd-a221-4126-9908-66af2257e2f3", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "49ed547a-d5f0-46b8-b02c-ff27a614bfcc", + "x-ms-arm-service-request-id" : "84922df2-2501-4ad6-93fd-35e9c4668202", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085352Z:6883d787-8d37-4f10-ab9b-4556ca518cd7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070037Z:502493cd-a221-4126-9908-66af2257e2f3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "344cb607-db60-4d74-92aa-112ad0a9804d", + "x-ms-request-id" : "b79b81ad-25ef-41f5-b379-47f77cbd7cc1", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3c8f8888-9ac9-4e82-943e-d19d27d3f981?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2350e0a0-d6f6-4772-a626-6a54d4bd967d?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:51 GMT", + "date" : "Mon, 18 May 2020 07:00:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10483", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9a47375d-bb41-41bf-a293-d3eced5b76e5", + "x-ms-correlation-request-id" : "ba9933ce-e19e-4445-b10b-e17e77984c49", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1990d581-c1a3-4c93-bf58-4e4b9c1e28bf", + "x-ms-arm-service-request-id" : "bf85e4bc-3c3a-470a-bfa0-bb7a8090e87d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085352Z:9a47375d-bb41-41bf-a293-d3eced5b76e5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070038Z:ba9933ce-e19e-4445-b10b-e17e77984c49", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a18540cc-1355-49f0-a452-b5c5dbe0b2e4", + "x-ms-request-id" : "0d5c2a23-e7b0-4d90-8200-71925e926853", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/virtualNetworks/vnet565433a470?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/virtualNetworks/vnet95173428f0?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:22 GMT", + "date" : "Mon, 18 May 2020 07:01:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1344", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9656", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cdf64222-7c8b-48d4-995b-76567cefeb13", + "x-ms-correlation-request-id" : "da9d9228-d038-4ebe-a1f3-282ea3479584", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "09c5ed71-7a91-48f9-94ef-d70429c055f2", + "x-ms-arm-service-request-id" : "569e196a-aebc-4733-b4f3-be84bff6c81d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085422Z:cdf64222-7c8b-48d4-995b-76567cefeb13", - "etag" : "W/\"26a47e96-7235-46ab-bb42-255634a497c6\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070108Z:da9d9228-d038-4ebe-a1f3-282ea3479584", + "etag" : "W/\"b6492b38-f6ff-4d6c-925a-46fa7f5e474e\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "13fcca48-86f3-4359-8cc9-804bb98b2fab", - "Body" : "{\r\n \"name\": \"vnet565433a470\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/virtualNetworks/vnet565433a470\",\r\n \"etag\": \"W/\\\"26a47e96-7235-46ab-bb42-255634a497c6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"15111a02-3423-455b-9bec-5b4467204432\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/virtualNetworks/vnet565433a470/subnets/subnet1\",\r\n \"etag\": \"W/\\\"26a47e96-7235-46ab-bb42-255634a497c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "648888da-6ea8-4f9f-bf1f-128c5078c493", + "Body" : "{\r\n \"name\": \"vnet95173428f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/virtualNetworks/vnet95173428f0\",\r\n \"etag\": \"W/\\\"b6492b38-f6ff-4d6c-925a-46fa7f5e474e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba3a19a0-1517-4a3c-8dbb-2d25fe5c71a8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/virtualNetworks/vnet95173428f0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b6492b38-f6ff-4d6c-925a-46fa7f5e474e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/publicIPAddresses/pip84944c7b?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/publicIPAddresses/pip11729463?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:22 GMT", + "date" : "Mon, 18 May 2020 07:01:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "759", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10315", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7e048576-f528-410a-95af-4e50a1275c80", + "x-ms-correlation-request-id" : "ab77dee0-1de8-40a0-aa4e-051201e8782f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e6875180-02f0-4349-b58a-9b29aea8e030", + "x-ms-arm-service-request-id" : "bbf805c4-cf88-4845-ba08-f6b598ca87fb", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085422Z:7e048576-f528-410a-95af-4e50a1275c80", - "etag" : "W/\"0ac1fc12-77fc-4682-bfb7-2effbad4f0d6\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070109Z:ab77dee0-1de8-40a0-aa4e-051201e8782f", + "etag" : "W/\"2ca9a7d6-b7ad-49bb-a1a2-010a9e5d6476\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "195ecbb9-9af4-4e07-9efc-687d7aed4500", - "Body" : "{\r\n \"name\": \"pip84944c7b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/publicIPAddresses/pip84944c7b\",\r\n \"etag\": \"W/\\\"0ac1fc12-77fc-4682-bfb7-2effbad4f0d6\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ac21e035-6ceb-4c6f-8a92-837db362e379\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip2b3554894172\",\r\n \"fqdn\": \"pip2b3554894172.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "e4a2742c-74d7-4953-90c6-b5d2a46696a8", + "Body" : "{\r\n \"name\": \"pip11729463\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/publicIPAddresses/pip11729463\",\r\n \"etag\": \"W/\\\"2ca9a7d6-b7ad-49bb-a1a2-010a9e5d6476\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"96bca6dc-460b-4f20-936a-4fa32dd733f8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip42a40364ec20\",\r\n \"fqdn\": \"pip42a40364ec20.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:28 GMT", + "date" : "Mon, 18 May 2020 07:01:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1854", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "03d0b0db-4734-4c58-b900-ec46441d6e18", + "x-ms-correlation-request-id" : "5e26ca8d-d2dc-4bb1-9e2e-5ed73413defb", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "767b9a37-4fd7-43e7-b642-357440404c1b", + "x-ms-arm-service-request-id" : "2245729b-9770-469b-ab96-40a03f640b70", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085429Z:03d0b0db-4734-4c58-b900-ec46441d6e18", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070116Z:5e26ca8d-d2dc-4bb1-9e2e-5ed73413defb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e98db085-a8dd-4cfe-9820-561f8917e514", - "Body" : "{\r\n \"name\": \"nicmyvm1538887651c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c\",\r\n \"etag\": \"W/\\\"316da949-1735-4a48-b868-b8de6c7adfb0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ea91fc0-b6cf-43c7-8e88-cfad7be08555\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"316da949-1735-4a48-b868-b8de6c7adfb0\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/publicIPAddresses/pip84944c7b\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/virtualNetworks/vnet565433a470/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ainbcfjdgrnulg5mlncgoicegc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e98db085-a8dd-4cfe-9820-561f8917e514?api-version=2019-06-01" + "x-ms-request-id" : "1cd4367e-b270-48e1-b1e9-76ec4d9fc773", + "Body" : "{\r\n \"name\": \"nicmyvm1d9554708ff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff\",\r\n \"etag\": \"W/\\\"ba58cbc4-2ec2-4cec-ae7c-521e4220c1e8\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4338c45b-74ce-4998-9d83-936404f0a3a7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ba58cbc4-2ec2-4cec-ae7c-521e4220c1e8\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/publicIPAddresses/pip11729463\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/virtualNetworks/vnet95173428f0/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uamtvoqxcu4evdn1fus52xdrva.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1cd4367e-b270-48e1-b1e9-76ec4d9fc773?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e98db085-a8dd-4cfe-9820-561f8917e514?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1cd4367e-b270-48e1-b1e9-76ec4d9fc773?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:59 GMT", + "date" : "Mon, 18 May 2020 07:01:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10009", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "539101c8-fee2-4530-a9d1-20403f96658c", + "x-ms-correlation-request-id" : "c34b0d80-87d4-402c-bcc3-17db647548bb", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2579a7c8-86d2-49e8-a787-b6a0f7356b77", + "x-ms-arm-service-request-id" : "9b93cb44-b088-434c-8512-ac5d692b8691", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085500Z:539101c8-fee2-4530-a9d1-20403f96658c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070147Z:c34b0d80-87d4-402c-bcc3-17db647548bb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f2d12297-0316-40c0-a121-0939623c6269", + "x-ms-request-id" : "fefce041-aaba-4bf2-bed1-8745bad1887b", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:55:29 GMT", + "date" : "Mon, 18 May 2020 07:02:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1854", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9840", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4c58b093-573e-4a34-95b3-f37cb44212d1", + "x-ms-correlation-request-id" : "45d31317-1e2b-424e-83ca-5d76bca02ae0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b47e5293-74c2-4829-a178-d6dac6d9d8cd", + "x-ms-arm-service-request-id" : "06ac27e8-90f0-44ea-a21f-ce3130476ca9", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085530Z:4c58b093-573e-4a34-95b3-f37cb44212d1", - "etag" : "W/\"316da949-1735-4a48-b868-b8de6c7adfb0\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070218Z:45d31317-1e2b-424e-83ca-5d76bca02ae0", + "etag" : "W/\"ba58cbc4-2ec2-4cec-ae7c-521e4220c1e8\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "117b51e9-c4e5-4801-8618-0391bdbddeef", - "Body" : "{\r\n \"name\": \"nicmyvm1538887651c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c\",\r\n \"etag\": \"W/\\\"316da949-1735-4a48-b868-b8de6c7adfb0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ea91fc0-b6cf-43c7-8e88-cfad7be08555\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"316da949-1735-4a48-b868-b8de6c7adfb0\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/publicIPAddresses/pip84944c7b\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/virtualNetworks/vnet565433a470/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ainbcfjdgrnulg5mlncgoicegc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "9702ff1b-b6f6-4a5a-bcb2-e5333962eadf", + "Body" : "{\r\n \"name\": \"nicmyvm1d9554708ff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff\",\r\n \"etag\": \"W/\\\"ba58cbc4-2ec2-4cec-ae7c-521e4220c1e8\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4338c45b-74ce-4998-9d83-936404f0a3a7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ba58cbc4-2ec2-4cec-ae7c-521e4220c1e8\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/publicIPAddresses/pip11729463\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/virtualNetworks/vnet95173428f0/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uamtvoqxcu4evdn1fus52xdrva.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:55:37 GMT", + "date" : "Mon, 18 May 2020 07:02:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1457", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5f812aa0-b1ad-4ae4-94c9-392684f1f12b", + "x-ms-correlation-request-id" : "5f0bc4bc-6c50-4d32-a423-ef1f37fd00cc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1184", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085538Z:5f812aa0-b1ad-4ae4-94c9-392684f1f12b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1195", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070225Z:5f0bc4bc-6c50-4d32-a423-ef1f37fd00cc", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4335356d-1b97-4eb0-9ddb-f001f288eb55", - "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9e1d7e63-df62-4ebf-8197-fc71711cb688\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4335356d-1b97-4eb0-9ddb-f001f288eb55?api-version=2019-03-01" + "x-ms-request-id" : "3db315d7-2bf8-4e68-ba06-a9739544c2fc", + "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ea7e2b2a-5e68-407d-b3e2-37c9e6d116df\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db315d7-2bf8-4e68-ba06-a9739544c2fc?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4335356d-1b97-4eb0-9ddb-f001f288eb55?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db315d7-2bf8-4e68-ba06-a9739544c2fc?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:56:07 GMT", + "date" : "Mon, 18 May 2020 07:02:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10731", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a789191f-5474-45ad-abb0-ec34f1df9454", + "x-ms-correlation-request-id" : "9f1dc06e-eea8-4321-917c-aa9a703d66f8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29815", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085608Z:a789191f-5474-45ad-abb0-ec34f1df9454", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070255Z:9f1dc06e-eea8-4321-917c-aa9a703d66f8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "256d6904-2904-4872-a395-d876156a1a53", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:36.3611573+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4335356d-1b97-4eb0-9ddb-f001f288eb55\"\r\n}" + "x-ms-request-id" : "e3d99802-d9e0-4575-91ae-05806f049bdb", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:23.2166408+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3db315d7-2bf8-4e68-ba06-a9739544c2fc\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4335356d-1b97-4eb0-9ddb-f001f288eb55?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db315d7-2bf8-4e68-ba06-a9739544c2fc?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:56:37 GMT", + "date" : "Mon, 18 May 2020 07:03:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10331", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d3a10fe1-1b44-4cb4-87a7-e243db051141", + "x-ms-correlation-request-id" : "00e090c1-41ce-4204-9d62-26d922e16dc3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29807", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085638Z:d3a10fe1-1b44-4cb4-87a7-e243db051141", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070326Z:00e090c1-41ce-4204-9d62-26d922e16dc3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8caaf294-165f-42a1-b732-9a83b7ac8b04", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:36.3611573+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4335356d-1b97-4eb0-9ddb-f001f288eb55\"\r\n}" + "x-ms-request-id" : "f666c8ce-74d4-49a9-a2f7-68d1eeb20023", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:23.2166408+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3db315d7-2bf8-4e68-ba06-a9739544c2fc\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4335356d-1b97-4eb0-9ddb-f001f288eb55?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db315d7-2bf8-4e68-ba06-a9739544c2fc?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:08 GMT", + "date" : "Mon, 18 May 2020 07:03:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9643", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ae071c74-67a8-4e9a-95f3-b5044e505d0f", + "x-ms-correlation-request-id" : "eb42b5d8-15b0-4842-905a-53c6aca1fae2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29800", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085709Z:ae071c74-67a8-4e9a-95f3-b5044e505d0f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29980", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070356Z:eb42b5d8-15b0-4842-905a-53c6aca1fae2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "28c2788d-9be3-45ad-91b0-36603f921eae", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:55:36.3611573+00:00\",\r\n \"endTime\": \"2020-03-05T08:56:54.9552624+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4335356d-1b97-4eb0-9ddb-f001f288eb55\"\r\n}" + "x-ms-request-id" : "e6d2f0a7-b15f-46ab-b1d2-1a1c35f42d46", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:23.2166408+00:00\",\r\n \"endTime\": \"2020-05-18T07:03:27.6544718+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3db315d7-2bf8-4e68-ba06-a9739544c2fc\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:38 GMT", + "date" : "Mon, 18 May 2020 07:04:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1710", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10326", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9246390b-6352-4e95-98f4-3e040c59a7e7", + "x-ms-correlation-request-id" : "769e6fc7-3cce-4b32-afd2-c35f666170c5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085739Z:9246390b-6352-4e95-98f4-3e040c59a7e7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31986", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070427Z:769e6fc7-3cce-4b32-afd2-c35f666170c5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a1c56802-8af5-4889-aa34-05f6a51cfbf8", - "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9e1d7e63-df62-4ebf-8197-fc71711cb688\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_3d0bf15bb3a247c79a840ba11fe8571c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG38881/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_3d0bf15bb3a247c79a840ba11fe8571c\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "8e00da95-4889-4187-a1b5-e7bcfa4c6bb1", + "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ea7e2b2a-5e68-407d-b3e2-37c9e6d116df\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_e4dfb424e4554be98271d864528b5d24\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG15658/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_e4dfb424e4554be98271d864528b5d24\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG38881/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_3d0bf15bb3a247c79a840ba11fe8571c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG15658/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_e4dfb424e4554be98271d864528b5d24?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:39 GMT", + "date" : "Mon, 18 May 2020 07:04:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1244", + "content-length" : "1322", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10115", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "129484d7-6c02-4827-af63-ff460a1e20b4", + "x-ms-correlation-request-id" : "eff5830c-acfc-4500-9656-0312a47f6f2f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085739Z:129484d7-6c02-4827-af63-ff460a1e20b4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39958", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070427Z:eff5830c-acfc-4500-9656-0312a47f6f2f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "db142159-e30b-44c8-b0b8-48b8dc3caa5e", - "Body" : "{\r\n \"name\": \"myvm1_OsDisk_1_3d0bf15bb3a247c79a840ba11fe8571c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG38881/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_3d0bf15bb3a247c79a840ba11fe8571c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202002181\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:55:36.9620943+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"3d0bf15b-b3a2-47c7-9a84-0ba11fe8571c\"\r\n }\r\n}" + "x-ms-request-id" : "79333b49-22f8-470b-b821-757a73d04497", + "Body" : "{\r\n \"name\": \"myvm1_OsDisk_1_e4dfb424e4554be98271d864528b5d24\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG15658/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_e4dfb424e4554be98271d864528b5d24\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:02:23.6460498+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e4dfb424-e455-4be9-8271-d864528b5d24\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:39 GMT", + "date" : "Mon, 18 May 2020 07:04:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2096", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10716", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c3d9e59d-b2c5-45b6-9137-dc0eb66e1817", + "x-ms-correlation-request-id" : "145bb01b-b2bf-4346-9884-1c4719527faf", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "cf4c5130-0878-4092-b0f1-9d1b9c3facec", + "x-ms-arm-service-request-id" : "964008bf-82eb-4bd8-be6d-662b98d15c3c", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085740Z:c3d9e59d-b2c5-45b6-9137-dc0eb66e1817", - "etag" : "W/\"3fa744a2-1886-4448-80dd-9a052cf8538f\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070428Z:145bb01b-b2bf-4346-9884-1c4719527faf", + "etag" : "W/\"18f45ca5-b059-44ac-b9cf-cd02f5b86127\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c959e9c0-ee7c-4dd3-bb1f-744915765f18", - "Body" : "{\r\n \"name\": \"nicmyvm1538887651c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c\",\r\n \"etag\": \"W/\\\"3fa744a2-1886-4448-80dd-9a052cf8538f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ea91fc0-b6cf-43c7-8e88-cfad7be08555\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/networkInterfaces/nicmyvm1538887651c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3fa744a2-1886-4448-80dd-9a052cf8538f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/publicIPAddresses/pip84944c7b\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Network/virtualNetworks/vnet565433a470/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ainbcfjdgrnulg5mlncgoicegc.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-8B-F6-37\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg38881/providers/Microsoft.Compute/virtualMachines/myvm1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "0c70674e-5a16-4c28-bf78-40e1a89a7fcb", + "Body" : "{\r\n \"name\": \"nicmyvm1d9554708ff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff\",\r\n \"etag\": \"W/\\\"18f45ca5-b059-44ac-b9cf-cd02f5b86127\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4338c45b-74ce-4998-9d83-936404f0a3a7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/networkInterfaces/nicmyvm1d9554708ff/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"18f45ca5-b059-44ac-b9cf-cd02f5b86127\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/publicIPAddresses/pip11729463\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Network/virtualNetworks/vnet95173428f0/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uamtvoqxcu4evdn1fus52xdrva.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-9A-A7-11\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg15658/providers/Microsoft.Compute/virtualMachines/myvm1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg38881?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg15658?api-version=2019-08-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" + }, + "Response" : { + "date" : "Mon, 18 May 2020 07:04:32 GMT", + "content-length" : "0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14995", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "21854603-9c6c-4ed0-aafa-8d30b7f83501", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070433Z:21854603-9c6c-4ed0-aafa-8d30b7f83501", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "21854603-9c6c-4ed0-aafa-8d30b7f83501", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:45 GMT", + "date" : "Mon, 18 May 2020 07:05:03 GMT", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "67c409d8-eb45-48bf-8d92-edae1799889a", + "x-ms-correlation-request-id" : "832e3890-f807-46ce-8f00-6329e1ece594", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085745Z:67c409d8-eb45-48bf-8d92-edae1799889a", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070504Z:832e3890-f807-46ce-8f00-6329e1ece594", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "67c409d8-eb45-48bf-8d92-edae1799889a", + "x-ms-request-id" : "832e3890-f807-46ce-8f00-6329e1ece594", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:15 GMT", + "date" : "Mon, 18 May 2020 07:05:34 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9820", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fd7a6006-01cc-487b-ae34-26f1d73771c8", + "x-ms-correlation-request-id" : "818c0a6e-3500-45eb-b1a4-d1032d9e1eac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085816Z:fd7a6006-01cc-487b-ae34-26f1d73771c8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070535Z:818c0a6e-3500-45eb-b1a4-d1032d9e1eac", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "fd7a6006-01cc-487b-ae34-26f1d73771c8", + "x-ms-request-id" : "818c0a6e-3500-45eb-b1a4-d1032d9e1eac", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:47 GMT", + "date" : "Mon, 18 May 2020 07:06:06 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9634", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "76cb7b6c-e44d-43db-a8e8-fb54724753d3", + "x-ms-correlation-request-id" : "df3058f7-8855-4e5b-929a-53feb22e7b19", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085847Z:76cb7b6c-e44d-43db-a8e8-fb54724753d3", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070607Z:df3058f7-8855-4e5b-929a-53feb22e7b19", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "76cb7b6c-e44d-43db-a8e8-fb54724753d3", + "x-ms-request-id" : "df3058f7-8855-4e5b-929a-53feb22e7b19", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:18 GMT", + "date" : "Mon, 18 May 2020 07:06:37 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10431", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d4ca31a5-45ce-4125-babb-18184396bba4", + "x-ms-correlation-request-id" : "ff17e419-79cb-485c-b7d2-f47d229c342e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085918Z:d4ca31a5-45ce-4125-babb-18184396bba4", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070637Z:ff17e419-79cb-485c-b7d2-f47d229c342e", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "d4ca31a5-45ce-4125-babb-18184396bba4", + "x-ms-request-id" : "ff17e419-79cb-485c-b7d2-f47d229c342e", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:49 GMT", + "date" : "Mon, 18 May 2020 07:07:07 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10110", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f113e81c-92b6-4224-9d1a-3968042bf3c2", + "x-ms-correlation-request-id" : "92e2d44e-1e64-4ffa-8674-207ccf5ed776", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085950Z:f113e81c-92b6-4224-9d1a-3968042bf3c2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070708Z:92e2d44e-1e64-4ffa-8674-207ccf5ed776", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f113e81c-92b6-4224-9d1a-3968042bf3c2", + "x-ms-request-id" : "92e2d44e-1e64-4ffa-8674-207ccf5ed776", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:20 GMT", + "date" : "Mon, 18 May 2020 07:07:39 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9627", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "189bf7db-9020-4459-8dac-31f371dd4906", + "x-ms-correlation-request-id" : "e767523e-0e20-4978-8d2c-17e25f7bf4ee", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090021Z:189bf7db-9020-4459-8dac-31f371dd4906", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070740Z:e767523e-0e20-4978-8d2c-17e25f7bf4ee", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "189bf7db-9020-4459-8dac-31f371dd4906", + "x-ms-request-id" : "e767523e-0e20-4978-8d2c-17e25f7bf4ee", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:51 GMT", + "date" : "Mon, 18 May 2020 07:08:10 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10446", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6ef8c8f4-8bb5-403b-bafd-94f8df44028e", + "x-ms-correlation-request-id" : "497c4445-8b91-4cb4-81f6-1b5ef5627566", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090052Z:6ef8c8f4-8bb5-403b-bafd-94f8df44028e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070811Z:497c4445-8b91-4cb4-81f6-1b5ef5627566", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "6ef8c8f4-8bb5-403b-bafd-94f8df44028e", + "x-ms-request-id" : "497c4445-8b91-4cb4-81f6-1b5ef5627566", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:23 GMT", + "date" : "Mon, 18 May 2020 07:08:42 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9794", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6a8c3dfb-2c59-47d6-b4c5-7f807bed816e", + "x-ms-correlation-request-id" : "e6d817a8-549a-4804-b84c-c325ce27896c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090123Z:6a8c3dfb-2c59-47d6-b4c5-7f807bed816e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070842Z:e6d817a8-549a-4804-b84c-c325ce27896c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "6a8c3dfb-2c59-47d6-b4c5-7f807bed816e", + "x-ms-request-id" : "e6d817a8-549a-4804-b84c-c325ce27896c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:53 GMT", + "date" : "Mon, 18 May 2020 07:09:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9618", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5b82c9c4-1427-42ef-adb4-3e9671e22f26", + "x-ms-correlation-request-id" : "58286d22-6c0a-407b-9c7d-e66fd689cf24", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090154Z:5b82c9c4-1427-42ef-adb4-3e9671e22f26", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070914Z:58286d22-6c0a-407b-9c7d-e66fd689cf24", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5b82c9c4-1427-42ef-adb4-3e9671e22f26", + "x-ms-request-id" : "58286d22-6c0a-407b-9c7d-e66fd689cf24", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:25 GMT", + "date" : "Mon, 18 May 2020 07:09:44 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9784", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f4473e03-b66a-4bce-8c05-753563c7ab3b", + "x-ms-correlation-request-id" : "8f689d61-c202-4a81-ae63-066a19b4f5b7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090225Z:f4473e03-b66a-4bce-8c05-753563c7ab3b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070945Z:8f689d61-c202-4a81-ae63-066a19b4f5b7", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f4473e03-b66a-4bce-8c05-753563c7ab3b", + "x-ms-request-id" : "8f689d61-c202-4a81-ae63-066a19b4f5b7", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:55 GMT", + "date" : "Mon, 18 May 2020 07:10:14 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9782", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "01e79d0f-4c4a-48b6-bf9f-60667224e17b", + "x-ms-correlation-request-id" : "e7a0ec05-2a98-4fb4-87f9-a0367ae6db0a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090255Z:01e79d0f-4c4a-48b6-bf9f-60667224e17b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071015Z:e7a0ec05-2a98-4fb4-87f9-a0367ae6db0a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "01e79d0f-4c4a-48b6-bf9f-60667224e17b", + "x-ms-request-id" : "e7a0ec05-2a98-4fb4-87f9-a0367ae6db0a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:03:26 GMT", + "date" : "Mon, 18 May 2020 07:10:46 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10413", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "90b3c61b-fd52-4b91-991c-f4e2b6e8d52f", + "x-ms-correlation-request-id" : "ae8966a0-d82d-4721-b05a-ee4b8bcae201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090326Z:90b3c61b-fd52-4b91-991c-f4e2b6e8d52f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071047Z:ae8966a0-d82d-4721-b05a-ee4b8bcae201", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "90b3c61b-fd52-4b91-991c-f4e2b6e8d52f", + "x-ms-request-id" : "ae8966a0-d82d-4721-b05a-ee4b8bcae201", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:03:56 GMT", + "date" : "Mon, 18 May 2020 07:11:18 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10872", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d69814c4-b3e4-438a-ad6f-22ed6dec35a4", + "x-ms-correlation-request-id" : "4a616049-7676-41e5-b505-55fb4ee9c454", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090357Z:d69814c4-b3e4-438a-ad6f-22ed6dec35a4", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071118Z:4a616049-7676-41e5-b505-55fb4ee9c454", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "d69814c4-b3e4-438a-ad6f-22ed6dec35a4", + "x-ms-request-id" : "4a616049-7676-41e5-b505-55fb4ee9c454", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:04:27 GMT", + "date" : "Mon, 18 May 2020 07:11:49 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10870", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d50b54de-0206-47fc-ad27-655128300e6b", + "x-ms-correlation-request-id" : "728d0f0e-8416-465a-9c2f-c595ad312d0d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090427Z:d50b54de-0206-47fc-ad27-655128300e6b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071150Z:728d0f0e-8416-465a-9c2f-c595ad312d0d", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "d50b54de-0206-47fc-ad27-655128300e6b", + "x-ms-request-id" : "728d0f0e-8416-465a-9c2f-c595ad312d0d", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczODg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNTY1OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:04:57 GMT", + "date" : "Mon, 18 May 2020 07:12:21 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10279", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "933f8ea9-a96c-4520-9d2b-59c5bf57f459", + "x-ms-correlation-request-id" : "90b2a971-fd68-4efc-a3aa-ebbaaffe1880", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090458Z:933f8ea9-a96c-4520-9d2b-59c5bf57f459", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071221Z:90b2a971-fd68-4efc-a3aa-ebbaaffe1880", "cache-control" : "no-cache", - "x-ms-request-id" : "933f8ea9-a96c-4520-9d2b-59c5bf57f459", + "x-ms-request-id" : "90b2a971-fd68-4efc-a3aa-ebbaaffe1880", "Body" : "" } } ], - "variables" : [ "javacsmrg38881", "pip2b3554894172", "nicmyvm1538887651c", "vnet565433a470", "pip84944c7b" ] + "variables" : [ "javacsmrg15658", "pip42a40364ec20", "nicmyvm1d9554708ff", "vnet95173428f0", "pip11729463" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineWithManagedDiskInManagedAvailabilitySet.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineWithManagedDiskInManagedAvailabilitySet.json index ff1764e56164..b4c28b0eb7c9 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineWithManagedDiskInManagedAvailabilitySet.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateVirtualMachineWithManagedDiskInManagedAvailabilitySet.json @@ -1,801 +1,734 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92507?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg03652?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:00 GMT", + "date" : "Mon, 18 May 2020 06:59:59 GMT", "content-length" : "309", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cc5f6b8d-c55b-4865-b4e3-4f69259cdf71", + "x-ms-correlation-request-id" : "fe9b8795-0a1a-49ad-866b-74c6e8e029ce", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083700Z:cc5f6b8d-c55b-4865-b4e3-4f69259cdf71", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065959Z:fe9b8795-0a1a-49ad-866b-74c6e8e029ce", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cc5f6b8d-c55b-4865-b4e3-4f69259cdf71", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507\",\"name\":\"javacsmrg92507\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-03-05T08:36:55.221Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "fe9b8795-0a1a-49ad-866b-74c6e8e029ce", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652\",\"name\":\"javacsmrg03652\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-05-18T06:59:57.354Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Compute/availabilitySets/av-9f76560570?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/virtualNetworks/vnet78912060f0?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:07 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "411", + "azure-asyncnotification" : "Enabled", + "content-length" : "1342", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", - "StatusCode" : "200", + "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "34c7a534-7314-4829-abc5-c7c32aa5fc81", + "x-ms-correlation-request-id" : "97f735e2-0469-41a2-89db-0380d92575c0", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "e102697f-6a5d-4df5-bc33-59199a500d3c", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083708Z:34c7a534-7314-4829-abc5-c7c32aa5fc81", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070006Z:97f735e2-0469-41a2-89db-0380d92575c0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "084a9bfa-594d-4122-82ba-498439676678", - "Body" : "{\r\n \"name\": \"av-9f76560570\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Compute/availabilitySets/av-9f76560570\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}" + "x-ms-request-id" : "bbb51ab6-316d-461b-8d27-c995abe100dc", + "Body" : "{\r\n \"name\": \"vnet78912060f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/virtualNetworks/vnet78912060f0\",\r\n \"etag\": \"W/\\\"0ce7252d-8482-4cba-955c-0b7944969942\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2f4733f5-3753-4922-9a04-b7d6c5c8bdbc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/virtualNetworks/vnet78912060f0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0ce7252d-8482-4cba-955c-0b7944969942\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bbb51ab6-316d-461b-8d27-c995abe100dc?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/virtualNetworks/vnet47417a6b01?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Compute/availabilitySets/av-81a0998360?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:09 GMT", + "date" : "Mon, 18 May 2020 07:00:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1342", + "content-length" : "411", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", - "StatusCode" : "201", + "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3172496f-368a-45e1-8e16-341d24f31c4e", + "x-ms-correlation-request-id" : "a800a112-82f5-4d85-ba3d-208fd175197a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "46f27b7d-208a-4b3d-b4b1-667bd123120b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083709Z:3172496f-368a-45e1-8e16-341d24f31c4e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070008Z:a800a112-82f5-4d85-ba3d-208fd175197a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f55b4098-dd92-4e49-9556-a6173372f120", - "Body" : "{\r\n \"name\": \"vnet47417a6b01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/virtualNetworks/vnet47417a6b01\",\r\n \"etag\": \"W/\\\"eda6aced-da3a-4235-beee-7fb04dcb6485\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2f66b098-1bb2-4173-b056-6f7b6f7e4cf8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/virtualNetworks/vnet47417a6b01/subnets/subnet1\",\r\n \"etag\": \"W/\\\"eda6aced-da3a-4235-beee-7fb04dcb6485\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f55b4098-dd92-4e49-9556-a6173372f120?api-version=2019-06-01" + "x-ms-request-id" : "0b8a2005-ea02-412c-9c6e-cc531ef325b5", + "Body" : "{\r\n \"name\": \"av-81a0998360\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Compute/availabilitySets/av-81a0998360\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f55b4098-dd92-4e49-9556-a6173372f120?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bbb51ab6-316d-461b-8d27-c995abe100dc?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:40 GMT", + "date" : "Mon, 18 May 2020 07:00:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10556", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5535b21e-a931-48af-a806-00f9c6ad0fa7", + "x-ms-correlation-request-id" : "a61934fe-db03-4aa8-b634-18eb2e9a3c21", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "fdaed916-6b1d-485b-be5b-5996c627ddd7", + "x-ms-arm-service-request-id" : "d8ad94ab-2cc4-4f36-923a-ae97ad54b734", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083740Z:5535b21e-a931-48af-a806-00f9c6ad0fa7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070037Z:a61934fe-db03-4aa8-b634-18eb2e9a3c21", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fd9ba5db-452f-44b4-b945-1e8e4be91c1c", + "x-ms-request-id" : "af431477-de4f-4d64-9cfb-d2b0180cfc75", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/virtualNetworks/vnet47417a6b01?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/virtualNetworks/vnet78912060f0?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:10 GMT", + "date" : "Mon, 18 May 2020 07:01:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1344", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10101", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "26c6a056-8da0-4a82-9a8d-5bd7fe88aae8", + "x-ms-correlation-request-id" : "3ff71c95-970e-4e8f-b36a-5d95dd8bdd7a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "66b13322-c216-4e15-ba2f-361715bd64ce", + "x-ms-arm-service-request-id" : "34d6c3fc-bea2-4931-9dd3-865247b2ac77", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083811Z:26c6a056-8da0-4a82-9a8d-5bd7fe88aae8", - "etag" : "W/\"198cc0d1-e7d8-4ff9-a631-e36ac5f46e6b\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070108Z:3ff71c95-970e-4e8f-b36a-5d95dd8bdd7a", + "etag" : "W/\"b313d568-c1e4-4055-9968-5e8b191ef2e2\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "43692e83-b526-4087-bdce-8e61a4ea14f6", - "Body" : "{\r\n \"name\": \"vnet47417a6b01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/virtualNetworks/vnet47417a6b01\",\r\n \"etag\": \"W/\\\"198cc0d1-e7d8-4ff9-a631-e36ac5f46e6b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2f66b098-1bb2-4173-b056-6f7b6f7e4cf8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/virtualNetworks/vnet47417a6b01/subnets/subnet1\",\r\n \"etag\": \"W/\\\"198cc0d1-e7d8-4ff9-a631-e36ac5f46e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "1feaf873-049c-4e7e-aec7-c4f03779c4e6", + "Body" : "{\r\n \"name\": \"vnet78912060f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/virtualNetworks/vnet78912060f0\",\r\n \"etag\": \"W/\\\"b313d568-c1e4-4055-9968-5e8b191ef2e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2f4733f5-3753-4922-9a04-b7d6c5c8bdbc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/virtualNetworks/vnet78912060f0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b313d568-c1e4-4055-9968-5e8b191ef2e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/networkInterfaces/nicmyvm694b88878d8?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/networkInterfaces/nicmyvm6c6c77191f4?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:16 GMT", + "date" : "Mon, 18 May 2020 07:01:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1647", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8a91b2da-e7f9-4f3a-9ae7-f0bad2aba1ac", + "x-ms-correlation-request-id" : "cfde510a-757e-45b4-afdc-5f95a3b85975", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ee88e92e-2bdc-4921-8144-4c55030f0055", + "x-ms-arm-service-request-id" : "1c13ee4b-4a55-41aa-ac50-44477f888637", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083816Z:8a91b2da-e7f9-4f3a-9ae7-f0bad2aba1ac", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070115Z:cfde510a-757e-45b4-afdc-5f95a3b85975", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a2ab3b39-d7a6-421f-884f-2a74abb6cf64", - "Body" : "{\r\n \"name\": \"nicmyvm694b88878d8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/networkInterfaces/nicmyvm694b88878d8\",\r\n \"etag\": \"W/\\\"a3dc6be3-ecfb-441f-bd24-c04a2d93b3af\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ed184f0a-4ac7-495a-97b0-f8c72e26c1b9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/networkInterfaces/nicmyvm694b88878d8/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a3dc6be3-ecfb-441f-bd24-c04a2d93b3af\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/virtualNetworks/vnet47417a6b01/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"tcygml3sdnzudmcwn33w45sm5a.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a2ab3b39-d7a6-421f-884f-2a74abb6cf64?api-version=2019-06-01" + "x-ms-request-id" : "389eddc6-26f7-4208-9884-3421de9482c0", + "Body" : "{\r\n \"name\": \"nicmyvm6c6c77191f4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/networkInterfaces/nicmyvm6c6c77191f4\",\r\n \"etag\": \"W/\\\"9277ca26-eb1b-4378-990b-8882f4b27321\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d863aa84-84da-4dcf-b3bb-8b930ba4cf7c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/networkInterfaces/nicmyvm6c6c77191f4/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9277ca26-eb1b-4378-990b-8882f4b27321\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/virtualNetworks/vnet78912060f0/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4uzuol0tg2retgqew5lmlsf3xe.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/389eddc6-26f7-4208-9884-3421de9482c0?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a2ab3b39-d7a6-421f-884f-2a74abb6cf64?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/389eddc6-26f7-4208-9884-3421de9482c0?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:46 GMT", + "date" : "Mon, 18 May 2020 07:01:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10220", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f9aab70b-39b4-4fd9-88d6-8cdc9b28f150", + "x-ms-correlation-request-id" : "38d586db-6c5a-473c-bad4-29e2a51d038c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f3b63a3b-5924-4613-ae91-4f85ac43f27f", + "x-ms-arm-service-request-id" : "d3803b46-01cc-4453-95a5-9aa5f8c2dabf", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083847Z:f9aab70b-39b4-4fd9-88d6-8cdc9b28f150", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070146Z:38d586db-6c5a-473c-bad4-29e2a51d038c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1d943264-2b90-48fd-83b2-eed304510055", + "x-ms-request-id" : "9a9c14a7-cd37-4b71-84d1-34202b85563d", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/networkInterfaces/nicmyvm694b88878d8?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/networkInterfaces/nicmyvm6c6c77191f4?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:17 GMT", + "date" : "Mon, 18 May 2020 07:02:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1647", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10218", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "acb75612-641e-4d32-8127-ddcaeaa829ed", + "x-ms-correlation-request-id" : "226a191b-3bb9-4e06-8afd-0c185ec85a96", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7fc24475-71ee-4be9-b147-2a835289619c", + "x-ms-arm-service-request-id" : "284e2b9d-1b6a-49d4-b708-f2331024b2df", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083917Z:acb75612-641e-4d32-8127-ddcaeaa829ed", - "etag" : "W/\"a3dc6be3-ecfb-441f-bd24-c04a2d93b3af\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070217Z:226a191b-3bb9-4e06-8afd-0c185ec85a96", + "etag" : "W/\"9277ca26-eb1b-4378-990b-8882f4b27321\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b67a11c4-88a3-4678-8fc2-47da843320f1", - "Body" : "{\r\n \"name\": \"nicmyvm694b88878d8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/networkInterfaces/nicmyvm694b88878d8\",\r\n \"etag\": \"W/\\\"a3dc6be3-ecfb-441f-bd24-c04a2d93b3af\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ed184f0a-4ac7-495a-97b0-f8c72e26c1b9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/networkInterfaces/nicmyvm694b88878d8/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a3dc6be3-ecfb-441f-bd24-c04a2d93b3af\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/virtualNetworks/vnet47417a6b01/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"tcygml3sdnzudmcwn33w45sm5a.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "77649666-d9e5-4e62-b728-5e6d969244ed", + "Body" : "{\r\n \"name\": \"nicmyvm6c6c77191f4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/networkInterfaces/nicmyvm6c6c77191f4\",\r\n \"etag\": \"W/\\\"9277ca26-eb1b-4378-990b-8882f4b27321\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d863aa84-84da-4dcf-b3bb-8b930ba4cf7c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/networkInterfaces/nicmyvm6c6c77191f4/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9277ca26-eb1b-4378-990b-8882f4b27321\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/virtualNetworks/vnet78912060f0/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4uzuol0tg2retgqew5lmlsf3xe.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:24 GMT", + "date" : "Mon, 18 May 2020 07:02:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2463", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b1db192b-c1b3-438f-bcf8-833c53147a0f", + "x-ms-correlation-request-id" : "b55c07b0-b701-4fad-baa8-cc8b646989db", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083925Z:b1db192b-c1b3-438f-bcf8-833c53147a0f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070225Z:b55c07b0-b701-4fad-baa8-cc8b646989db", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d6797807-874a-4273-b257-84e596dd163d", - "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e5d4fa7c-3057-49cf-b3d4-1778e4113441\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Compute/availabilitySets/AV-9F76560570\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm6\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/networkInterfaces/nicmyvm694b88878d8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d6797807-874a-4273-b257-84e596dd163d?api-version=2019-03-01" + "x-ms-request-id" : "0e4a9989-71c3-402d-86b5-f92e1a37f007", + "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b7d8711e-75aa-4d1f-af03-e29941ee27bd\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Compute/availabilitySets/AV-81A0998360\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm6\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/networkInterfaces/nicmyvm6c6c77191f4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0e4a9989-71c3-402d-86b5-f92e1a37f007?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d6797807-874a-4273-b257-84e596dd163d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0e4a9989-71c3-402d-86b5-f92e1a37f007?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:54 GMT", + "date" : "Mon, 18 May 2020 07:02:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10197", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3972ba04-9295-446d-a868-1dc00207e794", + "x-ms-correlation-request-id" : "4d473e97-0476-47b4-b23d-a762aa4d8e92", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083955Z:3972ba04-9295-446d-a868-1dc00207e794", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070255Z:4d473e97-0476-47b4-b23d-a762aa4d8e92", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6caa93f6-a805-4c4c-b660-4bc4c7e75e16", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:23.3578082+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6797807-874a-4273-b257-84e596dd163d\"\r\n}" + "x-ms-request-id" : "899394b1-0735-474b-ac21-ecee8c5cd317", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:23.1697691+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0e4a9989-71c3-402d-86b5-f92e1a37f007\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d6797807-874a-4273-b257-84e596dd163d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0e4a9989-71c3-402d-86b5-f92e1a37f007?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:25 GMT", + "date" : "Mon, 18 May 2020 07:03:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10863", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d774368a-c8bc-4e7d-9bd9-f50d9bf8ae0c", + "x-ms-correlation-request-id" : "b7c0705f-ad56-4dc0-80a0-f4e33dbfb567", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084025Z:d774368a-c8bc-4e7d-9bd9-f50d9bf8ae0c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070326Z:b7c0705f-ad56-4dc0-80a0-f4e33dbfb567", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d4826b34-2376-4593-a2de-7bcf0753db2a", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:23.3578082+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6797807-874a-4273-b257-84e596dd163d\"\r\n}" + "x-ms-request-id" : "9b0a78d1-1b3d-4c11-bf3c-5ac52e4b982d", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:23.1697691+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0e4a9989-71c3-402d-86b5-f92e1a37f007\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d6797807-874a-4273-b257-84e596dd163d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0e4a9989-71c3-402d-86b5-f92e1a37f007?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:55 GMT", + "date" : "Mon, 18 May 2020 07:03:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10762", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8b5a1bcc-882b-4a97-8066-e4fdfea9bd66", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084056Z:8b5a1bcc-882b-4a97-8066-e4fdfea9bd66", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8296c427-3af8-4ff5-81d7-46dce7cbe495", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:23.3578082+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6797807-874a-4273-b257-84e596dd163d\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d6797807-874a-4273-b257-84e596dd163d?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10854", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e364dab9-a35d-4c2f-86eb-6b074bb76115", + "x-ms-correlation-request-id" : "0cf06b63-bc20-43da-94ab-23aff0fcdfee", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084126Z:e364dab9-a35d-4c2f-86eb-6b074bb76115", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070357Z:0cf06b63-bc20-43da-94ab-23aff0fcdfee", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "499e8a07-83e4-47f4-98f4-bbf35ae20ddc", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:23.3578082+00:00\",\r\n \"endTime\": \"2020-03-05T08:41:17.202211+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d6797807-874a-4273-b257-84e596dd163d\"\r\n}" + "x-ms-request-id" : "fe465002-203d-4fc9-aaaa-60820f100a71", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:23.1697691+00:00\",\r\n \"endTime\": \"2020-05-18T07:03:37.9826123+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0e4a9989-71c3-402d-86b5-f92e1a37f007\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Compute/virtualMachines/myvm6?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:56 GMT", + "date" : "Mon, 18 May 2020 07:04:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3466", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9938", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "857736ac-c417-432b-b2dd-bd0dcc7ba519", + "x-ms-correlation-request-id" : "f302705e-6f43-47c8-a0a8-f2eb9cdd72ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084156Z:857736ac-c417-432b-b2dd-bd0dcc7ba519", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31985", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070427Z:f302705e-6f43-47c8-a0a8-f2eb9cdd72ac", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c79a520a-ae47-41ac-b3e3-e1a43439a868", - "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e5d4fa7c-3057-49cf-b3d4-1778e4113441\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Compute/availabilitySets/AV-9F76560570\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm6_OsDisk_1_640d88882dcb4d6ba56662d77cf916a1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG92507/providers/Microsoft.Compute/disks/myvm6_OsDisk_1_640d88882dcb4d6ba56662d77cf916a1\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm6_disk2_58b5ba0dc95f47c099c1ea9f1fd53c92\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG92507/providers/Microsoft.Compute/disks/myvm6_disk2_58b5ba0dc95f47c099c1ea9f1fd53c92\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm6_disk3_6dc286c082854b43987365175309db0d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG92507/providers/Microsoft.Compute/disks/myvm6_disk3_6dc286c082854b43987365175309db0d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm6_disk4_ecaa93ee775e45eb9eae59ec6cd29f02\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG92507/providers/Microsoft.Compute/disks/myvm6_disk4_ecaa93ee775e45eb9eae59ec6cd29f02\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm6\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Network/networkInterfaces/nicmyvm694b88878d8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "f568350f-2d22-4c4d-84ce-129abc7ec82f", + "Body" : "{\r\n \"name\": \"myvm6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b7d8711e-75aa-4d1f-af03-e29941ee27bd\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Compute/availabilitySets/AV-81A0998360\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm6_OsDisk_1_7ce1c0b87b454bb3adcb70840c15d3d9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG03652/providers/Microsoft.Compute/disks/myvm6_OsDisk_1_7ce1c0b87b454bb3adcb70840c15d3d9\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm6_disk2_2db7995735534c67adc3ef5353013c19\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG03652/providers/Microsoft.Compute/disks/myvm6_disk2_2db7995735534c67adc3ef5353013c19\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm6_disk3_82051d62a81446a8b6296f31354f87f6\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG03652/providers/Microsoft.Compute/disks/myvm6_disk3_82051d62a81446a8b6296f31354f87f6\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm6_disk4_59b0d9de13cd42ffa59e0db6aa5957aa\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG03652/providers/Microsoft.Compute/disks/myvm6_disk4_59b0d9de13cd42ffa59e0db6aa5957aa\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm6\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Network/networkInterfaces/nicmyvm6c6c77191f4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Compute/availabilitySets/AV-9F76560570?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Compute/availabilitySets/AV-81A0998360?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:57 GMT", + "date" : "Mon, 18 May 2020 07:04:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "612", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10302", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b6c0982c-a1b6-48f0-ac54-63b7afa7f44b", + "x-ms-correlation-request-id" : "80ad42ca-f772-43ab-81c1-a4f1fe85ce55", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084157Z:b6c0982c-a1b6-48f0-ac54-63b7afa7f44b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31983", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070428Z:80ad42ca-f772-43ab-81c1-a4f1fe85ce55", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "304ac531-68c7-4ff0-8236-8a2d43a4ca4c", - "Body" : "{\r\n \"name\": \"av-9f76560570\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92507/providers/Microsoft.Compute/availabilitySets/av-9f76560570\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG92507/providers/Microsoft.Compute/virtualMachines/MYVM6\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}" + "x-ms-request-id" : "4d0fc0b2-9762-4f48-ba3b-b9f2b9e3b62e", + "Body" : "{\r\n \"name\": \"av-81a0998360\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg03652/providers/Microsoft.Compute/availabilitySets/av-81a0998360\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG03652/providers/Microsoft.Compute/virtualMachines/MYVM6\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92507?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg03652?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:03 GMT", + "date" : "Mon, 18 May 2020 07:04:32 GMT", "content-length" : "0", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f449ed1f-e445-4a47-929a-44d6d84671d4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084203Z:f449ed1f-e445-4a47-929a-44d6d84671d4", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "f449ed1f-e445-4a47-929a-44d6d84671d4", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:34 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10757", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "19e9744f-b574-4a37-b6e8-98f933f94720", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084234Z:19e9744f-b574-4a37-b6e8-98f933f94720", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "19e9744f-b574-4a37-b6e8-98f933f94720", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:04 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10756", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f86a2260-7947-4e38-be5d-d388b21b560e", + "x-ms-correlation-request-id" : "79c35eb5-c27f-4897-8e36-9050edc268eb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084305Z:f86a2260-7947-4e38-be5d-d388b21b560e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070432Z:79c35eb5-c27f-4897-8e36-9050edc268eb", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f86a2260-7947-4e38-be5d-d388b21b560e", + "x-ms-request-id" : "79c35eb5-c27f-4897-8e36-9050edc268eb", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:36 GMT", + "date" : "Mon, 18 May 2020 07:05:04 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10546", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "50a3f89b-4040-4c31-9ac9-6917db91b9b8", + "x-ms-correlation-request-id" : "e705de88-3f4d-4a4c-a540-0827491385ff", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084336Z:50a3f89b-4040-4c31-9ac9-6917db91b9b8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070505Z:e705de88-3f4d-4a4c-a540-0827491385ff", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "50a3f89b-4040-4c31-9ac9-6917db91b9b8", + "x-ms-request-id" : "e705de88-3f4d-4a4c-a540-0827491385ff", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:07 GMT", + "date" : "Mon, 18 May 2020 07:05:34 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10828", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ffdc07f4-0673-44d7-860d-39f2fd9cfb34", + "x-ms-correlation-request-id" : "d98d710b-ca99-4a45-abbb-b5d2ff5ddb62", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084407Z:ffdc07f4-0673-44d7-860d-39f2fd9cfb34", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070535Z:d98d710b-ca99-4a45-abbb-b5d2ff5ddb62", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ffdc07f4-0673-44d7-860d-39f2fd9cfb34", + "x-ms-request-id" : "d98d710b-ca99-4a45-abbb-b5d2ff5ddb62", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:38 GMT", + "date" : "Mon, 18 May 2020 07:06:06 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9712", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e48b832f-744a-437a-8ab8-230535f9b902", + "x-ms-correlation-request-id" : "f39dcc3e-113a-44eb-8cef-20120b81562d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084439Z:e48b832f-744a-437a-8ab8-230535f9b902", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070607Z:f39dcc3e-113a-44eb-8cef-20120b81562d", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e48b832f-744a-437a-8ab8-230535f9b902", + "x-ms-request-id" : "f39dcc3e-113a-44eb-8cef-20120b81562d", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:08 GMT", + "date" : "Mon, 18 May 2020 07:06:36 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9709", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cc43ce18-2af5-48c7-8ccb-ab853d9a864f", + "x-ms-correlation-request-id" : "fd99dcf9-a2ed-4926-8fec-310eefa47343", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084509Z:cc43ce18-2af5-48c7-8ccb-ab853d9a864f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070637Z:fd99dcf9-a2ed-4926-8fec-310eefa47343", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "cc43ce18-2af5-48c7-8ccb-ab853d9a864f", + "x-ms-request-id" : "fd99dcf9-a2ed-4926-8fec-310eefa47343", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:40 GMT", + "date" : "Mon, 18 May 2020 07:07:08 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10183", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b85f29a3-cc8a-4335-b98d-176ec8760f01", + "x-ms-correlation-request-id" : "71e528ba-919f-4147-b6e1-565aeda425af", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084540Z:b85f29a3-cc8a-4335-b98d-176ec8760f01", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070708Z:71e528ba-919f-4147-b6e1-565aeda425af", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b85f29a3-cc8a-4335-b98d-176ec8760f01", + "x-ms-request-id" : "71e528ba-919f-4147-b6e1-565aeda425af", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:11 GMT", + "date" : "Mon, 18 May 2020 07:07:39 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10807", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fe6f10aa-feb1-452c-9116-2f2df56593f9", + "x-ms-correlation-request-id" : "6f036aaa-60f5-44cb-91e9-8dd1741e29e4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084611Z:fe6f10aa-feb1-452c-9116-2f2df56593f9", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070740Z:6f036aaa-60f5-44cb-91e9-8dd1741e29e4", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "fe6f10aa-feb1-452c-9116-2f2df56593f9", + "x-ms-request-id" : "6f036aaa-60f5-44cb-91e9-8dd1741e29e4", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:42 GMT", + "date" : "Mon, 18 May 2020 07:08:10 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9703", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cd5e8421-5d89-4c06-b3cd-9d4be8f7dc4e", + "x-ms-correlation-request-id" : "708ed8f5-e4bb-4d5c-af6c-a03e9674c66a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084643Z:cd5e8421-5d89-4c06-b3cd-9d4be8f7dc4e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070811Z:708ed8f5-e4bb-4d5c-af6c-a03e9674c66a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "cd5e8421-5d89-4c06-b3cd-9d4be8f7dc4e", + "x-ms-request-id" : "708ed8f5-e4bb-4d5c-af6c-a03e9674c66a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:13 GMT", + "date" : "Mon, 18 May 2020 07:08:41 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10251", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e15125df-33c5-4b24-921c-a03d7232143c", + "x-ms-correlation-request-id" : "eeae3f93-a513-4027-9868-b72816a5e35a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084713Z:e15125df-33c5-4b24-921c-a03d7232143c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070842Z:eeae3f93-a513-4027-9868-b72816a5e35a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e15125df-33c5-4b24-921c-a03d7232143c", + "x-ms-request-id" : "eeae3f93-a513-4027-9868-b72816a5e35a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:44 GMT", + "date" : "Mon, 18 May 2020 07:09:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10170", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3068ce68-42e6-498d-b008-b38eef1feab9", + "x-ms-correlation-request-id" : "5f843808-22a9-4e45-bece-d28be7df73d4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084744Z:3068ce68-42e6-498d-b008-b38eef1feab9", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070913Z:5f843808-22a9-4e45-bece-d28be7df73d4", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "3068ce68-42e6-498d-b008-b38eef1feab9", + "x-ms-request-id" : "5f843808-22a9-4e45-bece-d28be7df73d4", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:15 GMT", + "date" : "Mon, 18 May 2020 07:09:44 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10381", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9dfc4be7-f666-4fd7-98d1-e66894339f3a", + "x-ms-correlation-request-id" : "2b6f0fba-207d-4c80-bf83-35dcbfe9bb98", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084815Z:9dfc4be7-f666-4fd7-98d1-e66894339f3a", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070945Z:2b6f0fba-207d-4c80-bf83-35dcbfe9bb98", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "9dfc4be7-f666-4fd7-98d1-e66894339f3a", + "x-ms-request-id" : "2b6f0fba-207d-4c80-bf83-35dcbfe9bb98", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:46 GMT", + "date" : "Mon, 18 May 2020 07:10:15 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10156", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8a963945-99a0-44d9-97fb-50f656c5c22d", + "x-ms-correlation-request-id" : "7418d20c-5b73-4028-b3f9-8c48938f5198", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084847Z:8a963945-99a0-44d9-97fb-50f656c5c22d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071015Z:7418d20c-5b73-4028-b3f9-8c48938f5198", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "8a963945-99a0-44d9-97fb-50f656c5c22d", + "x-ms-request-id" : "7418d20c-5b73-4028-b3f9-8c48938f5198", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:17 GMT", + "date" : "Mon, 18 May 2020 07:10:46 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10153", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dc29b4b7-1ce7-44bf-917c-7c7cce080bcd", + "x-ms-correlation-request-id" : "5767fda7-14e2-4bb7-a082-5d4a003640ca", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084917Z:dc29b4b7-1ce7-44bf-917c-7c7cce080bcd", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071047Z:5767fda7-14e2-4bb7-a082-5d4a003640ca", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "dc29b4b7-1ce7-44bf-917c-7c7cce080bcd", + "x-ms-request-id" : "5767fda7-14e2-4bb7-a082-5d4a003640ca", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:48 GMT", + "date" : "Mon, 18 May 2020 07:11:17 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10470", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d1749df5-2b8c-423c-b7d8-a4fa25635bb1", + "x-ms-correlation-request-id" : "225d6133-8c7b-46a8-a402-70bdeba19bab", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084948Z:d1749df5-2b8c-423c-b7d8-a4fa25635bb1", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071118Z:225d6133-8c7b-46a8-a402-70bdeba19bab", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "d1749df5-2b8c-423c-b7d8-a4fa25635bb1", + "x-ms-request-id" : "225d6133-8c7b-46a8-a402-70bdeba19bab", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:18 GMT", + "date" : "Mon, 18 May 2020 07:11:47 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10508", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c8ce994c-a288-4f22-ab48-596e6ec2845d", + "x-ms-correlation-request-id" : "95f97258-5c08-4c0f-82fd-561c38a69eb2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085019Z:c8ce994c-a288-4f22-ab48-596e6ec2845d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071148Z:95f97258-5c08-4c0f-82fd-561c38a69eb2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "c8ce994c-a288-4f22-ab48-596e6ec2845d", + "x-ms-request-id" : "95f97258-5c08-4c0f-82fd-561c38a69eb2", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjUwNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwMzY1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:49 GMT", + "date" : "Mon, 18 May 2020 07:12:19 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10147", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "27e99eed-b17a-444a-84af-9f953379789f", + "x-ms-correlation-request-id" : "875136dd-fcad-4186-bf10-fca565d80ebe", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085050Z:27e99eed-b17a-444a-84af-9f953379789f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071220Z:875136dd-fcad-4186-bf10-fca565d80ebe", "cache-control" : "no-cache", - "x-ms-request-id" : "27e99eed-b17a-444a-84af-9f953379789f", + "x-ms-request-id" : "875136dd-fcad-4186-bf10-fca565d80ebe", "Body" : "" } } ], - "variables" : [ "javacsmrg92507", "av-9f76560570", "nicmyvm694b88878d8", "vnet47417a6b01" ] + "variables" : [ "javacsmrg03652", "av-81a0998360", "nicmyvm6c6c77191f4", "vnet78912060f0" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithExplicitZoneForRelatedResources.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithExplicitZoneForRelatedResources.json index 5daa1fdab23c..4b03d5de9da9 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithExplicitZoneForRelatedResources.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithExplicitZoneForRelatedResources.json @@ -1,1334 +1,999 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg40844?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg75323?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:00 GMT", + "date" : "Mon, 18 May 2020 06:09:04 GMT", "content-length" : "310", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "825f1283-42cb-4caa-850f-8b007b5f0926", + "x-ms-correlation-request-id" : "068d3f82-56cf-4d66-b240-b8a8dfea8ec9", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083700Z:825f1283-42cb-4caa-850f-8b007b5f0926", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060905Z:068d3f82-56cf-4d66-b240-b8a8dfea8ec9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "825f1283-42cb-4caa-850f-8b007b5f0926", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844\",\"name\":\"javacsmrg40844\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-03-05T08:36:56.130Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "068d3f82-56cf-4d66-b240-b8a8dfea8ec9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323\",\"name\":\"javacsmrg75323\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-05-18T06:09:01.881Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/publicIPAddresses/pip57608a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/publicIPAddresses/pip22052a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:09 GMT", + "date" : "Mon, 18 May 2020 06:09:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "649", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "85ca4a4c-0e83-4128-9f5e-cdbeac1da5f7", + "x-ms-correlation-request-id" : "5b66136e-59a7-46ac-9c42-a03174f85b8a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "79150e9b-ec42-4524-bbe2-4ae87b0f980a", + "x-ms-arm-service-request-id" : "9f10c392-5373-4a39-a1c9-422771a0906a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083710Z:85ca4a4c-0e83-4128-9f5e-cdbeac1da5f7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060915Z:5b66136e-59a7-46ac-9c42-a03174f85b8a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d8d172a6-4b19-4705-bba5-3a48d907bc55", - "Body" : "{\r\n \"name\": \"pip57608a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/publicIPAddresses/pip57608a\",\r\n \"etag\": \"W/\\\"1b15ab69-f3db-499a-9430-2940b4dca4cb\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"689ba6bf-d17f-4fab-9ab6-d79f2ba90070\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/d8d172a6-4b19-4705-bba5-3a48d907bc55?api-version=2019-06-01" + "x-ms-request-id" : "3140ee1c-b2b4-414c-ada3-1eaae9118c83", + "Body" : "{\r\n \"name\": \"pip22052a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/publicIPAddresses/pip22052a\",\r\n \"etag\": \"W/\\\"01fbe957-dd22-42b5-bba4-abb4fa4bc044\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4aeff3a5-71f3-4b49-85e5-49dc43ed2c9b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3140ee1c-b2b4-414c-ada3-1eaae9118c83?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/d8d172a6-4b19-4705-bba5-3a48d907bc55?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3140ee1c-b2b4-414c-ada3-1eaae9118c83?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:40 GMT", + "date" : "Mon, 18 May 2020 06:09:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10105", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2e82e8f0-9b99-4c51-8bed-16d2ae2b51d3", + "x-ms-correlation-request-id" : "1b08d277-ee42-4b2c-ae21-885c98cb6b49", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "9fbe9d60-f4ea-4ca3-8ac9-69b6de77f021", + "x-ms-arm-service-request-id" : "a19a9f27-6b8e-4787-924e-f49ceeee04d0", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083741Z:2e82e8f0-9b99-4c51-8bed-16d2ae2b51d3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060946Z:1b08d277-ee42-4b2c-ae21-885c98cb6b49", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9efeecb3-6a98-4181-9223-2f48e9108908", + "x-ms-request-id" : "a63a2aa6-7901-4017-a934-d4d83fde2793", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/publicIPAddresses/pip57608a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/publicIPAddresses/pip22052a?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:10 GMT", + "date" : "Mon, 18 May 2020 06:10:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "685", + "content-length" : "684", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10100", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f6868b6e-57ae-42c6-8219-e72352c277fa", + "x-ms-correlation-request-id" : "78425f6f-b385-46d7-ac1a-92e2948ff283", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "99249b43-7a08-421e-9abb-62747bc34e16", + "x-ms-arm-service-request-id" : "8cc87fde-a3d1-4b84-afd6-da219e6ea7ae", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083811Z:f6868b6e-57ae-42c6-8219-e72352c277fa", - "etag" : "W/\"331a9b4b-7e19-494f-b66d-1b86f8e64f87\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061017Z:78425f6f-b385-46d7-ac1a-92e2948ff283", + "etag" : "W/\"c906f58a-2abc-42e1-a385-43ca7b556334\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2c42ab36-3842-40f6-828a-717d15831931", - "Body" : "{\r\n \"name\": \"pip57608a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/publicIPAddresses/pip57608a\",\r\n \"etag\": \"W/\\\"331a9b4b-7e19-494f-b66d-1b86f8e64f87\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"689ba6bf-d17f-4fab-9ab6-d79f2ba90070\",\r\n \"ipAddress\": \"52.247.26.180\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "ee61f4f5-7157-465b-87c4-65a839173013", + "Body" : "{\r\n \"name\": \"pip22052a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/publicIPAddresses/pip22052a\",\r\n \"etag\": \"W/\\\"c906f58a-2abc-42e1-a385-43ca7b556334\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4aeff3a5-71f3-4b49-85e5-49dc43ed2c9b\",\r\n \"ipAddress\": \"52.247.3.167\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/disks/dsk45451f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/disks/dsk25689a?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:17 GMT", + "date" : "Mon, 18 May 2020 06:10:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "273", "expires" : "-1", - "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132143902767758154", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132307948826283056", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c14ec9d7-f62c-48a3-9278-bc37b9666636", + "x-ms-correlation-request-id" : "20a749f9-175f-4271-9c57-dcd9f5184a7b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083818Z:c14ec9d7-f62c-48a3-9278-bc37b9666636", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061023Z:20a749f9-175f-4271-9c57-dcd9f5184a7b", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/02b44885-6ded-4fd5-9386-12f5de21ab60?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f87e8c6e-a95a-4c26-a16d-d9135bbb9092?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "02b44885-6ded-4fd5-9386-12f5de21ab60", - "Body" : "{\r\n \"name\": \"dsk45451f\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/02b44885-6ded-4fd5-9386-12f5de21ab60?api-version=2019-03-01" + "x-ms-request-id" : "f87e8c6e-a95a-4c26-a16d-d9135bbb9092", + "Body" : "{\r\n \"name\": \"dsk25689a\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f87e8c6e-a95a-4c26-a16d-d9135bbb9092?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/02b44885-6ded-4fd5-9386-12f5de21ab60?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f87e8c6e-a95a-4c26-a16d-d9135bbb9092?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:47 GMT", + "date" : "Mon, 18 May 2020 06:10:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "807", + "content-length" : "865", "expires" : "-1", - "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132143902767758154", + "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132307948826283056", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10871", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5fc02655-2af3-4486-93c1-7d2fbb660553", + "x-ms-correlation-request-id" : "0149c4d3-2ae9-4403-a39f-2afe6130365b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083848Z:5fc02655-2af3-4486-93c1-7d2fbb660553", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061053Z:0149c4d3-2ae9-4403-a39f-2afe6130365b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5594e48d-b112-4d3f-9c77-201ef0f07698", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:38:18.262363+00:00\",\r\n \"endTime\": \"2020-03-05T08:38:18.3561177+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk45451f\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/disks/dsk45451f\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus2\",\"tags\":{},\"zones\":[\"1\"],\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:38:18.262363+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"ef261aab-3cd2-4fd1-bddc-a50484b7286a\"}}\r\n },\r\n \"name\": \"02b44885-6ded-4fd5-9386-12f5de21ab60\"\r\n}" + "x-ms-request-id" : "19b022eb-8b5d-48cf-b3fb-554c3fa58a74", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:10:23.1244195+00:00\",\r\n \"endTime\": \"2020-05-18T06:10:23.2650237+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk25689a\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/disks/dsk25689a\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus2\",\"tags\":{},\"zones\":[\"1\"],\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:10:23.1244195+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"3f299b10-1c5e-44ea-bcc2-28a7c51e01a5\"}}\r\n },\r\n \"name\": \"f87e8c6e-a95a-4c26-a16d-d9135bbb9092\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/disks/dsk45451f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/disks/dsk25689a?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:19 GMT", + "date" : "Mon, 18 May 2020 06:11:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "735", + "content-length" : "814", "expires" : "-1", - "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132143902767758154", + "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132307948826283056", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10312", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d7e78608-d165-4a8e-ad9f-42c6c6066618", + "x-ms-correlation-request-id" : "5d8cd9ec-df37-45ae-84a5-82334bef757c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083919Z:d7e78608-d165-4a8e-ad9f-42c6c6066618", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061124Z:5d8cd9ec-df37-45ae-84a5-82334bef757c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c2d92558-e53b-4aef-ad9b-6d4b5b3dc7d5", - "Body" : "{\r\n \"name\": \"dsk45451f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/disks/dsk45451f\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:38:18.262363+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"ef261aab-3cd2-4fd1-bddc-a50484b7286a\"\r\n }\r\n}" + "x-ms-request-id" : "cb90b792-5791-4de5-88ec-b11045f2ff8e", + "Body" : "{\r\n \"name\": \"dsk25689a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/disks/dsk25689a\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:10:23.1244195+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"3f299b10-1c5e-44ea-bcc2-28a7c51e01a5\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg40844?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg75323?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:24 GMT", + "date" : "Mon, 18 May 2020 06:11:27 GMT", "content-length" : "310", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "53f4827f-2c0b-460a-8407-5ed5fadec6a5", + "x-ms-correlation-request-id" : "b098ab79-dc30-45a1-83fc-e61308140aa3", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083924Z:53f4827f-2c0b-460a-8407-5ed5fadec6a5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061127Z:b098ab79-dc30-45a1-83fc-e61308140aa3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "53f4827f-2c0b-460a-8407-5ed5fadec6a5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844\",\"name\":\"javacsmrg40844\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-03-05T08:39:19.993Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "b098ab79-dc30-45a1-83fc-e61308140aa3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323\",\"name\":\"javacsmrg75323\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-05-18T06:11:24.750Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/virtualNetworks/vnet16950c6f22?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/virtualNetworks/vnet6106638544?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:31 GMT", + "date" : "Mon, 18 May 2020 06:11:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1343", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ed39640-31a5-4781-b0b1-1436f6709470", + "x-ms-correlation-request-id" : "4fbf9d50-9c42-4056-90a6-2d8a1806a1c0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d6ef7d2a-4ca1-4e71-9653-4274c777d36d", + "x-ms-arm-service-request-id" : "3b536e3e-03e8-4679-9206-b798fb44173e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083931Z:8ed39640-31a5-4781-b0b1-1436f6709470", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061135Z:4fbf9d50-9c42-4056-90a6-2d8a1806a1c0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d0b60418-f655-4314-94a6-24506c5d3c0d", - "Body" : "{\r\n \"name\": \"vnet16950c6f22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/virtualNetworks/vnet16950c6f22\",\r\n \"etag\": \"W/\\\"7139ccc3-648f-41c7-b34f-72ed7aee7274\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"548515b0-1f43-4154-be71-81955abe7622\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/virtualNetworks/vnet16950c6f22/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7139ccc3-648f-41c7-b34f-72ed7aee7274\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/d0b60418-f655-4314-94a6-24506c5d3c0d?api-version=2019-06-01" + "x-ms-request-id" : "4029e08b-0502-4dda-8cad-cc1d6f9b0b25", + "Body" : "{\r\n \"name\": \"vnet6106638544\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/virtualNetworks/vnet6106638544\",\r\n \"etag\": \"W/\\\"e21cfc2d-8c2e-4fd3-977f-5635b272e726\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f46181ee-6ab4-40bc-a4fa-21573092f01e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/virtualNetworks/vnet6106638544/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e21cfc2d-8c2e-4fd3-977f-5635b272e726\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/4029e08b-0502-4dda-8cad-cc1d6f9b0b25?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/d0b60418-f655-4314-94a6-24506c5d3c0d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/4029e08b-0502-4dda-8cad-cc1d6f9b0b25?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:02 GMT", + "date" : "Mon, 18 May 2020 06:12:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9742", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f69a3ed7-9ea6-44e8-96b1-f47f1cb82286", + "x-ms-correlation-request-id" : "a0818a45-64e6-49df-b383-716da9596c13", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ca491379-9875-4ca5-b9eb-fe5d65c1aed7", + "x-ms-arm-service-request-id" : "11383a07-ae75-4012-b57a-3e4b3bc6815f", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084002Z:f69a3ed7-9ea6-44e8-96b1-f47f1cb82286", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061213Z:a0818a45-64e6-49df-b383-716da9596c13", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "897543be-dc97-4065-bbe4-38f76f286694", + "x-ms-request-id" : "60863da4-00b0-460b-9988-8ba02c81d5f2", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/virtualNetworks/vnet16950c6f22?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/virtualNetworks/vnet6106638544?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:32 GMT", + "date" : "Mon, 18 May 2020 06:12:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1345", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10860", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac9cadb5-b89a-4b98-bdcb-7035d27f2836", + "x-ms-correlation-request-id" : "daeff20f-d24f-4ed2-8477-bef737b56884", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "da08c5d5-0a63-46bd-a298-603084a90b2b", + "x-ms-arm-service-request-id" : "f3b28b80-52c6-49d7-aee6-a5c9d9f81acf", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084032Z:ac9cadb5-b89a-4b98-bdcb-7035d27f2836", - "etag" : "W/\"60455b78-efb8-422d-8f50-4ec63c7b4c03\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061244Z:daeff20f-d24f-4ed2-8477-bef737b56884", + "etag" : "W/\"c8b33041-fe5a-43ef-861c-1e8ffb126f15\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e306eaa0-9560-4706-94d7-bef0fe27c13a", - "Body" : "{\r\n \"name\": \"vnet16950c6f22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/virtualNetworks/vnet16950c6f22\",\r\n \"etag\": \"W/\\\"60455b78-efb8-422d-8f50-4ec63c7b4c03\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"548515b0-1f43-4154-be71-81955abe7622\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/virtualNetworks/vnet16950c6f22/subnets/subnet1\",\r\n \"etag\": \"W/\\\"60455b78-efb8-422d-8f50-4ec63c7b4c03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "238d789f-4285-4224-a115-6d2ec82dfe95", + "Body" : "{\r\n \"name\": \"vnet6106638544\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/virtualNetworks/vnet6106638544\",\r\n \"etag\": \"W/\\\"c8b33041-fe5a-43ef-861c-1e8ffb126f15\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f46181ee-6ab4-40bc-a4fa-21573092f01e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/virtualNetworks/vnet6106638544/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c8b33041-fe5a-43ef-861c-1e8ffb126f15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:41 GMT", + "date" : "Mon, 18 May 2020 06:13:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1853", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "88604296-a698-42dc-b44f-0ecf3bf49178", + "x-ms-correlation-request-id" : "547cfb2c-0b96-44ae-8625-63a467afd672", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "55714fd8-1e7f-4af4-90be-9efbc428c035", + "x-ms-arm-service-request-id" : "86eef00d-5bf2-4404-a571-bcaccd0c9c05", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084041Z:88604296-a698-42dc-b44f-0ecf3bf49178", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061339Z:547cfb2c-0b96-44ae-8625-63a467afd672", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7e2c337e-59e0-4b3e-a0ef-58a9af4edb5c", - "Body" : "{\r\n \"name\": \"nicjavavma6795686c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c\",\r\n \"etag\": \"W/\\\"85fbc474-9e14-4be2-af7f-281da299e87a\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3d4ec56-2c90-4e51-a588-1833c6fc1a29\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"85fbc474-9e14-4be2-af7f-281da299e87a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/publicIPAddresses/pip57608a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/virtualNetworks/vnet16950c6f22/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wakykvcdd3kedptrqgkvvptwec.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/7e2c337e-59e0-4b3e-a0ef-58a9af4edb5c?api-version=2019-06-01" + "x-ms-request-id" : "28a3b2e0-7938-43a9-b122-7761bba97fab", + "Body" : "{\r\n \"name\": \"nicjavavma88754087\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087\",\r\n \"etag\": \"W/\\\"772959f4-e859-43d9-9a9b-821a49e87205\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3a406ce-f38b-40e4-989e-4bf61ef1edfe\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"772959f4-e859-43d9-9a9b-821a49e87205\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/publicIPAddresses/pip22052a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/virtualNetworks/vnet6106638544/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"30awd3funk4ebjh0efltbexqdg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/28a3b2e0-7938-43a9-b122-7761bba97fab?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/7e2c337e-59e0-4b3e-a0ef-58a9af4edb5c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/28a3b2e0-7938-43a9-b122-7761bba97fab?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:12 GMT", + "date" : "Mon, 18 May 2020 06:14:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9946", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7251efde-a09f-47ec-b1fe-4896d3ae4da0", + "x-ms-correlation-request-id" : "1984d30b-1748-4a3a-a56e-598404a00967", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5b2a2b40-8a56-498d-af1f-2a0d65e8cbae", + "x-ms-arm-service-request-id" : "092d656b-7c33-4959-9ffc-bfbb1cfd5415", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084112Z:7251efde-a09f-47ec-b1fe-4896d3ae4da0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061411Z:1984d30b-1748-4a3a-a56e-598404a00967", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "abeaef9f-b1b1-453b-82c6-25a4e5cd1545", + "x-ms-request-id" : "20c3fa9a-6d79-46a5-b50b-483e83abc92e", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:42 GMT", + "date" : "Mon, 18 May 2020 06:14:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1853", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9939", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8e43bc7b-16c4-4964-8dfd-46f30d58ccb2", + "x-ms-correlation-request-id" : "50c29c52-0283-42af-bac9-8285a05aeaf6", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2df7f546-6d47-48b0-b254-0c1c626d2e8c", + "x-ms-arm-service-request-id" : "057785af-334c-4a52-b335-56864aca45eb", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084142Z:8e43bc7b-16c4-4964-8dfd-46f30d58ccb2", - "etag" : "W/\"85fbc474-9e14-4be2-af7f-281da299e87a\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061441Z:50c29c52-0283-42af-bac9-8285a05aeaf6", + "etag" : "W/\"772959f4-e859-43d9-9a9b-821a49e87205\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1403eaad-debc-48d3-8e20-edf0ae8cfc90", - "Body" : "{\r\n \"name\": \"nicjavavma6795686c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c\",\r\n \"etag\": \"W/\\\"85fbc474-9e14-4be2-af7f-281da299e87a\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3d4ec56-2c90-4e51-a588-1833c6fc1a29\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"85fbc474-9e14-4be2-af7f-281da299e87a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/publicIPAddresses/pip57608a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/virtualNetworks/vnet16950c6f22/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wakykvcdd3kedptrqgkvvptwec.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "68894e75-9672-4326-a6b7-cfbfb6b49fcd", + "Body" : "{\r\n \"name\": \"nicjavavma88754087\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087\",\r\n \"etag\": \"W/\\\"772959f4-e859-43d9-9a9b-821a49e87205\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3a406ce-f38b-40e4-989e-4bf61ef1edfe\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"772959f4-e859-43d9-9a9b-821a49e87205\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/publicIPAddresses/pip22052a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/virtualNetworks/vnet6106638544/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"30awd3funk4ebjh0efltbexqdg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:50 GMT", + "date" : "Mon, 18 May 2020 06:14:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1948", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "05ede8c4-b5fb-46fa-955f-65a0e608b2c1", + "x-ms-correlation-request-id" : "2f7b47ce-c89e-4550-8c90-82ce257826df", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084151Z:05ede8c4-b5fb-46fa-955f-65a0e608b2c1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1197", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061449Z:2f7b47ce-c89e-4550-8c90-82ce257826df", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "20acbd23-a9dc-45ad-9f89-8c6400d6c8b5", - "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3e718f3a-43be-4576-8fdb-d06ab97069ff\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk45451f\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/disks/dsk45451f\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/20acbd23-a9dc-45ad-9f89-8c6400d6c8b5?api-version=2019-03-01" + "x-ms-request-id" : "0592bf93-a919-4c56-9ec7-5bd198ca954a", + "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2235d596-801b-4a54-919a-8c04022c9056\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk25689a\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/disks/dsk25689a\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0592bf93-a919-4c56-9ec7-5bd198ca954a?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/20acbd23-a9dc-45ad-9f89-8c6400d6c8b5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0592bf93-a919-4c56-9ec7-5bd198ca954a?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:21 GMT", + "date" : "Mon, 18 May 2020 06:15:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10503", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "545d9b56-2b0b-4020-b1bc-c52a396ba8d6", + "x-ms-correlation-request-id" : "9632661a-c41d-4ea9-a4ae-bb5236710b7f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084221Z:545d9b56-2b0b-4020-b1bc-c52a396ba8d6", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29989", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061519Z:9632661a-c41d-4ea9-a4ae-bb5236710b7f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "18d7b5c0-96ab-4bcb-971f-dad7e4c6db33", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:41:49.3493857+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"20acbd23-a9dc-45ad-9f89-8c6400d6c8b5\"\r\n}" + "x-ms-request-id" : "bf04696e-5e8c-4eb5-9b5e-4ae1c6493993", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:14:46.9116089+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0592bf93-a919-4c56-9ec7-5bd198ca954a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/20acbd23-a9dc-45ad-9f89-8c6400d6c8b5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0592bf93-a919-4c56-9ec7-5bd198ca954a?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:51 GMT", + "date" : "Mon, 18 May 2020 06:15:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9930", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c2354282-e228-44d9-9d41-49ac64700977", + "x-ms-correlation-request-id" : "71d7b33b-dd83-434e-9423-ec5f4148fd8c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084252Z:c2354282-e228-44d9-9d41-49ac64700977", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29987", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061550Z:71d7b33b-dd83-434e-9423-ec5f4148fd8c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "767a9919-bc8a-4ba1-a97c-89d0eaee0f7d", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:41:49.3493857+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"20acbd23-a9dc-45ad-9f89-8c6400d6c8b5\"\r\n}" + "x-ms-request-id" : "99e0e64e-f4e7-44af-82e6-d10b9edc85b8", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:14:46.9116089+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0592bf93-a919-4c56-9ec7-5bd198ca954a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/20acbd23-a9dc-45ad-9f89-8c6400d6c8b5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0592bf93-a919-4c56-9ec7-5bd198ca954a?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:21 GMT", + "date" : "Mon, 18 May 2020 06:16:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9719", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eb3651c6-8ed3-4ba3-8fc1-c57c722bb0c0", + "x-ms-correlation-request-id" : "9bdfeeb2-d4ef-48f2-acaa-762d2c3617a8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084322Z:eb3651c6-8ed3-4ba3-8fc1-c57c722bb0c0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29985", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061620Z:9bdfeeb2-d4ef-48f2-acaa-762d2c3617a8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ceb3d0ec-0ce8-4a71-b1b4-17baf00913b6", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:41:49.3493857+00:00\",\r\n \"endTime\": \"2020-03-05T08:42:52.2425995+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"20acbd23-a9dc-45ad-9f89-8c6400d6c8b5\"\r\n}" + "x-ms-request-id" : "9c40a438-bfde-4dec-ae83-fc8b97cfa5c6", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:14:46.9116089+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0592bf93-a919-4c56-9ec7-5bd198ca954a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0592bf93-a919-4c56-9ec7-5bd198ca954a?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:53 GMT", + "date" : "Mon, 18 May 2020 06:16:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2203", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9716", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a454e33e-2b69-4316-b552-01b4b75e7a66", + "x-ms-correlation-request-id" : "daffd844-6d4c-47dc-a659-8f8c1b0b93ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084353Z:a454e33e-2b69-4316-b552-01b4b75e7a66", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29982", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061651Z:daffd844-6d4c-47dc-a659-8f8c1b0b93ac", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4e678b18-bc90-44dc-b100-dcc51f4d1014", - "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3e718f3a-43be-4576-8fdb-d06ab97069ff\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"javavm_OsDisk_1_234960b0b5a44ed9a786583f6615a9c2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40844/providers/Microsoft.Compute/disks/javavm_OsDisk_1_234960b0b5a44ed9a786583f6615a9c2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk45451f\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/disks/dsk45451f\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}" + "x-ms-request-id" : "c72a859c-2dc6-43f1-af44-46f041204a60", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:14:46.9116089+00:00\",\r\n \"endTime\": \"2020-05-18T06:16:34.4169248+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0592bf93-a919-4c56-9ec7-5bd198ca954a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:53 GMT", + "date" : "Mon, 18 May 2020 06:17:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2096", + "content-length" : "2203", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10517", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "012ce23f-279f-4de5-9af3-e02f4226fe75", + "x-ms-correlation-request-id" : "f8651d1b-2d96-41cf-9cd0-6e713d4dd132", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3aa77ff2-b597-4f1a-b555-37090e145276", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084353Z:012ce23f-279f-4de5-9af3-e02f4226fe75", - "etag" : "W/\"6ecf68ec-b56a-439c-884b-baa9c9f0add4\"", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061721Z:f8651d1b-2d96-41cf-9cd0-6e713d4dd132", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ff1c4f9b-a7e2-4be5-88d0-3989a90be9b8", - "Body" : "{\r\n \"name\": \"nicjavavma6795686c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c\",\r\n \"etag\": \"W/\\\"6ecf68ec-b56a-439c-884b-baa9c9f0add4\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3d4ec56-2c90-4e51-a588-1833c6fc1a29\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6ecf68ec-b56a-439c-884b-baa9c9f0add4\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/publicIPAddresses/pip57608a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/virtualNetworks/vnet16950c6f22/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wakykvcdd3kedptrqgkvvptwec.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-0F-50-F1\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/virtualMachines/javavm\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "4bcce19c-319b-41d5-93d3-1a7b592b3ac5", + "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2235d596-801b-4a54-919a-8c04022c9056\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"javavm_OsDisk_1_ac6c7d99d5394fa1829baf6ea09ce423\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG75323/providers/Microsoft.Compute/disks/javavm_OsDisk_1_ac6c7d99d5394fa1829baf6ea09ce423\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk25689a\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/disks/dsk25689a\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/publicIPAddresses/pip57608a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:54 GMT", + "date" : "Mon, 18 May 2020 06:17:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "906", + "content-length" : "2096", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10194", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c447de21-11a9-4e4c-893b-e569535fd733", + "x-ms-correlation-request-id" : "92963f62-bb8e-48c6-abb7-235a2ce14f2a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2162b110-7bca-4c50-94e3-4334e9c71386", + "x-ms-arm-service-request-id" : "e490b336-8f3b-4fc6-a20f-7673b543210e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084354Z:c447de21-11a9-4e4c-893b-e569535fd733", - "etag" : "W/\"96cc02c2-5e76-47eb-963d-63d1b54bbd7a\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061722Z:92963f62-bb8e-48c6-abb7-235a2ce14f2a", + "etag" : "W/\"c71aba51-5b8a-4df3-bd2d-a16064ffefb5\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "38212c93-2c0f-4641-95e5-59ae070b9b05", - "Body" : "{\r\n \"name\": \"pip57608a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/publicIPAddresses/pip57608a\",\r\n \"etag\": \"W/\\\"96cc02c2-5e76-47eb-963d-63d1b54bbd7a\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"689ba6bf-d17f-4fab-9ab6-d79f2ba90070\",\r\n \"ipAddress\": \"52.247.26.180\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Network/networkInterfaces/nicjavavma6795686c/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "dffb3e02-f663-4a59-b2d1-6dacbecee32d", + "Body" : "{\r\n \"name\": \"nicjavavma88754087\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087\",\r\n \"etag\": \"W/\\\"c71aba51-5b8a-4df3-bd2d-a16064ffefb5\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3a406ce-f38b-40e4-989e-4bf61ef1edfe\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c71aba51-5b8a-4df3-bd2d-a16064ffefb5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/publicIPAddresses/pip22052a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/virtualNetworks/vnet6106638544/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"30awd3funk4ebjh0efltbexqdg.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-0E-7D-8C\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/virtualMachines/javavm\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/disks/dsk45451f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/publicIPAddresses/pip22052a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:54 GMT", + "date" : "Mon, 18 May 2020 06:17:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "885", + "content-length" : "905", "expires" : "-1", - "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132143902767758154", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10193", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "873fdf25-352c-4767-b29f-54b94ea58d2f", + "x-ms-correlation-request-id" : "2d582973-cbc6-42c9-96fc-39f082cf9032", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "b49ed6cb-ee5f-4661-8697-b38991678015", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084354Z:873fdf25-352c-4767-b29f-54b94ea58d2f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061723Z:2d582973-cbc6-42c9-96fc-39f082cf9032", + "etag" : "W/\"9cf65e2b-3147-4bda-86e8-3bbc3f197aa5\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9bfd8864-3e09-4a54-aa6a-bd20434327f9", - "Body" : "{\r\n \"name\": \"dsk45451f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/disks/dsk45451f\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:38:18.262363+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"ef261aab-3cd2-4fd1-bddc-a50484b7286a\"\r\n }\r\n}" + "x-ms-request-id" : "59d61b83-7126-4d96-aa33-fff15b063ee1", + "Body" : "{\r\n \"name\": \"pip22052a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/publicIPAddresses/pip22052a\",\r\n \"etag\": \"W/\\\"9cf65e2b-3147-4bda-86e8-3bbc3f197aa5\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4aeff3a5-71f3-4b49-85e5-49dc43ed2c9b\",\r\n \"ipAddress\": \"52.247.3.167\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Network/networkInterfaces/nicjavavma88754087/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40844/providers/Microsoft.Compute/disks/javavm_OsDisk_1_234960b0b5a44ed9a786583f6615a9c2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/disks/dsk25689a?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:54 GMT", + "date" : "Mon, 18 May 2020 06:17:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1278", + "content-length" : "964", "expires" : "-1", - "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132143902767758154", + "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132307948826283056", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10830", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fc13e0bf-91eb-430d-8138-2c037a74cac0", + "x-ms-correlation-request-id" : "2647bcdf-9b3d-4c48-b0a1-daa107d0976c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084354Z:fc13e0bf-91eb-430d-8138-2c037a74cac0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061723Z:2647bcdf-9b3d-4c48-b0a1-daa107d0976c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7fbef9e7-549c-4cec-9eff-ecf1d2906ceb", - "Body" : "{\r\n \"name\": \"javavm_OsDisk_1_234960b0b5a44ed9a786583f6615a9c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40844/providers/Microsoft.Compute/disks/javavm_OsDisk_1_234960b0b5a44ed9a786583f6615a9c2\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40844/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202002181\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:41:49.6771177+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"234960b0-b5a4-4ed9-a786-583f6615a9c2\"\r\n }\r\n}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg40844?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:01 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14995", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a39bae7f-4ebf-427e-9a19-032d1459b251", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084401Z:a39bae7f-4ebf-427e-9a19-032d1459b251", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "a39bae7f-4ebf-427e-9a19-032d1459b251", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:32 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9918", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "78023b50-190a-4192-b7f1-50227552b16f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084432Z:78023b50-190a-4192-b7f1-50227552b16f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "78023b50-190a-4192-b7f1-50227552b16f", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:03 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9711", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3ab918a9-8dab-4b98-9ea5-d8306cfd4af0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084504Z:3ab918a9-8dab-4b98-9ea5-d8306cfd4af0", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "3ab918a9-8dab-4b98-9ea5-d8306cfd4af0", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:34 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10062", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1540cb62-837d-420b-aed4-5e47b4f91024", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084535Z:1540cb62-837d-420b-aed4-5e47b4f91024", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "1540cb62-837d-420b-aed4-5e47b4f91024", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:06 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10487", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9a71a18b-6873-4fe6-bacd-54f5778001c0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084606Z:9a71a18b-6873-4fe6-bacd-54f5778001c0", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "9a71a18b-6873-4fe6-bacd-54f5778001c0", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:36 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10388", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e44f3164-190f-4bc8-9a87-79c187d707ee", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084637Z:e44f3164-190f-4bc8-9a87-79c187d707ee", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "e44f3164-190f-4bc8-9a87-79c187d707ee", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:08 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10502", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "25f98383-3f69-48a6-9597-cc1ede0c0a49", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084708Z:25f98383-3f69-48a6-9597-cc1ede0c0a49", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "25f98383-3f69-48a6-9597-cc1ede0c0a49", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:39 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9695", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f92f6e56-d874-4e2a-98fe-d8f7c2ae45d7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084739Z:f92f6e56-d874-4e2a-98fe-d8f7c2ae45d7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "f92f6e56-d874-4e2a-98fe-d8f7c2ae45d7", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:10 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10166", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "06783040-c68e-4525-80a7-cc4cc20bab2f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084810Z:06783040-c68e-4525-80a7-cc4cc20bab2f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "06783040-c68e-4525-80a7-cc4cc20bab2f", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:41 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10273", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ece77698-964d-4d5c-a40b-7864e389110d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084841Z:ece77698-964d-4d5c-a40b-7864e389110d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "ece77698-964d-4d5c-a40b-7864e389110d", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:11 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10271", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "87561e0e-8a68-427c-b63e-f04e6b627dab", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084912Z:87561e0e-8a68-427c-b63e-f04e6b627dab", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "87561e0e-8a68-427c-b63e-f04e6b627dab", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:43 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10471", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aa58bdba-26f0-4e11-8598-3fe954872af3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084943Z:aa58bdba-26f0-4e11-8598-3fe954872af3", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "aa58bdba-26f0-4e11-8598-3fe954872af3", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:14 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10727", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "08a1f7b0-8c5c-4098-b302-8f09a3a3534c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085014Z:08a1f7b0-8c5c-4098-b302-8f09a3a3534c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "08a1f7b0-8c5c-4098-b302-8f09a3a3534c", - "Body" : "" + "x-ms-request-id" : "ddab69a2-ace2-4bd6-8584-50864b4bc67a", + "Body" : "{\r\n \"name\": \"dsk25689a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/disks/dsk25689a\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:10:23.1244195+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"3f299b10-1c5e-44ea-bcc2-28a7c51e01a5\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG75323/providers/Microsoft.Compute/disks/javavm_OsDisk_1_ac6c7d99d5394fa1829baf6ea09ce423?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:45 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10896", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5657ca81-d22f-4fd3-87ec-868145f0fbe0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085046Z:5657ca81-d22f-4fd3-87ec-868145f0fbe0", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "5657ca81-d22f-4fd3-87ec-868145f0fbe0", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:16 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10148", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e4d44982-94bc-412c-850f-3fe99654cb82", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085117Z:e4d44982-94bc-412c-850f-3fe99654cb82", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "e4d44982-94bc-412c-850f-3fe99654cb82", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:48 GMT", - "content-length" : "0", + "date" : "Mon, 18 May 2020 06:17:24 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1356", "expires" : "-1", + "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132307948826283056", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10487", - "StatusCode" : "202", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", + "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b48a2913-97c7-46ad-be6c-92edc0fa8b26", + "x-ms-correlation-request-id" : "8af4bead-5c2c-435d-ae28-eb215f7d6920", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085148Z:b48a2913-97c7-46ad-be6c-92edc0fa8b26", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061724Z:8af4bead-5c2c-435d-ae28-eb215f7d6920", + "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b48a2913-97c7-46ad-be6c-92edc0fa8b26", - "Body" : "" + "x-ms-request-id" : "7b28f5ce-13dc-4f37-8545-cd1ee3dfb845", + "Body" : "{\r\n \"name\": \"javavm_OsDisk_1_ac6c7d99d5394fa1829baf6ea09ce423\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG75323/providers/Microsoft.Compute/disks/javavm_OsDisk_1_ac6c7d99d5394fa1829baf6ea09ce423\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75323/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:14:47.3676866+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"ac6c7d99-d539-4fa1-829b-af6ea09ce423\"\r\n }\r\n}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg75323?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:19 GMT", + "date" : "Mon, 18 May 2020 06:17:29 GMT", "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10371", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "19891cac-f86b-439e-b515-dcb408397521", + "x-ms-correlation-request-id" : "adee23d9-28b0-444b-a706-fe1859fdfdf2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085219Z:19891cac-f86b-439e-b515-dcb408397521", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061729Z:adee23d9-28b0-444b-a706-fe1859fdfdf2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "19891cac-f86b-439e-b515-dcb408397521", + "x-ms-request-id" : "adee23d9-28b0-444b-a706-fe1859fdfdf2", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:49 GMT", + "date" : "Mon, 18 May 2020 06:18:00 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9664", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b2a7a497-2ebc-4660-b171-572c71d95608", + "x-ms-correlation-request-id" : "93890810-fa4e-45c0-bfec-eb13702b3048", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085250Z:b2a7a497-2ebc-4660-b171-572c71d95608", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061801Z:93890810-fa4e-45c0-bfec-eb13702b3048", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b2a7a497-2ebc-4660-b171-572c71d95608", + "x-ms-request-id" : "93890810-fa4e-45c0-bfec-eb13702b3048", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:21 GMT", + "date" : "Mon, 18 May 2020 06:18:31 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10016", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7156b5ef-b98d-4127-a5ae-e19531d60454", + "x-ms-correlation-request-id" : "e1444679-3e42-4ad3-bc9f-65597c629a99", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085321Z:7156b5ef-b98d-4127-a5ae-e19531d60454", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061831Z:e1444679-3e42-4ad3-bc9f-65597c629a99", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "7156b5ef-b98d-4127-a5ae-e19531d60454", + "x-ms-request-id" : "e1444679-3e42-4ad3-bc9f-65597c629a99", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:52 GMT", + "date" : "Mon, 18 May 2020 06:19:01 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10483", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "04fc6e1d-5f5d-41ef-b24f-12a1f84128ea", + "x-ms-correlation-request-id" : "0fae6425-9d40-444a-9216-31b13f70ff4b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085352Z:04fc6e1d-5f5d-41ef-b24f-12a1f84128ea", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061902Z:0fae6425-9d40-444a-9216-31b13f70ff4b", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "04fc6e1d-5f5d-41ef-b24f-12a1f84128ea", + "x-ms-request-id" : "0fae6425-9d40-444a-9216-31b13f70ff4b", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:23 GMT", + "date" : "Mon, 18 May 2020 06:19:32 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9655", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b872880b-b253-4e37-9764-0821a9442c73", + "x-ms-correlation-request-id" : "b5f1acbb-d356-4855-819c-80ef1bc8d992", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085424Z:b872880b-b253-4e37-9764-0821a9442c73", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061933Z:b5f1acbb-d356-4855-819c-80ef1bc8d992", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b872880b-b253-4e37-9764-0821a9442c73", + "x-ms-request-id" : "b5f1acbb-d356-4855-819c-80ef1bc8d992", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:55 GMT", + "date" : "Mon, 18 May 2020 06:20:04 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10887", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5793ec12-44cf-4147-801f-4dff984c7d6f", + "x-ms-correlation-request-id" : "e3310cfc-787a-4d29-99ae-e3adbc45937e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085455Z:5793ec12-44cf-4147-801f-4dff984c7d6f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062004Z:e3310cfc-787a-4d29-99ae-e3adbc45937e", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5793ec12-44cf-4147-801f-4dff984c7d6f", + "x-ms-request-id" : "e3310cfc-787a-4d29-99ae-e3adbc45937e", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:55:25 GMT", + "date" : "Mon, 18 May 2020 06:20:35 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10476", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e6f575ed-41af-40e2-aebf-0421fdbfffe4", + "x-ms-correlation-request-id" : "94a9b5c2-afcf-407f-9b66-6402c63679db", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085526Z:e6f575ed-41af-40e2-aebf-0421fdbfffe4", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062036Z:94a9b5c2-afcf-407f-9b66-6402c63679db", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e6f575ed-41af-40e2-aebf-0421fdbfffe4", + "x-ms-request-id" : "94a9b5c2-afcf-407f-9b66-6402c63679db", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:55:57 GMT", + "date" : "Mon, 18 May 2020 06:21:07 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10472", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ddf364ff-f393-46bf-9cb6-18542c654a07", + "x-ms-correlation-request-id" : "1c58c8e5-3f9d-4132-8670-c2d444cf8cc1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085557Z:ddf364ff-f393-46bf-9cb6-18542c654a07", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062107Z:1c58c8e5-3f9d-4132-8670-c2d444cf8cc1", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ddf364ff-f393-46bf-9cb6-18542c654a07", + "x-ms-request-id" : "1c58c8e5-3f9d-4132-8670-c2d444cf8cc1", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:56:27 GMT", + "date" : "Mon, 18 May 2020 06:21:38 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10121", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1a9e77ef-02c2-4778-aefc-4144236f55a4", + "x-ms-correlation-request-id" : "e0034358-e96a-4c91-bbbf-07cbb6ceb725", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085628Z:1a9e77ef-02c2-4778-aefc-4144236f55a4", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062139Z:e0034358-e96a-4c91-bbbf-07cbb6ceb725", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "1a9e77ef-02c2-4778-aefc-4144236f55a4", + "x-ms-request-id" : "e0034358-e96a-4c91-bbbf-07cbb6ceb725", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:56:59 GMT", + "date" : "Mon, 18 May 2020 06:22:10 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10719", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "030277a0-902e-4ff4-9f46-a25511b22a38", + "x-ms-correlation-request-id" : "a564f892-5add-4d12-99e6-fe4a6d304ded", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085659Z:030277a0-902e-4ff4-9f46-a25511b22a38", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062210Z:a564f892-5add-4d12-99e6-fe4a6d304ded", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "030277a0-902e-4ff4-9f46-a25511b22a38", + "x-ms-request-id" : "a564f892-5add-4d12-99e6-fe4a6d304ded", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:29 GMT", + "date" : "Mon, 18 May 2020 06:22:41 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10465", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "23a06d93-cd79-44b6-9079-3b0bc441dca7", + "x-ms-correlation-request-id" : "161ec9fd-1ff8-4fde-b6e3-a8d65ff12f5a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085730Z:23a06d93-cd79-44b6-9079-3b0bc441dca7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062242Z:161ec9fd-1ff8-4fde-b6e3-a8d65ff12f5a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "23a06d93-cd79-44b6-9079-3b0bc441dca7", + "x-ms-request-id" : "161ec9fd-1ff8-4fde-b6e3-a8d65ff12f5a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:01 GMT", + "date" : "Mon, 18 May 2020 06:23:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10323", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0232e3b6-4ab9-4db1-afc9-511f3db41296", + "x-ms-correlation-request-id" : "4bfd7e98-1ec1-4a5a-806b-c53a084ed4fe", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085801Z:0232e3b6-4ab9-4db1-afc9-511f3db41296", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062313Z:4bfd7e98-1ec1-4a5a-806b-c53a084ed4fe", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "0232e3b6-4ab9-4db1-afc9-511f3db41296", + "x-ms-request-id" : "4bfd7e98-1ec1-4a5a-806b-c53a084ed4fe", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:32 GMT", + "date" : "Mon, 18 May 2020 06:23:44 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9817", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a94de834-7fc7-41c3-a5b0-71a1077fb218", + "x-ms-correlation-request-id" : "40af29ea-9ce4-444c-a3f3-944b06bdbaa1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085833Z:a94de834-7fc7-41c3-a5b0-71a1077fb218", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062345Z:40af29ea-9ce4-444c-a3f3-944b06bdbaa1", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a94de834-7fc7-41c3-a5b0-71a1077fb218", + "x-ms-request-id" : "40af29ea-9ce4-444c-a3f3-944b06bdbaa1", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:03 GMT", + "date" : "Mon, 18 May 2020 06:24:15 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9633", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f5abb324-eafa-4374-af8d-707e19528a8f", + "x-ms-correlation-request-id" : "cd6ca63c-2f52-49c8-8c95-41ffea4e85a2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085904Z:f5abb324-eafa-4374-af8d-707e19528a8f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062416Z:cd6ca63c-2f52-49c8-8c95-41ffea4e85a2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f5abb324-eafa-4374-af8d-707e19528a8f", + "x-ms-request-id" : "cd6ca63c-2f52-49c8-8c95-41ffea4e85a2", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:35 GMT", + "date" : "Mon, 18 May 2020 06:24:47 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10458", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e3172e7e-233f-4cb2-a503-80c73a87bf96", + "x-ms-correlation-request-id" : "5f9740ed-c110-4a2a-b446-4ddbbea2b075", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085935Z:e3172e7e-233f-4cb2-a503-80c73a87bf96", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062447Z:5f9740ed-c110-4a2a-b446-4ddbbea2b075", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e3172e7e-233f-4cb2-a503-80c73a87bf96", + "x-ms-request-id" : "5f9740ed-c110-4a2a-b446-4ddbbea2b075", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDg0NC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTMyMy1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:06 GMT", + "date" : "Mon, 18 May 2020 06:25:18 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10096", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dc2115d1-ef4a-4ed2-a1c3-8dc4c6e1a4a4", + "x-ms-correlation-request-id" : "32347748-4332-4b1f-8552-edaff2bac1a2", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090007Z:dc2115d1-ef4a-4ed2-a1c3-8dc4c6e1a4a4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062519Z:32347748-4332-4b1f-8552-edaff2bac1a2", "cache-control" : "no-cache", - "x-ms-request-id" : "dc2115d1-ef4a-4ed2-a1c3-8dc4c6e1a4a4", + "x-ms-request-id" : "32347748-4332-4b1f-8552-edaff2bac1a2", "Body" : "" } } ], - "variables" : [ "javacsmrg40844", "pip57608a", "dsk45451f", "nicjavavma6795686c", "vnet16950c6f22" ] + "variables" : [ "javacsmrg75323", "pip22052a", "dsk25689a", "nicjavavma88754087", "vnet6106638544" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithImplicitZoneForRelatedResources.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithImplicitZoneForRelatedResources.json index 8b355226ebe7..88ff1789fc0a 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithImplicitZoneForRelatedResources.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithImplicitZoneForRelatedResources.json @@ -1,982 +1,855 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg21002?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg40772?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:31 GMT", + "date" : "Mon, 18 May 2020 06:09:04 GMT", "content-length" : "310", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "683eaa65-d363-447b-966e-cb2629e88e54", + "x-ms-correlation-request-id" : "7cd7545f-b497-4127-b994-858e9cebe8d1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085732Z:683eaa65-d363-447b-966e-cb2629e88e54", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060905Z:7cd7545f-b497-4127-b994-858e9cebe8d1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "683eaa65-d363-447b-966e-cb2629e88e54", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002\",\"name\":\"javacsmrg21002\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-03-05T08:57:28.396Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "7cd7545f-b497-4127-b994-858e9cebe8d1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772\",\"name\":\"javacsmrg40772\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-05-18T06:09:01.819Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/virtualNetworks/vnet443048048c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/virtualNetworks/vnet317375be7d?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:38 GMT", + "date" : "Mon, 18 May 2020 06:09:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1343", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "38f04d4f-b7b3-4c25-a96b-de3b2cd05613", + "x-ms-correlation-request-id" : "d4d53a71-4a8b-43a9-8d13-a2d25102d26e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "9e792b1d-cce0-4d6f-b32d-4c2a2b7d047e", + "x-ms-arm-service-request-id" : "8db5d0c9-3360-4b8c-9ff9-93c3ea259155", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085739Z:38f04d4f-b7b3-4c25-a96b-de3b2cd05613", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060913Z:d4d53a71-4a8b-43a9-8d13-a2d25102d26e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "38b8c842-3ddb-4e5b-acde-6c599c630c60", - "Body" : "{\r\n \"name\": \"vnet443048048c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/virtualNetworks/vnet443048048c\",\r\n \"etag\": \"W/\\\"8ddaa6bf-4cea-4351-8a40-b62436a56e2a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f0580e23-d492-4715-ba1b-eda1dac2a199\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/virtualNetworks/vnet443048048c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8ddaa6bf-4cea-4351-8a40-b62436a56e2a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/38b8c842-3ddb-4e5b-acde-6c599c630c60?api-version=2019-06-01" + "x-ms-request-id" : "9d9abd4a-3b36-42a1-a58e-d1d6445f8e89", + "Body" : "{\r\n \"name\": \"vnet317375be7d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/virtualNetworks/vnet317375be7d\",\r\n \"etag\": \"W/\\\"c687c377-8266-4afa-9b34-4b9fcc260010\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7e367195-f6ff-45bd-9f2d-b65563859a67\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/virtualNetworks/vnet317375be7d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c687c377-8266-4afa-9b34-4b9fcc260010\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9d9abd4a-3b36-42a1-a58e-d1d6445f8e89?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/publicIPAddresses/pip31463b1e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/publicIPAddresses/pip583805a8?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:57:40 GMT", + "date" : "Mon, 18 May 2020 06:09:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "777", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3592ef45-0514-4e4d-8c08-1ef3000f9f23", + "x-ms-correlation-request-id" : "ffcc51b2-db23-4e1a-a578-edfe116fd725", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "93a7fb2b-8383-4505-95b7-0a27a9a1c01c", + "x-ms-arm-service-request-id" : "5ae1d5ad-7462-48b3-9d83-f2d6836081f7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085740Z:3592ef45-0514-4e4d-8c08-1ef3000f9f23", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060914Z:ffcc51b2-db23-4e1a-a578-edfe116fd725", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bc84be1e-06f5-488c-966b-b49a47e76de4", - "Body" : "{\r\n \"name\": \"pip31463b1e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/publicIPAddresses/pip31463b1e\",\r\n \"etag\": \"W/\\\"429d280b-88e9-4efe-8c48-4f5ee8c98683\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"50251f07-6406-46f9-8bf7-5f3ed4d63acc\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip285372\",\r\n \"fqdn\": \"pip285372.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/bc84be1e-06f5-488c-966b-b49a47e76de4?api-version=2019-06-01" + "x-ms-request-id" : "2fee1322-d7cd-461c-8997-af20dd85fa6c", + "Body" : "{\r\n \"name\": \"pip583805a8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/publicIPAddresses/pip583805a8\",\r\n \"etag\": \"W/\\\"f1033fd5-487b-4d27-870c-b69fd3d2047d\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c90de223-391b-4437-9589-5030438ed5ce\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip990200\",\r\n \"fqdn\": \"pip990200.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/2fee1322-d7cd-461c-8997-af20dd85fa6c?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/38b8c842-3ddb-4e5b-acde-6c599c630c60?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9d9abd4a-3b36-42a1-a58e-d1d6445f8e89?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:09 GMT", + "date" : "Mon, 18 May 2020 06:09:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10435", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d34134f7-d778-4bad-9910-65e9686920a4", + "x-ms-correlation-request-id" : "f7da180f-9b3e-4339-858b-bdc7c6664bb8", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6bb5266f-d696-49e3-aeed-9709b745759e", + "x-ms-arm-service-request-id" : "01b6f84b-3314-4f0f-969a-d3fbde599758", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085810Z:d34134f7-d778-4bad-9910-65e9686920a4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060945Z:f7da180f-9b3e-4339-858b-bdc7c6664bb8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5e36faee-85b0-46d7-8362-0c066c94ef35", + "x-ms-request-id" : "7b92667a-17c8-4fd0-857c-d8ca1c02a768", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/bc84be1e-06f5-488c-966b-b49a47e76de4?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/2fee1322-d7cd-461c-8997-af20dd85fa6c?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:10 GMT", + "date" : "Mon, 18 May 2020 06:09:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10115", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e224f102-7f8c-495c-82ad-c821cf727eb6", + "x-ms-correlation-request-id" : "ba2d014d-d436-4ae5-aa72-1ef918b2487b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "cab21107-8fc6-47e1-9450-6c041569678b", + "x-ms-arm-service-request-id" : "93ed8a58-e1de-4bf7-8867-4dea6ea4688a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085811Z:e224f102-7f8c-495c-82ad-c821cf727eb6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060945Z:ba2d014d-d436-4ae5-aa72-1ef918b2487b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d0ccc8fb-9544-4a6b-9cb7-90305a6e875a", + "x-ms-request-id" : "f239c818-35ba-463b-9391-fdeefa731e8e", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/virtualNetworks/vnet443048048c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/virtualNetworks/vnet317375be7d?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:40 GMT", + "date" : "Mon, 18 May 2020 06:10:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1345", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10319", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4d0adc23-97e5-4d3f-a247-fed9b9e15fa0", + "x-ms-correlation-request-id" : "e5a065c4-80cf-4c16-8dac-38fe553cd954", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "94cd94df-dbc4-4805-952a-d748cd3634c1", + "x-ms-arm-service-request-id" : "5b8bee7c-554c-467d-bc0b-4fd0b9e6ef15", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085840Z:4d0adc23-97e5-4d3f-a247-fed9b9e15fa0", - "etag" : "W/\"1a256890-08b5-4357-8f5d-f711cf99143c\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061015Z:e5a065c4-80cf-4c16-8dac-38fe553cd954", + "etag" : "W/\"52947e90-080e-44ad-9c94-2d6942fd9105\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "001b82f1-de3a-4507-89d0-1b34e11b7c14", - "Body" : "{\r\n \"name\": \"vnet443048048c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/virtualNetworks/vnet443048048c\",\r\n \"etag\": \"W/\\\"1a256890-08b5-4357-8f5d-f711cf99143c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f0580e23-d492-4715-ba1b-eda1dac2a199\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/virtualNetworks/vnet443048048c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1a256890-08b5-4357-8f5d-f711cf99143c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "18cb0dc2-0627-4838-99c2-5fbe5b68fb2e", + "Body" : "{\r\n \"name\": \"vnet317375be7d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/virtualNetworks/vnet317375be7d\",\r\n \"etag\": \"W/\\\"52947e90-080e-44ad-9c94-2d6942fd9105\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7e367195-f6ff-45bd-9f2d-b65563859a67\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/virtualNetworks/vnet317375be7d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"52947e90-080e-44ad-9c94-2d6942fd9105\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/publicIPAddresses/pip31463b1e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/publicIPAddresses/pip583805a8?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:41 GMT", + "date" : "Mon, 18 May 2020 06:10:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "778", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10106", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4e5c263d-cda1-4feb-821d-196995ea3bac", + "x-ms-correlation-request-id" : "afc2d317-6621-499a-8a47-8e1274dc641f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d1f04828-5996-422c-8ac8-1bb8f02d8b90", + "x-ms-arm-service-request-id" : "c3502877-8f72-4660-8fc8-6d1b1485fba5", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085842Z:4e5c263d-cda1-4feb-821d-196995ea3bac", - "etag" : "W/\"60f654f3-0d68-436c-8924-657e889c9fc3\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061016Z:afc2d317-6621-499a-8a47-8e1274dc641f", + "etag" : "W/\"0a4f16d4-97e9-474f-b31a-a99bee9549f8\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3627012b-89f2-490c-be82-41a1997cb548", - "Body" : "{\r\n \"name\": \"pip31463b1e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/publicIPAddresses/pip31463b1e\",\r\n \"etag\": \"W/\\\"60f654f3-0d68-436c-8924-657e889c9fc3\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"50251f07-6406-46f9-8bf7-5f3ed4d63acc\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip285372\",\r\n \"fqdn\": \"pip285372.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "9c2734c2-758a-429b-a6b4-28b8566d51e1", + "Body" : "{\r\n \"name\": \"pip583805a8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/publicIPAddresses/pip583805a8\",\r\n \"etag\": \"W/\\\"0a4f16d4-97e9-474f-b31a-a99bee9549f8\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c90de223-391b-4437-9589-5030438ed5ce\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip990200\",\r\n \"fqdn\": \"pip990200.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:58:48 GMT", + "date" : "Mon, 18 May 2020 06:10:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1855", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1145", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7a659471-a740-45bc-a1ca-786cc40f463c", + "x-ms-correlation-request-id" : "c33c7ebf-c754-4561-9553-e5012cd288b5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "9770d1e3-5cfd-418e-9c4a-a0bda6ec4a00", + "x-ms-arm-service-request-id" : "396a4414-b435-4657-b4a6-95578789dba9", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085849Z:7a659471-a740-45bc-a1ca-786cc40f463c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061037Z:c33c7ebf-c754-4561-9553-e5012cd288b5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "451f42f4-8db5-41db-a0bd-897ec3cda348", - "Body" : "{\r\n \"name\": \"nicjavavm403566343\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343\",\r\n \"etag\": \"W/\\\"d3b3a45b-7778-429a-9f7a-be74cfcdb6f2\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7992a81b-1262-4226-a997-d9167688e84a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d3b3a45b-7778-429a-9f7a-be74cfcdb6f2\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/publicIPAddresses/pip31463b1e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/virtualNetworks/vnet443048048c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"emhfr2es0qkupoq13wq3vqvbtb.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/451f42f4-8db5-41db-a0bd-897ec3cda348?api-version=2019-06-01" + "x-ms-request-id" : "28409b5b-3047-4153-a156-14f92071f4eb", + "Body" : "{\r\n \"name\": \"nicjavavmb1820075a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a\",\r\n \"etag\": \"W/\\\"9ef71360-8a45-4fb4-b26c-59c34b3ca05b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6cd11135-3673-4b36-82c8-053c0a882700\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9ef71360-8a45-4fb4-b26c-59c34b3ca05b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/publicIPAddresses/pip583805a8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/virtualNetworks/vnet317375be7d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"svytm5x5404ulhznwzkwhbm0mh.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/28409b5b-3047-4153-a156-14f92071f4eb?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/451f42f4-8db5-41db-a0bd-897ec3cda348?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/28409b5b-3047-4153-a156-14f92071f4eb?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:19 GMT", + "date" : "Mon, 18 May 2020 06:11:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10455", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7be446df-b8de-4139-958a-c0e832a87bbe", + "x-ms-correlation-request-id" : "f39d6752-2a46-4edb-8a89-e9301b811c1c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c5291b3f-4e89-4114-aa99-6fd21945c1ad", + "x-ms-arm-service-request-id" : "c545f47e-8eaa-421a-99dd-8406cc6ecbc6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085920Z:7be446df-b8de-4139-958a-c0e832a87bbe", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061108Z:f39d6752-2a46-4edb-8a89-e9301b811c1c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "911c9ae6-9481-4181-b900-041cf6ab2a20", + "x-ms-request-id" : "e634dc9b-fd3c-4242-97e7-97dc394b9d67", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:49 GMT", + "date" : "Mon, 18 May 2020 06:11:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1855", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10313", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5966732b-0a48-49d6-9326-7c400b924385", + "x-ms-correlation-request-id" : "737e4242-8dba-4a0f-9428-b59159756f35", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "55e725b3-ce66-40ac-bd77-104727f096f5", + "x-ms-arm-service-request-id" : "0df8bc64-e354-4256-93ad-7b332dfa6485", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085950Z:5966732b-0a48-49d6-9326-7c400b924385", - "etag" : "W/\"d3b3a45b-7778-429a-9f7a-be74cfcdb6f2\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061139Z:737e4242-8dba-4a0f-9428-b59159756f35", + "etag" : "W/\"9ef71360-8a45-4fb4-b26c-59c34b3ca05b\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "020adeb7-940c-42b6-b574-dbc059a78b99", - "Body" : "{\r\n \"name\": \"nicjavavm403566343\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343\",\r\n \"etag\": \"W/\\\"d3b3a45b-7778-429a-9f7a-be74cfcdb6f2\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7992a81b-1262-4226-a997-d9167688e84a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d3b3a45b-7778-429a-9f7a-be74cfcdb6f2\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/publicIPAddresses/pip31463b1e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/virtualNetworks/vnet443048048c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"emhfr2es0qkupoq13wq3vqvbtb.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "1dd124ab-4f96-450c-b63a-1c205222ab66", + "Body" : "{\r\n \"name\": \"nicjavavmb1820075a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a\",\r\n \"etag\": \"W/\\\"9ef71360-8a45-4fb4-b26c-59c34b3ca05b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6cd11135-3673-4b36-82c8-053c0a882700\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9ef71360-8a45-4fb4-b26c-59c34b3ca05b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/publicIPAddresses/pip583805a8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/virtualNetworks/vnet317375be7d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"svytm5x5404ulhznwzkwhbm0mh.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:59:55 GMT", + "date" : "Mon, 18 May 2020 06:11:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "337", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "96094a8b-2fcf-42c9-a3d8-1ab5b6904208", + "x-ms-correlation-request-id" : "8516a1bd-665d-424d-baf8-8a4cd8aa173d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;499", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085956Z:96094a8b-2fcf-42c9-a3d8-1ab5b6904208", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061146Z:8516a1bd-665d-424d-baf8-8a4cd8aa173d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "96da40b3-bff0-48e6-8e4e-dd5ad4e6b68f", - "Body" : "{\r\n \"name\": \"plg1Test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}" + "x-ms-request-id" : "01ced896-749b-4507-a155-43cfcab1604e", + "Body" : "{\r\n \"name\": \"plg1Test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:07 GMT", + "date" : "Mon, 18 May 2020 06:11:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1691", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "419a5c31-eaef-4fab-979e-4cda81d01cce", + "x-ms-correlation-request-id" : "57595b81-b7c2-4ab2-95a5-15edd3d3efb6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090007Z:419a5c31-eaef-4fab-979e-4cda81d01cce", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061154Z:57595b81-b7c2-4ab2-95a5-15edd3d3efb6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "95caf29d-d1f0-4ea3-af0c-059570b82381", - "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"31ac0f78-405f-47e6-93a3-56f2c23f1276\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/95caf29d-d1f0-4ea3-af0c-059570b82381?api-version=2019-03-01" + "x-ms-request-id" : "02f85959-03f8-47be-856c-6b92389b7c9d", + "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d4ab0a9f-6436-4e13-b176-e3a649354ed5\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/02f85959-03f8-47be-856c-6b92389b7c9d?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/95caf29d-d1f0-4ea3-af0c-059570b82381?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/02f85959-03f8-47be-856c-6b92389b7c9d?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:00:37 GMT", + "date" : "Mon, 18 May 2020 06:12:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10689", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "95647c45-cb10-454a-8258-137fd4dfd051", + "x-ms-correlation-request-id" : "b531d755-e1e2-496d-b926-aaf0c0ffb3d9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090037Z:95647c45-cb10-454a-8258-137fd4dfd051", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061225Z:b531d755-e1e2-496d-b926-aaf0c0ffb3d9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4034d637-3d3c-402a-a281-cd305007e762", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:00:05.2229473+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"95caf29d-d1f0-4ea3-af0c-059570b82381\"\r\n}" + "x-ms-request-id" : "f79ec55d-d902-4dfd-8d2b-a81403a510bc", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:11:51.9496448+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02f85959-03f8-47be-856c-6b92389b7c9d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/95caf29d-d1f0-4ea3-af0c-059570b82381?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/02f85959-03f8-47be-856c-6b92389b7c9d?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:06 GMT", + "date" : "Mon, 18 May 2020 06:12:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10681", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f99b52bb-7bda-4f98-9267-c7a84cef7b89", + "x-ms-correlation-request-id" : "e84524e2-1009-4087-852d-7462e13d9e04", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090107Z:f99b52bb-7bda-4f98-9267-c7a84cef7b89", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061255Z:e84524e2-1009-4087-852d-7462e13d9e04", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8c56eec6-db3a-4043-8ea8-0aebcee86478", - "Body" : "{\r\n \"startTime\": \"2020-03-05T09:00:05.2229473+00:00\",\r\n \"endTime\": \"2020-03-05T09:01:02.3347737+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"95caf29d-d1f0-4ea3-af0c-059570b82381\"\r\n}" + "x-ms-request-id" : "f0fa448a-edd8-45c4-b563-ce3e5170f8eb", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:11:51.9496448+00:00\",\r\n \"endTime\": \"2020-05-18T06:12:49.8119432+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"02f85959-03f8-47be-856c-6b92389b7c9d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:37 GMT", + "date" : "Mon, 18 May 2020 06:13:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1946", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10421", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "265c31f8-f259-4d8b-b79e-21dedefacce8", + "x-ms-correlation-request-id" : "9b2e0e53-f2a4-4f09-9669-ca9b3aba2faf", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090138Z:265c31f8-f259-4d8b-b79e-21dedefacce8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061326Z:9b2e0e53-f2a4-4f09-9669-ca9b3aba2faf", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "29eb3652-331a-433f-a65b-9ec93da95870", - "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"31ac0f78-405f-47e6-93a3-56f2c23f1276\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"javavm_OsDisk_1_3023337c8bfd4070a342defa54ada8db\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/disks/javavm_OsDisk_1_3023337c8bfd4070a342defa54ada8db\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}" + "x-ms-request-id" : "287ec211-84f0-4d13-b851-a510ab418c8a", + "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d4ab0a9f-6436-4e13-b176-e3a649354ed5\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"javavm_OsDisk_1_1aeb1b231a7446c89e576165809cc932\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/disks/javavm_OsDisk_1_1aeb1b231a7446c89e576165809cc932\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:37 GMT", + "date" : "Mon, 18 May 2020 06:13:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "604", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10089", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "767b1d11-62d0-409e-94f7-1cd7b9b1da9a", + "x-ms-correlation-request-id" : "f2de6120-f968-4888-a6ef-d0b5e1ae9270", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;699", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090138Z:767b1d11-62d0-409e-94f7-1cd7b9b1da9a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061327Z:f2de6120-f968-4888-a6ef-d0b5e1ae9270", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "83620a0a-c03e-4684-bff9-fa3e17fa03bf", - "Body" : "{\r\n \"name\": \"plg1Test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/virtualMachines/JAVAVM\"\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\": []\r\n }\r\n}" + "x-ms-request-id" : "73521819-c230-4928-ae1a-919ba33da059", + "Body" : "{\r\n \"name\": \"plg1Test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/virtualMachines/JAVAVM\"\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\": []\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:38 GMT", + "date" : "Mon, 18 May 2020 06:13:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "604", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10680", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f9fd8a84-2152-499c-a573-1b5fc8cd71ea", + "x-ms-correlation-request-id" : "65d70ba6-6707-4a90-a3ca-95658212239c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;138,Microsoft.Compute/HighCostGet30Min;698", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090138Z:f9fd8a84-2152-499c-a573-1b5fc8cd71ea", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061327Z:65d70ba6-6707-4a90-a3ca-95658212239c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5f5b9887-638e-47a4-8e54-e879b5a20cde", - "Body" : "{\r\n \"name\": \"plg1Test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/virtualMachines/JAVAVM\"\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\": []\r\n }\r\n}" + "x-ms-request-id" : "cde546da-fa54-4e5e-a5e4-327626a2536c", + "Body" : "{\r\n \"name\": \"plg1Test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/virtualMachines/JAVAVM\"\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\": []\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:38 GMT", + "date" : "Mon, 18 May 2020 06:13:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "604", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9791", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "838846ae-0a12-45ca-8489-934b3cd71cc5", + "x-ms-correlation-request-id" : "04a68756-c64d-4cc4-8e42-31ae287f81f3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;137,Microsoft.Compute/HighCostGet30Min;697", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090139Z:838846ae-0a12-45ca-8489-934b3cd71cc5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061327Z:04a68756-c64d-4cc4-8e42-31ae287f81f3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "01f3a1d4-8b36-49a5-a677-fd16ed769ed8", - "Body" : "{\r\n \"name\": \"plg1Test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/virtualMachines/JAVAVM\"\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\": []\r\n }\r\n}" + "x-ms-request-id" : "b3f29304-3eb7-428c-ae04-8dda75a070ce", + "Body" : "{\r\n \"name\": \"plg1Test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/virtualMachines/JAVAVM\"\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\": []\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:38 GMT", + "date" : "Mon, 18 May 2020 06:13:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "604", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10351", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bc3735be-8cc3-42ff-a44c-3d460d05f383", + "x-ms-correlation-request-id" : "46892c13-97e0-40d4-b814-35d9e0b250a3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;136,Microsoft.Compute/HighCostGet30Min;696", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090139Z:bc3735be-8cc3-42ff-a44c-3d460d05f383", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061328Z:46892c13-97e0-40d4-b814-35d9e0b250a3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "64cade0d-6628-45f6-a22e-936a865e3d80", - "Body" : "{\r\n \"name\": \"plg1Test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/virtualMachines/JAVAVM\"\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\": []\r\n }\r\n}" + "x-ms-request-id" : "057e2c6e-dd25-456c-8363-25863806e1c6", + "Body" : "{\r\n \"name\": \"plg1Test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/proximityPlacementGroups/plg1Test\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/virtualMachines/JAVAVM\"\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\": []\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:01:54 GMT", + "date" : "Mon, 18 May 2020 06:13:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2098", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10086", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f01a0aab-09ba-43a9-8d00-296be97a5a45", + "x-ms-correlation-request-id" : "d3d554f0-a22d-4f12-b19a-4354267a8021", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "46e13cd6-36db-4ba4-adad-2b593048edd9", + "x-ms-arm-service-request-id" : "675d2031-241b-4082-be67-ac6b7f530b8b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090155Z:f01a0aab-09ba-43a9-8d00-296be97a5a45", - "etag" : "W/\"a862dddb-92da-42ad-b2e7-f6adb12f3f74\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061329Z:d3d554f0-a22d-4f12-b19a-4354267a8021", + "etag" : "W/\"8559135b-999f-477f-aa3f-f5908684725c\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "83ca1d3d-24f4-4ee1-93b5-170bd46741c3", - "Body" : "{\r\n \"name\": \"nicjavavm403566343\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343\",\r\n \"etag\": \"W/\\\"a862dddb-92da-42ad-b2e7-f6adb12f3f74\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7992a81b-1262-4226-a997-d9167688e84a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a862dddb-92da-42ad-b2e7-f6adb12f3f74\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/publicIPAddresses/pip31463b1e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/virtualNetworks/vnet443048048c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"emhfr2es0qkupoq13wq3vqvbtb.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-7E-0E-6E\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Compute/virtualMachines/javavm\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "f0edfb95-c846-4b5c-96e5-fd23914a296d", + "Body" : "{\r\n \"name\": \"nicjavavmb1820075a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a\",\r\n \"etag\": \"W/\\\"8559135b-999f-477f-aa3f-f5908684725c\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6cd11135-3673-4b36-82c8-053c0a882700\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8559135b-999f-477f-aa3f-f5908684725c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/publicIPAddresses/pip583805a8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/virtualNetworks/vnet317375be7d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"svytm5x5404ulhznwzkwhbm0mh.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-03-E8-C8\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Compute/virtualMachines/javavm\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/publicIPAddresses/pip31463b1e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/publicIPAddresses/pip583805a8?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:11 GMT", + "date" : "Mon, 18 May 2020 06:13:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1034", + "content-length" : "1033", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10102", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c1d1cc21-b82f-42ec-a4b7-6bb9291ba98c", + "x-ms-correlation-request-id" : "d7a816d7-15e6-45ed-a998-47e9b3044645", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "fe3a18b4-1309-4092-a828-51f31b628197", + "x-ms-arm-service-request-id" : "e1c7a224-082b-470d-8c83-081c9cb05449", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090212Z:c1d1cc21-b82f-42ec-a4b7-6bb9291ba98c", - "etag" : "W/\"f43ba07b-4a11-400c-bfc0-7a01df767af3\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061329Z:d7a816d7-15e6-45ed-a998-47e9b3044645", + "etag" : "W/\"731480fc-36f6-4576-870f-676276ccd139\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "682d062e-43c7-45c9-b2f3-714404d21245", - "Body" : "{\r\n \"name\": \"pip31463b1e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/publicIPAddresses/pip31463b1e\",\r\n \"etag\": \"W/\\\"f43ba07b-4a11-400c-bfc0-7a01df767af3\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"50251f07-6406-46f9-8bf7-5f3ed4d63acc\",\r\n \"ipAddress\": \"52.247.26.180\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip285372\",\r\n \"fqdn\": \"pip285372.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Network/networkInterfaces/nicjavavm403566343/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "d80bc30b-cac3-4225-aa7e-0d9f47f9fe88", + "Body" : "{\r\n \"name\": \"pip583805a8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/publicIPAddresses/pip583805a8\",\r\n \"etag\": \"W/\\\"731480fc-36f6-4576-870f-676276ccd139\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c90de223-391b-4437-9589-5030438ed5ce\",\r\n \"ipAddress\": \"52.254.84.52\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip990200\",\r\n \"fqdn\": \"pip990200.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Network/networkInterfaces/nicjavavmb1820075a/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/disks/javavm_OsDisk_1_3023337c8bfd4070a342defa54ada8db?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/disks/javavm_OsDisk_1_1aeb1b231a7446c89e576165809cc932?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:12 GMT", + "date" : "Mon, 18 May 2020 06:13:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1278", + "content-length" : "1356", "expires" : "-1", - "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132143902767758154", + "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132307948826283056", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10672", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fdcf3163-e1a9-4ef2-b0cf-85a5cf1f11ec", + "x-ms-correlation-request-id" : "2b9298d5-83c7-4d5e-9a17-d35b06740fe0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090212Z:fdcf3163-e1a9-4ef2-b0cf-85a5cf1f11ec", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061330Z:2b9298d5-83c7-4d5e-9a17-d35b06740fe0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "be957d2f-2235-4fe0-bb2d-a166a0dd31e6", - "Body" : "{\r\n \"name\": \"javavm_OsDisk_1_3023337c8bfd4070a342defa54ada8db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21002/providers/Microsoft.Compute/disks/javavm_OsDisk_1_3023337c8bfd4070a342defa54ada8db\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21002/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202002181\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T09:00:05.7215199+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"3023337c-8bfd-4070-a342-defa54ada8db\"\r\n }\r\n}" + "x-ms-request-id" : "e6196129-d4d6-4147-87a9-87e5c38827ef", + "Body" : "{\r\n \"name\": \"javavm_OsDisk_1_1aeb1b231a7446c89e576165809cc932\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG40772/providers/Microsoft.Compute/disks/javavm_OsDisk_1_1aeb1b231a7446c89e576165809cc932\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg40772/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:11:52.6907237+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1aeb1b23-1a74-46c8-9e57-6165809cc932\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg21002?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:19 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14992", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "24f62b96-d584-4da3-aa81-b6305a4b726c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090219Z:24f62b96-d584-4da3-aa81-b6305a4b726c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "24f62b96-d584-4da3-aa81-b6305a4b726c", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg40772?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:02:50 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10432", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "62a10e93-5a1d-4a4f-9e4a-0a7b159b6b1e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090250Z:62a10e93-5a1d-4a4f-9e4a-0a7b159b6b1e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "62a10e93-5a1d-4a4f-9e4a-0a7b159b6b1e", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:03:21 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9956", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "de50c7b4-4608-4cb6-893c-999c32c3a295", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090321Z:de50c7b4-4608-4cb6-893c-999c32c3a295", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "de50c7b4-4608-4cb6-893c-999c32c3a295", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:03:52 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10283", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b542c66c-d59d-4eab-8233-c5d3960a81bd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090353Z:b542c66c-d59d-4eab-8233-c5d3960a81bd", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "b542c66c-d59d-4eab-8233-c5d3960a81bd", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:04:24 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10669", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "40762edf-10d4-4269-9926-ca11db96ef88", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090424Z:40762edf-10d4-4269-9926-ca11db96ef88", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "40762edf-10d4-4269-9926-ca11db96ef88", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 09:04:55 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10650", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c62fc90b-2a02-4e18-b40b-b3337f5d9780", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090456Z:c62fc90b-2a02-4e18-b40b-b3337f5d9780", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "c62fc90b-2a02-4e18-b40b-b3337f5d9780", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:05:26 GMT", + "date" : "Mon, 18 May 2020 06:13:34 GMT", "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10209", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dcbac4d5-ebcd-434d-a5ad-0c6520933499", + "x-ms-correlation-request-id" : "16c683f0-afa2-47a8-99ec-65e13e2bda55", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090527Z:dcbac4d5-ebcd-434d-a5ad-0c6520933499", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061334Z:16c683f0-afa2-47a8-99ec-65e13e2bda55", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "dcbac4d5-ebcd-434d-a5ad-0c6520933499", + "x-ms-request-id" : "16c683f0-afa2-47a8-99ec-65e13e2bda55", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:05:57 GMT", + "date" : "Mon, 18 May 2020 06:14:06 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10665", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "74617b55-7194-4507-94b7-bbb77a34d43b", + "x-ms-correlation-request-id" : "82ddfe46-e54a-4a58-98ed-a2200de30c7a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090558Z:74617b55-7194-4507-94b7-bbb77a34d43b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061406Z:82ddfe46-e54a-4a58-98ed-a2200de30c7a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "74617b55-7194-4507-94b7-bbb77a34d43b", + "x-ms-request-id" : "82ddfe46-e54a-4a58-98ed-a2200de30c7a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:06:28 GMT", + "date" : "Mon, 18 May 2020 06:14:37 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10663", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "29a7f719-8dbb-407d-954d-f592f6068084", + "x-ms-correlation-request-id" : "825e87af-c394-4869-a76a-858dcda408a1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090629Z:29a7f719-8dbb-407d-954d-f592f6068084", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061437Z:825e87af-c394-4869-a76a-858dcda408a1", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "29a7f719-8dbb-407d-954d-f592f6068084", + "x-ms-request-id" : "825e87af-c394-4869-a76a-858dcda408a1", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:07:00 GMT", + "date" : "Mon, 18 May 2020 06:15:08 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10308", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cea6ce99-6b19-4737-9e36-3d9143738647", + "x-ms-correlation-request-id" : "67c3e039-37ec-43a2-9b9d-05ecb504240c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090700Z:cea6ce99-6b19-4737-9e36-3d9143738647", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061509Z:67c3e039-37ec-43a2-9b9d-05ecb504240c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "cea6ce99-6b19-4737-9e36-3d9143738647", + "x-ms-request-id" : "67c3e039-37ec-43a2-9b9d-05ecb504240c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:07:30 GMT", + "date" : "Mon, 18 May 2020 06:15:39 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10264", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7063067b-8069-4673-a2cd-b591f2765f3b", + "x-ms-correlation-request-id" : "48ccfe31-702c-4101-8e5f-32e361371120", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090731Z:7063067b-8069-4673-a2cd-b591f2765f3b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061540Z:48ccfe31-702c-4101-8e5f-32e361371120", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "7063067b-8069-4673-a2cd-b591f2765f3b", + "x-ms-request-id" : "48ccfe31-702c-4101-8e5f-32e361371120", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:08:02 GMT", + "date" : "Mon, 18 May 2020 06:16:10 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9746", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c29a063e-318a-4f4d-8a70-22841c7d323d", + "x-ms-correlation-request-id" : "87274065-9d6a-4bc7-b872-29a7f81790dd", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090802Z:c29a063e-318a-4f4d-8a70-22841c7d323d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061610Z:87274065-9d6a-4bc7-b872-29a7f81790dd", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "c29a063e-318a-4f4d-8a70-22841c7d323d", + "x-ms-request-id" : "87274065-9d6a-4bc7-b872-29a7f81790dd", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:08:32 GMT", + "date" : "Mon, 18 May 2020 06:16:40 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10410", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a0859b7e-4d59-450f-b49c-848e3faa06b7", + "x-ms-correlation-request-id" : "34d0bc9f-f888-4a17-80d7-1c3d71db5cb7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090833Z:a0859b7e-4d59-450f-b49c-848e3faa06b7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061641Z:34d0bc9f-f888-4a17-80d7-1c3d71db5cb7", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a0859b7e-4d59-450f-b49c-848e3faa06b7", + "x-ms-request-id" : "34d0bc9f-f888-4a17-80d7-1c3d71db5cb7", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:09:04 GMT", + "date" : "Mon, 18 May 2020 06:17:11 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9741", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2d609e95-9e07-4dc9-92a8-aed2160e2d0c", + "x-ms-correlation-request-id" : "23804033-f9c0-4de5-8c6f-c80e5f1184fc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090904Z:2d609e95-9e07-4dc9-92a8-aed2160e2d0c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061712Z:23804033-f9c0-4de5-8c6f-c80e5f1184fc", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "2d609e95-9e07-4dc9-92a8-aed2160e2d0c", + "x-ms-request-id" : "23804033-f9c0-4de5-8c6f-c80e5f1184fc", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:09:35 GMT", + "date" : "Mon, 18 May 2020 06:17:43 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10255", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "533c8563-2b16-4f33-8a0c-d02930ba5566", + "x-ms-correlation-request-id" : "95e690a3-17b0-437b-b887-92e9959218c1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T090935Z:533c8563-2b16-4f33-8a0c-d02930ba5566", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061743Z:95e690a3-17b0-437b-b887-92e9959218c1", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "533c8563-2b16-4f33-8a0c-d02930ba5566", + "x-ms-request-id" : "95e690a3-17b0-437b-b887-92e9959218c1", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:10:06 GMT", + "date" : "Mon, 18 May 2020 06:18:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10335", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "82c2f775-7998-4e1e-9b51-f2e91d5e8572", + "x-ms-correlation-request-id" : "6eed46bd-3e3b-45b1-9528-fdb93b244144", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091006Z:82c2f775-7998-4e1e-9b51-f2e91d5e8572", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061813Z:6eed46bd-3e3b-45b1-9528-fdb93b244144", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "82c2f775-7998-4e1e-9b51-f2e91d5e8572", + "x-ms-request-id" : "6eed46bd-3e3b-45b1-9528-fdb93b244144", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:10:37 GMT", + "date" : "Mon, 18 May 2020 06:18:43 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10388", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2131b3af-1f19-4910-a92d-0d05151a76e2", + "x-ms-correlation-request-id" : "f46189c9-5035-4bab-a8f7-f75f3d8045ad", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091037Z:2131b3af-1f19-4910-a92d-0d05151a76e2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061844Z:f46189c9-5035-4bab-a8f7-f75f3d8045ad", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "2131b3af-1f19-4910-a92d-0d05151a76e2", + "x-ms-request-id" : "f46189c9-5035-4bab-a8f7-f75f3d8045ad", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTAwMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MDc3Mi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 09:11:07 GMT", + "date" : "Mon, 18 May 2020 06:19:15 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10048", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b6aa6db0-1fab-4d2b-adb2-a43acfac02a1", + "x-ms-correlation-request-id" : "e2cfa834-aa32-4cc6-9157-17691d66b5e7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T091108Z:b6aa6db0-1fab-4d2b-adb2-a43acfac02a1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061915Z:e2cfa834-aa32-4cc6-9157-17691d66b5e7", "cache-control" : "no-cache", - "x-ms-request-id" : "b6aa6db0-1fab-4d2b-adb2-a43acfac02a1", + "x-ms-request-id" : "e2cfa834-aa32-4cc6-9157-17691d66b5e7", "Body" : "" } } ], - "variables" : [ "javacsmrg21002", "pip285372", "nicjavavm403566343", "vnet443048048c", "pip31463b1e" ] + "variables" : [ "javacsmrg40772", "pip990200", "nicjavavmb1820075a", "vnet317375be7d", "pip583805a8" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithZoneResilientPublicIP.json b/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithZoneResilientPublicIP.json index dd7ee48400e7..11ce15d644a9 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithZoneResilientPublicIP.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canCreateZonedVirtualMachineWithZoneResilientPublicIP.json @@ -1,1109 +1,747 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg78056?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg21879?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:36:59 GMT", + "date" : "Mon, 18 May 2020 06:09:05 GMT", "content-length" : "310", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ff5d1bf-3609-4570-bf44-abd1d8095cb9", + "x-ms-correlation-request-id" : "2a31f2b8-e921-4ffe-8cad-0115e07efb64", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083700Z:8ff5d1bf-3609-4570-bf44-abd1d8095cb9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060905Z:2a31f2b8-e921-4ffe-8cad-0115e07efb64", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8ff5d1bf-3609-4570-bf44-abd1d8095cb9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056\",\"name\":\"javacsmrg78056\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-03-05T08:36:56.309Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "2a31f2b8-e921-4ffe-8cad-0115e07efb64", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879\",\"name\":\"javacsmrg21879\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-05-18T06:09:01.820Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/publicIPAddresses/pip186162?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/publicIPAddresses/pip954276?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:09 GMT", + "date" : "Mon, 18 May 2020 06:09:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "623", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "daff79e2-ba65-44d9-95c8-51e439a8e4bb", + "x-ms-correlation-request-id" : "d615e297-2ad7-4ae9-bab0-7fd067cef2fb", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e7ac5d76-e965-4430-b02f-81d922d0378b", + "x-ms-arm-service-request-id" : "fbaa6c47-261c-4694-855e-2d9879dc3e85", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083710Z:daff79e2-ba65-44d9-95c8-51e439a8e4bb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060914Z:d615e297-2ad7-4ae9-bab0-7fd067cef2fb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "03eecfab-1ba7-48e0-85f9-f10bd5f1d5da", - "Body" : "{\r\n \"name\": \"pip186162\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/publicIPAddresses/pip186162\",\r\n \"etag\": \"W/\\\"5fe02df8-a8ce-4e01-8833-2d8e241c1cc8\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b0b00ec7-7b06-412a-a1b9-57786df43ed0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/03eecfab-1ba7-48e0-85f9-f10bd5f1d5da?api-version=2019-06-01" + "x-ms-request-id" : "66c62d76-3fff-43aa-b3c8-5c41448966fc", + "Body" : "{\r\n \"name\": \"pip954276\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/publicIPAddresses/pip954276\",\r\n \"etag\": \"W/\\\"a8cbb538-a80f-41aa-a734-9096e20182f8\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1b666f9a-4f15-496b-8b7b-bd00304946b3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/66c62d76-3fff-43aa-b3c8-5c41448966fc?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/03eecfab-1ba7-48e0-85f9-f10bd5f1d5da?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/66c62d76-3fff-43aa-b3c8-5c41448966fc?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:40 GMT", + "date" : "Mon, 18 May 2020 06:09:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10105", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e48be773-b499-4b2f-8e2e-9fecc0eb1953", + "x-ms-correlation-request-id" : "3d1e0c03-060b-4a1d-9058-b32e1b7f95d9", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4fe86f21-2906-4e7a-b6c2-2590bfdcaefa", + "x-ms-arm-service-request-id" : "38524f54-5e99-409c-a0d4-f3834e5eb884", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083741Z:e48be773-b499-4b2f-8e2e-9fecc0eb1953", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T060946Z:3d1e0c03-060b-4a1d-9058-b32e1b7f95d9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cd20fb6a-5606-4694-900f-9e6a6cdad763", + "x-ms-request-id" : "f436d800-e237-443e-899d-ea49e6f06c16", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/publicIPAddresses/pip186162?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/publicIPAddresses/pip954276?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:11 GMT", + "date" : "Mon, 18 May 2020 06:10:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "658", + "content-length" : "660", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10575", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "11aabad5-3033-46d7-89a5-608a8ea83ef3", + "x-ms-correlation-request-id" : "4fc80a75-21d9-484b-9756-06ae48efbabe", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ebd987a0-6c77-48bc-bf7c-5e7aef846371", + "x-ms-arm-service-request-id" : "434cb264-b684-44b1-9329-58e0f2036a58", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083811Z:11aabad5-3033-46d7-89a5-608a8ea83ef3", - "etag" : "W/\"d15978bf-d678-45f0-84cd-91959fb51ed0\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061016Z:4fc80a75-21d9-484b-9756-06ae48efbabe", + "etag" : "W/\"20bd64f2-1f8d-44a2-bbff-5c932ee95e05\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5ce5899c-292c-4e89-87c9-13a6ed228444", - "Body" : "{\r\n \"name\": \"pip186162\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/publicIPAddresses/pip186162\",\r\n \"etag\": \"W/\\\"d15978bf-d678-45f0-84cd-91959fb51ed0\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0b00ec7-7b06-412a-a1b9-57786df43ed0\",\r\n \"ipAddress\": \"40.70.160.93\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}" + "x-ms-request-id" : "6a61ed07-0d33-4fa6-a9fa-eb28a26f51d8", + "Body" : "{\r\n \"name\": \"pip954276\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/publicIPAddresses/pip954276\",\r\n \"etag\": \"W/\\\"20bd64f2-1f8d-44a2-bbff-5c932ee95e05\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1b666f9a-4f15-496b-8b7b-bd00304946b3\",\r\n \"ipAddress\": \"52.177.243.220\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg78056?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg21879?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:15 GMT", + "date" : "Mon, 18 May 2020 06:10:20 GMT", "content-length" : "310", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a349520c-7dea-4101-a85f-b5d1a4cf0f12", + "x-ms-correlation-request-id" : "3a3b8355-f9a0-4e82-839a-d054a8f9e0ae", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083816Z:a349520c-7dea-4101-a85f-b5d1a4cf0f12", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061020Z:3a3b8355-f9a0-4e82-839a-d054a8f9e0ae", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a349520c-7dea-4101-a85f-b5d1a4cf0f12", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056\",\"name\":\"javacsmrg78056\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-03-05T08:38:11.585Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "3a3b8355-f9a0-4e82-839a-d054a8f9e0ae", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879\",\"name\":\"javacsmrg21879\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-05-18T06:10:17.208Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/virtualNetworks/vnet78351f19b2?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/virtualNetworks/vnet61101bda7b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:24 GMT", + "date" : "Mon, 18 May 2020 06:10:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1343", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e9624bbe-1d30-40e4-a3de-bb7236b4e5c8", + "x-ms-correlation-request-id" : "32c234a3-3da5-472b-8c16-34377370485f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ad2ae3ab-027e-4782-ba1e-973af534c280", + "x-ms-arm-service-request-id" : "df32d1c3-8dee-4329-b50e-2c9dfe692f86", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083825Z:e9624bbe-1d30-40e4-a3de-bb7236b4e5c8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061039Z:32c234a3-3da5-472b-8c16-34377370485f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "eed6b781-3024-4b75-a20d-8f750f145b2c", - "Body" : "{\r\n \"name\": \"vnet78351f19b2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/virtualNetworks/vnet78351f19b2\",\r\n \"etag\": \"W/\\\"1ba9d973-ac60-46ea-b684-8a8041d78c57\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d833a2f0-5411-4995-a9fe-88f0b94c5b2e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/virtualNetworks/vnet78351f19b2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1ba9d973-ac60-46ea-b684-8a8041d78c57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/eed6b781-3024-4b75-a20d-8f750f145b2c?api-version=2019-06-01" + "x-ms-request-id" : "af548a02-a552-4b6c-ac7f-6e441f26a5b7", + "Body" : "{\r\n \"name\": \"vnet61101bda7b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/virtualNetworks/vnet61101bda7b\",\r\n \"etag\": \"W/\\\"de4d81cc-2c53-4493-a8e0-d13447fc2cdd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dc5b021e-1b25-46bf-88af-0ae512b973b1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/virtualNetworks/vnet61101bda7b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"de4d81cc-2c53-4493-a8e0-d13447fc2cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/af548a02-a552-4b6c-ac7f-6e441f26a5b7?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/eed6b781-3024-4b75-a20d-8f750f145b2c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/af548a02-a552-4b6c-ac7f-6e441f26a5b7?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:55 GMT", + "date" : "Mon, 18 May 2020 06:11:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9962", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8e74889e-cbac-4ee0-8c2c-f707044d6aaf", + "x-ms-correlation-request-id" : "3b8c646d-5e40-4aeb-83fb-98aca13f3127", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d81ea2e5-aef0-4749-938d-8c7eed31ea4a", + "x-ms-arm-service-request-id" : "ae735621-dff9-483f-88d0-cbda058e6194", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083856Z:8e74889e-cbac-4ee0-8c2c-f707044d6aaf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061110Z:3b8c646d-5e40-4aeb-83fb-98aca13f3127", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8ab217fa-3c23-4eea-9d0f-468400a520f9", + "x-ms-request-id" : "81a252a7-52f3-42fb-83db-1938a962fb8e", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/virtualNetworks/vnet78351f19b2?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/virtualNetworks/vnet61101bda7b?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:26 GMT", + "date" : "Mon, 18 May 2020 06:11:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1345", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10573", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ff0c66e4-9e96-4124-b537-b94cad814714", + "x-ms-correlation-request-id" : "dbc212af-4f24-4090-bdff-fe4f4935055e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f7695d02-cd42-496b-8224-9185a37ecd34", + "x-ms-arm-service-request-id" : "7f459ec0-e7a7-4dff-aa45-bab7430bc96a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083926Z:ff0c66e4-9e96-4124-b537-b94cad814714", - "etag" : "W/\"12480365-509f-4e98-a920-d0b68f445644\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061141Z:dbc212af-4f24-4090-bdff-fe4f4935055e", + "etag" : "W/\"a0e38364-f596-4652-b330-a660271b5007\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "973b5804-cdcc-4e3e-bb13-7c3c250f4ab0", - "Body" : "{\r\n \"name\": \"vnet78351f19b2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/virtualNetworks/vnet78351f19b2\",\r\n \"etag\": \"W/\\\"12480365-509f-4e98-a920-d0b68f445644\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d833a2f0-5411-4995-a9fe-88f0b94c5b2e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/virtualNetworks/vnet78351f19b2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"12480365-509f-4e98-a920-d0b68f445644\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "cc478b1e-fafd-47c1-b341-46b0d6856e6e", + "Body" : "{\r\n \"name\": \"vnet61101bda7b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/virtualNetworks/vnet61101bda7b\",\r\n \"etag\": \"W/\\\"a0e38364-f596-4652-b330-a660271b5007\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc5b021e-1b25-46bf-88af-0ae512b973b1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/virtualNetworks/vnet61101bda7b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"a0e38364-f596-4652-b330-a660271b5007\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:35 GMT", + "date" : "Mon, 18 May 2020 06:11:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1853", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f2271bab-2b20-4cf6-8e2f-9702176e8ed8", + "x-ms-correlation-request-id" : "8d9999e6-92dd-49bc-8e4b-3495c10e29ef", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "9069ba17-1281-4786-ac9a-20ba917a6e68", + "x-ms-arm-service-request-id" : "f69989cd-1f91-4e81-b812-9d8199df41af", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083935Z:f2271bab-2b20-4cf6-8e2f-9702176e8ed8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061146Z:8d9999e6-92dd-49bc-8e4b-3495c10e29ef", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8fb0ba77-2f6e-4a9b-bc43-d773e62f0952", - "Body" : "{\r\n \"name\": \"nicjavavm2f1637191\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191\",\r\n \"etag\": \"W/\\\"af7e41ba-0d9d-4701-8971-10b22ddbe1f8\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c92bb052-f118-4af9-83d8-ec35efdf93ca\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"af7e41ba-0d9d-4701-8971-10b22ddbe1f8\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/publicIPAddresses/pip186162\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/virtualNetworks/vnet78351f19b2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4crdhwarkskutkp4rdylstc1fg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8fb0ba77-2f6e-4a9b-bc43-d773e62f0952?api-version=2019-06-01" + "x-ms-request-id" : "0d84dd1e-d951-434b-ac33-7b66393fa731", + "Body" : "{\r\n \"name\": \"nicjavavmc6e982517\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517\",\r\n \"etag\": \"W/\\\"c432c569-b8ec-48a9-a904-4d06a66cafa7\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"79ae47e5-e3c2-44a2-8f05-18a33eb73ba0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c432c569-b8ec-48a9-a904-4d06a66cafa7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/publicIPAddresses/pip954276\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/virtualNetworks/vnet61101bda7b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dybfxxbfdo5uncfpblsrfoltwb.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/0d84dd1e-d951-434b-ac33-7b66393fa731?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8fb0ba77-2f6e-4a9b-bc43-d773e62f0952?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/0d84dd1e-d951-434b-ac33-7b66393fa731?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:06 GMT", + "date" : "Mon, 18 May 2020 06:12:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10570", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7be2353e-bc29-4d6c-ab05-6d290aaf4fca", + "x-ms-correlation-request-id" : "86477064-4f59-449f-bfa4-8c65f2836a6c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "59cfe556-3ca2-4180-84a1-75563d040159", + "x-ms-arm-service-request-id" : "cb28f80c-6f92-4ce1-a518-d498d942bd9b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084006Z:7be2353e-bc29-4d6c-ab05-6d290aaf4fca", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061217Z:86477064-4f59-449f-bfa4-8c65f2836a6c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7fd0043d-c4c7-44c2-907f-0a6d34befc16", + "x-ms-request-id" : "124b5bbc-f678-4d9f-9235-2d10dc718340", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:37 GMT", + "date" : "Mon, 18 May 2020 06:12:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1853", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10859", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "de6ddf9b-21de-4e0e-8b67-ed8313a1d3da", + "x-ms-correlation-request-id" : "fe70eef9-f927-4129-ba80-49ecda4b933b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e01c6040-fe18-40d7-93db-2791161a2cb1", + "x-ms-arm-service-request-id" : "90dc642b-be52-4bfc-b95d-4c0dcdc0e91a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084037Z:de6ddf9b-21de-4e0e-8b67-ed8313a1d3da", - "etag" : "W/\"af7e41ba-0d9d-4701-8971-10b22ddbe1f8\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061247Z:fe70eef9-f927-4129-ba80-49ecda4b933b", + "etag" : "W/\"c432c569-b8ec-48a9-a904-4d06a66cafa7\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "26118f9b-7265-4920-a9ca-469fe8101c66", - "Body" : "{\r\n \"name\": \"nicjavavm2f1637191\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191\",\r\n \"etag\": \"W/\\\"af7e41ba-0d9d-4701-8971-10b22ddbe1f8\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c92bb052-f118-4af9-83d8-ec35efdf93ca\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"af7e41ba-0d9d-4701-8971-10b22ddbe1f8\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/publicIPAddresses/pip186162\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/virtualNetworks/vnet78351f19b2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4crdhwarkskutkp4rdylstc1fg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "561601f5-fe04-4f13-87f0-7c1af9ab121e", + "Body" : "{\r\n \"name\": \"nicjavavmc6e982517\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517\",\r\n \"etag\": \"W/\\\"c432c569-b8ec-48a9-a904-4d06a66cafa7\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"79ae47e5-e3c2-44a2-8f05-18a33eb73ba0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c432c569-b8ec-48a9-a904-4d06a66cafa7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/publicIPAddresses/pip954276\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/virtualNetworks/vnet61101bda7b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dybfxxbfdo5uncfpblsrfoltwb.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:45 GMT", + "date" : "Mon, 18 May 2020 06:12:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1490", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "771275c5-fd0f-48cd-8750-affc79e071e4", + "x-ms-correlation-request-id" : "6601b416-3865-457f-b914-d36dc68e9b92", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084046Z:771275c5-fd0f-48cd-8750-affc79e071e4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061255Z:6601b416-3865-457f-b914-d36dc68e9b92", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5d82dcd0-8c76-402c-bef5-700940e298e8", - "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e3e417c4-2904-4811-b8ba-f9cb06644715\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5d82dcd0-8c76-402c-bef5-700940e298e8?api-version=2019-03-01" + "x-ms-request-id" : "e97c3d08-dc8b-45c2-b07b-7987c7c57ce8", + "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"68ea6e56-54e7-4c0b-9630-e182e27a735a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/e97c3d08-dc8b-45c2-b07b-7987c7c57ce8?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5d82dcd0-8c76-402c-bef5-700940e298e8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/e97c3d08-dc8b-45c2-b07b-7987c7c57ce8?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:16 GMT", + "date" : "Mon, 18 May 2020 06:13:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9944", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3e5ee09d-3854-44c1-81d6-bbadbb453f63", + "x-ms-correlation-request-id" : "dc131185-a992-400c-89ef-b8c8cf879655", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084116Z:3e5ee09d-3854-44c1-81d6-bbadbb453f63", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061325Z:dc131185-a992-400c-89ef-b8c8cf879655", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2d657e6c-8983-4d1c-aca3-5754eff53d24", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:44.0184583+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5d82dcd0-8c76-402c-bef5-700940e298e8\"\r\n}" + "x-ms-request-id" : "19406e12-098d-4348-b43e-a0c262a54e3b", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:12:53.7027622+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e97c3d08-dc8b-45c2-b07b-7987c7c57ce8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5d82dcd0-8c76-402c-bef5-700940e298e8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/e97c3d08-dc8b-45c2-b07b-7987c7c57ce8?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:45 GMT", + "date" : "Mon, 18 May 2020 06:13:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10505", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7ad904cf-f4e8-46cb-82ee-9d9d47ac7706", + "x-ms-correlation-request-id" : "9819bac3-b5ce-4bc9-b21a-e99d8d9a5575", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084146Z:7ad904cf-f4e8-46cb-82ee-9d9d47ac7706", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061356Z:9819bac3-b5ce-4bc9-b21a-e99d8d9a5575", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d0791902-4b4d-467b-ab69-6fb40da9aa43", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:44.0184583+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5d82dcd0-8c76-402c-bef5-700940e298e8\"\r\n}" + "x-ms-request-id" : "db49f6d8-249b-4c39-bed6-52459719c59e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:12:53.7027622+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e97c3d08-dc8b-45c2-b07b-7987c7c57ce8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5d82dcd0-8c76-402c-bef5-700940e298e8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/e97c3d08-dc8b-45c2-b07b-7987c7c57ce8?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:16 GMT", + "date" : "Mon, 18 May 2020 06:14:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10553", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d1df5c62-d5be-4af2-8b2d-1bef9691a4cb", + "x-ms-correlation-request-id" : "8f73df90-72e3-44f3-9e54-40d74c0589e4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084216Z:d1df5c62-d5be-4af2-8b2d-1bef9691a4cb", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061427Z:8f73df90-72e3-44f3-9e54-40d74c0589e4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "08b3074b-9412-4aa8-8dd7-7e3a332c7e04", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:40:44.0184583+00:00\",\r\n \"endTime\": \"2020-03-05T08:41:49.9275352+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5d82dcd0-8c76-402c-bef5-700940e298e8\"\r\n}" + "x-ms-request-id" : "24e0fd21-c6fd-46e0-9eb1-6b9c67e9d581", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:12:53.7027622+00:00\",\r\n \"endTime\": \"2020-05-18T06:14:02.2843331+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e97c3d08-dc8b-45c2-b07b-7987c7c57ce8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:47 GMT", + "date" : "Mon, 18 May 2020 06:14:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1745", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10197", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b9ad63dc-0ba9-41ce-82ce-d28e8c5d34fb", + "x-ms-correlation-request-id" : "ac77d45d-6927-4c29-b3d9-d3dcb36fce74", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084247Z:b9ad63dc-0ba9-41ce-82ce-d28e8c5d34fb", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061457Z:ac77d45d-6927-4c29-b3d9-d3dcb36fce74", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d6baa656-9c77-4ae5-8d78-ebe5d81c176b", - "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e3e417c4-2904-4811-b8ba-f9cb06644715\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"javavm_OsDisk_1_53c71306516349e4afa61000ad447aee\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG78056/providers/Microsoft.Compute/disks/javavm_OsDisk_1_53c71306516349e4afa61000ad447aee\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}" + "x-ms-request-id" : "d272298a-9e37-44df-9a5c-8ea18a3c73c4", + "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"68ea6e56-54e7-4c0b-9630-e182e27a735a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"javavm_OsDisk_1_2028cfe1402c4a5ea97b98b898dbb9ee\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG21879/providers/Microsoft.Compute/disks/javavm_OsDisk_1_2028cfe1402c4a5ea97b98b898dbb9ee\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:48 GMT", + "date" : "Mon, 18 May 2020 06:14:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2096", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10257", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "192eeed5-0b11-4905-979c-a041e13b8f28", + "x-ms-correlation-request-id" : "7172079e-5623-42c3-b177-1d01df2a765e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4829f61c-25fa-4534-8467-60e4fb2bca43", + "x-ms-arm-service-request-id" : "45598ca3-c609-4025-8ded-4745c8744cd4", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084248Z:192eeed5-0b11-4905-979c-a041e13b8f28", - "etag" : "W/\"cb78bced-55d6-4624-9d32-2c5b1135b760\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061458Z:7172079e-5623-42c3-b177-1d01df2a765e", + "etag" : "W/\"6d16f226-9fa8-47d1-a3db-60e4d4e397bc\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8994e153-d74f-41c4-b066-c552f3698f6c", - "Body" : "{\r\n \"name\": \"nicjavavm2f1637191\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191\",\r\n \"etag\": \"W/\\\"cb78bced-55d6-4624-9d32-2c5b1135b760\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c92bb052-f118-4af9-83d8-ec35efdf93ca\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"cb78bced-55d6-4624-9d32-2c5b1135b760\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/publicIPAddresses/pip186162\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/virtualNetworks/vnet78351f19b2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4crdhwarkskutkp4rdylstc1fg.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-0F-5E-70\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Compute/virtualMachines/javavm\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "be703466-721a-4827-978e-ee6acf106199", + "Body" : "{\r\n \"name\": \"nicjavavmc6e982517\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517\",\r\n \"etag\": \"W/\\\"6d16f226-9fa8-47d1-a3db-60e4d4e397bc\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"79ae47e5-e3c2-44a2-8f05-18a33eb73ba0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6d16f226-9fa8-47d1-a3db-60e4d4e397bc\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/publicIPAddresses/pip954276\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/virtualNetworks/vnet61101bda7b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dybfxxbfdo5uncfpblsrfoltwb.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-03-ED-1B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Compute/virtualMachines/javavm\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/publicIPAddresses/pip186162?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/publicIPAddresses/pip954276?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:47 GMT", + "date" : "Mon, 18 May 2020 06:14:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "879", + "content-length" : "881", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9932", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1fca44fe-3cc4-4b98-8177-ec15dac77782", + "x-ms-correlation-request-id" : "53ee4aa8-1582-4727-bd2d-d7ed6a6086da", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "cb973c88-ca90-4fe4-92be-b983321e3cdc", + "x-ms-arm-service-request-id" : "c324f5ee-43b1-457f-b526-0795ca0a3c49", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084248Z:1fca44fe-3cc4-4b98-8177-ec15dac77782", - "etag" : "W/\"e4ff9d94-49b4-427a-9639-2574189b9e16\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061458Z:53ee4aa8-1582-4727-bd2d-d7ed6a6086da", + "etag" : "W/\"43f55945-1c60-4a5d-a418-319b18a5ae3b\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1bd7851e-5f66-433a-b9ca-b5e96d7526fa", - "Body" : "{\r\n \"name\": \"pip186162\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/publicIPAddresses/pip186162\",\r\n \"etag\": \"W/\\\"e4ff9d94-49b4-427a-9639-2574189b9e16\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0b00ec7-7b06-412a-a1b9-57786df43ed0\",\r\n \"ipAddress\": \"40.70.160.93\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg78056/providers/Microsoft.Network/networkInterfaces/nicjavavm2f1637191/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}" + "x-ms-request-id" : "9d9e24d8-dae7-4a5f-ad56-eed8d162061b", + "Body" : "{\r\n \"name\": \"pip954276\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/publicIPAddresses/pip954276\",\r\n \"etag\": \"W/\\\"43f55945-1c60-4a5d-a418-319b18a5ae3b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1b666f9a-4f15-496b-8b7b-bd00304946b3\",\r\n \"ipAddress\": \"52.177.243.220\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg21879/providers/Microsoft.Network/networkInterfaces/nicjavavmc6e982517/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg78056?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg21879?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:54 GMT", + "date" : "Mon, 18 May 2020 06:15:03 GMT", "content-length" : "0", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bd49f45c-e5cc-4183-a158-9746e1235a51", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084255Z:bd49f45c-e5cc-4183-a158-9746e1235a51", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "bd49f45c-e5cc-4183-a158-9746e1235a51", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:25 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10496", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "59419a9d-ec98-43d8-945a-02e3a67c7b85", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084326Z:59419a9d-ec98-43d8-945a-02e3a67c7b85", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "59419a9d-ec98-43d8-945a-02e3a67c7b85", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:57 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10191", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cabbae42-14b0-48d7-afc4-963db2dfd570", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084357Z:cabbae42-14b0-48d7-afc4-963db2dfd570", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "cabbae42-14b0-48d7-afc4-963db2dfd570", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:28 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10290", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3fde7e45-9a67-4ddc-b21b-da8d42e44387", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084429Z:3fde7e45-9a67-4ddc-b21b-da8d42e44387", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "3fde7e45-9a67-4ddc-b21b-da8d42e44387", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:59 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10514", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e11f48f7-ba0a-49cb-8cd5-d81094013d62", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084500Z:e11f48f7-ba0a-49cb-8cd5-d81094013d62", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "e11f48f7-ba0a-49cb-8cd5-d81094013d62", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:30 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10329", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "47512954-84b9-413e-88fd-7b38c723f53c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084531Z:47512954-84b9-413e-88fd-7b38c723f53c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "47512954-84b9-413e-88fd-7b38c723f53c", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:02 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10810", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0a512753-ad4a-4d30-9538-208b08229dcd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084602Z:0a512753-ad4a-4d30-9538-208b08229dcd", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "0a512753-ad4a-4d30-9538-208b08229dcd", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:33 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10390", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d5686d22-4271-47aa-b131-2814fe646e28", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084634Z:d5686d22-4271-47aa-b131-2814fe646e28", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "d5686d22-4271-47aa-b131-2814fe646e28", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:04 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9901", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "939cb720-888f-4bfd-bafa-7e8b6e03c601", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084705Z:939cb720-888f-4bfd-bafa-7e8b6e03c601", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "939cb720-888f-4bfd-bafa-7e8b6e03c601", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:36 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9696", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1e50cdc7-785b-43fe-96e5-a4f96b41baed", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084736Z:1e50cdc7-785b-43fe-96e5-a4f96b41baed", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "1e50cdc7-785b-43fe-96e5-a4f96b41baed", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:06 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10792", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1dcfacd7-a11f-4df1-a02b-b4acad9eefc5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084807Z:1dcfacd7-a11f-4df1-a02b-b4acad9eefc5", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "1dcfacd7-a11f-4df1-a02b-b4acad9eefc5", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:38 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10734", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "03280215-a230-4280-b420-b1a8d6ed9e03", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084839Z:03280215-a230-4280-b420-b1a8d6ed9e03", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "03280215-a230-4280-b420-b1a8d6ed9e03", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:09 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10512", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "548947b8-e6ec-4d81-b0f4-417693ebbf0e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084910Z:548947b8-e6ec-4d81-b0f4-417693ebbf0e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "548947b8-e6ec-4d81-b0f4-417693ebbf0e", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:41 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10157", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4bb49b0b-5eea-41f1-890b-55b3595660a5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084941Z:4bb49b0b-5eea-41f1-890b-55b3595660a5", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4bb49b0b-5eea-41f1-890b-55b3595660a5", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:12 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10366", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0530317e-3cfa-4615-99a9-b506c4b32cca", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085012Z:0530317e-3cfa-4615-99a9-b506c4b32cca", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "0530317e-3cfa-4615-99a9-b506c4b32cca", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:43 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10503", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5c2d8c92-a14b-4a75-9681-987732828aab", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085044Z:5c2d8c92-a14b-4a75-9681-987732828aab", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "5c2d8c92-a14b-4a75-9681-987732828aab", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:14 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10361", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "77328464-ced3-436f-9ecf-1a0bab01b110", + "x-ms-correlation-request-id" : "0573e555-9983-4bcc-b69d-8d2a4087dd6a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085115Z:77328464-ced3-436f-9ecf-1a0bab01b110", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061503Z:0573e555-9983-4bcc-b69d-8d2a4087dd6a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "77328464-ced3-436f-9ecf-1a0bab01b110", + "x-ms-request-id" : "0573e555-9983-4bcc-b69d-8d2a4087dd6a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:45 GMT", + "date" : "Mon, 18 May 2020 06:15:34 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10261", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8d9eefa2-3f2f-4071-bd37-1fd87cc93931", + "x-ms-correlation-request-id" : "6e1a4909-ed5f-4328-8adb-326e09fe4480", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085146Z:8d9eefa2-3f2f-4071-bd37-1fd87cc93931", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061534Z:6e1a4909-ed5f-4328-8adb-326e09fe4480", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "8d9eefa2-3f2f-4071-bd37-1fd87cc93931", + "x-ms-request-id" : "6e1a4909-ed5f-4328-8adb-326e09fe4480", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:17 GMT", + "date" : "Mon, 18 May 2020 06:16:06 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9669", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "589a76ee-f9ff-4f70-aadb-dbe3df94fb32", + "x-ms-correlation-request-id" : "d302d0ec-d295-439b-8c63-023c531d0996", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085217Z:589a76ee-f9ff-4f70-aadb-dbe3df94fb32", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061606Z:d302d0ec-d295-439b-8c63-023c531d0996", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "589a76ee-f9ff-4f70-aadb-dbe3df94fb32", + "x-ms-request-id" : "d302d0ec-d295-439b-8c63-023c531d0996", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:48 GMT", + "date" : "Mon, 18 May 2020 06:16:37 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10713", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4c0d9ead-c5c4-439c-8e9e-412591567b5e", + "x-ms-correlation-request-id" : "917c5855-18ce-461f-9f19-c928fe81a3f2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085249Z:4c0d9ead-c5c4-439c-8e9e-412591567b5e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061637Z:917c5855-18ce-461f-9f19-c928fe81a3f2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "4c0d9ead-c5c4-439c-8e9e-412591567b5e", + "x-ms-request-id" : "917c5855-18ce-461f-9f19-c928fe81a3f2", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:19 GMT", + "date" : "Mon, 18 May 2020 06:17:08 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10136", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4213a89a-a8cc-49a5-a0f9-dc967d97cda5", + "x-ms-correlation-request-id" : "7fbb8a99-45c6-4c11-ad5f-17dfe5c4bb52", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085320Z:4213a89a-a8cc-49a5-a0f9-dc967d97cda5", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061709Z:7fbb8a99-45c6-4c11-ad5f-17dfe5c4bb52", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "4213a89a-a8cc-49a5-a0f9-dc967d97cda5", + "x-ms-request-id" : "7fbb8a99-45c6-4c11-ad5f-17dfe5c4bb52", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:51 GMT", + "date" : "Mon, 18 May 2020 06:17:39 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10134", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2c2a7b65-66f2-42f3-9b31-53e0ae3a326e", + "x-ms-correlation-request-id" : "78460c6d-4a05-429e-9f3a-5d5d00ae3137", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085351Z:2c2a7b65-66f2-42f3-9b31-53e0ae3a326e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061739Z:78460c6d-4a05-429e-9f3a-5d5d00ae3137", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "2c2a7b65-66f2-42f3-9b31-53e0ae3a326e", + "x-ms-request-id" : "78460c6d-4a05-429e-9f3a-5d5d00ae3137", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:21 GMT", + "date" : "Mon, 18 May 2020 06:18:10 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10132", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b5f72557-2198-4c35-bd77-59ebdd87dd39", + "x-ms-correlation-request-id" : "13a57dee-3346-423f-9f9e-e165660aa495", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085422Z:b5f72557-2198-4c35-bd77-59ebdd87dd39", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061810Z:13a57dee-3346-423f-9f9e-e165660aa495", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b5f72557-2198-4c35-bd77-59ebdd87dd39", + "x-ms-request-id" : "13a57dee-3346-423f-9f9e-e165660aa495", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:54:52 GMT", + "date" : "Mon, 18 May 2020 06:18:40 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10739", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "86b0d5d2-1d2a-4d27-a3f9-989d02f05374", + "x-ms-correlation-request-id" : "7fb007b4-017f-446c-b217-0416e0145a6c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085453Z:86b0d5d2-1d2a-4d27-a3f9-989d02f05374", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061841Z:7fb007b4-017f-446c-b217-0416e0145a6c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "86b0d5d2-1d2a-4d27-a3f9-989d02f05374", + "x-ms-request-id" : "7fb007b4-017f-446c-b217-0416e0145a6c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:55:24 GMT", + "date" : "Mon, 18 May 2020 06:19:12 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10477", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1679b636-d486-440a-b751-0b2fe903d55f", + "x-ms-correlation-request-id" : "626be63e-a73c-4c6b-80e6-d766f96201a2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085524Z:1679b636-d486-440a-b751-0b2fe903d55f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061912Z:626be63e-a73c-4c6b-80e6-d766f96201a2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "1679b636-d486-440a-b751-0b2fe903d55f", + "x-ms-request-id" : "626be63e-a73c-4c6b-80e6-d766f96201a2", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:55:55 GMT", + "date" : "Mon, 18 May 2020 06:19:42 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10704", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b5b29048-b6c1-4fd5-9fb6-abdc16411415", + "x-ms-correlation-request-id" : "bf2509c4-8c31-4870-b6ee-d09ad348d824", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085555Z:b5b29048-b6c1-4fd5-9fb6-abdc16411415", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T061943Z:bf2509c4-8c31-4870-b6ee-d09ad348d824", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b5b29048-b6c1-4fd5-9fb6-abdc16411415", + "x-ms-request-id" : "bf2509c4-8c31-4870-b6ee-d09ad348d824", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:56:26 GMT", + "date" : "Mon, 18 May 2020 06:20:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10727", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "45e0dbc0-2693-4887-b2f5-6443b4f08b92", + "x-ms-correlation-request-id" : "3afb31b8-d1a5-4ff5-80b2-ba643e2e0eb2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085627Z:45e0dbc0-2693-4887-b2f5-6443b4f08b92", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062014Z:3afb31b8-d1a5-4ff5-80b2-ba643e2e0eb2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "45e0dbc0-2693-4887-b2f5-6443b4f08b92", + "x-ms-request-id" : "3afb31b8-d1a5-4ff5-80b2-ba643e2e0eb2", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3ODA1Ni1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyMTg3OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:56:57 GMT", + "date" : "Mon, 18 May 2020 06:20:45 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10720", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "30f75b45-c01d-445f-8632-86e29a24ef8e", + "x-ms-correlation-request-id" : "6afe4f47-c74b-44f3-9ea0-afe52a4c60bf", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085657Z:30f75b45-c01d-445f-8632-86e29a24ef8e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062045Z:6afe4f47-c74b-44f3-9ea0-afe52a4c60bf", "cache-control" : "no-cache", - "x-ms-request-id" : "30f75b45-c01d-445f-8632-86e29a24ef8e", + "x-ms-request-id" : "6afe4f47-c74b-44f3-9ea0-afe52a4c60bf", "Body" : "" } } ], - "variables" : [ "javacsmrg78056", "pip186162", "nicjavavm2f1637191", "vnet78351f19b2" ] + "variables" : [ "javacsmrg21879", "pip954276", "nicjavavmc6e982517", "vnet61101bda7b" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnEmptyManagedDisk.json b/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnEmptyManagedDisk.json index 9ec7cf7b32f7..eda26f042061 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnEmptyManagedDisk.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnEmptyManagedDisk.json @@ -1,546 +1,551 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg57604?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg45604?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:55 GMT", + "date" : "Mon, 18 May 2020 06:28:47 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1c5e6d92-3992-4af3-9eff-bb3812c1b164", + "x-ms-correlation-request-id" : "25e04b91-10a5-4d36-8503-4c60d25001ff", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084656Z:1c5e6d92-3992-4af3-9eff-bb3812c1b164", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062847Z:25e04b91-10a5-4d36-8503-4c60d25001ff", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1c5e6d92-3992-4af3-9eff-bb3812c1b164", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604\",\"name\":\"javacsmrg57604\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:46:53.280Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "25e04b91-10a5-4d36-8503-4c60d25001ff", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604\",\"name\":\"javacsmrg45604\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:28:44.228Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:59 GMT", + "date" : "Mon, 18 May 2020 06:28:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "331", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "04c523e8-2b92-401c-85ea-0a166ea54640", + "x-ms-correlation-request-id" : "e4cda981-4a6f-4b56-b7fe-6c59c0edb8a1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084659Z:04c523e8-2b92-401c-85ea-0a166ea54640", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062855Z:e4cda981-4a6f-4b56-b7fe-6c59c0edb8a1", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ba304f1-29a8-4186-8374-c1d8350267bb?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f3479ed6-4bf3-477d-9b50-bde34f4fa578?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "1ba304f1-29a8-4186-8374-c1d8350267bb", - "Body" : "{\r\n \"name\": \"md-empty-6d7566163\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ba304f1-29a8-4186-8374-c1d8350267bb?api-version=2019-03-01" + "x-ms-request-id" : "f3479ed6-4bf3-477d-9b50-bde34f4fa578", + "Body" : "{\r\n \"name\": \"md-empty-bf2524393\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f3479ed6-4bf3-477d-9b50-bde34f4fa578?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ba304f1-29a8-4186-8374-c1d8350267bb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f3479ed6-4bf3-477d-9b50-bde34f4fa578?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:30 GMT", + "date" : "Mon, 18 May 2020 06:29:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "834", + "content-length" : "890", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10522", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cce57b7d-aba8-4272-919c-0b31ea40438b", + "x-ms-correlation-request-id" : "47419d94-c6e5-4dc5-8fcd-e253d5540ba6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084730Z:cce57b7d-aba8-4272-919c-0b31ea40438b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062925Z:47419d94-c6e5-4dc5-8fcd-e253d5540ba6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "efd76548-e931-4180-b95f-2f6fdfc73fcd", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:46:59.6248605+00:00\",\r\n \"endTime\": \"2020-03-05T08:46:59.7342347+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-empty-6d7566163\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{\"tkey1\":\"tval1\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:46:59.6248605+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"9d4dfa9c-e5c0-410c-8341-232cb3b89288\"}}\r\n },\r\n \"name\": \"1ba304f1-29a8-4186-8374-c1d8350267bb\"\r\n}" + "x-ms-request-id" : "c3801f3b-97bb-4e3b-a143-4ffead0bf027", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:28:55.0431109+00:00\",\r\n \"endTime\": \"2020-05-18T06:28:55.1525245+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-empty-bf2524393\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{\"tkey1\":\"tval1\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:28:55.0431109+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"4b16a07f-c114-4788-80d0-faabe77395a0\"}}\r\n },\r\n \"name\": \"f3479ed6-4bf3-477d-9b50-bde34f4fa578\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:00 GMT", + "date" : "Mon, 18 May 2020 06:29:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "757", + "content-length" : "835", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10793", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ee3c65a9-7c1a-4cd8-9bf6-d6d02daca57d", + "x-ms-correlation-request-id" : "94fbaba5-3e46-47b5-9aca-b17bf4072a23", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084801Z:ee3c65a9-7c1a-4cd8-9bf6-d6d02daca57d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39987", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062956Z:94fbaba5-3e46-47b5-9aca-b17bf4072a23", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "375163db-cb7c-4e3a-94c8-047353413c3c", - "Body" : "{\r\n \"name\": \"md-empty-6d7566163\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:46:59.6248605+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"9d4dfa9c-e5c0-410c-8341-232cb3b89288\"\r\n }\r\n}" + "x-ms-request-id" : "43f77bc5-14bc-489f-9cd6-c5571f9737d7", + "Body" : "{\r\n \"name\": \"md-empty-bf2524393\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:28:55.0431109+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"4b16a07f-c114-4788-80d0-faabe77395a0\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:03 GMT", + "date" : "Mon, 18 May 2020 06:29:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "331", + "content-length" : "409", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a2a430e6-60e7-4995-aea0-d7e359c24537", + "x-ms-correlation-request-id" : "eb03fd22-2810-4c12-98bc-a12e7c268197", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084803Z:a2a430e6-60e7-4995-aea0-d7e359c24537", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062957Z:eb03fd22-2810-4c12-98bc-a12e7c268197", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/52e7e3f1-cce4-4fdf-9611-37a3a4f6b7b8?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1c13b4fe-fb89-4160-a411-836ba6b45a00?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "52e7e3f1-cce4-4fdf-9611-37a3a4f6b7b8", - "Body" : "{\r\n \"name\": \"md-empty-6d7566163\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/52e7e3f1-cce4-4fdf-9611-37a3a4f6b7b8?api-version=2019-03-01" + "x-ms-request-id" : "1c13b4fe-fb89-4160-a411-836ba6b45a00", + "Body" : "{\r\n \"name\": \"md-empty-bf2524393\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1c13b4fe-fb89-4160-a411-836ba6b45a00?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/52e7e3f1-cce4-4fdf-9611-37a3a4f6b7b8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1c13b4fe-fb89-4160-a411-836ba6b45a00?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:33 GMT", + "date" : "Mon, 18 May 2020 06:30:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "832", + "content-length" : "890", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10380", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac78ea22-137c-4317-9e30-d7911237095a", + "x-ms-correlation-request-id" : "9e264f07-a7ba-46d8-ac3c-9698c5d5a616", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084834Z:ac78ea22-137c-4317-9e30-d7911237095a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399986", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063028Z:9e264f07-a7ba-46d8-ac3c-9698c5d5a616", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1fbf1e32-4432-4ba8-9321-bab022ebb941", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:48:03.23385+00:00\",\r\n \"endTime\": \"2020-03-05T08:48:03.3431754+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-empty-6d7566163\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{\"tkey1\":\"tval1\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":200,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:46:59.6248605+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":214748364800,\"uniqueId\":\"9d4dfa9c-e5c0-410c-8341-232cb3b89288\"}}\r\n },\r\n \"name\": \"52e7e3f1-cce4-4fdf-9611-37a3a4f6b7b8\"\r\n}" + "x-ms-request-id" : "dea74f3f-25da-41aa-bbd9-7c5c16d8745b", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:29:57.5901614+00:00\",\r\n \"endTime\": \"2020-05-18T06:29:57.6995332+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-empty-bf2524393\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{\"tkey1\":\"tval1\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":200,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:28:55.0431109+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":214748364800,\"uniqueId\":\"4b16a07f-c114-4788-80d0-faabe77395a0\"}}\r\n },\r\n \"name\": \"1c13b4fe-fb89-4160-a411-836ba6b45a00\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:04 GMT", + "date" : "Mon, 18 May 2020 06:30:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "757", + "content-length" : "835", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10899", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d326c488-7c70-456d-bb25-1f5910d430d3", + "x-ms-correlation-request-id" : "4a2cecac-8ae7-4880-bed0-4cbe252341db", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084904Z:d326c488-7c70-456d-bb25-1f5910d430d3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4978,Microsoft.Compute/LowCostGet30Min;39978", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063058Z:4a2cecac-8ae7-4880-bed0-4cbe252341db", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b1a62504-9bc2-4e59-b08a-bbd8ace3fcbe", - "Body" : "{\r\n \"name\": \"md-empty-6d7566163\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:46:59.6248605+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"9d4dfa9c-e5c0-410c-8341-232cb3b89288\"\r\n }\r\n}" + "x-ms-request-id" : "7199a77b-0b7a-4d62-a042-f559e14bc3a5", + "Body" : "{\r\n \"name\": \"md-empty-bf2524393\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:28:55.0431109+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"4b16a07f-c114-4788-80d0-faabe77395a0\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:05 GMT", + "date" : "Mon, 18 May 2020 06:30:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "757", + "content-length" : "835", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10474", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fcd850f7-4835-4f8c-b1f4-e2879d0d95f4", + "x-ms-correlation-request-id" : "c63af384-921b-4f69-beb5-ddc76bb1b5b9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084905Z:fcd850f7-4835-4f8c-b1f4-e2879d0d95f4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39977", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063059Z:c63af384-921b-4f69-beb5-ddc76bb1b5b9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7880701f-5528-45e6-a7f9-62ff8153131d", - "Body" : "{\r\n \"name\": \"md-empty-6d7566163\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:46:59.6248605+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"9d4dfa9c-e5c0-410c-8341-232cb3b89288\"\r\n }\r\n}" + "x-ms-request-id" : "36f05aae-3dbc-4b46-9383-f0c0f02996ca", + "Body" : "{\r\n \"name\": \"md-empty-bf2524393\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:28:55.0431109+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"4b16a07f-c114-4788-80d0-faabe77395a0\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:06 GMT", + "date" : "Mon, 18 May 2020 06:30:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "886", + "content-length" : "976", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10046", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "953f8558-a67f-4dda-b720-5714deb5d16f", + "x-ms-correlation-request-id" : "a4bf0ada-d58c-4556-a7e1-35859fa27ab5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;238,Microsoft.Compute/HighCostGet30Min;1918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084906Z:953f8558-a67f-4dda-b720-5714deb5d16f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;239,Microsoft.Compute/HighCostGet30Min;1919", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063059Z:a4bf0ada-d58c-4556-a7e1-35859fa27ab5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "530516e2-e369-4802-8106-7b6497f687bf", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"md-empty-6d7566163\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:46:59.6248605+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"9d4dfa9c-e5c0-410c-8341-232cb3b89288\"\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "ff41ba59-a074-4ffc-9128-8f1945fb6d6f", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"md-empty-bf2524393\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tkey1\": \"tval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:28:55.0431109+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"4b16a07f-c114-4788-80d0-faabe77395a0\"\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:06 GMT", + "date" : "Mon, 18 May 2020 06:30:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "81c90407-bfd8-46ee-a615-95b68fb79d2e", + "x-ms-correlation-request-id" : "a4f9cdc9-6061-4b6e-9f81-f719ff1880d4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;999,Microsoft.Compute/HighCostDiskHydrate30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084906Z:81c90407-bfd8-46ee-a615-95b68fb79d2e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e029b124-ceb9-4311-9412-712a3801c0a4?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063100Z:a4f9cdc9-6061-4b6e-9f81-f719ff1880d4", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5793549c-d098-44b3-8d03-14cf4a5aa879?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e029b124-ceb9-4311-9412-712a3801c0a4", + "x-ms-request-id" : "5793549c-d098-44b3-8d03-14cf4a5aa879", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e029b124-ceb9-4311-9412-712a3801c0a4?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5793549c-d098-44b3-8d03-14cf4a5aa879?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e029b124-ceb9-4311-9412-712a3801c0a4?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5793549c-d098-44b3-8d03-14cf4a5aa879?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:36 GMT", + "date" : "Mon, 18 May 2020 06:31:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "421", + "content-length" : "426", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10040", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6c0a44a8-0c0f-4298-8973-f60146e02ec5", + "x-ms-correlation-request-id" : "ad7adc4f-ec83-43f1-9e29-d194a36369ee", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084937Z:6c0a44a8-0c0f-4298-8973-f60146e02ec5", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49979,Microsoft.Compute/GetOperation30Min;399979", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063130Z:ad7adc4f-ec83-43f1-9e29-d194a36369ee", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4aabdda7-9c5d-4576-a3dd-4b3733a1ef32", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:49:06.8427007+00:00\",\r\n \"endTime\": \"2020-03-05T08:49:07.0301982+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-gcwq502l1dpv.blob.core.windows.net/nsnzfk0qfxdk/abcd?sv=2017-04-17&sr=b&si=42b506b6-4e76-4e07-8a14-c71a779bb243&sig=uKoigqcRZ8nG2LkZITB4cS8rgF37vP546I2jhQ0legE%3D\"\r\n}\r\n },\r\n \"name\": \"e029b124-ceb9-4311-9412-712a3801c0a4\"\r\n}" + "x-ms-request-id" : "a27e86cb-c7e4-4a35-8ec1-254a1ae3554e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:31:00.3558316+00:00\",\r\n \"endTime\": \"2020-05-18T06:31:00.5320296+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/tp4wxpl1xfcw/abcd?sv=2017-04-17&sr=b&si=f7f7b801-9b3c-46de-94db-63801aca521a&sig=pAIWHK4MSdzqAkQfx3iFqjnU7vVvAENhB1LuT6dMSaY%3D\"\r\n}\r\n },\r\n \"name\": \"5793549c-d098-44b3-8d03-14cf4a5aa879\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e029b124-ceb9-4311-9412-712a3801c0a4?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5793549c-d098-44b3-8d03-14cf4a5aa879?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:07 GMT", + "date" : "Mon, 18 May 2020 06:32:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "196", + "content-length" : "201", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9879", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "04c06b37-ad1e-49c3-b352-66c907defe75", + "x-ms-correlation-request-id" : "a80c3b05-c210-433b-9015-a600925a63c1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085008Z:04c06b37-ad1e-49c3-b352-66c907defe75", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399976", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063201Z:a80c3b05-c210-433b-9015-a600925a63c1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "18ed49e5-56a1-4e32-84b7-9767e5bbbdb3", - "Body" : "{\r\n \"accessSAS\": \"https://md-gcwq502l1dpv.blob.core.windows.net/nsnzfk0qfxdk/abcd?sv=2017-04-17&sr=b&si=42b506b6-4e76-4e07-8a14-c71a779bb243&sig=uKoigqcRZ8nG2LkZITB4cS8rgF37vP546I2jhQ0legE%3D\"\r\n}" + "x-ms-request-id" : "2ad56844-cd90-4b7d-a573-33c7eaa602c4", + "Body" : "{\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/tp4wxpl1xfcw/abcd?sv=2017-04-17&sr=b&si=f7f7b801-9b3c-46de-94db-63801aca521a&sig=pAIWHK4MSdzqAkQfx3iFqjnU7vVvAENhB1LuT6dMSaY%3D\"\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163/endGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393/endGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:08 GMT", + "date" : "Mon, 18 May 2020 06:32:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d995965e-dcb7-41c7-8fba-ddf75752847f", + "x-ms-correlation-request-id" : "8f8df5fa-9531-4c3c-b086-9e59138729d4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;998,Microsoft.Compute/HighCostDiskHydrate30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085008Z:d995965e-dcb7-41c7-8fba-ddf75752847f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/af9ee559-580d-40ba-8354-ad72d847b304?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063202Z:8f8df5fa-9531-4c3c-b086-9e59138729d4", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ebc848c-ce73-42e2-ac4e-aae75bcaeee9?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "af9ee559-580d-40ba-8354-ad72d847b304", + "x-ms-request-id" : "5ebc848c-ce73-42e2-ac4e-aae75bcaeee9", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/af9ee559-580d-40ba-8354-ad72d847b304?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ebc848c-ce73-42e2-ac4e-aae75bcaeee9?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/af9ee559-580d-40ba-8354-ad72d847b304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ebc848c-ce73-42e2-ac4e-aae75bcaeee9?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:39 GMT", + "date" : "Mon, 18 May 2020 06:32:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10036", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "080669d7-964e-46bb-bcb6-ad0437229fe0", + "x-ms-correlation-request-id" : "9e8a8c93-9088-4a3d-9dd2-1ce4f6b46bd9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085039Z:080669d7-964e-46bb-bcb6-ad0437229fe0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399972", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063232Z:9e8a8c93-9088-4a3d-9dd2-1ce4f6b46bd9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "96c13b31-697e-472c-9c7f-11cbae0f9fd1", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:50:08.8422967+00:00\",\r\n \"endTime\": \"2020-03-05T08:50:08.9829277+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"af9ee559-580d-40ba-8354-ad72d847b304\"\r\n}" + "x-ms-request-id" : "0b1209b5-5eba-4300-84d2-9ee30c6a0f02", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:32:02.0278104+00:00\",\r\n \"endTime\": \"2020-05-18T06:32:02.1684506+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5ebc848c-ce73-42e2-ac4e-aae75bcaeee9\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/af9ee559-580d-40ba-8354-ad72d847b304?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ebc848c-ce73-42e2-ac4e-aae75bcaeee9?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:09 GMT", + "date" : "Mon, 18 May 2020 06:33:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10149", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d3f4c097-b555-4cdb-9629-a969b6b9ff8a", + "x-ms-correlation-request-id" : "ff95bc87-15ed-4592-9e78-437b11351e12", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085110Z:d3f4c097-b555-4cdb-9629-a969b6b9ff8a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399970", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063303Z:ff95bc87-15ed-4592-9e78-437b11351e12", "cache-control" : "no-cache", - "x-ms-request-id" : "39469b0b-d7aa-4eef-bd6a-4eb354e878fd", + "x-ms-request-id" : "d4a957fe-1c1b-470a-a88a-9d40e149e096", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57604/providers/Microsoft.Compute/disks/md-empty-6d7566163?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg45604/providers/Microsoft.Compute/disks/md-empty-bf2524393?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:10 GMT", + "date" : "Mon, 18 May 2020 06:33:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14993", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3421bdc6-b883-46f4-bffa-d3dba3b266f0", + "x-ms-correlation-request-id" : "539d8c0f-3dec-4a91-9bff-919bdba9123b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;998,Microsoft.Compute/DeleteDisks30Min;7992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085111Z:3421bdc6-b883-46f4-bffa-d3dba3b266f0", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d5da456f-fcd2-4e5b-81f6-52228b897acc?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;994,Microsoft.Compute/DeleteDisks30Min;7993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063305Z:539d8c0f-3dec-4a91-9bff-919bdba9123b", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1361ed21-2458-4911-bb34-b5149c9f865c?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "d5da456f-fcd2-4e5b-81f6-52228b897acc", + "x-ms-request-id" : "1361ed21-2458-4911-bb34-b5149c9f865c", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d5da456f-fcd2-4e5b-81f6-52228b897acc?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1361ed21-2458-4911-bb34-b5149c9f865c?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d5da456f-fcd2-4e5b-81f6-52228b897acc?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1361ed21-2458-4911-bb34-b5149c9f865c?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:42 GMT", + "date" : "Mon, 18 May 2020 06:33:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", + "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9873", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0d80bd1b-b8b8-4faa-b2a8-3ccd9c95a322", + "x-ms-correlation-request-id" : "537e3e65-cce9-4dee-ac40-d1d13dc46911", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085142Z:0d80bd1b-b8b8-4faa-b2a8-3ccd9c95a322", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49981,Microsoft.Compute/GetOperation30Min;399964", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063336Z:537e3e65-cce9-4dee-ac40-d1d13dc46911", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "17fcab42-6af3-41c2-be8a-05fd3276d7d9", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:51:11.2168239+00:00\",\r\n \"endTime\": \"2020-03-05T08:51:11.373098+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d5da456f-fcd2-4e5b-81f6-52228b897acc\"\r\n}" + "x-ms-request-id" : "39e167d3-ec5b-476b-aa3c-c3ca7e58998e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:33:05.7781223+00:00\",\r\n \"endTime\": \"2020-05-18T06:33:05.9343732+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1361ed21-2458-4911-bb34-b5149c9f865c\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d5da456f-fcd2-4e5b-81f6-52228b897acc?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1361ed21-2458-4911-bb34-b5149c9f865c?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:12 GMT", + "date" : "Mon, 18 May 2020 06:34:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10494", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ae6cb88a-7dfc-4e11-a50f-0730ed9d86d7", + "x-ms-correlation-request-id" : "257a124a-fdfd-4212-84f6-1ca9e5244426", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085213Z:ae6cb88a-7dfc-4e11-a50f-0730ed9d86d7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399960", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063407Z:257a124a-fdfd-4212-84f6-1ca9e5244426", "cache-control" : "no-cache", - "x-ms-request-id" : "eb4048b5-296b-4bb0-adbe-d5e9e053f720", + "x-ms-request-id" : "7eb8ce07-3393-4872-a0de-717765c5bd4d", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg57604?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg45604?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:18 GMT", + "date" : "Mon, 18 May 2020 06:34:11 GMT", "content-length" : "0", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14996", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5418d6ca-8d17-476e-abe4-826e2c38b6f4", + "x-ms-correlation-request-id" : "54549fed-676e-4e33-8783-f44ab605779a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085218Z:5418d6ca-8d17-476e-abe4-826e2c38b6f4", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzYwNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063411Z:54549fed-676e-4e33-8783-f44ab605779a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0NTYwNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5418d6ca-8d17-476e-abe4-826e2c38b6f4", + "x-ms-request-id" : "54549fed-676e-4e33-8783-f44ab605779a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzYwNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0NTYwNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:52:49 GMT", + "date" : "Mon, 18 May 2020 06:34:42 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10482", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "46ac7558-8889-4733-8cfa-263c0985aeb8", + "x-ms-correlation-request-id" : "543c1dfe-f5e3-4424-8c9b-ab8570208345", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085249Z:46ac7558-8889-4733-8cfa-263c0985aeb8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzYwNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063442Z:543c1dfe-f5e3-4424-8c9b-ab8570208345", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0NTYwNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "46ac7558-8889-4733-8cfa-263c0985aeb8", + "x-ms-request-id" : "543c1dfe-f5e3-4424-8c9b-ab8570208345", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzYwNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0NTYwNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:53:19 GMT", + "date" : "Mon, 18 May 2020 06:35:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10457", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "24e19927-2c34-4ac4-be74-bf7cc1ca2abb", + "x-ms-correlation-request-id" : "4092d8d0-286e-430d-aa79-9f3600d03c6c", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085319Z:24e19927-2c34-4ac4-be74-bf7cc1ca2abb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063513Z:4092d8d0-286e-430d-aa79-9f3600d03c6c", "cache-control" : "no-cache", - "x-ms-request-id" : "24e19927-2c34-4ac4-be74-bf7cc1ca2abb", + "x-ms-request-id" : "4092d8d0-286e-430d-aa79-9f3600d03c6c", "Body" : "" } } ], - "variables" : [ "javacsmrg57604", "md-empty-6d7566163" ] + "variables" : [ "javacsmrg45604", "md-empty-bf2524393" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromDisk.json b/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromDisk.json index f99796b09f93..2e2d063fe87e 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromDisk.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromDisk.json @@ -1,440 +1,444 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg12620?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg28419?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:56 GMT", + "date" : "Mon, 18 May 2020 06:28:47 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0277b07d-e479-4a4f-902a-9f3028728d21", + "x-ms-correlation-request-id" : "ab42c779-300c-4697-8a7d-5e78875a1354", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084056Z:0277b07d-e479-4a4f-902a-9f3028728d21", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062848Z:ab42c779-300c-4697-8a7d-5e78875a1354", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0277b07d-e479-4a4f-902a-9f3028728d21", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620\",\"name\":\"javacsmrg12620\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:40:52.377Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "ab42c779-300c-4697-8a7d-5e78875a1354", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419\",\"name\":\"javacsmrg28419\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:28:44.262Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-1d0a528811197?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-1a9816602bbe4?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:59 GMT", + "date" : "Mon, 18 May 2020 06:28:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "257", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a036896a-3c23-49d2-896c-5e6346adf6ed", + "x-ms-correlation-request-id" : "f883156a-c97d-4acf-8535-35830fb8df15", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084100Z:a036896a-3c23-49d2-896c-5e6346adf6ed", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062854Z:f883156a-c97d-4acf-8535-35830fb8df15", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/049596cd-4f68-458b-a040-68317252dc7c?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/73911532-7bf8-42a1-9e9e-a9a2d8e0d0de?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "049596cd-4f68-458b-a040-68317252dc7c", - "Body" : "{\r\n \"name\": \"md-1d0a528811197\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/049596cd-4f68-458b-a040-68317252dc7c?api-version=2019-03-01" + "x-ms-request-id" : "73911532-7bf8-42a1-9e9e-a9a2d8e0d0de", + "Body" : "{\r\n \"name\": \"md-1a9816602bbe4\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/73911532-7bf8-42a1-9e9e-a9a2d8e0d0de?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/049596cd-4f68-458b-a040-68317252dc7c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/73911532-7bf8-42a1-9e9e-a9a2d8e0d0de?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:30 GMT", + "date" : "Mon, 18 May 2020 06:29:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "815", + "content-length" : "871", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10560", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0a941e1e-2adf-40d5-a42f-b6a42da5fc40", + "x-ms-correlation-request-id" : "f1b2b61d-19fb-4257-a1b8-733971c4749d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084131Z:0a941e1e-2adf-40d5-a42f-b6a42da5fc40", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062925Z:f1b2b61d-19fb-4257-a1b8-733971c4749d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "889e111f-815d-40fe-87d3-262732960c85", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:41:00.6276145+00:00\",\r\n \"endTime\": \"2020-03-05T08:41:00.7370339+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-1d0a528811197\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-1d0a528811197\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:41:00.6432806+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"4dd93efe-4e0d-40ff-af85-2e8eb32338d4\"}}\r\n },\r\n \"name\": \"049596cd-4f68-458b-a040-68317252dc7c\"\r\n}" + "x-ms-request-id" : "033d7d88-1015-4f91-86fa-4760b8db0db4", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:28:54.2149901+00:00\",\r\n \"endTime\": \"2020-05-18T06:28:54.3243663+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-1a9816602bbe4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-1a9816602bbe4\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:28:54.2149901+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"c13191b0-bec3-484a-a460-62403a002c47\"}}\r\n },\r\n \"name\": \"73911532-7bf8-42a1-9e9e-a9a2d8e0d0de\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-1d0a528811197?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-1a9816602bbe4?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:00 GMT", + "date" : "Mon, 18 May 2020 06:29:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "727", + "content-length" : "805", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10555", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac668fc5-ca4f-48ee-a263-5c0f334eb9f8", + "x-ms-correlation-request-id" : "7501c9f4-0d45-4dbe-bd2b-99efdb73d681", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084201Z:ac668fc5-ca4f-48ee-a263-5c0f334eb9f8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39989", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062955Z:7501c9f4-0d45-4dbe-bd2b-99efdb73d681", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d206f843-0206-4002-817e-9cd41cdca620", - "Body" : "{\r\n \"name\": \"md-1d0a528811197\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-1d0a528811197\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:41:00.6432806+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"4dd93efe-4e0d-40ff-af85-2e8eb32338d4\"\r\n }\r\n}" + "x-ms-request-id" : "f3ad0d0f-520e-430b-8408-1161dd0dcea8", + "Body" : "{\r\n \"name\": \"md-1a9816602bbe4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-1a9816602bbe4\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:28:54.2149901+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"c13191b0-bec3-484a-a460-62403a002c47\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-223e33370ac3c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-2b7f1966846b8?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:05 GMT", + "date" : "Mon, 18 May 2020 06:29:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "530", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9b6fa6e4-9b02-42b6-b7aa-ce004333ea19", + "x-ms-correlation-request-id" : "e4fc1340-04bc-48a9-92e9-159937198c0d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084205Z:9b6fa6e4-9b02-42b6-b7aa-ce004333ea19", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063000Z:e4fc1340-04bc-48a9-92e9-159937198c0d", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/51eb1e1f-f644-44ed-93d4-591663680627?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1e0845f6-1bda-4130-9217-0054c207eb21?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "51eb1e1f-f644-44ed-93d4-591663680627", - "Body" : "{\r\n \"name\": \"md-223e33370ac3c\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-1d0a528811197\",\r\n \"sourceUniqueId\": \"4dd93efe-4e0d-40ff-af85-2e8eb32338d4\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/51eb1e1f-f644-44ed-93d4-591663680627?api-version=2019-03-01" + "x-ms-request-id" : "1e0845f6-1bda-4130-9217-0054c207eb21", + "Body" : "{\r\n \"name\": \"md-2b7f1966846b8\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-1a9816602bbe4\",\r\n \"sourceUniqueId\": \"c13191b0-bec3-484a-a460-62403a002c47\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1e0845f6-1bda-4130-9217-0054c207eb21?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/51eb1e1f-f644-44ed-93d4-591663680627?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1e0845f6-1bda-4130-9217-0054c207eb21?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:35 GMT", + "date" : "Mon, 18 May 2020 06:30:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1024", + "content-length" : "1080", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9935", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a9f79f33-74b3-46b5-a48b-91f82aea54b3", + "x-ms-correlation-request-id" : "c1e042f3-7161-4aaa-8ed0-1cf5190e65c8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084236Z:a9f79f33-74b3-46b5-a48b-91f82aea54b3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399984", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063030Z:c1e042f3-7161-4aaa-8ed0-1cf5190e65c8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "efd84c2d-0ed1-4813-b607-c4a41c9c94c9", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:42:05.6425952+00:00\",\r\n \"endTime\": \"2020-03-05T08:42:08.4081898+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-223e33370ac3c\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-223e33370ac3c\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-1d0a528811197\",\"sourceUniqueId\":\"4dd93efe-4e0d-40ff-af85-2e8eb32338d4\"},\"diskSizeGB\":200,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:42:05.6425952+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":214748364800,\"uniqueId\":\"b77be689-ff5f-4100-b3ff-488ce5b04685\"}}\r\n },\r\n \"name\": \"51eb1e1f-f644-44ed-93d4-591663680627\"\r\n}" + "x-ms-request-id" : "cc4272cd-917c-4643-a6ef-7eb95dffdeab", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:29:59.8714447+00:00\",\r\n \"endTime\": \"2020-05-18T06:30:00.6370192+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-2b7f1966846b8\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-2b7f1966846b8\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-1a9816602bbe4\",\"sourceUniqueId\":\"c13191b0-bec3-484a-a460-62403a002c47\"},\"diskSizeGB\":200,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:29:59.8714447+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":214748364800,\"uniqueId\":\"d1d70cfe-d1d1-402a-9d59-89c80951e909\"}}\r\n },\r\n \"name\": \"1e0845f6-1bda-4130-9217-0054c207eb21\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-223e33370ac3c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-2b7f1966846b8?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:06 GMT", + "date" : "Mon, 18 May 2020 06:31:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "954", + "content-length" : "1032", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10551", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9c8e6098-b233-45f2-a9fe-7004bc46302a", + "x-ms-correlation-request-id" : "99ba76e8-6b8f-4693-a51f-eec55e989515", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084307Z:9c8e6098-b233-45f2-a9fe-7004bc46302a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39976", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063101Z:99ba76e8-6b8f-4693-a51f-eec55e989515", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4bfb244b-bafe-4056-9993-c310fe247cd5", - "Body" : "{\r\n \"name\": \"md-223e33370ac3c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-223e33370ac3c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-1d0a528811197\",\r\n \"sourceUniqueId\": \"4dd93efe-4e0d-40ff-af85-2e8eb32338d4\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:42:05.6425952+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"b77be689-ff5f-4100-b3ff-488ce5b04685\"\r\n }\r\n}" + "x-ms-request-id" : "3fffff01-3297-4a59-b320-d238b844d0eb", + "Body" : "{\r\n \"name\": \"md-2b7f1966846b8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-2b7f1966846b8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-1a9816602bbe4\",\r\n \"sourceUniqueId\": \"c13191b0-bec3-484a-a460-62403a002c47\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:29:59.8714447+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"d1d70cfe-d1d1-402a-9d59-89c80951e909\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-223e33370ac3c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-2b7f1966846b8?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:07 GMT", + "date" : "Mon, 18 May 2020 06:31:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "954", + "content-length" : "1032", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10833", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0bbc92ce-a010-4361-9ea6-318a6aa7d4dc", + "x-ms-correlation-request-id" : "e2ffdc51-ac7c-4db6-8606-69a663290be7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084308Z:0bbc92ce-a010-4361-9ea6-318a6aa7d4dc", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39975", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063101Z:e2ffdc51-ac7c-4db6-8606-69a663290be7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "704e519a-84f6-4f3c-a190-2b32b70476b2", - "Body" : "{\r\n \"name\": \"md-223e33370ac3c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-223e33370ac3c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-1d0a528811197\",\r\n \"sourceUniqueId\": \"4dd93efe-4e0d-40ff-af85-2e8eb32338d4\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:42:05.6425952+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"b77be689-ff5f-4100-b3ff-488ce5b04685\"\r\n }\r\n}" + "x-ms-request-id" : "17d9a319-7919-40eb-88a0-39e1e1a0879a", + "Body" : "{\r\n \"name\": \"md-2b7f1966846b8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-2b7f1966846b8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-1a9816602bbe4\",\r\n \"sourceUniqueId\": \"c13191b0-bec3-484a-a460-62403a002c47\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:29:59.8714447+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"d1d70cfe-d1d1-402a-9d59-89c80951e909\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-1d0a528811197?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-1a9816602bbe4?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:09 GMT", + "date" : "Mon, 18 May 2020 06:31:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e57aa0b3-9e54-4e36-8386-60c6b195f15f", + "x-ms-correlation-request-id" : "eb704f15-a7bb-438f-bef5-b04f8ad25afb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;996,Microsoft.Compute/DeleteDisks30Min;7995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084310Z:e57aa0b3-9e54-4e36-8386-60c6b195f15f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/6b7b37b3-2a94-4009-a267-db9e0a0e0806?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;998,Microsoft.Compute/DeleteDisks30Min;7998", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063103Z:eb704f15-a7bb-438f-bef5-b04f8ad25afb", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/03b8dce1-7cab-4d8c-8c7d-56f4c6f0d670?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "6b7b37b3-2a94-4009-a267-db9e0a0e0806", + "x-ms-request-id" : "03b8dce1-7cab-4d8c-8c7d-56f4c6f0d670", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/6b7b37b3-2a94-4009-a267-db9e0a0e0806?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/03b8dce1-7cab-4d8c-8c7d-56f4c6f0d670?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/6b7b37b3-2a94-4009-a267-db9e0a0e0806?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/03b8dce1-7cab-4d8c-8c7d-56f4c6f0d670?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:40 GMT", + "date" : "Mon, 18 May 2020 06:31:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10544", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "29803ddd-32aa-4c44-8d71-8471515df7a4", + "x-ms-correlation-request-id" : "726f1904-045c-467b-82c1-b1a3628e6a30", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084340Z:29803ddd-32aa-4c44-8d71-8471515df7a4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49978,Microsoft.Compute/GetOperation30Min;399978", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063133Z:726f1904-045c-467b-82c1-b1a3628e6a30", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0ca95873-a0db-4d29-811e-70ddbe525975", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:43:10.0640297+00:00\",\r\n \"endTime\": \"2020-03-05T08:43:10.2047338+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6b7b37b3-2a94-4009-a267-db9e0a0e0806\"\r\n}" + "x-ms-request-id" : "8903afa9-1f56-4067-a5ea-1712af53a01d", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:31:03.0433185+00:00\",\r\n \"endTime\": \"2020-05-18T06:31:03.1996149+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"03b8dce1-7cab-4d8c-8c7d-56f4c6f0d670\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/6b7b37b3-2a94-4009-a267-db9e0a0e0806?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/03b8dce1-7cab-4d8c-8c7d-56f4c6f0d670?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:10 GMT", + "date" : "Mon, 18 May 2020 06:32:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10065", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d82b75dd-db1d-4eac-b1e4-b45ef0af6987", + "x-ms-correlation-request-id" : "3d84e4cc-9a5b-48f0-af7b-d64cbd528693", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084411Z:d82b75dd-db1d-4eac-b1e4-b45ef0af6987", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399975", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063204Z:3d84e4cc-9a5b-48f0-af7b-d64cbd528693", "cache-control" : "no-cache", - "x-ms-request-id" : "c6f983af-94eb-42df-a013-d3fc89ea12bd", + "x-ms-request-id" : "dadbd6ee-d850-4977-87e4-7a8507ba2b70", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg12620/providers/Microsoft.Compute/disks/md-223e33370ac3c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28419/providers/Microsoft.Compute/disks/md-2b7f1966846b8?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:12 GMT", + "date" : "Mon, 18 May 2020 06:32:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8858f744-cbcf-4c0f-88cf-f715d5ecacec", + "x-ms-correlation-request-id" : "bc996806-2cb3-4a54-a300-3b09b209ba5c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;998,Microsoft.Compute/DeleteDisks30Min;7994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084413Z:8858f744-cbcf-4c0f-88cf-f715d5ecacec", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/94dbcc55-0299-4ae7-9c20-cad2bc44411a?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;997,Microsoft.Compute/DeleteDisks30Min;7997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063205Z:bc996806-2cb3-4a54-a300-3b09b209ba5c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/8c12d09c-714c-4168-ac29-a22a08b173cd?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "94dbcc55-0299-4ae7-9c20-cad2bc44411a", + "x-ms-request-id" : "8c12d09c-714c-4168-ac29-a22a08b173cd", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/94dbcc55-0299-4ae7-9c20-cad2bc44411a?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/8c12d09c-714c-4168-ac29-a22a08b173cd?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/94dbcc55-0299-4ae7-9c20-cad2bc44411a?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/8c12d09c-714c-4168-ac29-a22a08b173cd?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:43 GMT", + "date" : "Mon, 18 May 2020 06:32:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10819", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f8524994-a86d-4e8c-aedc-a664e392796d", + "x-ms-correlation-request-id" : "6d70ba3a-cfe5-4c4a-b720-ee124e09db43", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084443Z:f8524994-a86d-4e8c-aedc-a664e392796d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49979,Microsoft.Compute/GetOperation30Min;399971", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063236Z:6d70ba3a-cfe5-4c4a-b720-ee124e09db43", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9ff4505f-1ad8-492a-a133-399910824c2d", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:44:12.9854467+00:00\",\r\n \"endTime\": \"2020-03-05T08:44:13.1573328+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"94dbcc55-0299-4ae7-9c20-cad2bc44411a\"\r\n}" + "x-ms-request-id" : "736ba1e3-2e69-4922-a00d-30251e02de89", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:32:05.6371902+00:00\",\r\n \"endTime\": \"2020-05-18T06:32:05.7934419+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8c12d09c-714c-4168-ac29-a22a08b173cd\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/94dbcc55-0299-4ae7-9c20-cad2bc44411a?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/8c12d09c-714c-4168-ac29-a22a08b173cd?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:14 GMT", + "date" : "Mon, 18 May 2020 06:33:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10510", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c847dbdd-459b-401c-8a6f-11f5c3fb6d68", + "x-ms-correlation-request-id" : "b4799144-6519-42e1-85e4-9ccb47840780", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084514Z:c847dbdd-459b-401c-8a6f-11f5c3fb6d68", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399969", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063307Z:b4799144-6519-42e1-85e4-9ccb47840780", "cache-control" : "no-cache", - "x-ms-request-id" : "70752134-92f8-4c5b-9d40-7a391d037bfc", + "x-ms-request-id" : "9dca77ef-c35f-4824-ad56-646f7daffcd3", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg12620?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg28419?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:20 GMT", + "date" : "Mon, 18 May 2020 06:33:09 GMT", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-ratelimit-remaining-subscription-deletes" : "14996", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b39090d2-5042-4a36-a472-d7b020c3020b", + "x-ms-correlation-request-id" : "81907d0b-a9c1-4465-8a87-5dcd276063d8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084520Z:b39090d2-5042-4a36-a472-d7b020c3020b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxMjYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063310Z:81907d0b-a9c1-4465-8a87-5dcd276063d8", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyODQxOS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b39090d2-5042-4a36-a472-d7b020c3020b", + "x-ms-request-id" : "81907d0b-a9c1-4465-8a87-5dcd276063d8", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxMjYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyODQxOS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:50 GMT", + "date" : "Mon, 18 May 2020 06:33:41 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10394", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2f4818a9-7c89-4255-9357-62d7a3d07207", + "x-ms-correlation-request-id" : "2888b08e-1ca8-4568-acc0-2b8408c24d56", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084551Z:2f4818a9-7c89-4255-9357-62d7a3d07207", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxMjYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063342Z:2888b08e-1ca8-4568-acc0-2b8408c24d56", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyODQxOS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "2f4818a9-7c89-4255-9357-62d7a3d07207", + "x-ms-request-id" : "2888b08e-1ca8-4568-acc0-2b8408c24d56", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxMjYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyODQxOS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:21 GMT", + "date" : "Mon, 18 May 2020 06:34:12 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9906", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "df79958e-f32b-40f4-816d-8a4e591b74c7", + "x-ms-correlation-request-id" : "f31c0402-a4e3-4a3a-b0f8-193275d408c7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084622Z:df79958e-f32b-40f4-816d-8a4e591b74c7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063412Z:f31c0402-a4e3-4a3a-b0f8-193275d408c7", "cache-control" : "no-cache", - "x-ms-request-id" : "df79958e-f32b-40f4-816d-8a4e591b74c7", + "x-ms-request-id" : "f31c0402-a4e3-4a3a-b0f8-193275d408c7", "Body" : "" } } ], - "variables" : [ "javacsmrg12620", "md-1d0a528811197", "md-223e33370ac3c" ] + "variables" : [ "javacsmrg28419", "md-1a9816602bbe4", "md-2b7f1966846b8" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromSnapshot.json b/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromSnapshot.json index fe1f5289c6db..87efaa382035 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromSnapshot.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromSnapshot.json @@ -1,408 +1,409 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg30611?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg57538?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:36:59 GMT", + "date" : "Mon, 18 May 2020 06:28:47 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c537bb0c-d695-498e-9dc0-aad6e6b392b1", + "x-ms-correlation-request-id" : "73fac99a-35b9-4e80-9035-ef3dde74a5fc", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083700Z:c537bb0c-d695-498e-9dc0-aad6e6b392b1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062848Z:73fac99a-35b9-4e80-9035-ef3dde74a5fc", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c537bb0c-d695-498e-9dc0-aad6e6b392b1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611\",\"name\":\"javacsmrg30611\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:36:56.153Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "73fac99a-35b9-4e80-9035-ef3dde74a5fc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538\",\"name\":\"javacsmrg57538\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:28:44.249Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-empty-09e949382?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-empty-63380651b?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:07 GMT", + "date" : "Mon, 18 May 2020 06:28:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "259", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "25a7f03f-fcc4-4987-a59d-e7bfb30daf36", + "x-ms-correlation-request-id" : "4ea6ad9f-8369-4b72-a8e7-a067a1a1f189", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083708Z:25a7f03f-fcc4-4987-a59d-e7bfb30daf36", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062854Z:4ea6ad9f-8369-4b72-a8e7-a067a1a1f189", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/47da96e1-ca5f-4abf-8e04-00e2676d788c?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/52c89ca0-54ea-46d7-bfe6-716611dc04fb?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "47da96e1-ca5f-4abf-8e04-00e2676d788c", - "Body" : "{\r\n \"name\": \"md-empty-09e949382\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/47da96e1-ca5f-4abf-8e04-00e2676d788c?api-version=2019-03-01" + "x-ms-request-id" : "52c89ca0-54ea-46d7-bfe6-716611dc04fb", + "Body" : "{\r\n \"name\": \"md-empty-63380651b\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/52c89ca0-54ea-46d7-bfe6-716611dc04fb?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/47da96e1-ca5f-4abf-8e04-00e2676d788c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/52c89ca0-54ea-46d7-bfe6-716611dc04fb?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:37 GMT", + "date" : "Mon, 18 May 2020 06:29:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "819", + "content-length" : "875", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10439", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "63a077b7-0de8-41a6-a99b-4ff95ed0566d", + "x-ms-correlation-request-id" : "28532a60-200d-4898-95a2-419f4a377377", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083738Z:63a077b7-0de8-41a6-a99b-4ff95ed0566d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062925Z:28532a60-200d-4898-95a2-419f4a377377", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ebd106b6-0c7a-4bb7-85f4-c920808719f1", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:37:07.8805095+00:00\",\r\n \"endTime\": \"2020-03-05T08:37:07.9742694+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-empty-09e949382\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-empty-09e949382\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:37:07.8805095+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"33934c12-0a26-4ea2-8f8d-60f819c00c2c\"}}\r\n },\r\n \"name\": \"47da96e1-ca5f-4abf-8e04-00e2676d788c\"\r\n}" + "x-ms-request-id" : "3943d136-2c6f-4cbc-8894-b3063bb8e042", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:28:54.2149901+00:00\",\r\n \"endTime\": \"2020-05-18T06:28:54.3243663+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-empty-63380651b\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-empty-63380651b\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:28:54.2149901+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"a78ca528-7fa1-4be9-b960-9966d5f1a2f1\"}}\r\n },\r\n \"name\": \"52c89ca0-54ea-46d7-bfe6-716611dc04fb\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-empty-09e949382?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-empty-63380651b?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:09 GMT", + "date" : "Mon, 18 May 2020 06:29:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "731", + "content-length" : "809", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10206", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "94d57c76-190d-4e90-854a-f93d816f6aea", + "x-ms-correlation-request-id" : "2fda4a40-cd1b-40f8-a221-450a2a011025", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083809Z:94d57c76-190d-4e90-854a-f93d816f6aea", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062955Z:2fda4a40-cd1b-40f8-a221-450a2a011025", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3b237a1e-708d-408a-8dd5-83380a01e302", - "Body" : "{\r\n \"name\": \"md-empty-09e949382\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-empty-09e949382\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:37:07.8805095+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"33934c12-0a26-4ea2-8f8d-60f819c00c2c\"\r\n }\r\n}" + "x-ms-request-id" : "34f9bc5c-f1fa-430b-9f24-10579ec39359", + "Body" : "{\r\n \"name\": \"md-empty-63380651b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-empty-63380651b\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:28:54.2149901+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"a78ca528-7fa1-4be9-b960-9966d5f1a2f1\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/snapshots/snp-7a70245326ef?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/snapshots/snp-ab36531070c3?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:12 GMT", + "date" : "Mon, 18 May 2020 06:29:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "501", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "de3fcb7d-b21d-4454-9a85-a92065ff7ff8", + "x-ms-correlation-request-id" : "75df84f9-b24b-4ec2-8239-fb3b5b32f995", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;239,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;1919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083812Z:de3fcb7d-b21d-4454-9a85-a92065ff7ff8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063000Z:75df84f9-b24b-4ec2-8239-fb3b5b32f995", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/4882cafb-073b-4ec8-bffb-ff9f3981b3cd?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/736adcd7-deba-4f51-94fd-9e4eaa95b3bd?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "4882cafb-073b-4ec8-bffb-ff9f3981b3cd", - "Body" : "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-empty-09e949382\",\r\n \"sourceUniqueId\": \"33934c12-0a26-4ea2-8f8d-60f819c00c2c\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/4882cafb-073b-4ec8-bffb-ff9f3981b3cd?api-version=2019-03-01" + "x-ms-request-id" : "736adcd7-deba-4f51-94fd-9e4eaa95b3bd", + "Body" : "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-empty-63380651b\",\r\n \"sourceUniqueId\": \"a78ca528-7fa1-4be9-b960-9966d5f1a2f1\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/736adcd7-deba-4f51-94fd-9e4eaa95b3bd?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/4882cafb-073b-4ec8-bffb-ff9f3981b3cd?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/736adcd7-deba-4f51-94fd-9e4eaa95b3bd?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:42 GMT", + "date" : "Mon, 18 May 2020 06:30:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1007", + "content-length" : "1063", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10222", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2b1a39b4-6e08-4c5b-b1d7-ddf73fbe136b", + "x-ms-correlation-request-id" : "3b91f0d0-70bb-4c6f-87ca-9855ee28f80d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083843Z:2b1a39b4-6e08-4c5b-b1d7-ddf73fbe136b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399985", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063030Z:3b91f0d0-70bb-4c6f-87ca-9855ee28f80d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bcd40d28-d231-4603-806b-5ece372dec90", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:38:12.5203772+00:00\",\r\n \"endTime\": \"2020-03-05T08:38:13.3484608+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"snp-7a70245326ef\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/snapshots/snp-7a70245326ef\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-empty-09e949382\",\"sourceUniqueId\":\"33934c12-0a26-4ea2-8f8d-60f819c00c2c\"},\"diskSizeGB\":200,\"incremental\":false,\"timeCreated\":\"2020-03-05T08:38:12.5203772+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":214748364800,\"uniqueId\":\"be5a9387-7e4b-4634-9c83-1be1f004872d\"}}\r\n },\r\n \"name\": \"4882cafb-073b-4ec8-bffb-ff9f3981b3cd\"\r\n}" + "x-ms-request-id" : "3bdf465c-89d8-4073-b560-9093841cea11", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:29:59.8557739+00:00\",\r\n \"endTime\": \"2020-05-18T06:30:00.6370192+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"snp-ab36531070c3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/snapshots/snp-ab36531070c3\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-empty-63380651b\",\"sourceUniqueId\":\"a78ca528-7fa1-4be9-b960-9966d5f1a2f1\"},\"diskSizeGB\":200,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"timeCreated\":\"2020-05-18T06:29:59.8557739+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":214748364800,\"uniqueId\":\"430ccbf8-143d-4f3d-a840-a02be6b31963\"}}\r\n },\r\n \"name\": \"736adcd7-deba-4f51-94fd-9e4eaa95b3bd\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/snapshots/snp-7a70245326ef?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/snapshots/snp-ab36531070c3?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:13 GMT", + "date" : "Mon, 18 May 2020 06:31:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "930", + "content-length" : "1008", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10318", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "205017e1-986d-4b36-82b9-1c9112bd4605", + "x-ms-correlation-request-id" : "ae574d3d-ab37-40e3-bf90-28d2f6df17e7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083914Z:205017e1-986d-4b36-82b9-1c9112bd4605", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39974", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063101Z:ae574d3d-ab37-40e3-bf90-28d2f6df17e7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7e618742-77dd-4dbe-bed3-f3d9a20d7f3e", - "Body" : "{\r\n \"name\": \"snp-7a70245326ef\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/snapshots/snp-7a70245326ef\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-empty-09e949382\",\r\n \"sourceUniqueId\": \"33934c12-0a26-4ea2-8f8d-60f819c00c2c\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-03-05T08:38:12.5203772+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"be5a9387-7e4b-4634-9c83-1be1f004872d\"\r\n }\r\n}" + "x-ms-request-id" : "57def468-357a-408c-8969-52cf9532b02f", + "Body" : "{\r\n \"name\": \"snp-ab36531070c3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/snapshots/snp-ab36531070c3\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-empty-63380651b\",\r\n \"sourceUniqueId\": \"a78ca528-7fa1-4be9-b960-9966d5f1a2f1\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-05-18T06:29:59.8557739+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"430ccbf8-143d-4f3d-a840-a02be6b31963\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-snp-75a06000f0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-snp-b5c043581d?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:18 GMT", + "date" : "Mon, 18 May 2020 06:31:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "489", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aafce5f1-d68a-403b-97dc-71a0cd8e1ed6", + "x-ms-correlation-request-id" : "de18da0f-78ff-4e75-ac48-1255dfeab689", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083919Z:aafce5f1-d68a-403b-97dc-71a0cd8e1ed6", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063106Z:de18da0f-78ff-4e75-ac48-1255dfeab689", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e528490f-2a24-47bd-b9bb-18c9aeb1e64f?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ffa071d0-907a-458b-a3f3-2de7f4de8b9e?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e528490f-2a24-47bd-b9bb-18c9aeb1e64f", - "Body" : "{\r\n \"name\": \"md-snp-75a06000f0\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/snapshots/snp-7a70245326ef\",\r\n \"sourceUniqueId\": \"be5a9387-7e4b-4634-9c83-1be1f004872d\"\r\n },\r\n \"diskSizeGB\": 300,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e528490f-2a24-47bd-b9bb-18c9aeb1e64f?api-version=2019-03-01" + "x-ms-request-id" : "ffa071d0-907a-458b-a3f3-2de7f4de8b9e", + "Body" : "{\r\n \"name\": \"md-snp-b5c043581d\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/snapshots/snp-ab36531070c3\",\r\n \"sourceUniqueId\": \"430ccbf8-143d-4f3d-a840-a02be6b31963\"\r\n },\r\n \"diskSizeGB\": 300,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ffa071d0-907a-458b-a3f3-2de7f4de8b9e?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e528490f-2a24-47bd-b9bb-18c9aeb1e64f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ffa071d0-907a-458b-a3f3-2de7f4de8b9e?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:49 GMT", + "date" : "Mon, 18 May 2020 06:31:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1030", + "content-length" : "1086", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9955", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b605dea0-8d0b-4102-821b-17189f1da7d8", + "x-ms-correlation-request-id" : "d03731ca-ef27-4f9a-88bb-b47582774847", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083950Z:b605dea0-8d0b-4102-821b-17189f1da7d8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399977", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063136Z:d03731ca-ef27-4f9a-88bb-b47582774847", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1362d1a6-c7ec-407d-9d89-6ad093ddc4ca", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:19.7382372+00:00\",\r\n \"endTime\": \"2020-03-05T08:39:20.0663771+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-snp-75a06000f0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-snp-75a06000f0\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/snapshots/snp-7a70245326ef\",\"sourceUniqueId\":\"be5a9387-7e4b-4634-9c83-1be1f004872d\"},\"diskSizeGB\":300,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:39:19.7382372+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":322122547200,\"uniqueId\":\"f9347de2-c439-4343-a531-66ae8587414e\"}}\r\n },\r\n \"name\": \"e528490f-2a24-47bd-b9bb-18c9aeb1e64f\"\r\n}" + "x-ms-request-id" : "0bae56f3-13f8-4e9d-b16b-a4a69660a515", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:31:06.1058734+00:00\",\r\n \"endTime\": \"2020-05-18T06:31:06.4652198+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-snp-b5c043581d\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-snp-b5c043581d\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/snapshots/snp-ab36531070c3\",\"sourceUniqueId\":\"430ccbf8-143d-4f3d-a840-a02be6b31963\"},\"diskSizeGB\":300,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:31:06.1058734+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":322122547200,\"uniqueId\":\"6369bb2a-fe8c-44f9-b51c-77d7287a76fc\"}}\r\n },\r\n \"name\": \"ffa071d0-907a-458b-a3f3-2de7f4de8b9e\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-snp-75a06000f0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-snp-b5c043581d?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:20 GMT", + "date" : "Mon, 18 May 2020 06:32:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "960", + "content-length" : "1038", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10919", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9ae32a41-5dd0-43b6-9251-024449ee123b", + "x-ms-correlation-request-id" : "4ad62cf1-185c-41ef-9fc4-b2a2802f0ef3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084021Z:9ae32a41-5dd0-43b6-9251-024449ee123b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39969", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063207Z:4ad62cf1-185c-41ef-9fc4-b2a2802f0ef3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2a33e5a1-7362-46f1-8c1f-e109f24048e4", - "Body" : "{\r\n \"name\": \"md-snp-75a06000f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/disks/md-snp-75a06000f0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg30611/providers/Microsoft.Compute/snapshots/snp-7a70245326ef\",\r\n \"sourceUniqueId\": \"be5a9387-7e4b-4634-9c83-1be1f004872d\"\r\n },\r\n \"diskSizeGB\": 300,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:39:19.7382372+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 322122547200,\r\n \"uniqueId\": \"f9347de2-c439-4343-a531-66ae8587414e\"\r\n }\r\n}" + "x-ms-request-id" : "63fc8bc2-9322-4cda-92ca-4451ca8f0688", + "Body" : "{\r\n \"name\": \"md-snp-b5c043581d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/disks/md-snp-b5c043581d\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg57538/providers/Microsoft.Compute/snapshots/snp-ab36531070c3\",\r\n \"sourceUniqueId\": \"430ccbf8-143d-4f3d-a840-a02be6b31963\"\r\n },\r\n \"diskSizeGB\": 300,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:31:06.1058734+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 322122547200,\r\n \"uniqueId\": \"6369bb2a-fe8c-44f9-b51c-77d7287a76fc\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg30611?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg57538?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:26 GMT", + "date" : "Mon, 18 May 2020 06:32:10 GMT", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "11390717-e6e0-40a7-9dcd-3c64496490a6", + "x-ms-correlation-request-id" : "8953a070-2d04-4277-8c88-06850a7aa402", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084026Z:11390717-e6e0-40a7-9dcd-3c64496490a6", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMDYxMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063211Z:8953a070-2d04-4277-8c88-06850a7aa402", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzUzOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "11390717-e6e0-40a7-9dcd-3c64496490a6", + "x-ms-request-id" : "8953a070-2d04-4277-8c88-06850a7aa402", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMDYxMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzUzOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:57 GMT", + "date" : "Mon, 18 May 2020 06:32:42 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10425", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bd884e49-5531-4dff-9535-84c20bef15a8", + "x-ms-correlation-request-id" : "f79dad38-19ce-4731-910b-7cf2da27eceb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084057Z:bd884e49-5531-4dff-9535-84c20bef15a8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMDYxMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063242Z:f79dad38-19ce-4731-910b-7cf2da27eceb", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzUzOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "bd884e49-5531-4dff-9535-84c20bef15a8", + "x-ms-request-id" : "f79dad38-19ce-4731-910b-7cf2da27eceb", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMDYxMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzUzOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:28 GMT", + "date" : "Mon, 18 May 2020 06:33:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9734", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6c1484d5-091a-4962-9d2f-10210df04c56", + "x-ms-correlation-request-id" : "0def24fb-6293-4a53-85af-8ab2264b8bd2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084128Z:6c1484d5-091a-4962-9d2f-10210df04c56", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMDYxMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063314Z:0def24fb-6293-4a53-85af-8ab2264b8bd2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzUzOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "6c1484d5-091a-4962-9d2f-10210df04c56", + "x-ms-request-id" : "0def24fb-6293-4a53-85af-8ab2264b8bd2", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMDYxMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzUzOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:59 GMT", + "date" : "Mon, 18 May 2020 06:33:44 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10556", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8db90a94-0e17-4a1b-832f-42a1618e538f", + "x-ms-correlation-request-id" : "ac860b8d-acf3-466e-8512-3b61b4d5f52f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084159Z:8db90a94-0e17-4a1b-832f-42a1618e538f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMDYxMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063344Z:ac860b8d-acf3-466e-8512-3b61b4d5f52f", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzUzOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "8db90a94-0e17-4a1b-832f-42a1618e538f", + "x-ms-request-id" : "ac860b8d-acf3-466e-8512-3b61b4d5f52f", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMDYxMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzUzOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:30 GMT", + "date" : "Mon, 18 May 2020 06:34:14 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10073", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "57439251-63c5-4ee8-b09a-fe63fd0a8b71", + "x-ms-correlation-request-id" : "4d0f696e-51e3-4c82-b22c-e3f8a4428f9b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084230Z:57439251-63c5-4ee8-b09a-fe63fd0a8b71", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMDYxMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063415Z:4d0f696e-51e3-4c82-b22c-e3f8a4428f9b", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzUzOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "57439251-63c5-4ee8-b09a-fe63fd0a8b71", + "x-ms-request-id" : "4d0f696e-51e3-4c82-b22c-e3f8a4428f9b", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMDYxMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NzUzOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:01 GMT", + "date" : "Mon, 18 May 2020 06:34:45 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10410", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8e75bcb2-3ec2-4552-9650-b259c826659b", + "x-ms-correlation-request-id" : "f26de6c2-569c-4653-bee9-006f7f74c1e2", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084301Z:8e75bcb2-3ec2-4552-9650-b259c826659b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063446Z:f26de6c2-569c-4653-bee9-006f7f74c1e2", "cache-control" : "no-cache", - "x-ms-request-id" : "8e75bcb2-3ec2-4552-9650-b259c826659b", + "x-ms-request-id" : "f26de6c2-569c-4653-bee9-006f7f74c1e2", "Body" : "" } } ], - "variables" : [ "javacsmrg30611", "md-empty-09e949382", "md-snp-75a06000f0", "snp-7a70245326ef" ] + "variables" : [ "javacsmrg57538", "md-empty-63380651b", "md-snp-b5c043581d", "snp-ab36531070c3" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromUpload.json b/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromUpload.json index 4f6baeead1b2..4c84202afa1a 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromUpload.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canOperateOnManagedDiskFromUpload.json @@ -1,281 +1,284 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg73839?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg46473?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:01 GMT", + "date" : "Mon, 18 May 2020 06:28:47 GMT", "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9f4ca291-2479-4937-9609-49932c8951c7", + "x-ms-correlation-request-id" : "ab8079a6-74b4-49ec-9c27-9ccf8614054b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083702Z:9f4ca291-2479-4937-9609-49932c8951c7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062847Z:ab8079a6-74b4-49ec-9c27-9ccf8614054b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9f4ca291-2479-4937-9609-49932c8951c7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg73839\",\"name\":\"javacsmrg73839\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-03-05T08:36:55.285Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "ab8079a6-74b4-49ec-9c27-9ccf8614054b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg46473\",\"name\":\"javacsmrg46473\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T06:28:44.252Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg73839/providers/Microsoft.Compute/disks/md-2d63447842d97?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg46473/providers/Microsoft.Compute/disks/md-2ad6466636663?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:10 GMT", + "date" : "Mon, 18 May 2020 06:28:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "318", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d8445c73-414a-4592-832f-03980436473f", + "x-ms-correlation-request-id" : "73dde254-5246-43ad-8209-0b5efbb68af5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083710Z:d8445c73-414a-4592-832f-03980436473f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062853Z:73dde254-5246-43ad-8209-0b5efbb68af5", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b0ae2dba-90e5-4885-839c-857362e78a4e?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2597e7b6-0a6c-45c9-8eea-cdc65488f026?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b0ae2dba-90e5-4885-839c-857362e78a4e", - "Body" : "{\r\n \"name\": \"md-2d63447842d97\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 1048576512\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b0ae2dba-90e5-4885-839c-857362e78a4e?api-version=2019-03-01" + "x-ms-request-id" : "2597e7b6-0a6c-45c9-8eea-cdc65488f026", + "Body" : "{\r\n \"name\": \"md-2ad6466636663\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 1048576512\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2597e7b6-0a6c-45c9-8eea-cdc65488f026?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b0ae2dba-90e5-4885-839c-857362e78a4e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2597e7b6-0a6c-45c9-8eea-cdc65488f026?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:40 GMT", + "date" : "Mon, 18 May 2020 06:29:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "802", + "content-length" : "856", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10425", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d346d9aa-e3b1-45c3-9b4c-f9d7f079f5ac", + "x-ms-correlation-request-id" : "be6daee1-92a9-4814-992b-979b05418c38", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083741Z:d346d9aa-e3b1-45c3-9b4c-f9d7f079f5ac", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062924Z:be6daee1-92a9-4814-992b-979b05418c38", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "77d34f53-9546-41b6-b56a-e68d84564bfe", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:37:10.2554783+00:00\",\r\n \"endTime\": \"2020-03-05T08:37:10.3648752+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-2d63447842d97\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg73839/providers/Microsoft.Compute/disks/md-2d63447842d97\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Upload\",\"uploadSizeBytes\":1048576512},\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:37:10.2554783+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"ReadyToUpload\",\"uniqueId\":\"381693c0-0a4d-4afe-beb9-6d8f286cd318\"}}\r\n },\r\n \"name\": \"b0ae2dba-90e5-4885-839c-857362e78a4e\"\r\n}" + "x-ms-request-id" : "0a1e62bf-10e8-46f2-a8dc-bdf1745d6256", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:28:53.621246+00:00\",\r\n \"endTime\": \"2020-05-18T06:28:53.7306203+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"md-2ad6466636663\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg46473/providers/Microsoft.Compute/disks/md-2ad6466636663\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Upload\",\"uploadSizeBytes\":1048576512},\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T06:28:53.621246+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"ReadyToUpload\",\"uniqueId\":\"a6949f63-5c41-45bc-bb4c-6ec8903eb924\"}}\r\n },\r\n \"name\": \"2597e7b6-0a6c-45c9-8eea-cdc65488f026\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg73839/providers/Microsoft.Compute/disks/md-2d63447842d97?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg46473/providers/Microsoft.Compute/disks/md-2ad6466636663?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:11 GMT", + "date" : "Mon, 18 May 2020 06:29:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "709", + "content-length" : "786", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10205", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "69051602-b36a-4713-b3db-6b44fe8ac5a3", + "x-ms-correlation-request-id" : "5c4d940d-d244-4e70-b716-51c584c8bbd1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083811Z:69051602-b36a-4713-b3db-6b44fe8ac5a3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062954Z:5c4d940d-d244-4e70-b716-51c584c8bbd1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ae187816-6764-4e17-a257-246ec98e256b", - "Body" : "{\r\n \"name\": \"md-2d63447842d97\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg73839/providers/Microsoft.Compute/disks/md-2d63447842d97\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 1048576512\r\n },\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:37:10.2554783+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ReadyToUpload\",\r\n \"uniqueId\": \"381693c0-0a4d-4afe-beb9-6d8f286cd318\"\r\n }\r\n}" + "x-ms-request-id" : "17d23566-7fe8-401e-8885-49b8a8c17297", + "Body" : "{\r\n \"name\": \"md-2ad6466636663\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg46473/providers/Microsoft.Compute/disks/md-2ad6466636663\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 1048576512\r\n },\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:28:53.621246+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ReadyToUpload\",\r\n \"uniqueId\": \"a6949f63-5c41-45bc-bb4c-6ec8903eb924\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg73839/providers/Microsoft.Compute/disks/md-2d63447842d97?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg46473/providers/Microsoft.Compute/disks/md-2ad6466636663?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:11 GMT", + "date" : "Mon, 18 May 2020 06:29:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "709", + "content-length" : "786", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10770", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6e5f0d4c-ce4e-476f-8a39-1b0f96d10a9d", + "x-ms-correlation-request-id" : "ccca0229-45df-49e7-81bb-0eff70e5a1a0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083812Z:6e5f0d4c-ce4e-476f-8a39-1b0f96d10a9d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062955Z:ccca0229-45df-49e7-81bb-0eff70e5a1a0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "59d7b5e6-f04d-4d40-9b14-85d1d7cd0598", - "Body" : "{\r\n \"name\": \"md-2d63447842d97\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg73839/providers/Microsoft.Compute/disks/md-2d63447842d97\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 1048576512\r\n },\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:37:10.2554783+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ReadyToUpload\",\r\n \"uniqueId\": \"381693c0-0a4d-4afe-beb9-6d8f286cd318\"\r\n }\r\n}" + "x-ms-request-id" : "30f0e57b-bb1e-47a1-9171-b50f3b626981", + "Body" : "{\r\n \"name\": \"md-2ad6466636663\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg46473/providers/Microsoft.Compute/disks/md-2ad6466636663\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Upload\",\r\n \"uploadSizeBytes\": 1048576512\r\n },\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T06:28:53.621246+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ReadyToUpload\",\r\n \"uniqueId\": \"a6949f63-5c41-45bc-bb4c-6ec8903eb924\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg73839/providers/Microsoft.Compute/disks/md-2d63447842d97?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg46473/providers/Microsoft.Compute/disks/md-2ad6466636663?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:12 GMT", + "date" : "Mon, 18 May 2020 06:29:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac53d788-e77d-4cfe-a311-3d10b3b40bc6", + "x-ms-correlation-request-id" : "0c04cab3-f5c6-4796-acfd-5cb955c3ea91", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;999,Microsoft.Compute/DeleteDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083813Z:ac53d788-e77d-4cfe-a311-3d10b3b40bc6", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/28b682b2-7eb3-42fc-86f6-477b9b07573b?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T062957Z:0c04cab3-f5c6-4796-acfd-5cb955c3ea91", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e3bf26f1-e2cd-47c8-bebe-719344aa022f?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "28b682b2-7eb3-42fc-86f6-477b9b07573b", + "x-ms-request-id" : "e3bf26f1-e2cd-47c8-bebe-719344aa022f", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/28b682b2-7eb3-42fc-86f6-477b9b07573b?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e3bf26f1-e2cd-47c8-bebe-719344aa022f?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/28b682b2-7eb3-42fc-86f6-477b9b07573b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e3bf26f1-e2cd-47c8-bebe-719344aa022f?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:44 GMT", + "date" : "Mon, 18 May 2020 06:30:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10877", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a2284374-8564-4286-be51-eea97b0888b9", + "x-ms-correlation-request-id" : "0b06eb56-e5a4-44cf-8914-c3042e3da923", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083844Z:a2284374-8564-4286-be51-eea97b0888b9", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399987", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063027Z:0b06eb56-e5a4-44cf-8914-c3042e3da923", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "659fffe3-7fd5-4eff-b4fb-31087a2de72d", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:38:13.0359648+00:00\",\r\n \"endTime\": \"2020-03-05T08:38:13.1765685+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"28b682b2-7eb3-42fc-86f6-477b9b07573b\"\r\n}" + "x-ms-request-id" : "9e6a336a-5dad-438e-926f-5037e7493ddd", + "Body" : "{\r\n \"startTime\": \"2020-05-18T06:29:56.9963942+00:00\",\r\n \"endTime\": \"2020-05-18T06:29:57.1213942+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e3bf26f1-e2cd-47c8-bebe-719344aa022f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/28b682b2-7eb3-42fc-86f6-477b9b07573b?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e3bf26f1-e2cd-47c8-bebe-719344aa022f?monitor=true&api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:14 GMT", + "date" : "Mon, 18 May 2020 06:30:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268018757973088", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10317", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e3b91104-0f32-41f9-b3f4-664134b70d6c", + "x-ms-correlation-request-id" : "49a528b7-4aec-498b-aeb7-5cc1741f991c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083915Z:e3b91104-0f32-41f9-b3f4-664134b70d6c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399983", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063058Z:49a528b7-4aec-498b-aeb7-5cc1741f991c", "cache-control" : "no-cache", - "x-ms-request-id" : "8497d124-f468-4c51-8c04-26b4509bee06", + "x-ms-request-id" : "092e9297-5b03-4490-b06a-5202fbe3e4fb", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg73839?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg46473?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:19 GMT", + "date" : "Mon, 18 May 2020 06:31:02 GMT", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7079f1f2-0d50-40fb-85a8-553d165055f4", + "x-ms-correlation-request-id" : "9d9a1bfc-ce34-482f-9f1b-2bdfa8e70bbd", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083920Z:7079f1f2-0d50-40fb-85a8-553d165055f4", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3MzgzOS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063103Z:9d9a1bfc-ce34-482f-9f1b-2bdfa8e70bbd", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0NjQ3My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "7079f1f2-0d50-40fb-85a8-553d165055f4", + "x-ms-request-id" : "9d9a1bfc-ce34-482f-9f1b-2bdfa8e70bbd", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3MzgzOS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0NjQ3My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:50 GMT", + "date" : "Mon, 18 May 2020 06:31:33 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10413", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "04b42582-698a-4c68-809e-221fdf02a7b2", + "x-ms-correlation-request-id" : "62c517d7-5585-444e-a440-3304e9b3bae1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083950Z:04b42582-698a-4c68-809e-221fdf02a7b2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3MzgzOS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063133Z:62c517d7-5585-444e-a440-3304e9b3bae1", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0NjQ3My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "04b42582-698a-4c68-809e-221fdf02a7b2", + "x-ms-request-id" : "62c517d7-5585-444e-a440-3304e9b3bae1", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3MzgzOS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0NjQ3My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:21 GMT", + "date" : "Mon, 18 May 2020 06:32:05 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10195", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e317101b-450c-46a0-a56c-6858b4b95594", + "x-ms-correlation-request-id" : "1c19a2b6-18cc-49ac-b27c-38737ecb3994", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084021Z:e317101b-450c-46a0-a56c-6858b4b95594", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T063205Z:1c19a2b6-18cc-49ac-b27c-38737ecb3994", "cache-control" : "no-cache", - "x-ms-request-id" : "e317101b-450c-46a0-a56c-6858b4b95594", + "x-ms-request-id" : "1c19a2b6-18cc-49ac-b27c-38737ecb3994", "Body" : "" } } ], - "variables" : [ "javacsmrg73839", "md-2d63447842d97" ] + "variables" : [ "javacsmrg46473", "md-2ad6466636663" ] } \ No newline at end of file diff --git a/sdk/compute/mgmt/src/test/resources/session-records/canUpdateVirtualMachineByAddingAndRemovingManagedDisks.json b/sdk/compute/mgmt/src/test/resources/session-records/canUpdateVirtualMachineByAddingAndRemovingManagedDisks.json index 518d559269a3..16d518a34df6 100644 --- a/sdk/compute/mgmt/src/test/resources/session-records/canUpdateVirtualMachineByAddingAndRemovingManagedDisks.json +++ b/sdk/compute/mgmt/src/test/resources/session-records/canUpdateVirtualMachineByAddingAndRemovingManagedDisks.json @@ -1,1099 +1,965 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67563?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg08266?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:01 GMT", + "date" : "Mon, 18 May 2020 06:59:59 GMT", "content-length" : "309", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f8d4e81c-0913-46b1-9363-a5e16b00a52d", + "x-ms-correlation-request-id" : "ae941fa8-6119-4d43-b089-ddf4c266bcb6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083701Z:f8d4e81c-0913-46b1-9363-a5e16b00a52d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T065959Z:ae941fa8-6119-4d43-b089-ddf4c266bcb6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f8d4e81c-0913-46b1-9363-a5e16b00a52d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563\",\"name\":\"javacsmrg67563\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-03-05T08:36:56.782Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "ae941fa8-6119-4d43-b089-ddf4c266bcb6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266\",\"name\":\"javacsmrg08266\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-05-18T06:59:57.322Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_55e8681282?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_670928364c?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:07 GMT", + "date" : "Mon, 18 May 2020 07:00:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "256", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "147e5704-71a8-42b8-89cd-0d4e91a5027d", + "x-ms-correlation-request-id" : "6ef7f5f1-7bf6-4b50-b7c0-24b91a4beb57", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083708Z:147e5704-71a8-42b8-89cd-0d4e91a5027d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070005Z:6ef7f5f1-7bf6-4b50-b7c0-24b91a4beb57", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/cf031db3-601d-490e-9c79-b8f5d85d1caa?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ec211a17-25b6-4ef7-b604-9292388d38c0?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "cf031db3-601d-490e-9c79-b8f5d85d1caa", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_55e8681282\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/cf031db3-601d-490e-9c79-b8f5d85d1caa?api-version=2019-03-01" + "x-ms-request-id" : "ec211a17-25b6-4ef7-b604-9292388d38c0", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_670928364c\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ec211a17-25b6-4ef7-b604-9292388d38c0?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_2ad022125a?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_6773638815?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:08 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "256", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "471b4f7f-e11a-4b9e-8a68-633165babac1", + "x-ms-correlation-request-id" : "e2656f62-c2ee-482d-8871-4564a7a53323", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083708Z:471b4f7f-e11a-4b9e-8a68-633165babac1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070005Z:e2656f62-c2ee-482d-8871-4564a7a53323", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/40eadb48-9eaa-47ee-9e15-59f9d01b55d9?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/eaa4f186-137b-4a73-986c-34b1546866b5?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "40eadb48-9eaa-47ee-9e15-59f9d01b55d9", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_2ad022125a\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/40eadb48-9eaa-47ee-9e15-59f9d01b55d9?api-version=2019-03-01" + "x-ms-request-id" : "eaa4f186-137b-4a73-986c-34b1546866b5", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_6773638815\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/eaa4f186-137b-4a73-986c-34b1546866b5?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/virtualNetworks/vnet64528dd626?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/publicIPAddresses/pip49178ad5?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:09 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1342", + "azure-asyncnotification" : "Enabled", + "content-length" : "758", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fb28fc51-9277-4f7e-b8f1-4bcae43c89b6", + "x-ms-correlation-request-id" : "ce546b06-a8bd-4ef4-8f89-edd330da77ba", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f6da313c-8f7a-4103-b4d5-7de209567d58", + "x-ms-arm-service-request-id" : "33b281c5-a6bd-497f-9764-57d3a762a834", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083709Z:fb28fc51-9277-4f7e-b8f1-4bcae43c89b6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070005Z:ce546b06-a8bd-4ef4-8f89-edd330da77ba", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b6897d81-812a-457c-aaed-2d169ce364ae", - "Body" : "{\r\n \"name\": \"vnet64528dd626\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/virtualNetworks/vnet64528dd626\",\r\n \"etag\": \"W/\\\"3e9e2d5b-159c-4823-9e14-49df0d3b7708\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d6651df0-bb6a-45fb-9af4-602c9d318912\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/virtualNetworks/vnet64528dd626/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3e9e2d5b-159c-4823-9e14-49df0d3b7708\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b6897d81-812a-457c-aaed-2d169ce364ae?api-version=2019-06-01" + "x-ms-request-id" : "d7964e9a-0010-4457-8bba-159d03287262", + "Body" : "{\r\n \"name\": \"pip49178ad5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/publicIPAddresses/pip49178ad5\",\r\n \"etag\": \"W/\\\"816293e7-a0ec-40a3-b076-b36d0188b64c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"703c012c-8d84-4242-bba3-7dfefe46a97c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipfa393491538e\",\r\n \"fqdn\": \"pipfa393491538e.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d7964e9a-0010-4457-8bba-159d03287262?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/publicIPAddresses/pip230953f1?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_5591081126?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:08 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "758", + "content-length" : "256", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", - "StatusCode" : "201", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e89458e3-0987-400b-8be1-fbccdc0edfbd", + "x-ms-correlation-request-id" : "3b23371d-d7ea-4231-b816-e124c444ac68", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5dc738ae-b2c8-402f-92f6-5e5a2d9c747c", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083709Z:e89458e3-0987-400b-8be1-fbccdc0edfbd", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070005Z:3b23371d-d7ea-4231-b816-e124c444ac68", "content-type" : "application/json; charset=utf-8", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c9a59488-b733-4ff5-b813-b77678532da6?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ff7df596-05a2-49e6-bbdf-0dd7136db3a4", - "Body" : "{\r\n \"name\": \"pip230953f1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/publicIPAddresses/pip230953f1\",\r\n \"etag\": \"W/\\\"b2aa03ed-f545-4d62-8415-d757e8634ce7\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"634b9a82-4b49-49b2-a617-a114d53fb3b7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipa39009704726\",\r\n \"fqdn\": \"pipa39009704726.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ff7df596-05a2-49e6-bbdf-0dd7136db3a4?api-version=2019-06-01" + "x-ms-request-id" : "c9a59488-b733-4ff5-b813-b77678532da6", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_5591081126\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c9a59488-b733-4ff5-b813-b77678532da6?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_8c524714f8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/virtualNetworks/vnet48575d226e?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:09 GMT", + "date" : "Mon, 18 May 2020 07:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "256", + "azure-asyncnotification" : "Enabled", + "content-length" : "1342", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", - "StatusCode" : "202", + "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "063040ba-04d2-492f-81e7-aafe0a7e4cdb", + "x-ms-correlation-request-id" : "52073a2c-be70-4d5f-9798-fadbbf7c459d", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "a02251a5-c73f-45c8-8daf-1f6e900f8f9c", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083710Z:063040ba-04d2-492f-81e7-aafe0a7e4cdb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070006Z:52073a2c-be70-4d5f-9798-fadbbf7c459d", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/58c6365a-3e82-44b6-8380-c6d1f31c2a70?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "58c6365a-3e82-44b6-8380-c6d1f31c2a70", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_8c524714f8\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/58c6365a-3e82-44b6-8380-c6d1f31c2a70?api-version=2019-03-01" + "x-ms-request-id" : "a028f919-9eb1-4239-ad3c-5191ab112b7e", + "Body" : "{\r\n \"name\": \"vnet48575d226e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/virtualNetworks/vnet48575d226e\",\r\n \"etag\": \"W/\\\"4d253ba3-7857-4090-be49-f8ab72543678\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e618e97e-e9fc-4c78-aaed-d1604924fcfb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/virtualNetworks/vnet48575d226e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4d253ba3-7857-4090-be49-f8ab72543678\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a028f919-9eb1-4239-ad3c-5191ab112b7e?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/cf031db3-601d-490e-9c79-b8f5d85d1caa?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ec211a17-25b6-4ef7-b604-9292388d38c0?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:38 GMT", + "date" : "Mon, 18 May 2020 07:00:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "818", + "content-length" : "876", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10232", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5353b78a-3b04-40db-9196-48d45fdf3497", + "x-ms-correlation-request-id" : "5e486969-d862-4d80-a608-350889aad4d4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083738Z:5353b78a-3b04-40db-9196-48d45fdf3497", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070035Z:5e486969-d862-4d80-a608-350889aad4d4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e2907f34-b2f3-4001-9eec-b5fa5df450a2", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:37:07.957275+00:00\",\r\n \"endTime\": \"2020-03-05T08:37:08.0822983+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_55e8681282\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_55e8681282\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:37:07.957275+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"38e4a4d4-73c0-4bfd-9305-35deab02f2ab\"}}\r\n },\r\n \"name\": \"cf031db3-601d-490e-9c79-b8f5d85d1caa\"\r\n}" + "x-ms-request-id" : "d863ef60-c650-409b-b478-5fe4deb7b4c3", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:00:04.9251796+00:00\",\r\n \"endTime\": \"2020-05-18T07:00:05.0970702+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_670928364c\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_670928364c\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:00:04.9251796+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"884a9b3d-af93-43c0-916f-7583f89c4cd5\"}}\r\n },\r\n \"name\": \"ec211a17-25b6-4ef7-b604-9292388d38c0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/40eadb48-9eaa-47ee-9e15-59f9d01b55d9?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/eaa4f186-137b-4a73-986c-34b1546866b5?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:37 GMT", + "date" : "Mon, 18 May 2020 07:00:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "820", + "content-length" : "876", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10429", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "374f3711-3958-4b0c-a27f-24f46fc55c61", + "x-ms-correlation-request-id" : "b4130179-eeca-4ae8-80ba-e5740a525796", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083738Z:374f3711-3958-4b0c-a27f-24f46fc55c61", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070035Z:b4130179-eeca-4ae8-80ba-e5740a525796", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c44742cc-6ded-4648-9706-d2ab8dbff6af", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:37:08.0822983+00:00\",\r\n \"endTime\": \"2020-03-05T08:37:08.2073195+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_2ad022125a\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_2ad022125a\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:37:08.0822983+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"f8ac9f1b-1f21-4fa8-8c2b-80a80e5aa7f1\"}}\r\n },\r\n \"name\": \"40eadb48-9eaa-47ee-9e15-59f9d01b55d9\"\r\n}" + "x-ms-request-id" : "2ebc205e-02df-4b1c-b4c0-a858d4b39fc5", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:00:04.9564403+00:00\",\r\n \"endTime\": \"2020-05-18T07:00:05.1126724+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_6773638815\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_6773638815\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:00:04.9564403+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"584487af-32f2-4cc0-be92-9b80baaa0627\"}}\r\n },\r\n \"name\": \"eaa4f186-137b-4a73-986c-34b1546866b5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b6897d81-812a-457c-aaed-2d169ce364ae?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c9a59488-b733-4ff5-b813-b77678532da6?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:40 GMT", + "date" : "Mon, 18 May 2020 07:00:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", + "content-length" : "876", "expires" : "-1", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10556", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "060f3fb9-0b67-41d8-8bfc-d48555df4ed2", + "x-ms-correlation-request-id" : "9e309da7-2dbb-4078-9fb8-98ff52b9e60c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "bacccec8-1bed-4ae9-af77-20d117c5c3dd", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083740Z:060f3fb9-0b67-41d8-8bfc-d48555df4ed2", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399986", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070036Z:9e309da7-2dbb-4078-9fb8-98ff52b9e60c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3f367add-bde0-40dc-833a-d47dccc956fb", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" + "x-ms-request-id" : "3a1bd65a-742e-410c-b5ef-e7651a4de4cd", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:00:05.6751494+00:00\",\r\n \"endTime\": \"2020-05-18T07:00:05.8158212+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_5591081126\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_5591081126\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T07:00:05.6751494+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"e8917739-4d16-45d1-ab53-df033976a91f\"}}\r\n },\r\n \"name\": \"c9a59488-b733-4ff5-b813-b77678532da6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ff7df596-05a2-49e6-bbdf-0dd7136db3a4?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d7964e9a-0010-4457-8bba-159d03287262?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:40 GMT", + "date" : "Mon, 18 May 2020 07:00:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10927", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c51b4485-5c5e-47b8-9a9a-30002886e3f8", + "x-ms-correlation-request-id" : "f26c1349-99ff-4f58-8eb6-d233848943e5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "20d39a31-52b0-44f2-8ff9-85682e5aa73b", + "x-ms-arm-service-request-id" : "40c5e034-08c7-48fe-8068-b73d249b3987", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083740Z:c51b4485-5c5e-47b8-9a9a-30002886e3f8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070037Z:f26c1349-99ff-4f58-8eb6-d233848943e5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0a8e8df4-c003-4da8-9480-b95d5acc059b", + "x-ms-request-id" : "e1eedf35-acf3-43e1-ab56-32f52cfc472f", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/58c6365a-3e82-44b6-8380-c6d1f31c2a70?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a028f919-9eb1-4239-ad3c-5191ab112b7e?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:37:40 GMT", + "date" : "Mon, 18 May 2020 07:00:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "820", + "content-length" : "29", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10425", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6730288f-0c7a-434e-b6c4-ac79a0869c07", + "x-ms-correlation-request-id" : "28fffbd1-2d25-4051-a4cd-cc453a2be669", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "4f58016d-2836-4bf7-bb9a-908463927a1e", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083741Z:6730288f-0c7a-434e-b6c4-ac79a0869c07", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070037Z:28fffbd1-2d25-4051-a4cd-cc453a2be669", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cc7381ae-0ef3-4797-8f3f-08ecc88b1a1d", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:37:09.7541566+00:00\",\r\n \"endTime\": \"2020-03-05T08:37:09.8791572+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"myvm1_mdisk_8c524714f8\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_8c524714f8\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-03-05T08:37:09.7541566+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"5e54ad9e-e59d-4f56-913f-1bbaa721ad67\"}}\r\n },\r\n \"name\": \"58c6365a-3e82-44b6-8380-c6d1f31c2a70\"\r\n}" + "x-ms-request-id" : "52971288-d272-4a5a-8352-fb669506ad70", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_55e8681282?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_670928364c?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:08 GMT", + "date" : "Mon, 18 May 2020 07:01:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "731", + "content-length" : "810", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10320", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9c92ee5f-36f7-442a-b2fd-da1546985b3f", + "x-ms-correlation-request-id" : "a92a1e14-851f-4577-bcdd-53ee59fe4837", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083808Z:9c92ee5f-36f7-442a-b2fd-da1546985b3f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39981", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070106Z:a92a1e14-851f-4577-bcdd-53ee59fe4837", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "48c21e33-17b9-4ac8-bcad-041b7d9a36d2", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_55e8681282\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_55e8681282\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:37:07.957275+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"38e4a4d4-73c0-4bfd-9305-35deab02f2ab\"\r\n }\r\n}" + "x-ms-request-id" : "12209329-1b94-4e3e-a7cb-bab525068ff2", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_670928364c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_670928364c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:00:04.9251796+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"884a9b3d-af93-43c0-916f-7583f89c4cd5\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_2ad022125a?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_6773638815?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:08 GMT", + "date" : "Mon, 18 May 2020 07:01:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "732", + "content-length" : "810", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10578", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "35371625-d416-4ff7-ad03-40be9a8e4867", + "x-ms-correlation-request-id" : "a748e895-f80b-4f06-b5ec-aa7f65b7add3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083809Z:35371625-d416-4ff7-ad03-40be9a8e4867", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39979", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070106Z:a748e895-f80b-4f06-b5ec-aa7f65b7add3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c58362dc-43ba-457d-92e5-ea06e6a9eb06", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_2ad022125a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_2ad022125a\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:37:08.0822983+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"f8ac9f1b-1f21-4fa8-8c2b-80a80e5aa7f1\"\r\n }\r\n}" + "x-ms-request-id" : "6c1cca3e-824b-44f8-9492-3bfeab8ffc25", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_6773638815\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_6773638815\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:00:04.9564403+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"584487af-32f2-4cc0-be92-9b80baaa0627\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/virtualNetworks/vnet64528dd626?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_5591081126?api-version=2019-07-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:09 GMT", + "date" : "Mon, 18 May 2020 07:01:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1344", + "content-length" : "810", "expires" : "-1", + "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132229950838493465", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10551", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "56cbd728-9b33-4d17-ae6f-8cef53e90b78", + "x-ms-correlation-request-id" : "31fb19d5-3c0c-4432-8ddd-46ea554efddd", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "72f8ce77-911e-45de-b364-fefcff2da376", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083810Z:56cbd728-9b33-4d17-ae6f-8cef53e90b78", - "etag" : "W/\"ee0ef9d2-c964-4351-8c7b-f09d5f9d41bb\"", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39977", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070106Z:31fb19d5-3c0c-4432-8ddd-46ea554efddd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "34713c3f-af6c-4e1f-9a35-09d8e77f1e1c", - "Body" : "{\r\n \"name\": \"vnet64528dd626\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/virtualNetworks/vnet64528dd626\",\r\n \"etag\": \"W/\\\"ee0ef9d2-c964-4351-8c7b-f09d5f9d41bb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d6651df0-bb6a-45fb-9af4-602c9d318912\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/virtualNetworks/vnet64528dd626/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ee0ef9d2-c964-4351-8c7b-f09d5f9d41bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "e4075d26-d81a-4e50-bbd9-b20190a806be", + "Body" : "{\r\n \"name\": \"myvm1_mdisk_5591081126\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_5591081126\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T07:00:05.6751494+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"e8917739-4d16-45d1-ab53-df033976a91f\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/publicIPAddresses/pip230953f1?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/publicIPAddresses/pip49178ad5?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:10 GMT", + "date" : "Mon, 18 May 2020 07:01:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "759", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10515", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ecf9d674-e912-47df-9055-f0ec93681859", + "x-ms-correlation-request-id" : "792633c5-424d-4498-8b35-a3e1b08d9948", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "fa25a729-a043-4717-bfed-ca9ef6737ad9", + "x-ms-arm-service-request-id" : "ba149bd5-5e29-4944-b330-674a5890f773", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083811Z:ecf9d674-e912-47df-9055-f0ec93681859", - "etag" : "W/\"614d2c8f-2f04-49e3-95be-f76f138e3ef9\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070107Z:792633c5-424d-4498-8b35-a3e1b08d9948", + "etag" : "W/\"9d680230-d300-46e0-a916-539bbf93b0c8\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b3d46605-bae0-4cc5-a5d5-0a49c09049aa", - "Body" : "{\r\n \"name\": \"pip230953f1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/publicIPAddresses/pip230953f1\",\r\n \"etag\": \"W/\\\"614d2c8f-2f04-49e3-95be-f76f138e3ef9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"634b9a82-4b49-49b2-a617-a114d53fb3b7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipa39009704726\",\r\n \"fqdn\": \"pipa39009704726.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "2baa411d-78ec-4d14-9d22-8035b3f5703b", + "Body" : "{\r\n \"name\": \"pip49178ad5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/publicIPAddresses/pip49178ad5\",\r\n \"etag\": \"W/\\\"9d680230-d300-46e0-a916-539bbf93b0c8\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"703c012c-8d84-4242-bba3-7dfefe46a97c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipfa393491538e\",\r\n \"fqdn\": \"pipfa393491538e.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_8c524714f8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/virtualNetworks/vnet48575d226e?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:11 GMT", + "date" : "Mon, 18 May 2020 07:01:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "732", + "content-length" : "1344", "expires" : "-1", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_132239833591412924", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9969", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e85333d5-04e8-4b5f-9721-a15aa9a220b5", + "x-ms-correlation-request-id" : "b6fca0d1-2405-4647-b635-4dc3dea9c3d1", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "ad2f908a-1bf8-46e0-be12-bc58f36ae733", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083811Z:e85333d5-04e8-4b5f-9721-a15aa9a220b5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070108Z:b6fca0d1-2405-4647-b635-4dc3dea9c3d1", + "etag" : "W/\"17632c23-07cb-4b28-8a2c-d81af6d041a8\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cb13a3ad-3161-4c35-888e-ae94b79a7713", - "Body" : "{\r\n \"name\": \"myvm1_mdisk_8c524714f8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_8c524714f8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-03-05T08:37:09.7541566+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"5e54ad9e-e59d-4f56-913f-1bbaa721ad67\"\r\n }\r\n}" + "x-ms-request-id" : "b02a45b1-8748-4b97-a5df-2f94636d3f76", + "Body" : "{\r\n \"name\": \"vnet48575d226e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/virtualNetworks/vnet48575d226e\",\r\n \"etag\": \"W/\\\"17632c23-07cb-4b28-8a2c-d81af6d041a8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e618e97e-e9fc-4c78-aaed-d1604924fcfb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/virtualNetworks/vnet48575d226e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"17632c23-07cb-4b28-8a2c-d81af6d041a8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/networkInterfaces/nicmyvm14380936600?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/networkInterfaces/nicmyvm180781629a4?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:17 GMT", + "date" : "Mon, 18 May 2020 07:01:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", "content-length" : "1854", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "69d092ee-bd89-4cf5-9d3c-1d8fb1388907", + "x-ms-correlation-request-id" : "9a4505e6-a2c2-4580-be14-9cbf64e9ab73", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e97a9682-aeca-4781-b766-7680b9500151", + "x-ms-arm-service-request-id" : "ae7ea566-b481-4a28-bb35-e08d5bca18c2", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083817Z:69d092ee-bd89-4cf5-9d3c-1d8fb1388907", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070114Z:9a4505e6-a2c2-4580-be14-9cbf64e9ab73", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "accd6c89-42cd-48f8-803c-c02f41a0d961", - "Body" : "{\r\n \"name\": \"nicmyvm14380936600\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/networkInterfaces/nicmyvm14380936600\",\r\n \"etag\": \"W/\\\"74625acd-ef02-44b9-bf92-2cba3d0f330e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d36d0dcf-d5cb-4fb8-9998-28c05b0fc91c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/networkInterfaces/nicmyvm14380936600/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"74625acd-ef02-44b9-bf92-2cba3d0f330e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/publicIPAddresses/pip230953f1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/virtualNetworks/vnet64528dd626/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4aowlvtkxp3ulgxumawj0mmjcc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/accd6c89-42cd-48f8-803c-c02f41a0d961?api-version=2019-06-01" + "x-ms-request-id" : "effbae03-d27b-4cbc-bb78-0ba224966f20", + "Body" : "{\r\n \"name\": \"nicmyvm180781629a4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/networkInterfaces/nicmyvm180781629a4\",\r\n \"etag\": \"W/\\\"7240204b-36e9-4e91-b3a8-b99beeb6ea47\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b088283d-99b0-404c-88ee-e352a3cb1ceb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/networkInterfaces/nicmyvm180781629a4/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7240204b-36e9-4e91-b3a8-b99beeb6ea47\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/publicIPAddresses/pip49178ad5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/virtualNetworks/vnet48575d226e/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p1urrzx23f2ezkxn0fqesjh25d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/effbae03-d27b-4cbc-bb78-0ba224966f20?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/accd6c89-42cd-48f8-803c-c02f41a0d961?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/effbae03-d27b-4cbc-bb78-0ba224966f20?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:38:47 GMT", + "date" : "Mon, 18 May 2020 07:01:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10872", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "32b1199d-4abc-4b69-8af4-34ab9a0b3bc3", + "x-ms-correlation-request-id" : "2082e984-7c01-4767-88cb-330059988df5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2b5d047a-bcca-4907-9022-54bcd268aacf", + "x-ms-arm-service-request-id" : "7907e987-0c5a-451d-82d5-26d9bdcd42e4", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083847Z:32b1199d-4abc-4b69-8af4-34ab9a0b3bc3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070145Z:2082e984-7c01-4767-88cb-330059988df5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bd7b7804-c640-413f-89ab-107be3373890", + "x-ms-request-id" : "e5fb8da1-999e-4424-b7b1-8462e0e4fc2c", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/networkInterfaces/nicmyvm14380936600?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/networkInterfaces/nicmyvm180781629a4?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:18 GMT", + "date" : "Mon, 18 May 2020 07:02:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1854", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10217", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2745d62e-0760-409c-b2d5-c08835d1e41b", + "x-ms-correlation-request-id" : "cd351a44-e183-4138-8971-babb495e8194", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3ebc563c-b4c4-47c7-81a1-0c338156df6d", + "x-ms-arm-service-request-id" : "d71808ff-e830-41bf-af4e-0e61ee54601b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083918Z:2745d62e-0760-409c-b2d5-c08835d1e41b", - "etag" : "W/\"74625acd-ef02-44b9-bf92-2cba3d0f330e\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070216Z:cd351a44-e183-4138-8971-babb495e8194", + "etag" : "W/\"7240204b-36e9-4e91-b3a8-b99beeb6ea47\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2d5307ac-7756-4dd3-b22f-4151d0f1b056", - "Body" : "{\r\n \"name\": \"nicmyvm14380936600\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/networkInterfaces/nicmyvm14380936600\",\r\n \"etag\": \"W/\\\"74625acd-ef02-44b9-bf92-2cba3d0f330e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d36d0dcf-d5cb-4fb8-9998-28c05b0fc91c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/networkInterfaces/nicmyvm14380936600/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"74625acd-ef02-44b9-bf92-2cba3d0f330e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/publicIPAddresses/pip230953f1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/virtualNetworks/vnet64528dd626/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4aowlvtkxp3ulgxumawj0mmjcc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "1adf52b3-1d17-41c1-84a0-c7f1ae79f53d", + "Body" : "{\r\n \"name\": \"nicmyvm180781629a4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/networkInterfaces/nicmyvm180781629a4\",\r\n \"etag\": \"W/\\\"7240204b-36e9-4e91-b3a8-b99beeb6ea47\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b088283d-99b0-404c-88ee-e352a3cb1ceb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/networkInterfaces/nicmyvm180781629a4/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7240204b-36e9-4e91-b3a8-b99beeb6ea47\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/publicIPAddresses/pip49178ad5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/virtualNetworks/vnet48575d226e/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p1urrzx23f2ezkxn0fqesjh25d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:24 GMT", + "date" : "Mon, 18 May 2020 07:02:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3423", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0a646421-b93a-4946-a1b0-e86a0a5e2302", + "x-ms-correlation-request-id" : "42549f5e-c99c-47f6-bbed-4fef9ebdfff6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083924Z:0a646421-b93a-4946-a1b0-e86a0a5e2302", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070223Z:42549f5e-c99c-47f6-bbed-4fef9ebdfff6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5909fe72-4cf8-41f4-a601-0654e825291d", - "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"88af10d9-1f08-4321-89b1-14ad7a844eda\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_55e8681282\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_55e8681282\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_2ad022125a\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_2ad022125a\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_8c524714f8\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_8c524714f8\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/networkInterfaces/nicmyvm14380936600\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5909fe72-4cf8-41f4-a601-0654e825291d?api-version=2019-03-01" + "x-ms-request-id" : "24ceb473-e9b7-461b-9a94-0731d7d2d04a", + "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"57fff9a9-eee0-41cb-8357-55febd999ce8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_6773638815\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_6773638815\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_670928364c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_670928364c\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_5591081126\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_5591081126\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/networkInterfaces/nicmyvm180781629a4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/24ceb473-e9b7-461b-9a94-0731d7d2d04a?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5909fe72-4cf8-41f4-a601-0654e825291d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/24ceb473-e9b7-461b-9a94-0731d7d2d04a?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:39:54 GMT", + "date" : "Mon, 18 May 2020 07:02:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9953", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3215f871-a706-4c66-a03f-33b1de5c17f7", + "x-ms-correlation-request-id" : "993deea3-2072-4cc2-be3e-9bae49021b9e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T083955Z:3215f871-a706-4c66-a03f-33b1de5c17f7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070254Z:993deea3-2072-4cc2-be3e-9bae49021b9e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "05e7e242-33fd-4694-8c66-6261d98563fa", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:23.0296782+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5909fe72-4cf8-41f4-a601-0654e825291d\"\r\n}" + "x-ms-request-id" : "fc95f0e5-9cd6-431a-8645-a97b2cf2ab58", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:21.6072668+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"24ceb473-e9b7-461b-9a94-0731d7d2d04a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5909fe72-4cf8-41f4-a601-0654e825291d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/24ceb473-e9b7-461b-9a94-0731d7d2d04a?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:25 GMT", + "date" : "Mon, 18 May 2020 07:03:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9740", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f8e61e85-f362-4b24-bf53-b1f6b717b0a3", + "x-ms-correlation-request-id" : "9cf94e75-a270-4ad2-8b7b-78729fec20a0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084025Z:f8e61e85-f362-4b24-bf53-b1f6b717b0a3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070324Z:9cf94e75-a270-4ad2-8b7b-78729fec20a0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "29ce48fd-aaca-4a9d-a629-1d2534db7b59", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:23.0296782+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5909fe72-4cf8-41f4-a601-0654e825291d\"\r\n}" + "x-ms-request-id" : "b95a861d-ac89-40d7-ac02-413eba58567e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:21.6072668+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"24ceb473-e9b7-461b-9a94-0731d7d2d04a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5909fe72-4cf8-41f4-a601-0654e825291d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/24ceb473-e9b7-461b-9a94-0731d7d2d04a?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:40:54 GMT", + "date" : "Mon, 18 May 2020 07:03:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9951", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0cdd9a80-bfad-4702-aad3-372ab861c9e6", + "x-ms-correlation-request-id" : "61fa309c-fedd-4c32-8a9f-37f75f2c6a8d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084055Z:0cdd9a80-bfad-4702-aad3-372ab861c9e6", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29981", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070355Z:61fa309c-fedd-4c32-8a9f-37f75f2c6a8d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8f7abe7a-ec2c-459b-998b-b388e328d1a8", - "Body" : "{\r\n \"startTime\": \"2020-03-05T08:39:23.0296782+00:00\",\r\n \"endTime\": \"2020-03-05T08:40:29.7331637+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5909fe72-4cf8-41f4-a601-0654e825291d\"\r\n}" + "x-ms-request-id" : "0c2987de-6a23-4797-8d97-f884283f580b", + "Body" : "{\r\n \"startTime\": \"2020-05-18T07:02:21.6072668+00:00\",\r\n \"endTime\": \"2020-05-18T07:03:31.7794581+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"24ceb473-e9b7-461b-9a94-0731d7d2d04a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:25 GMT", + "date" : "Mon, 18 May 2020 07:04:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "4176", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10855", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0ed93100-6d04-459d-9338-035b26b288db", + "x-ms-correlation-request-id" : "87b0677c-3e54-4cac-b510-e7b778c93a2f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084126Z:0ed93100-6d04-459d-9338-035b26b288db", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31984", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070427Z:87b0677c-3e54-4cac-b510-e7b778c93a2f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9014d45b-e354-4302-a80f-44922470f1a1", - "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"88af10d9-1f08-4321-89b1-14ad7a844eda\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_99141c8d261d4b9192032163ca646f21\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG67563/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_99141c8d261d4b9192032163ca646f21\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_55e8681282\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_55e8681282\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_2ad022125a\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_2ad022125a\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_8c524714f8\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_8c524714f8\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm1_disk5_c1c66e99f22f41beabf95fb7ef32ae66\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG67563/providers/Microsoft.Compute/disks/myvm1_disk5_c1c66e99f22f41beabf95fb7ef32ae66\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm1_disk6_28f6aa9ea35b4b36aaa8753e21a698fe\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG67563/providers/Microsoft.Compute/disks/myvm1_disk6_28f6aa9ea35b4b36aaa8753e21a698fe\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/networkInterfaces/nicmyvm14380936600\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "e83c02f7-1e25-4eae-a39d-7b6832a57a9f", + "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"57fff9a9-eee0-41cb-8357-55febd999ce8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_a62817b86d66452ca2fdbc60d3dfa140\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG08266/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_a62817b86d66452ca2fdbc60d3dfa140\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_6773638815\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_6773638815\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_670928364c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_670928364c\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_5591081126\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_5591081126\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm1_disk5_f18024b2bb8447c2a465cf09478724f0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG08266/providers/Microsoft.Compute/disks/myvm1_disk5_f18024b2bb8447c2a465cf09478724f0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm1_disk6_ed1bf8ad63b04c5dab3a40ab261c855e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG08266/providers/Microsoft.Compute/disks/myvm1_disk6_ed1bf8ad63b04c5dab3a40ab261c855e\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/networkInterfaces/nicmyvm180781629a4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:41:31 GMT", + "date" : "Mon, 18 May 2020 07:04:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "4444", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "33514aeb-e685-4a32-b55e-1458104b3ab4", + "x-ms-correlation-request-id" : "a07d4b4d-34ad-4d69-99a2-1fb49d73210e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084131Z:33514aeb-e685-4a32-b55e-1458104b3ab4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1192", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070433Z:a07d4b4d-34ad-4d69-99a2-1fb49d73210e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "02b91ac5-3e62-457c-a6ab-8723da649247", - "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"88af10d9-1f08-4321-89b1-14ad7a844eda\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_99141c8d261d4b9192032163ca646f21\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG67563/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_99141c8d261d4b9192032163ca646f21\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_55e8681282\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_55e8681282\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_2ad022125a\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_2ad022125a\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_8c524714f8\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_8c524714f8\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm1_disk5_c1c66e99f22f41beabf95fb7ef32ae66\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG67563/providers/Microsoft.Compute/disks/myvm1_disk5_c1c66e99f22f41beabf95fb7ef32ae66\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm1_disk6_28f6aa9ea35b4b36aaa8753e21a698fe\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG67563/providers/Microsoft.Compute/disks/myvm1_disk6_28f6aa9ea35b4b36aaa8753e21a698fe\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 6,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/networkInterfaces/nicmyvm14380936600\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/02b91ac5-3e62-457c-a6ab-8723da649247?api-version=2019-03-01" + "x-ms-request-id" : "f58952c1-071b-44a1-abfa-c295ca30f159", + "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"57fff9a9-eee0-41cb-8357-55febd999ce8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_a62817b86d66452ca2fdbc60d3dfa140\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG08266/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_a62817b86d66452ca2fdbc60d3dfa140\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_6773638815\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_6773638815\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_670928364c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_670928364c\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_5591081126\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_5591081126\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm1_disk5_f18024b2bb8447c2a465cf09478724f0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG08266/providers/Microsoft.Compute/disks/myvm1_disk5_f18024b2bb8447c2a465cf09478724f0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"myvm1_disk6_ed1bf8ad63b04c5dab3a40ab261c855e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG08266/providers/Microsoft.Compute/disks/myvm1_disk6_ed1bf8ad63b04c5dab3a40ab261c855e\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 6,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/networkInterfaces/nicmyvm180781629a4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f58952c1-071b-44a1-abfa-c295ca30f159?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/virtualMachines/myvm1?api-version=2019-03-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:01 GMT", + "date" : "Mon, 18 May 2020 07:05:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "4176", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10078", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a8d21e2e-a4e2-4cdf-889e-2d45f6804f05", + "x-ms-correlation-request-id" : "d34df1d6-946d-4444-97d3-0486e8981e48", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084202Z:a8d21e2e-a4e2-4cdf-889e-2d45f6804f05", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31977", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070504Z:d34df1d6-946d-4444-97d3-0486e8981e48", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0f082698-59fb-40b2-a3cc-bf74cb03fc09", - "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"88af10d9-1f08-4321-89b1-14ad7a844eda\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_99141c8d261d4b9192032163ca646f21\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG67563/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_99141c8d261d4b9192032163ca646f21\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_55e8681282\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_55e8681282\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_2ad022125a\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_2ad022125a\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_8c524714f8\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Compute/disks/myvm1_mdisk_8c524714f8\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm1_disk5_c1c66e99f22f41beabf95fb7ef32ae66\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG67563/providers/Microsoft.Compute/disks/myvm1_disk5_c1c66e99f22f41beabf95fb7ef32ae66\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 6,\r\n \"name\": \"myvm1_disk7_1482a5429dda47938123164292a5f011\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG67563/providers/Microsoft.Compute/disks/myvm1_disk7_1482a5429dda47938123164292a5f011\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg67563/providers/Microsoft.Network/networkInterfaces/nicmyvm14380936600\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "4781736a-e736-486d-a67e-8b06082fcfcb", + "Body" : "{\r\n \"name\": \"myvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"57fff9a9-eee0-41cb-8357-55febd999ce8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D5_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm1_OsDisk_1_a62817b86d66452ca2fdbc60d3dfa140\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG08266/providers/Microsoft.Compute/disks/myvm1_OsDisk_1_a62817b86d66452ca2fdbc60d3dfa140\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"name\": \"myvm1_mdisk_6773638815\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_6773638815\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 0,\r\n \"name\": \"myvm1_mdisk_670928364c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_670928364c\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"myvm1_mdisk_5591081126\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Compute/disks/myvm1_mdisk_5591081126\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"myvm1_disk5_f18024b2bb8447c2a465cf09478724f0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG08266/providers/Microsoft.Compute/disks/myvm1_disk5_f18024b2bb8447c2a465cf09478724f0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 6,\r\n \"name\": \"myvm1_disk7_f5d0258c3ca64db19a0283264806d261\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG08266/providers/Microsoft.Compute/disks/myvm1_disk7_f5d0258c3ca64db19a0283264806d261\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm1\",\r\n \"adminUsername\": \"juser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg08266/providers/Microsoft.Network/networkInterfaces/nicmyvm180781629a4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg67563?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:42:39 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b2f94f34-d9d9-484d-99fa-1e638dd00552", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084239Z:b2f94f34-d9d9-484d-99fa-1e638dd00552", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "b2f94f34-d9d9-484d-99fa-1e638dd00552", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg08266?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:09 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10182", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4a76ad28-171e-4e71-a2fb-af515d721ad5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084310Z:4a76ad28-171e-4e71-a2fb-af515d721ad5", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4a76ad28-171e-4e71-a2fb-af515d721ad5", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:43:41 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10070", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "073a9285-f446-4369-bc12-0c1f8b09a2eb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084341Z:073a9285-f446-4369-bc12-0c1f8b09a2eb", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "073a9285-f446-4369-bc12-0c1f8b09a2eb", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:11 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10187", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bdc3e9c0-f6b2-459a-899c-223e613eff00", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084411Z:bdc3e9c0-f6b2-459a-899c-223e613eff00", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "bdc3e9c0-f6b2-459a-899c-223e613eff00", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:44:42 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10748", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9994618b-e1f5-4003-97c6-1759a1764302", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084443Z:9994618b-e1f5-4003-97c6-1759a1764302", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "9994618b-e1f5-4003-97c6-1759a1764302", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:13 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10491", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f68ae3fc-fc49-4500-9436-c6a9728c53b7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084514Z:f68ae3fc-fc49-4500-9436-c6a9728c53b7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "f68ae3fc-fc49-4500-9436-c6a9728c53b7", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:45:44 GMT", + "date" : "Mon, 18 May 2020 07:05:38 GMT", "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10180", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "51a8fed3-8a2e-40d8-8793-b2626e91f48a", + "x-ms-correlation-request-id" : "86fb92fc-3e82-4988-a3a0-2aa84bfed675", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084544Z:51a8fed3-8a2e-40d8-8793-b2626e91f48a", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070539Z:86fb92fc-3e82-4988-a3a0-2aa84bfed675", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "51a8fed3-8a2e-40d8-8793-b2626e91f48a", + "x-ms-request-id" : "86fb92fc-3e82-4988-a3a0-2aa84bfed675", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:15 GMT", + "date" : "Mon, 18 May 2020 07:06:09 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10286", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fa8b3b10-0a4b-4d84-8839-625f1f2c814d", + "x-ms-correlation-request-id" : "c2ea0eb1-3012-4c20-bb73-4b62bf9b63e8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084616Z:fa8b3b10-0a4b-4d84-8839-625f1f2c814d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070610Z:c2ea0eb1-3012-4c20-bb73-4b62bf9b63e8", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "fa8b3b10-0a4b-4d84-8839-625f1f2c814d", + "x-ms-request-id" : "c2ea0eb1-3012-4c20-bb73-4b62bf9b63e8", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:46:46 GMT", + "date" : "Mon, 18 May 2020 07:06:41 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10386", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b7fb8bef-1c65-439c-ac42-dfdbf5a4e294", + "x-ms-correlation-request-id" : "1a5fdad8-a951-487f-ae24-1144fe2e97fb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084647Z:b7fb8bef-1c65-439c-ac42-dfdbf5a4e294", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070642Z:1a5fdad8-a951-487f-ae24-1144fe2e97fb", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b7fb8bef-1c65-439c-ac42-dfdbf5a4e294", + "x-ms-request-id" : "1a5fdad8-a951-487f-ae24-1144fe2e97fb", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:18 GMT", + "date" : "Mon, 18 May 2020 07:07:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10055", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6eb75906-0c50-4d8f-bf87-978d0e531c60", + "x-ms-correlation-request-id" : "cc2fbc98-f462-41c7-b945-f603f6ff794a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084718Z:6eb75906-0c50-4d8f-bf87-978d0e531c60", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070713Z:cc2fbc98-f462-41c7-b945-f603f6ff794a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "6eb75906-0c50-4d8f-bf87-978d0e531c60", + "x-ms-request-id" : "cc2fbc98-f462-41c7-b945-f603f6ff794a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:47:48 GMT", + "date" : "Mon, 18 May 2020 07:07:44 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9694", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a43af20f-fa83-469f-9a27-1d6444809ef9", + "x-ms-correlation-request-id" : "44dc6beb-b1b7-4128-b72a-52767e9b075f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084749Z:a43af20f-fa83-469f-9a27-1d6444809ef9", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070744Z:44dc6beb-b1b7-4128-b72a-52767e9b075f", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a43af20f-fa83-469f-9a27-1d6444809ef9", + "x-ms-request-id" : "44dc6beb-b1b7-4128-b72a-52767e9b075f", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:19 GMT", + "date" : "Mon, 18 May 2020 07:08:14 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10477", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "044741da-4195-44f3-9d71-487cce978711", + "x-ms-correlation-request-id" : "d53dd2f4-2a18-43d0-9f71-821ac43b3e33", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084820Z:044741da-4195-44f3-9d71-487cce978711", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070814Z:d53dd2f4-2a18-43d0-9f71-821ac43b3e33", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "044741da-4195-44f3-9d71-487cce978711", + "x-ms-request-id" : "d53dd2f4-2a18-43d0-9f71-821ac43b3e33", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:48:51 GMT", + "date" : "Mon, 18 May 2020 07:08:45 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10516", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0d7e65ef-cee6-45f5-9023-497b3fd5c950", + "x-ms-correlation-request-id" : "b761b037-00dc-4096-ad4d-26a191c659bb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084851Z:0d7e65ef-cee6-45f5-9023-497b3fd5c950", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070846Z:b761b037-00dc-4096-ad4d-26a191c659bb", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "0d7e65ef-cee6-45f5-9023-497b3fd5c950", + "x-ms-request-id" : "b761b037-00dc-4096-ad4d-26a191c659bb", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:22 GMT", + "date" : "Mon, 18 May 2020 07:09:17 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10323", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "33b0b116-8a57-49eb-a34c-6f4241603886", + "x-ms-correlation-request-id" : "98448404-c9e2-416e-a914-c14e36694914", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084922Z:33b0b116-8a57-49eb-a34c-6f4241603886", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070917Z:98448404-c9e2-416e-a914-c14e36694914", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "33b0b116-8a57-49eb-a34c-6f4241603886", + "x-ms-request-id" : "98448404-c9e2-416e-a914-c14e36694914", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:49:52 GMT", + "date" : "Mon, 18 May 2020 07:09:49 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9886", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3663d257-20aa-496d-be23-7a0723913ba6", + "x-ms-correlation-request-id" : "30558652-0174-475e-bde2-bb53c5c9f558", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T084953Z:3663d257-20aa-496d-be23-7a0723913ba6", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T070949Z:30558652-0174-475e-bde2-bb53c5c9f558", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "3663d257-20aa-496d-be23-7a0723913ba6", + "x-ms-request-id" : "30558652-0174-475e-bde2-bb53c5c9f558", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:24 GMT", + "date" : "Mon, 18 May 2020 07:10:20 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10775", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e505bb2d-01cb-49f9-a8fd-234274de27b8", + "x-ms-correlation-request-id" : "be8152af-7aff-46ae-8b5e-1af55a712990", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085024Z:e505bb2d-01cb-49f9-a8fd-234274de27b8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071020Z:be8152af-7aff-46ae-8b5e-1af55a712990", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e505bb2d-01cb-49f9-a8fd-234274de27b8", + "x-ms-request-id" : "be8152af-7aff-46ae-8b5e-1af55a712990", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:50:55 GMT", + "date" : "Mon, 18 May 2020 07:10:51 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10035", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d8d3cf99-977e-4287-b35d-036797bc476c", + "x-ms-correlation-request-id" : "4f58af60-8686-46d0-bfee-5a15a080d96e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085055Z:d8d3cf99-977e-4287-b35d-036797bc476c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071051Z:4f58af60-8686-46d0-bfee-5a15a080d96e", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "d8d3cf99-977e-4287-b35d-036797bc476c", + "x-ms-request-id" : "4f58af60-8686-46d0-bfee-5a15a080d96e", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NzU2My1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcwODI2Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 05 Mar 2020 08:51:26 GMT", + "date" : "Mon, 18 May 2020 07:11:22 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "10143", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f4e064c5-18c1-426d-a381-4dddd6857c24", + "x-ms-correlation-request-id" : "c80a335a-17e5-454c-a17b-3dd4940652cf", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200305T085126Z:f4e064c5-18c1-426d-a381-4dddd6857c24", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T071122Z:c80a335a-17e5-454c-a17b-3dd4940652cf", "cache-control" : "no-cache", - "x-ms-request-id" : "f4e064c5-18c1-426d-a381-4dddd6857c24", + "x-ms-request-id" : "c80a335a-17e5-454c-a17b-3dd4940652cf", "Body" : "" } } ], - "variables" : [ "javacsmrg67563", "pipa39009704726", "myvm1_mdisk_55e8681282", "myvm1_mdisk_8c524714f8", "myvm1_mdisk_2ad022125a", "nicmyvm14380936600", "vnet64528dd626", "pip230953f1" ] + "variables" : [ "javacsmrg08266", "pipfa393491538e", "myvm1_mdisk_670928364c", "myvm1_mdisk_6773638815", "myvm1_mdisk_5591081126", "nicmyvm180781629a4", "vnet48575d226e", "pip49178ad5" ] } \ No newline at end of file diff --git a/sdk/management/api-specs.json b/sdk/management/api-specs.json index e4a5490f3ec9..962a0ec1ef1e 100644 --- a/sdk/management/api-specs.json +++ b/sdk/management/api-specs.json @@ -76,7 +76,7 @@ "dir": "../compute/mgmt", "source": "specification/compute/resource-manager/readme.md", "package": "com.azure.management.compute", - "args": "--payload-flattening-threshold=1 --tag=package-2019-03-01" + "args": "--payload-flattening-threshold=1 --tag=package-2019-07-01" }, "consumption": { "dir": "../consumption/mgmt", diff --git a/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVHD.json b/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVHD.json index 7167ace2e494..1fc209b73d0c 100644 --- a/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVHD.json +++ b/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVHD.json @@ -1,660 +1,635 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0c457171?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv9fe62809?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:02 GMT", - "content-length" : "322", + "date" : "Mon, 18 May 2020 10:32:18 GMT", + "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d19e6905-474c-421a-aceb-45788309d150", + "x-ms-correlation-request-id" : "fcd9e2eb-b904-42fc-a27b-aa58d719aec1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090903Z:d19e6905-474c-421a-aceb-45788309d150", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103219Z:fcd9e2eb-b904-42fc-a27b-aa58d719aec1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d19e6905-474c-421a-aceb-45788309d150", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171\",\"name\":\"rgcomv0c457171\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-04-29T09:09:00.345114500Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "fcd9e2eb-b904-42fc-a27b-aa58d719aec1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809\",\"name\":\"rgcomv9fe62809\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T10:32:16.918Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/publicIPAddresses/pip85903595?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Storage/storageAccounts/stgvm119858fd0b441246e?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "760", + "date" : "Mon, 18 May 2020 10:32:24 GMT", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", - "StatusCode" : "201", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "42204ede-873e-488c-b8f6-7168c0668e96", + "x-ms-correlation-request-id" : "c5290c61-bc62-4598-9601-c003632f4af0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ef97f950-f973-42c9-adfe-0ed0def2b485", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090911Z:42204ede-873e-488c-b8f6-7168c0668e96", - "content-type" : "application/json; charset=utf-8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103224Z:c5290c61-bc62-4598-9601-c003632f4af0", + "content-type" : "text/plain; charset=utf-8", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/6dfadee5-aa8d-4a3a-bf97-aad8d243e50e?monitor=true&api-version=2019-06-01", "cache-control" : "no-cache", - "x-ms-request-id" : "90a41396-d7ac-4f75-b4be-8f14638031f8", - "Body" : "{\r\n \"name\": \"pip85903595\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/publicIPAddresses/pip85903595\",\r\n \"etag\": \"W/\\\"79f564a3-431b-4b64-a7f2-6d08a89cfbee\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f5f4dd2e-cb62-4f44-9687-1ebf4e3d676c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip48019e\",\r\n \"fqdn\": \"pip48019e.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/90a41396-d7ac-4f75-b4be-8f14638031f8?api-version=2019-06-01" + "x-ms-request-id" : "6dfadee5-aa8d-4a3a-bf97-aad8d243e50e", + "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Storage/storageAccounts/stgvm123428fabe07331f0?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/publicIPAddresses/pip53318787?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:12 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "0", + "date" : "Mon, 18 May 2020 10:32:25 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "azure-asyncnotification" : "Enabled", + "content-length" : "760", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", - "StatusCode" : "202", + "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e7b89599-4464-400e-b018-a0ec5203b1ae", + "x-ms-correlation-request-id" : "44f9c173-2210-40bf-87a1-1825e04e965c", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "28c3efcc-86f8-4d88-aa6d-f724401bf702", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090912Z:e7b89599-4464-400e-b018-a0ec5203b1ae", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/db3e09f6-1692-4016-9dcf-bc2118398909?monitor=true&api-version=2019-06-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103225Z:44f9c173-2210-40bf-87a1-1825e04e965c", + "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "db3e09f6-1692-4016-9dcf-bc2118398909", - "Body" : "" + "x-ms-request-id" : "151129a7-d5c1-46ca-9aad-0195c7e6dba2", + "Body" : "{\r\n \"name\": \"pip53318787\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/publicIPAddresses/pip53318787\",\r\n \"etag\": \"W/\\\"45607d0e-a781-4eff-9b68-d74dc990bc6d\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0a9ef8fb-d3d6-4f37-bc42-4a1a7b1c6ecb\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip099791\",\r\n \"fqdn\": \"pip099791.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/151129a7-d5c1-46ca-9aad-0195c7e6dba2?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet712797f60c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet324418442b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:12 GMT", + "date" : "Mon, 18 May 2020 10:32:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1349", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fb42b043-cd82-4cbc-954e-2c860b5239fa", + "x-ms-correlation-request-id" : "59d0fab3-04f1-4f05-b468-e0fb43b623ca", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2c88cc3c-eee9-4adb-a83f-7c28cd725915", + "x-ms-arm-service-request-id" : "afd68683-9999-4239-b1d6-a94e809d110d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090912Z:fb42b043-cd82-4cbc-954e-2c860b5239fa", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103226Z:59d0fab3-04f1-4f05-b468-e0fb43b623ca", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3a6deae2-77ac-438a-b355-e64c9937e3ff", - "Body" : "{\r\n \"name\": \"vnet712797f60c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet712797f60c\",\r\n \"etag\": \"W/\\\"d841a31e-2d0c-47d0-b505-4b5f97e72661\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0b498444-25df-453c-9bad-d440b1c3e55f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet712797f60c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d841a31e-2d0c-47d0-b505-4b5f97e72661\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3a6deae2-77ac-438a-b355-e64c9937e3ff?api-version=2019-06-01" + "x-ms-request-id" : "545e3c6f-a66a-4d3d-befa-44fd3f7f87f6", + "Body" : "{\r\n \"name\": \"vnet324418442b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet324418442b\",\r\n \"etag\": \"W/\\\"c77706b0-470a-4d41-8195-a399ef4ab3d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a70c3a48-139d-41da-b300-289f9071db70\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet324418442b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c77706b0-470a-4d41-8195-a399ef4ab3d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/545e3c6f-a66a-4d3d-befa-44fd3f7f87f6?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/db3e09f6-1692-4016-9dcf-bc2118398909?monitor=true&api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/6dfadee5-aa8d-4a3a-bf97-aad8d243e50e?monitor=true&api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:43 GMT", + "date" : "Mon, 18 May 2020 10:32:55 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1243", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "857fc13f-281a-440f-9399-0608d234534a", + "x-ms-correlation-request-id" : "0c018075-d942-48af-bb83-679dcf2413e8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090943Z:857fc13f-281a-440f-9399-0608d234534a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103255Z:0c018075-d942-48af-bb83-679dcf2413e8", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "7ba0f3dd-1c82-4255-9db2-e9a7c504d07a", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Storage/storageAccounts/stgvm123428fabe07331f0\",\"name\":\"stgvm123428fabe07331f0\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T09:09:11.7066546Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T09:09:11.7066546Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-29T09:09:11.6441712Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm123428fabe07331f0.blob.core.windows.net/\",\"queue\":\"https://stgvm123428fabe07331f0.queue.core.windows.net/\",\"table\":\"https://stgvm123428fabe07331f0.table.core.windows.net/\",\"file\":\"https://stgvm123428fabe07331f0.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "9fe89901-7ea4-43d5-b37a-0fe0c0e038ad", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Storage/storageAccounts/stgvm119858fd0b441246e\",\"name\":\"stgvm119858fd0b441246e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T10:32:24.2930047Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T10:32:24.2930047Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T10:32:24.1681097Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm119858fd0b441246e.blob.core.windows.net/\",\"queue\":\"https://stgvm119858fd0b441246e.queue.core.windows.net/\",\"table\":\"https://stgvm119858fd0b441246e.table.core.windows.net/\",\"file\":\"https://stgvm119858fd0b441246e.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/90a41396-d7ac-4f75-b4be-8f14638031f8?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/151129a7-d5c1-46ca-9aad-0195c7e6dba2?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:43 GMT", + "date" : "Mon, 18 May 2020 10:32:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "15eaa344-b52c-4d4a-b0a7-c73f2b451f70", + "x-ms-correlation-request-id" : "98703902-8fae-48b9-b90a-17d96651770a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4bf75794-d4ee-4e19-a7d3-cf92351c5296", + "x-ms-arm-service-request-id" : "48aa45a9-5887-4de7-ab78-78b03aa268c7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090944Z:15eaa344-b52c-4d4a-b0a7-c73f2b451f70", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103257Z:98703902-8fae-48b9-b90a-17d96651770a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5e62e618-6216-4f43-9f18-558d9ad9f75d", + "x-ms-request-id" : "dee354d6-dc68-46cc-87ee-e7a6967e00cc", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3a6deae2-77ac-438a-b355-e64c9937e3ff?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/545e3c6f-a66a-4d3d-befa-44fd3f7f87f6?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:43 GMT", + "date" : "Mon, 18 May 2020 10:32:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8d92a388-ab01-4136-aba9-90cd9ab00fc2", + "x-ms-correlation-request-id" : "fb96a7b9-ceaf-4f21-a76e-e948c2620ec1", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "20a1b0fa-0afa-41eb-ba10-3bc124d6d451", + "x-ms-arm-service-request-id" : "22614d0c-3ada-4573-83eb-4c63129c06f1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090944Z:8d92a388-ab01-4136-aba9-90cd9ab00fc2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103257Z:fb96a7b9-ceaf-4f21-a76e-e948c2620ec1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f6a76e16-0a4a-4676-8255-044d86d81183", + "x-ms-request-id" : "c1c76490-40ac-4b6c-8c3e-a098134da6b5", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Storage/storageAccounts/stgvm123428fabe07331f0?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Storage/storageAccounts/stgvm119858fd0b441246e?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:14 GMT", + "date" : "Mon, 18 May 2020 10:33:25 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1243", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b6eab312-38a0-4e43-8a74-5cebb3085ee5", + "x-ms-correlation-request-id" : "6436121a-dcfb-4566-9b07-a2aa281b0879", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091015Z:b6eab312-38a0-4e43-8a74-5cebb3085ee5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103326Z:6436121a-dcfb-4566-9b07-a2aa281b0879", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "b71d16b3-ea45-4f0c-b1ff-2e8c18197832", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Storage/storageAccounts/stgvm123428fabe07331f0\",\"name\":\"stgvm123428fabe07331f0\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T09:09:11.7066546Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T09:09:11.7066546Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-29T09:09:11.6441712Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm123428fabe07331f0.blob.core.windows.net/\",\"queue\":\"https://stgvm123428fabe07331f0.queue.core.windows.net/\",\"table\":\"https://stgvm123428fabe07331f0.table.core.windows.net/\",\"file\":\"https://stgvm123428fabe07331f0.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "de38ba4a-e18d-4960-af19-a5b398eec7d8", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Storage/storageAccounts/stgvm119858fd0b441246e\",\"name\":\"stgvm119858fd0b441246e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T10:32:24.2930047Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T10:32:24.2930047Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T10:32:24.1681097Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm119858fd0b441246e.blob.core.windows.net/\",\"queue\":\"https://stgvm119858fd0b441246e.queue.core.windows.net/\",\"table\":\"https://stgvm119858fd0b441246e.table.core.windows.net/\",\"file\":\"https://stgvm119858fd0b441246e.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet712797f60c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/publicIPAddresses/pip53318787?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:16 GMT", + "date" : "Mon, 18 May 2020 10:33:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1351", + "content-length" : "761", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eb4f7bd4-0510-4d93-9fc0-9dbf6f27927b", + "x-ms-correlation-request-id" : "4d2014f9-02dd-49f0-8834-4fc05ee127fa", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8db5ccd2-8c8b-40c4-b845-ab6a65ae22de", + "x-ms-arm-service-request-id" : "31ed7319-1e6e-43eb-8bc2-c3bdeb439b5e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091016Z:eb4f7bd4-0510-4d93-9fc0-9dbf6f27927b", - "etag" : "W/\"c9e5cadf-3d18-43a9-bfe6-200eb182abc6\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103327Z:4d2014f9-02dd-49f0-8834-4fc05ee127fa", + "etag" : "W/\"d72256d3-3a43-4f0b-904d-0cc2bbdff2da\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a86cfd64-4905-46fa-941c-a0ae0a79c114", - "Body" : "{\r\n \"name\": \"vnet712797f60c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet712797f60c\",\r\n \"etag\": \"W/\\\"c9e5cadf-3d18-43a9-bfe6-200eb182abc6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0b498444-25df-453c-9bad-d440b1c3e55f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet712797f60c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c9e5cadf-3d18-43a9-bfe6-200eb182abc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "bacc900c-7ca4-4fb9-8ee1-d1a686897f09", + "Body" : "{\r\n \"name\": \"pip53318787\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/publicIPAddresses/pip53318787\",\r\n \"etag\": \"W/\\\"d72256d3-3a43-4f0b-904d-0cc2bbdff2da\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a9ef8fb-d3d6-4f37-bc42-4a1a7b1c6ecb\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip099791\",\r\n \"fqdn\": \"pip099791.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/publicIPAddresses/pip85903595?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet324418442b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:16 GMT", + "date" : "Mon, 18 May 2020 10:33:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "761", + "content-length" : "1351", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8fb2b676-a8d1-4fe8-ba38-7f7286d3aba9", + "x-ms-correlation-request-id" : "a751739b-3700-420e-9d69-55c999261bda", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d68fc9b6-c684-4d5e-bd81-2ba994690e48", + "x-ms-arm-service-request-id" : "7b3b8238-adf8-402d-bbc4-feec131fe549", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091016Z:8fb2b676-a8d1-4fe8-ba38-7f7286d3aba9", - "etag" : "W/\"467901c1-be43-463f-8a18-a5618c26475a\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103328Z:a751739b-3700-420e-9d69-55c999261bda", + "etag" : "W/\"665c3dba-68b6-436b-a8d5-926cef2ed267\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1c871c57-941c-4b27-83b6-5fc2f0b2ab4e", - "Body" : "{\r\n \"name\": \"pip85903595\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/publicIPAddresses/pip85903595\",\r\n \"etag\": \"W/\\\"467901c1-be43-463f-8a18-a5618c26475a\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f5f4dd2e-cb62-4f44-9687-1ebf4e3d676c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip48019e\",\r\n \"fqdn\": \"pip48019e.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "6d4a9c19-af10-4db5-8dcb-a01692f2d2fa", + "Body" : "{\r\n \"name\": \"vnet324418442b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet324418442b\",\r\n \"etag\": \"W/\\\"665c3dba-68b6-436b-a8d5-926cef2ed267\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a70c3a48-139d-41da-b300-289f9071db70\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet324418442b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"665c3dba-68b6-436b-a8d5-926cef2ed267\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:23 GMT", + "date" : "Mon, 18 May 2020 10:33:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1849", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0351e2da-c2c7-4a3e-a6cf-bd1d36c15428", + "x-ms-correlation-request-id" : "5266cf2f-04c6-4111-aec1-6b33bd3f3823", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "76aa6368-af2e-4a02-bd40-35eb70b8d0a3", + "x-ms-arm-service-request-id" : "41fe353d-4189-4bdf-8bec-539b7575987d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091023Z:0351e2da-c2c7-4a3e-a6cf-bd1d36c15428", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103334Z:5266cf2f-04c6-4111-aec1-6b33bd3f3823", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e7ccffba-356b-4689-a3e1-133355523b6e", - "Body" : "{\r\n \"name\": \"nic83058287b33\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33\",\r\n \"etag\": \"W/\\\"25043400-f4da-4763-8de9-4ccee2551d02\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3baf924f-1037-4641-abd8-6c8db7ccb7e6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"25043400-f4da-4763-8de9-4ccee2551d02\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/publicIPAddresses/pip85903595\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet712797f60c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iscesc45eu4elg3n0raldq5flh.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e7ccffba-356b-4689-a3e1-133355523b6e?api-version=2019-06-01" + "x-ms-request-id" : "73cd09e9-24e6-43bf-ac97-4debb8b8539a", + "Body" : "{\r\n \"name\": \"nic01225fd68a4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4\",\r\n \"etag\": \"W/\\\"6fbd9263-5bcc-454b-929b-f9f477ebff7a\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a02c5c43-1f08-4c5b-98c4-46626f56ae2f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6fbd9263-5bcc-454b-929b-f9f477ebff7a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/publicIPAddresses/pip53318787\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet324418442b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ja3azj23cpnedmyafcpza2o1oa.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/73cd09e9-24e6-43bf-ac97-4debb8b8539a?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e7ccffba-356b-4689-a3e1-133355523b6e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/73cd09e9-24e6-43bf-ac97-4debb8b8539a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:53 GMT", + "date" : "Mon, 18 May 2020 10:34:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11799", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cce09024-f92b-47ee-a95d-20a0a0517562", + "x-ms-correlation-request-id" : "e40b5601-6cd3-4678-a6e5-998e6b868f78", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "787a963b-ecb4-43c7-b3d3-85ec5c7611c8", + "x-ms-arm-service-request-id" : "5de44937-ad73-43d3-af68-448c40f17b2d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091054Z:cce09024-f92b-47ee-a95d-20a0a0517562", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103406Z:e40b5601-6cd3-4678-a6e5-998e6b868f78", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "aa36fa16-7a9e-4f0f-9832-a8a33f1933ae", + "x-ms-request-id" : "6ede4060-bcfa-4d8c-9088-a92982196b96", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:24 GMT", + "date" : "Mon, 18 May 2020 10:34:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1849", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "479fe50f-3b4a-4cb9-8d27-b249486dbef2", + "x-ms-correlation-request-id" : "712c6733-973f-4986-b89d-9ce4e995ef71", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1cb05d74-782e-4f76-977a-fbe2c5772dc3", + "x-ms-arm-service-request-id" : "dffe12c9-8459-450e-b915-26c8f4e53359", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091124Z:479fe50f-3b4a-4cb9-8d27-b249486dbef2", - "etag" : "W/\"25043400-f4da-4763-8de9-4ccee2551d02\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103436Z:712c6733-973f-4986-b89d-9ce4e995ef71", + "etag" : "W/\"6fbd9263-5bcc-454b-929b-f9f477ebff7a\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "588f804e-077a-42bf-9d6a-f7a05aa95eaf", - "Body" : "{\r\n \"name\": \"nic83058287b33\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33\",\r\n \"etag\": \"W/\\\"25043400-f4da-4763-8de9-4ccee2551d02\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3baf924f-1037-4641-abd8-6c8db7ccb7e6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"25043400-f4da-4763-8de9-4ccee2551d02\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/publicIPAddresses/pip85903595\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet712797f60c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iscesc45eu4elg3n0raldq5flh.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "fc12946b-e5a7-43d0-b18b-f9d6f5831a2e", + "Body" : "{\r\n \"name\": \"nic01225fd68a4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4\",\r\n \"etag\": \"W/\\\"6fbd9263-5bcc-454b-929b-f9f477ebff7a\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a02c5c43-1f08-4c5b-98c4-46626f56ae2f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6fbd9263-5bcc-454b-929b-f9f477ebff7a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/publicIPAddresses/pip53318787\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet324418442b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ja3azj23cpnedmyafcpza2o1oa.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:32 GMT", + "date" : "Mon, 18 May 2020 10:34:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2726", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c97c2957-953e-4f07-b206-3dfd0cd5aa32", + "x-ms-correlation-request-id" : "562c4f7d-8742-4c25-95fa-becf9b090d21", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091132Z:c97c2957-953e-4f07-b206-3dfd0cd5aa32", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103443Z:562c4f7d-8742-4c25-95fa-becf9b090d21", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "05c501df-b980-4603-a382-4b385cc31cd1", - "Body" : "{\r\n \"name\": \"vm123428f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"921e0302-e917-4a4f-8b14-db78a02cec4f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm123428f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-os-disk-e6bc1eb5-ac56-4020-835d-b57485d433ef.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-1-2e88d849-911e-413b-9763-6365ced76bda.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-2-aabef55b-a217-47db-af3d-60e2cde8709d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-3-c3d59129-b359-4f0a-9739-ea2c19334fbc.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123428f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05c501df-b980-4603-a382-4b385cc31cd1?api-version=2019-03-01" + "x-ms-request-id" : "9fae06af-845c-4802-b425-d8baaa73b74b", + "Body" : "{\r\n \"name\": \"vm119858f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e2fa02a2-aece-4472-bea6-a3cd74bd657b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm119858f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-os-disk-a0dda8e9-33a6-47e6-8e00-02154c91798d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-1-f1e8a847-9497-4f97-be2a-e5869504c501.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-2-6f94be2b-38be-449c-b236-2f078c400409.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-3-dc4b1dee-3202-4f3c-97fb-9e740b0156ad.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm119858f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9fae06af-845c-4802-b425-d8baaa73b74b?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05c501df-b980-4603-a382-4b385cc31cd1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9fae06af-845c-4802-b425-d8baaa73b74b?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:03 GMT", + "date" : "Mon, 18 May 2020 10:35:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11763", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4b137517-9fed-4636-96a5-4c67a55421bb", + "x-ms-correlation-request-id" : "2a685e23-85d9-426d-9aac-6072ce833983", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091203Z:4b137517-9fed-4636-96a5-4c67a55421bb", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103514Z:2a685e23-85d9-426d-9aac-6072ce833983", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9795ea8b-40c4-47db-89c7-d3bd66f09c40", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:11:30.9808467+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05c501df-b980-4603-a382-4b385cc31cd1\"\r\n}" + "x-ms-request-id" : "b0b9006b-0b36-42c5-b5a8-de66ac4e59de", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:34:42.5696738+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9fae06af-845c-4802-b425-d8baaa73b74b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05c501df-b980-4603-a382-4b385cc31cd1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9fae06af-845c-4802-b425-d8baaa73b74b?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:34 GMT", + "date" : "Mon, 18 May 2020 10:35:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11803", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "deeccd5d-60d0-4b36-bac4-9a8d425e142a", + "x-ms-correlation-request-id" : "06cd4bcc-ce0a-4341-b9fd-3d1f057d2034", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091234Z:deeccd5d-60d0-4b36-bac4-9a8d425e142a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103544Z:06cd4bcc-ce0a-4341-b9fd-3d1f057d2034", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a0077d3f-8b5f-4785-ad39-bfe63a5156cc", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:11:30.9808467+00:00\",\r\n \"endTime\": \"2020-04-29T09:12:19.5277445+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"05c501df-b980-4603-a382-4b385cc31cd1\"\r\n}" + "x-ms-request-id" : "25fa8ece-2eda-400a-ba25-39179d76a217", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:34:42.5696738+00:00\",\r\n \"endTime\": \"2020-05-18T10:35:30.4760141+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9fae06af-845c-4802-b425-d8baaa73b74b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:04 GMT", + "date" : "Mon, 18 May 2020 10:36:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2754", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "11d628de-57b1-43a9-8ddb-0e1bb41c19c1", + "x-ms-correlation-request-id" : "8e53b7eb-edcb-4d28-8ffa-26ff53db70cf", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091304Z:11d628de-57b1-43a9-8ddb-0e1bb41c19c1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103615Z:8e53b7eb-edcb-4d28-8ffa-26ff53db70cf", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "198a1485-e844-4c9e-a883-e9a69ba4d83f", - "Body" : "{\r\n \"name\": \"vm123428f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"921e0302-e917-4a4f-8b14-db78a02cec4f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm123428f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-os-disk-e6bc1eb5-ac56-4020-835d-b57485d433ef.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-1-2e88d849-911e-413b-9763-6365ced76bda.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-2-aabef55b-a217-47db-af3d-60e2cde8709d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-3-c3d59129-b359-4f0a-9739-ea2c19334fbc.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123428f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "0fced838-c540-449d-821e-d673dbae367c", + "Body" : "{\r\n \"name\": \"vm119858f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e2fa02a2-aece-4472-bea6-a3cd74bd657b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm119858f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-os-disk-a0dda8e9-33a6-47e6-8e00-02154c91798d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-1-f1e8a847-9497-4f97-be2a-e5869504c501.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-2-6f94be2b-38be-449c-b236-2f078c400409.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-3-dc4b1dee-3202-4f3c-97fb-9e740b0156ad.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm119858f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f/extensions/CustomScriptForLinux?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f/extensions/CustomScriptForLinux?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:10 GMT", + "date" : "Mon, 18 May 2020 10:36:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "728", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2efe8952-70bc-415a-9c4e-bdb1ddeca951", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091310Z:2efe8952-70bc-415a-9c4e-bdb1ddeca951", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3404eb36-5508-47e4-9082-96cf74b5983d", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3404eb36-5508-47e4-9082-96cf74b5983d?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3404eb36-5508-47e4-9082-96cf74b5983d?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11824", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "50deb774-5950-4810-b6a8-682f3f4c81bf", + "x-ms-correlation-request-id" : "67ace072-5593-4534-b9fd-11bc3b5c320d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091341Z:50deb774-5950-4810-b6a8-682f3f4c81bf", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103621Z:67ace072-5593-4534-b9fd-11bc3b5c320d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "aa32626e-529b-4533-a8a0-22ad40c1d6b4", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:13:08.9027231+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3404eb36-5508-47e4-9082-96cf74b5983d\"\r\n}" + "x-ms-request-id" : "45bdd48f-0fb4-43d1-94a7-043eb3e8b0d8", + "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/45bdd48f-0fb4-43d1-94a7-043eb3e8b0d8?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3404eb36-5508-47e4-9082-96cf74b5983d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/45bdd48f-0fb4-43d1-94a7-043eb3e8b0d8?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:11 GMT", + "date" : "Mon, 18 May 2020 10:36:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2fa14370-82e7-47f2-8929-dcb3a89db5c5", + "x-ms-correlation-request-id" : "d4772836-b3e8-4c1c-9044-7fcf2025b620", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091411Z:2fa14370-82e7-47f2-8929-dcb3a89db5c5", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103652Z:d4772836-b3e8-4c1c-9044-7fcf2025b620", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "06579be5-e96c-4296-b818-b7c6480f781e", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:13:08.9027231+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3404eb36-5508-47e4-9082-96cf74b5983d\"\r\n}" + "x-ms-request-id" : "666f637d-5db4-4c1c-92fc-9986bbd226fd", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:36:19.7260865+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"45bdd48f-0fb4-43d1-94a7-043eb3e8b0d8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3404eb36-5508-47e4-9082-96cf74b5983d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/45bdd48f-0fb4-43d1-94a7-043eb3e8b0d8?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:41 GMT", + "date" : "Mon, 18 May 2020 10:37:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11699", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1275dc3a-9861-4426-b38f-15d01a18fb61", + "x-ms-correlation-request-id" : "e76c5442-09d0-463f-869f-a9a876d2f6a2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091442Z:1275dc3a-9861-4426-b38f-15d01a18fb61", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103723Z:e76c5442-09d0-463f-869f-a9a876d2f6a2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8294e9ea-9726-41cb-8351-a9f84f9f3886", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:13:08.9027231+00:00\",\r\n \"endTime\": \"2020-04-29T09:14:24.5443586+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3404eb36-5508-47e4-9082-96cf74b5983d\"\r\n}" + "x-ms-request-id" : "dc1ccfba-b6a0-43fe-a5e5-f53225c68b18", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:36:19.7260865+00:00\",\r\n \"endTime\": \"2020-05-18T10:37:04.5073573+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"45bdd48f-0fb4-43d1-94a7-043eb3e8b0d8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f/extensions/CustomScriptForLinux?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f/extensions/CustomScriptForLinux?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:12 GMT", + "date" : "Mon, 18 May 2020 10:37:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "729", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5bfe562f-6d9c-4f8d-a6e5-c2687d4564e3", + "x-ms-correlation-request-id" : "afe0d7d4-e2ea-4ffb-94f9-04dd00d8d269", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3962,Microsoft.Compute/LowCostGet30Min;31958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091512Z:5bfe562f-6d9c-4f8d-a6e5-c2687d4564e3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103754Z:afe0d7d4-e2ea-4ffb-94f9-04dd00d8d269", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d6f166c2-ffad-4627-891d-f3c2b83161e7", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}" + "x-ms-request-id" : "dd0f319b-e89b-494a-96c9-2e3c5955a2d4", + "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:13 GMT", + "date" : "Mon, 18 May 2020 10:37:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3565", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8fc56bb8-e64c-40da-a211-9ec3e629e94a", + "x-ms-correlation-request-id" : "613a0f2e-279d-48a4-8973-2bc66a236c9a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3961,Microsoft.Compute/LowCostGet30Min;31957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091513Z:8fc56bb8-e64c-40da-a211-9ec3e629e94a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103754Z:613a0f2e-279d-48a4-8973-2bc66a236c9a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7a8d1ac7-f43d-4bba-880d-cc4ea7237304", - "Body" : "{\r\n \"name\": \"vm123428f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"921e0302-e917-4a4f-8b14-db78a02cec4f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm123428f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-os-disk-e6bc1eb5-ac56-4020-835d-b57485d433ef.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-1-2e88d849-911e-413b-9763-6365ced76bda.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-2-aabef55b-a217-47db-af3d-60e2cde8709d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-3-c3d59129-b359-4f0a-9739-ea2c19334fbc.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123428f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "c5a3260f-9742-4823-a6cb-41552bde71e8", + "Body" : "{\r\n \"name\": \"vm119858f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e2fa02a2-aece-4472-bea6-a3cd74bd657b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm119858f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-os-disk-a0dda8e9-33a6-47e6-8e00-02154c91798d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-1-f1e8a847-9497-4f97-be2a-e5869504c501.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-2-6f94be2b-38be-449c-b236-2f078c400409.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-3-dc4b1dee-3202-4f3c-97fb-9e740b0156ad.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm119858f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:13 GMT", + "date" : "Mon, 18 May 2020 10:37:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2095", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "80cf8a4b-28ee-4eb8-8810-c78548bd63a3", + "x-ms-correlation-request-id" : "ba9784d2-a990-40bf-b63f-a2ed7fe0567c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "015fbf3d-622a-4784-851b-f53a2cb84144", + "x-ms-arm-service-request-id" : "70743c52-bd26-4b0e-b871-526f41d3128f", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091514Z:80cf8a4b-28ee-4eb8-8810-c78548bd63a3", - "etag" : "W/\"4995b81d-93c6-478d-b171-86ac8a642039\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103755Z:ba9784d2-a990-40bf-b63f-a2ed7fe0567c", + "etag" : "W/\"9a016c9f-c408-4405-8753-18d6b5622d34\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f63b97c3-e15f-48bf-82d3-2559f951aac8", - "Body" : "{\r\n \"name\": \"nic83058287b33\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33\",\r\n \"etag\": \"W/\\\"4995b81d-93c6-478d-b171-86ac8a642039\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3baf924f-1037-4641-abd8-6c8db7ccb7e6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4995b81d-93c6-478d-b171-86ac8a642039\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/publicIPAddresses/pip85903595\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet712797f60c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iscesc45eu4elg3n0raldq5flh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-FA-47-6F\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "9f023a28-fa72-41ef-beab-2e7828267954", + "Body" : "{\r\n \"name\": \"nic01225fd68a4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4\",\r\n \"etag\": \"W/\\\"9a016c9f-c408-4405-8753-18d6b5622d34\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a02c5c43-1f08-4c5b-98c4-46626f56ae2f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9a016c9f-c408-4405-8753-18d6b5622d34\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/publicIPAddresses/pip53318787\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet324418442b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ja3azj23cpnedmyafcpza2o1oa.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-DF-36\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/publicIPAddresses/pip85903595?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/publicIPAddresses/pip53318787?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:14 GMT", + "date" : "Mon, 18 May 2020 10:37:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1013", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11697", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60861236-44e2-4bf8-95cd-805cb06bb2c2", + "x-ms-correlation-request-id" : "906dba2e-2438-4891-a273-52f6185cc926", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "eb7d5a84-5007-4d8c-bf29-8ca25b804d0c", + "x-ms-arm-service-request-id" : "a96c0a9c-1c37-4733-a487-bd2494e28e27", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091514Z:60861236-44e2-4bf8-95cd-805cb06bb2c2", - "etag" : "W/\"8bffd205-a621-4e76-ad02-b8b6edbd3801\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103756Z:906dba2e-2438-4891-a273-52f6185cc926", + "etag" : "W/\"704f8cbd-f41b-489c-8c95-dda2e1e11d9b\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5b6e9183-cbdd-4e5f-8766-ba3eacb9ae3b", - "Body" : "{\r\n \"name\": \"pip85903595\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/publicIPAddresses/pip85903595\",\r\n \"etag\": \"W/\\\"8bffd205-a621-4e76-ad02-b8b6edbd3801\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f5f4dd2e-cb62-4f44-9687-1ebf4e3d676c\",\r\n \"ipAddress\": \"52.161.29.178\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip48019e\",\r\n \"fqdn\": \"pip48019e.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "097df679-b55a-4cfc-953d-bfdc3753103a", + "Body" : "{\r\n \"name\": \"pip53318787\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/publicIPAddresses/pip53318787\",\r\n \"etag\": \"W/\\\"704f8cbd-f41b-489c-8c95-dda2e1e11d9b\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a9ef8fb-d3d6-4f37-bc42-4a1a7b1c6ecb\",\r\n \"ipAddress\": \"52.161.29.182\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip099791\",\r\n \"fqdn\": \"pip099791.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f/deallocate?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f/deallocate?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:37 GMT", + "date" : "Mon, 18 May 2020 10:38:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", @@ -662,1632 +637,1507 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3836cf24-e768-4d19-8f4c-4bd7ab3c3291", + "x-ms-correlation-request-id" : "403eb7f8-0a64-4229-9d01-d9a9623b0715", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091537Z:3836cf24-e768-4d19-8f4c-4bd7ab3c3291", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103819Z:403eb7f8-0a64-4229-9d01-d9a9623b0715", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e4ded01b-0ce7-4765-8747-44a6dd84d1e5?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "016910dc-a6a8-4414-874f-5b5804b9ba43", + "x-ms-request-id" : "e4ded01b-0ce7-4765-8747-44a6dd84d1e5", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "080be491-1c67-4485-8e65-7f9a6f5d6665", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091608Z:080be491-1c67-4485-8e65-7f9a6f5d6665", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "37eafa56-6bc4-41b1-a2dd-57c9985bb365", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:15:37.7163071+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"016910dc-a6a8-4414-874f-5b5804b9ba43\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11689", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b214589e-a44a-451b-8cdd-4e6a2004261a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091638Z:b214589e-a44a-451b-8cdd-4e6a2004261a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7e920990-ff42-48f2-9c00-722875cc6109", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:15:37.7163071+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"016910dc-a6a8-4414-874f-5b5804b9ba43\"\r\n}" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e4ded01b-0ce7-4765-8747-44a6dd84d1e5?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e4ded01b-0ce7-4765-8747-44a6dd84d1e5?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:09 GMT", + "date" : "Mon, 18 May 2020 10:38:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "133", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e8a39885-07ae-4420-8f3f-d3e9b902b35b", + "x-ms-correlation-request-id" : "f148657c-abac-4f17-b73a-e3b899f38724", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091709Z:e8a39885-07ae-4420-8f3f-d3e9b902b35b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103850Z:f148657c-abac-4f17-b73a-e3b899f38724", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e2ae05b3-8981-4733-b046-26334392aa9b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:15:37.7163071+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"016910dc-a6a8-4414-874f-5b5804b9ba43\"\r\n}" + "x-ms-request-id" : "2a2df751-394d-4938-9b3b-3bbc6f1a1154", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:38:19.382428+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e4ded01b-0ce7-4765-8747-44a6dd84d1e5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e4ded01b-0ce7-4765-8747-44a6dd84d1e5?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:39 GMT", + "date" : "Mon, 18 May 2020 10:39:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "133", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "43a78cfb-4fd4-45ee-94c2-14802f64af32", + "x-ms-correlation-request-id" : "8fb81d73-921c-4412-a557-fdeb80c6a4bb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29902", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091739Z:43a78cfb-4fd4-45ee-94c2-14802f64af32", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103920Z:8fb81d73-921c-4412-a557-fdeb80c6a4bb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f5bdb3a8-6e41-4bc2-8928-57fdb7ba8346", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:15:37.7163071+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"016910dc-a6a8-4414-874f-5b5804b9ba43\"\r\n}" + "x-ms-request-id" : "b86d96e8-550c-4806-9d13-ebb43ee7c740", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:38:19.382428+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e4ded01b-0ce7-4765-8747-44a6dd84d1e5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e4ded01b-0ce7-4765-8747-44a6dd84d1e5?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:10 GMT", + "date" : "Mon, 18 May 2020 10:39:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "133", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11758", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f49bbb2f-2e45-4348-821e-811bdac1a17c", + "x-ms-correlation-request-id" : "0eae2332-02f0-4884-8783-23a0eb70f00a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14941,Microsoft.Compute/GetOperation30Min;29888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091811Z:f49bbb2f-2e45-4348-821e-811bdac1a17c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29987", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T103951Z:0eae2332-02f0-4884-8783-23a0eb70f00a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "eb59aa68-480e-4024-84b5-d6bba59eb1b9", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:15:37.7163071+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"016910dc-a6a8-4414-874f-5b5804b9ba43\"\r\n}" + "x-ms-request-id" : "9e61122c-8b0c-475f-ada9-220f812bbbc0", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:38:19.382428+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e4ded01b-0ce7-4765-8747-44a6dd84d1e5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e4ded01b-0ce7-4765-8747-44a6dd84d1e5?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:40 GMT", + "date" : "Mon, 18 May 2020 10:40:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "133", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ab7b7a4b-cd8c-427a-8fa5-62f35299143e", + "x-ms-correlation-request-id" : "d36f710d-8e62-4fa6-9ffa-ea3377602f20", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14934,Microsoft.Compute/GetOperation30Min;29873", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091841Z:ab7b7a4b-cd8c-427a-8fa5-62f35299143e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29984", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104021Z:d36f710d-8e62-4fa6-9ffa-ea3377602f20", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "dd5a1900-1f8c-4b5b-a2d8-6a3f97a6272a", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:15:37.7163071+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"016910dc-a6a8-4414-874f-5b5804b9ba43\"\r\n}" + "x-ms-request-id" : "60dbd3d8-d105-40c5-8767-cb08b6dd9a2e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:38:19.382428+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e4ded01b-0ce7-4765-8747-44a6dd84d1e5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e4ded01b-0ce7-4765-8747-44a6dd84d1e5?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:11 GMT", + "date" : "Mon, 18 May 2020 10:40:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "133", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11682", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4d6e0e11-a78f-4e9d-aedb-78ec92e065d8", + "x-ms-correlation-request-id" : "7924df1d-d005-458f-a3fe-0288d358a4e8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14916,Microsoft.Compute/GetOperation30Min;29851", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091912Z:4d6e0e11-a78f-4e9d-aedb-78ec92e065d8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29981", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104052Z:7924df1d-d005-458f-a3fe-0288d358a4e8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "feb7d0c2-40ef-436c-8923-6dab72217f5a", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:15:37.7163071+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"016910dc-a6a8-4414-874f-5b5804b9ba43\"\r\n}" + "x-ms-request-id" : "44d07fe1-ce82-4b35-bdaf-c0ca4966de12", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:38:19.382428+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e4ded01b-0ce7-4765-8747-44a6dd84d1e5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e4ded01b-0ce7-4765-8747-44a6dd84d1e5?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:42 GMT", + "date" : "Mon, 18 May 2020 10:41:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1bfe21f4-26a0-4f3c-9fc0-f3631aa0f201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14911,Microsoft.Compute/GetOperation30Min;29832", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091943Z:1bfe21f4-26a0-4f3c-9fc0-f3631aa0f201", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d918a7f2-483d-487a-aeb3-5b5a605b824e", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:15:37.7163071+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"016910dc-a6a8-4414-874f-5b5804b9ba43\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "183", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0f88fd90-a4cd-4445-bbfd-b9b34ab986b0", + "x-ms-correlation-request-id" : "8edb2eca-d709-4c92-a044-2ffc2ed80362", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14911,Microsoft.Compute/GetOperation30Min;29817", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092014Z:0f88fd90-a4cd-4445-bbfd-b9b34ab986b0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29978", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104122Z:8edb2eca-d709-4c92-a044-2ffc2ed80362", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4187362f-1952-43f9-8cf1-a0be86c3a80d", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:15:37.7163071+00:00\",\r\n \"endTime\": \"2020-04-29T09:20:00.1226296+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"016910dc-a6a8-4414-874f-5b5804b9ba43\"\r\n}" + "x-ms-request-id" : "002d79cb-ccc8-44d8-95ac-f84f10b09030", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:38:19.382428+00:00\",\r\n \"endTime\": \"2020-05-18T10:41:07.0704539+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e4ded01b-0ce7-4765-8747-44a6dd84d1e5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/016910dc-a6a8-4414-874f-5b5804b9ba43?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e4ded01b-0ce7-4765-8747-44a6dd84d1e5?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:44 GMT", + "date" : "Mon, 18 May 2020 10:41:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11677", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "27aabb14-4603-4567-a538-254a294aabdc", + "x-ms-correlation-request-id" : "8113f4cb-4d43-4c2c-b883-1884ad6f6778", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14918,Microsoft.Compute/GetOperation30Min;29808", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092044Z:27aabb14-4603-4567-a538-254a294aabdc", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29977", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104153Z:8113f4cb-4d43-4c2c-b883-1884ad6f6778", "cache-control" : "no-cache", - "x-ms-request-id" : "f7a26dca-9b12-4d04-b9ee-ab14207a7874", + "x-ms-request-id" : "723f96ca-799e-4ab4-a773-08851a79c106", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f?$expand=instanceView&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f?$expand=instanceView&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:44 GMT", + "date" : "Mon, 18 May 2020 10:41:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "5339", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11803", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c81a0360-cd42-4dd1-9404-15e807474938", + "x-ms-correlation-request-id" : "36f87c63-eca4-4d7b-87e6-e350a3cdee7e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092045Z:c81a0360-cd42-4dd1-9404-15e807474938", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104153Z:36f87c63-eca4-4d7b-87e6-e350a3cdee7e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "146b60a4-cf06-4f36-9d83-8f2a49733a71", - "Body" : "{\r\n \"name\": \"vm123428f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"921e0302-e917-4a4f-8b14-db78a02cec4f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm123428f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-os-disk-e6bc1eb5-ac56-4020-835d-b57485d433ef.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-1-2e88d849-911e-413b-9763-6365ced76bda.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-2-aabef55b-a217-47db-af3d-60e2cde8709d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-3-c3d59129-b359-4f0a-9739-ea2c19334fbc.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123428f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic83058287b33\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm123428f-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T09:20:00.0757488+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T09:20:00.0757488+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T09:20:00.0757488+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T09:20:00.0757488+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T09:20:00.0913537+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "67b84493-5142-4970-acc7-5baa80a65653", + "Body" : "{\r\n \"name\": \"vm119858f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e2fa02a2-aece-4472-bea6-a3cd74bd657b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm119858f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-os-disk-a0dda8e9-33a6-47e6-8e00-02154c91798d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-1-f1e8a847-9497-4f97-be2a-e5869504c501.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-2-6f94be2b-38be-449c-b236-2f078c400409.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-3-dc4b1dee-3202-4f3c-97fb-9e740b0156ad.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm119858f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic01225fd68a4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm119858f-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T10:41:07.0236009+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T10:41:07.0236009+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T10:41:07.0236009+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T10:41:07.0236009+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T10:41:07.0392027+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm123428f/generalize?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm119858f/generalize?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:45 GMT", + "date" : "Mon, 18 May 2020 10:41:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c7de5dfc-096c-4a79-bbb8-14220e6c93fc", + "x-ms-correlation-request-id" : "f0b77e38-8699-4aba-a75d-2f216143dfc0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1188", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092045Z:c7de5dfc-096c-4a79-bbb8-14220e6c93fc", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104154Z:f0b77e38-8699-4aba-a75d-2f216143dfc0", "cache-control" : "no-cache", - "x-ms-request-id" : "c25202c5-8488-4a50-9ec3-43d155891274", + "x-ms-request-id" : "5a9b35a8-8a26-45fe-9015-49f253273111", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/images/img813480?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/images/img209872?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:56 GMT", + "date" : "Mon, 18 May 2020 10:42:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1522", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "16b9c04f-cda4-41f0-823e-1db4148c7833", + "x-ms-correlation-request-id" : "4d198bb1-4a04-41c3-b7e6-24031a90c872", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092056Z:16b9c04f-cda4-41f0-823e-1db4148c7833", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104205Z:4d198bb1-4a04-41c3-b7e6-24031a90c872", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2c075128-268e-40d6-b2ff-ef56ec12ad2b", - "Body" : "{\r\n \"name\": \"img813480\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/images/img813480\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-os-disk-e6bc1eb5-ac56-4020-835d-b57485d433ef.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"blobUri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-1-2e88d849-911e-413b-9763-6365ced76bda.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"blobUri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-2-aabef55b-a217-47db-af3d-60e2cde8709d.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"blobUri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-3-c3d59129-b359-4f0a-9739-ea2c19334fbc.vhd\",\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2c075128-268e-40d6-b2ff-ef56ec12ad2b?api-version=2019-03-01" + "x-ms-request-id" : "26aebba6-b2b8-4e3b-8d00-97c9eea96ecf", + "Body" : "{\r\n \"name\": \"img209872\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/images/img209872\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-os-disk-a0dda8e9-33a6-47e6-8e00-02154c91798d.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"blobUri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-1-f1e8a847-9497-4f97-be2a-e5869504c501.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"blobUri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-2-6f94be2b-38be-449c-b236-2f078c400409.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"blobUri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-3-dc4b1dee-3202-4f3c-97fb-9e740b0156ad.vhd\",\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/26aebba6-b2b8-4e3b-8d00-97c9eea96ecf?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2c075128-268e-40d6-b2ff-ef56ec12ad2b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/26aebba6-b2b8-4e3b-8d00-97c9eea96ecf?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:27 GMT", + "date" : "Mon, 18 May 2020 10:42:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6bd3c79d-e23f-4692-b398-a043e61b5259", + "x-ms-correlation-request-id" : "43b23504-f4f5-4ec4-9d61-9510511a535f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14911,Microsoft.Compute/GetOperation30Min;29789", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092128Z:6bd3c79d-e23f-4692-b398-a043e61b5259", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29975", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104235Z:43b23504-f4f5-4ec4-9d61-9510511a535f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0454a9d0-82b2-4363-92b6-60153011694f", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:20:49.9351306+00:00\",\r\n \"endTime\": \"2020-04-29T09:21:00.3570077+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2c075128-268e-40d6-b2ff-ef56ec12ad2b\"\r\n}" + "x-ms-request-id" : "c272b24c-a503-4b1b-b711-b3626c7d3960", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:41:58.2736472+00:00\",\r\n \"endTime\": \"2020-05-18T10:42:08.4924803+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"26aebba6-b2b8-4e3b-8d00-97c9eea96ecf\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/images/img813480?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/images/img209872?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:58 GMT", + "date" : "Mon, 18 May 2020 10:43:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1638", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "426963b8-9485-431d-a366-89df32be57d3", + "x-ms-correlation-request-id" : "50b27756-1717-4e29-affa-c6af7763efc2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092159Z:426963b8-9485-431d-a366-89df32be57d3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104306Z:50b27756-1717-4e29-affa-c6af7763efc2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1fc3b260-6c0a-4d91-b341-181dc4b8bd80", - "Body" : "{\r\n \"name\": \"img813480\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/images/img813480\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-os-disk-e6bc1eb5-ac56-4020-835d-b57485d433ef.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-1-2e88d849-911e-413b-9763-6365ced76bda.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-2-aabef55b-a217-47db-af3d-60e2cde8709d.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 60,\r\n \"blobUri\": \"https://stgvm123428fabe07331f0.blob.core.windows.net/vhds/vm123428f-data-disk-3-c3d59129-b359-4f0a-9739-ea2c19334fbc.vhd\",\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" + "x-ms-request-id" : "1ba35743-c4e2-4166-ac58-078920b239e9", + "Body" : "{\r\n \"name\": \"img209872\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/images/img209872\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-os-disk-a0dda8e9-33a6-47e6-8e00-02154c91798d.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-1-f1e8a847-9497-4f97-be2a-e5869504c501.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-2-6f94be2b-38be-449c-b236-2f078c400409.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 60,\r\n \"blobUri\": \"https://stgvm119858fd0b441246e.blob.core.windows.net/vhds/vm119858f-data-disk-3-dc4b1dee-3202-4f3c-97fb-9e740b0156ad.vhd\",\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet7123130bf5?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet67880906e4?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:05 GMT", + "date" : "Mon, 18 May 2020 10:43:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1349", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a957dcf3-2eef-44ea-a387-a0caa845ea1a", + "x-ms-correlation-request-id" : "6ebf1867-d36d-46aa-bbe0-a7883b8bc9c1", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4bbcc12a-aa2c-4e74-9f97-fdd23e571799", + "x-ms-arm-service-request-id" : "3ddb64a3-8e1c-4c39-9d2f-c55cc576b3bb", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092205Z:a957dcf3-2eef-44ea-a387-a0caa845ea1a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104312Z:6ebf1867-d36d-46aa-bbe0-a7883b8bc9c1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7a981c8d-8a44-43f1-9bcc-255e605f3ac1", - "Body" : "{\r\n \"name\": \"vnet7123130bf5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet7123130bf5\",\r\n \"etag\": \"W/\\\"1b9dc999-991b-45b4-b16c-5e288f87d9c9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7d345f8a-f309-45a9-976d-77b1460060a3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet7123130bf5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1b9dc999-991b-45b4-b16c-5e288f87d9c9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7a981c8d-8a44-43f1-9bcc-255e605f3ac1?api-version=2019-06-01" + "x-ms-request-id" : "f791a161-b3a3-4508-ac6b-e14db95a6111", + "Body" : "{\r\n \"name\": \"vnet67880906e4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet67880906e4\",\r\n \"etag\": \"W/\\\"d3212e5e-fbec-43e6-a0aa-371396d0a9fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"463f12a3-4d11-464b-b039-bfad1e61fec2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet67880906e4/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d3212e5e-fbec-43e6-a0aa-371396d0a9fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f791a161-b3a3-4508-ac6b-e14db95a6111?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7a981c8d-8a44-43f1-9bcc-255e605f3ac1?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f791a161-b3a3-4508-ac6b-e14db95a6111?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:35 GMT", + "date" : "Mon, 18 May 2020 10:43:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ee5a5e33-eea8-4186-9d67-79a2bd5996ef", + "x-ms-correlation-request-id" : "af673849-22fc-49c6-af22-5c8f33ccb936", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "56a4aca4-1e40-4ae1-b0c1-7ee6dc02d7f0", + "x-ms-arm-service-request-id" : "7b3a89a8-3e4a-468d-badf-41ac03c4b646", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092236Z:ee5a5e33-eea8-4186-9d67-79a2bd5996ef", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104343Z:af673849-22fc-49c6-af22-5c8f33ccb936", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "37c954ac-3db0-4e45-84da-6e67294fc6bd", + "x-ms-request-id" : "04c588de-dfda-4862-8272-9140fa5000b3", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet7123130bf5?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet67880906e4?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:07 GMT", + "date" : "Mon, 18 May 2020 10:44:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1351", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11663", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "effd2246-53d6-4d24-b421-4f8874c9a1cf", + "x-ms-correlation-request-id" : "047c111a-a5d7-4b7f-b961-0504d26c255e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "43c27120-4a78-46b8-9b2e-a8aed9b0bd92", + "x-ms-arm-service-request-id" : "71b09daa-da78-4da3-bd71-61bbd58616f1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092307Z:effd2246-53d6-4d24-b421-4f8874c9a1cf", - "etag" : "W/\"7741054c-aecb-4f70-af11-a0df113a71d5\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104413Z:047c111a-a5d7-4b7f-b961-0504d26c255e", + "etag" : "W/\"fc617cc2-8160-4839-8fd2-4dfe6a32fe2a\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "dd065ad0-0b2b-42b2-8463-5c8bd289ac57", - "Body" : "{\r\n \"name\": \"vnet7123130bf5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet7123130bf5\",\r\n \"etag\": \"W/\\\"7741054c-aecb-4f70-af11-a0df113a71d5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d345f8a-f309-45a9-976d-77b1460060a3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet7123130bf5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7741054c-aecb-4f70-af11-a0df113a71d5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "6aa23066-0dba-499c-8c2c-361a2055e941", + "Body" : "{\r\n \"name\": \"vnet67880906e4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet67880906e4\",\r\n \"etag\": \"W/\\\"fc617cc2-8160-4839-8fd2-4dfe6a32fe2a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"463f12a3-4d11-464b-b039-bfad1e61fec2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet67880906e4/subnets/subnet1\",\r\n \"etag\": \"W/\\\"fc617cc2-8160-4839-8fd2-4dfe6a32fe2a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic08142bd8ecc?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic690866fe27d?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:12 GMT", + "date" : "Mon, 18 May 2020 10:44:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1642", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "81f90105-a60f-4f6c-8ba5-19ab19c01e42", + "x-ms-correlation-request-id" : "8cc5ba62-04bc-42bb-abf8-a593756e432e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b06826a1-d5ee-43b1-bdef-0b4a65003c81", + "x-ms-arm-service-request-id" : "85b355c2-196a-42a6-8550-45799ea7fe62", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092313Z:81f90105-a60f-4f6c-8ba5-19ab19c01e42", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104419Z:8cc5ba62-04bc-42bb-abf8-a593756e432e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cf1c3fcb-399c-48e7-b1cd-37e0788a1ba6", - "Body" : "{\r\n \"name\": \"nic08142bd8ecc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic08142bd8ecc\",\r\n \"etag\": \"W/\\\"e2297b7a-1dac-4a94-a33d-38a36d8fb8d3\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d4880b5e-3f8e-42f1-ba07-675962919d9a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic08142bd8ecc/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e2297b7a-1dac-4a94-a33d-38a36d8fb8d3\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet7123130bf5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rjpti5ij4ouulf1no4yumadaud.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cf1c3fcb-399c-48e7-b1cd-37e0788a1ba6?api-version=2019-06-01" + "x-ms-request-id" : "3ad96c5b-b76c-4673-975f-2b48da57bf5b", + "Body" : "{\r\n \"name\": \"nic690866fe27d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic690866fe27d\",\r\n \"etag\": \"W/\\\"d550d3fa-d7e5-4fe5-84f3-6c6f74040cf9\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d08b6fc9-c862-49b2-b7ce-b6038271f667\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic690866fe27d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d550d3fa-d7e5-4fe5-84f3-6c6f74040cf9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet67880906e4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"umjd4rqrjvfunmbzx4wr2yp4yc.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3ad96c5b-b76c-4673-975f-2b48da57bf5b?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cf1c3fcb-399c-48e7-b1cd-37e0788a1ba6?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3ad96c5b-b76c-4673-975f-2b48da57bf5b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:44 GMT", + "date" : "Mon, 18 May 2020 10:44:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11793", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5fab0194-719a-4ca4-841b-45c5be63f3ca", + "x-ms-correlation-request-id" : "0981b0f3-f689-4442-92b6-fff35c9eeacd", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c0806d30-ddad-43f3-8b96-d18f4f1f1aee", + "x-ms-arm-service-request-id" : "e847c6b3-fc88-4b2a-99b2-2b27bb04b3b0", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092344Z:5fab0194-719a-4ca4-841b-45c5be63f3ca", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104450Z:0981b0f3-f689-4442-92b6-fff35c9eeacd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2cc3a580-bae2-4fd5-bc19-484bcf89d0fa", + "x-ms-request-id" : "ea32e1e8-b647-40d4-8dd0-8988e98b8214", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic08142bd8ecc?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic690866fe27d?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:14 GMT", + "date" : "Mon, 18 May 2020 10:45:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1642", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "461af1e2-04b7-4e07-ab0d-2b8a1c496b1e", + "x-ms-correlation-request-id" : "f45c871b-b71d-4842-8782-af24458f4bc4", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "eca2c54a-4055-4030-8da9-822cdcefa1fb", + "x-ms-arm-service-request-id" : "dee0eabf-bad4-450e-b2eb-35a47e4654bb", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092415Z:461af1e2-04b7-4e07-ab0d-2b8a1c496b1e", - "etag" : "W/\"e2297b7a-1dac-4a94-a33d-38a36d8fb8d3\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104520Z:f45c871b-b71d-4842-8782-af24458f4bc4", + "etag" : "W/\"d550d3fa-d7e5-4fe5-84f3-6c6f74040cf9\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "29cecdf6-a276-4eb1-a7ab-b8626b6c00b0", - "Body" : "{\r\n \"name\": \"nic08142bd8ecc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic08142bd8ecc\",\r\n \"etag\": \"W/\\\"e2297b7a-1dac-4a94-a33d-38a36d8fb8d3\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d4880b5e-3f8e-42f1-ba07-675962919d9a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic08142bd8ecc/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e2297b7a-1dac-4a94-a33d-38a36d8fb8d3\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet7123130bf5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rjpti5ij4ouulf1no4yumadaud.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "8adfff44-3f71-4ee6-bead-156bff8be3e6", + "Body" : "{\r\n \"name\": \"nic690866fe27d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic690866fe27d\",\r\n \"etag\": \"W/\\\"d550d3fa-d7e5-4fe5-84f3-6c6f74040cf9\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d08b6fc9-c862-49b2-b7ce-b6038271f667\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic690866fe27d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d550d3fa-d7e5-4fe5-84f3-6c6f74040cf9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet67880906e4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"umjd4rqrjvfunmbzx4wr2yp4yc.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm217525d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm2075082?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:21 GMT", + "date" : "Mon, 18 May 2020 10:45:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2308", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "37cb4ea1-c557-411f-b2ae-5240fb57aeb1", + "x-ms-correlation-request-id" : "7326c69a-1e73-4213-8fa6-9567b33d4c9f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1172", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092422Z:37cb4ea1-c557-411f-b2ae-5240fb57aeb1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104527Z:7326c69a-1e73-4213-8fa6-9567b33d4c9f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0525699f-4480-4ead-908d-5ab4c6c02205", - "Body" : "{\r\n \"name\": \"vm217525d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm217525d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5da9d2f0-9751-468b-bc91-7fb7e7bb4950\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/images/img813480\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm217525d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic08142bd8ecc\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/0525699f-4480-4ead-908d-5ab4c6c02205?api-version=2019-03-01" + "x-ms-request-id" : "3dddf3cb-8297-4a02-b6f5-70407678cb36", + "Body" : "{\r\n \"name\": \"vm2075082\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm2075082\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0b057794-6f42-44dd-954c-a7122070136e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/images/img209872\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2075082\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic690866fe27d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3dddf3cb-8297-4a02-b6f5-70407678cb36?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/0525699f-4480-4ead-908d-5ab4c6c02205?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3dddf3cb-8297-4a02-b6f5-70407678cb36?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:51 GMT", + "date" : "Mon, 18 May 2020 10:45:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e268be42-355d-4b38-be46-13dd89540ba4", + "x-ms-correlation-request-id" : "014dc920-76ac-402a-a9ee-6859f5bf73fa", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29724", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092452Z:e268be42-355d-4b38-be46-13dd89540ba4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29974", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104558Z:014dc920-76ac-402a-a9ee-6859f5bf73fa", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f254a85c-737b-4474-98e3-a418285bfc21", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:24:20.3572072+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0525699f-4480-4ead-908d-5ab4c6c02205\"\r\n}" + "x-ms-request-id" : "68da320f-333e-424d-bbe7-9de44d5e1a66", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:45:26.4770033+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3dddf3cb-8297-4a02-b6f5-70407678cb36\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/0525699f-4480-4ead-908d-5ab4c6c02205?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3dddf3cb-8297-4a02-b6f5-70407678cb36?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:22 GMT", + "date" : "Mon, 18 May 2020 10:46:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "37435ad7-d4d7-409c-9d66-1cf795f7ac52", + "x-ms-correlation-request-id" : "29fce70b-923d-493e-b533-15ed85348502", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29718", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092523Z:37435ad7-d4d7-409c-9d66-1cf795f7ac52", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29972", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104629Z:29fce70b-923d-493e-b533-15ed85348502", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b8618afd-6588-4b9b-b4d0-f5842ce75730", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:24:20.3572072+00:00\",\r\n \"endTime\": \"2020-04-29T09:25:16.4039729+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0525699f-4480-4ead-908d-5ab4c6c02205\"\r\n}" + "x-ms-request-id" : "a4ede7f2-c119-4c10-8403-44a1be066ddf", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:45:26.4770033+00:00\",\r\n \"endTime\": \"2020-05-18T10:46:22.2115095+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3dddf3cb-8297-4a02-b6f5-70407678cb36\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm217525d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm2075082?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:53 GMT", + "date" : "Mon, 18 May 2020 10:47:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3337", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "79d95be1-f6c3-43e4-89a1-4cbe421976f7", + "x-ms-correlation-request-id" : "eb52e6d2-c329-46d8-bd54-59472e685822", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31871", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092554Z:79d95be1-f6c3-43e4-89a1-4cbe421976f7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31984", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104700Z:eb52e6d2-c329-46d8-bd54-59472e685822", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "598d318f-098a-4192-afcf-2fa0a30d0718", - "Body" : "{\r\n \"name\": \"vm217525d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm217525d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5da9d2f0-9751-468b-bc91-7fb7e7bb4950\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/images/img813480\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm217525d_disk1_de0f6c6a29084f3680839349e897916d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm217525d_disk1_de0f6c6a29084f3680839349e897916d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm217525d_disk2_ca92f9b26d404b0aa30d7d91ced4a948\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm217525d_disk2_ca92f9b26d404b0aa30d7d91ced4a948\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm217525d_disk3_7a978556a94443e5b2473622066950b3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm217525d_disk3_7a978556a94443e5b2473622066950b3\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm217525d_disk4_4f19a58aab954969a61ba5af7ab1e558\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm217525d_disk4_4f19a58aab954969a61ba5af7ab1e558\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm217525d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic08142bd8ecc\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "d97e3c87-5235-4dff-81b0-34b4f768988f", + "Body" : "{\r\n \"name\": \"vm2075082\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm2075082\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0b057794-6f42-44dd-954c-a7122070136e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/images/img209872\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm2075082_disk1_229d0bf9f916433e91defa50b1cdad9c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm2075082_disk1_229d0bf9f916433e91defa50b1cdad9c\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm2075082_disk2_2df57429752d4d64bc84d2a739189010\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm2075082_disk2_2df57429752d4d64bc84d2a739189010\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm2075082_disk3_a46a1a1b096541deb8ac522b3dc42b28\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm2075082_disk3_a46a1a1b096541deb8ac522b3dc42b28\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm2075082_disk4_50b75df688e543d488c57f22bb0793f3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm2075082_disk4_50b75df688e543d488c57f22bb0793f3\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2075082\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic690866fe27d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet39794ca883?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet70477e9d84?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:59 GMT", + "date" : "Mon, 18 May 2020 10:47:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1349", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5ca83cad-9849-4ce6-9655-c199274db46f", + "x-ms-correlation-request-id" : "b4f8a369-ce8b-4a8c-93ba-22655beac00b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e094e102-84f3-45b0-bb03-315b9328629c", + "x-ms-arm-service-request-id" : "ae198ba9-5e2d-4631-ad89-8468a53c5b93", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092600Z:5ca83cad-9849-4ce6-9655-c199274db46f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104705Z:b4f8a369-ce8b-4a8c-93ba-22655beac00b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "333384aa-09f7-42b2-82d7-00ced88e6c5e", - "Body" : "{\r\n \"name\": \"vnet39794ca883\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet39794ca883\",\r\n \"etag\": \"W/\\\"62e58faa-edfb-45b9-b7d3-5182b24d6576\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ca7997ed-12fa-4192-bc66-b42908e184d1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet39794ca883/subnets/subnet1\",\r\n \"etag\": \"W/\\\"62e58faa-edfb-45b9-b7d3-5182b24d6576\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/333384aa-09f7-42b2-82d7-00ced88e6c5e?api-version=2019-06-01" + "x-ms-request-id" : "0f02529f-6479-4390-a465-cb040f1c787b", + "Body" : "{\r\n \"name\": \"vnet70477e9d84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet70477e9d84\",\r\n \"etag\": \"W/\\\"5730c58f-0076-4809-b042-38d05140e158\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b0bccd85-49c6-4caa-82e4-df024bbd578c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet70477e9d84/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5730c58f-0076-4809-b042-38d05140e158\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0f02529f-6479-4390-a465-cb040f1c787b?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/333384aa-09f7-42b2-82d7-00ced88e6c5e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0f02529f-6479-4390-a465-cb040f1c787b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:31 GMT", + "date" : "Mon, 18 May 2020 10:47:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b0c5b0f5-8ab2-471b-81eb-f508108952d6", + "x-ms-correlation-request-id" : "d250c1b7-c217-4d4e-9f5c-a3e502b0a5ca", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b14882d5-2ee0-48fb-b0a2-ce893e7a8ac4", + "x-ms-arm-service-request-id" : "bf64b949-c185-418f-9afb-fc79f1c3dde5", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092631Z:b0c5b0f5-8ab2-471b-81eb-f508108952d6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104736Z:d250c1b7-c217-4d4e-9f5c-a3e502b0a5ca", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d0a9463f-1be4-47ae-b04b-f59929f5daa8", + "x-ms-request-id" : "e0a216ad-76cd-430c-a41e-9299425334ff", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet39794ca883?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet70477e9d84?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:01 GMT", + "date" : "Mon, 18 May 2020 10:48:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1351", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11652", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d206b627-f818-492e-b83f-a6210a8bc7b0", + "x-ms-correlation-request-id" : "69b84564-7879-46c5-ab41-abd2615d6c03", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0b0bfb00-1819-401c-9a44-1e4a4dbac201", + "x-ms-arm-service-request-id" : "7066e02e-12e0-4307-a338-9c60ff9f700d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092702Z:d206b627-f818-492e-b83f-a6210a8bc7b0", - "etag" : "W/\"059b86aa-9a52-49b9-b489-3f3590f22679\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104807Z:69b84564-7879-46c5-ab41-abd2615d6c03", + "etag" : "W/\"0485078e-8346-4e43-90a8-1fc6a848d4dc\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b5bae194-c06e-4c4e-a6bc-d5377ef8c566", - "Body" : "{\r\n \"name\": \"vnet39794ca883\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet39794ca883\",\r\n \"etag\": \"W/\\\"059b86aa-9a52-49b9-b489-3f3590f22679\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca7997ed-12fa-4192-bc66-b42908e184d1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet39794ca883/subnets/subnet1\",\r\n \"etag\": \"W/\\\"059b86aa-9a52-49b9-b489-3f3590f22679\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "e66f159b-44ab-475c-951b-62766e2adf03", + "Body" : "{\r\n \"name\": \"vnet70477e9d84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet70477e9d84\",\r\n \"etag\": \"W/\\\"0485078e-8346-4e43-90a8-1fc6a848d4dc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0bccd85-49c6-4caa-82e4-df024bbd578c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet70477e9d84/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0485078e-8346-4e43-90a8-1fc6a848d4dc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic166740cbc92?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic943958ed322?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:08 GMT", + "date" : "Mon, 18 May 2020 10:48:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1642", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "83607c7d-fc2d-4956-b242-bf73476e789a", + "x-ms-correlation-request-id" : "cb33fede-b6cc-4c99-8a96-d313aaf5cc77", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "48d7a461-3f0a-42b0-a23f-06e76e0ef784", + "x-ms-arm-service-request-id" : "2441af2a-28bc-4fcf-a9b3-7486a4e07e65", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092708Z:83607c7d-fc2d-4956-b242-bf73476e789a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104814Z:cb33fede-b6cc-4c99-8a96-d313aaf5cc77", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "75dab5c5-45bc-4f45-9a83-d2a17dd773b2", - "Body" : "{\r\n \"name\": \"nic166740cbc92\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic166740cbc92\",\r\n \"etag\": \"W/\\\"d7cdead2-2b4c-42c1-867e-86501d8ac06b\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aa2b5555-1e15-4049-8052-cb2b5924421d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic166740cbc92/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d7cdead2-2b4c-42c1-867e-86501d8ac06b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet39794ca883/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3wlxtsx0ckjedpdgwquqryme0b.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/75dab5c5-45bc-4f45-9a83-d2a17dd773b2?api-version=2019-06-01" + "x-ms-request-id" : "d50066af-1911-4450-bdfa-358530ac65a1", + "Body" : "{\r\n \"name\": \"nic943958ed322\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic943958ed322\",\r\n \"etag\": \"W/\\\"1707d39d-e5a4-4813-bf1d-368acb8d07ac\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"057ab2ac-93e5-4c12-871e-54e44da3405d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic943958ed322/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1707d39d-e5a4-4813-bf1d-368acb8d07ac\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet70477e9d84/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"qxg1zmggjgvezaxe12bexpkxre.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d50066af-1911-4450-bdfa-358530ac65a1?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/75dab5c5-45bc-4f45-9a83-d2a17dd773b2?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d50066af-1911-4450-bdfa-358530ac65a1?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:39 GMT", + "date" : "Mon, 18 May 2020 10:48:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "06034147-e08e-4c7a-b3aa-7ac1f60ecdcf", + "x-ms-correlation-request-id" : "6bda40bf-259f-45f1-a4dd-67ab6a32f877", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0bd485bf-0442-4c0c-86c2-fc777bf42eaa", + "x-ms-arm-service-request-id" : "5d259d40-eaeb-4c80-9dc0-6a9c4f2afb5f", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092739Z:06034147-e08e-4c7a-b3aa-7ac1f60ecdcf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104845Z:6bda40bf-259f-45f1-a4dd-67ab6a32f877", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "762bb46c-4d0e-47dc-98f4-260d7f01084d", + "x-ms-request-id" : "b3afb1c8-8775-421b-937a-9ebb446e0c54", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic166740cbc92?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic943958ed322?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:09 GMT", + "date" : "Mon, 18 May 2020 10:49:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1642", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "72e8f52f-f0de-4a68-a21c-edd76cf53a1a", + "x-ms-correlation-request-id" : "ff31e56e-a91c-4d32-892d-1caa04fd17e5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1779b34f-aab7-45e8-89b3-ef7ac39f2814", + "x-ms-arm-service-request-id" : "1b878a2f-4853-4b0a-902a-07ae8eccf95d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092809Z:72e8f52f-f0de-4a68-a21c-edd76cf53a1a", - "etag" : "W/\"d7cdead2-2b4c-42c1-867e-86501d8ac06b\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104916Z:ff31e56e-a91c-4d32-892d-1caa04fd17e5", + "etag" : "W/\"1707d39d-e5a4-4813-bf1d-368acb8d07ac\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8bdca1bb-25a2-4da3-921e-0ab7b27223f6", - "Body" : "{\r\n \"name\": \"nic166740cbc92\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic166740cbc92\",\r\n \"etag\": \"W/\\\"d7cdead2-2b4c-42c1-867e-86501d8ac06b\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aa2b5555-1e15-4049-8052-cb2b5924421d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic166740cbc92/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d7cdead2-2b4c-42c1-867e-86501d8ac06b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/virtualNetworks/vnet39794ca883/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3wlxtsx0ckjedpdgwquqryme0b.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "087fcf88-f590-4554-a761-a8fcdba38c03", + "Body" : "{\r\n \"name\": \"nic943958ed322\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic943958ed322\",\r\n \"etag\": \"W/\\\"1707d39d-e5a4-4813-bf1d-368acb8d07ac\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"057ab2ac-93e5-4c12-871e-54e44da3405d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic943958ed322/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1707d39d-e5a4-4813-bf1d-368acb8d07ac\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/virtualNetworks/vnet70477e9d84/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"qxg1zmggjgvezaxe12bexpkxre.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm3238795?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm3838105?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:16 GMT", + "date" : "Mon, 18 May 2020 10:49:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2589", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c0d571ff-6ef0-4532-a6f1-176bff34db6b", + "x-ms-correlation-request-id" : "11af457f-530f-4055-9a15-809307aab7af", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1166", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092817Z:c0d571ff-6ef0-4532-a6f1-176bff34db6b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104922Z:11af457f-530f-4055-9a15-809307aab7af", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ddfd752a-5fc4-4ac5-82b7-a4e96d3e88ce", - "Body" : "{\r\n \"name\": \"vm3238795\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm3238795\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"31b270a2-41ac-4949-a05e-a5a78220d371\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/images/img813480\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3238795\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic166740cbc92\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddfd752a-5fc4-4ac5-82b7-a4e96d3e88ce?api-version=2019-03-01" + "x-ms-request-id" : "aaa03759-0a82-438f-937e-b67b0da992d4", + "Body" : "{\r\n \"name\": \"vm3838105\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm3838105\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"45df64a3-5573-4c85-b096-d2f50d28d990\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/images/img209872\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3838105\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic943958ed322\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/aaa03759-0a82-438f-937e-b67b0da992d4?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddfd752a-5fc4-4ac5-82b7-a4e96d3e88ce?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/aaa03759-0a82-438f-937e-b67b0da992d4?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:47 GMT", + "date" : "Mon, 18 May 2020 10:49:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "82105a9c-de3f-4adf-9c47-09f9bbc52678", + "x-ms-correlation-request-id" : "b6c74437-cbd8-4299-8edc-13402b94312a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29688", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092847Z:82105a9c-de3f-4adf-9c47-09f9bbc52678", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29971", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T104953Z:b6c74437-cbd8-4299-8edc-13402b94312a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6596a305-2e0f-43ff-97a4-c0088534cfcc", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:28:15.2657287+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddfd752a-5fc4-4ac5-82b7-a4e96d3e88ce\"\r\n}" + "x-ms-request-id" : "c2e29b9e-1d04-4566-a136-d4861081d376", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:49:21.3522547+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aaa03759-0a82-438f-937e-b67b0da992d4\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddfd752a-5fc4-4ac5-82b7-a4e96d3e88ce?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/aaa03759-0a82-438f-937e-b67b0da992d4?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:17 GMT", + "date" : "Mon, 18 May 2020 10:50:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11638", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2b92b9e0-c141-42fe-981f-d7fbc9b2948c", + "x-ms-correlation-request-id" : "b0dae02c-53c4-471a-b13b-c5fa6f8a1483", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29684", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092918Z:2b92b9e0-c141-42fe-981f-d7fbc9b2948c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29969", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105024Z:b0dae02c-53c4-471a-b13b-c5fa6f8a1483", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "87f1cca6-e2f5-47a0-9803-eb2075b9d762", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:28:15.2657287+00:00\",\r\n \"endTime\": \"2020-04-29T09:29:13.8755249+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ddfd752a-5fc4-4ac5-82b7-a4e96d3e88ce\"\r\n}" + "x-ms-request-id" : "d7d8e74a-451b-415b-a3bd-9f3c7bfaf0e0", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:49:21.3522547+00:00\",\r\n \"endTime\": \"2020-05-18T10:50:12.3678971+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aaa03759-0a82-438f-937e-b67b0da992d4\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm3238795?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm3838105?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:47 GMT", + "date" : "Mon, 18 May 2020 10:50:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3876", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11729", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "41ecc71c-1c91-4c54-b0cd-97b42b720274", + "x-ms-correlation-request-id" : "959f9f06-3922-4880-9cf0-2ff0420553bd", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092948Z:41ecc71c-1c91-4c54-b0cd-97b42b720274", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31979", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105054Z:959f9f06-3922-4880-9cf0-2ff0420553bd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "20f0e867-5d1c-4dbe-baab-ecd4ed840e89", - "Body" : "{\r\n \"name\": \"vm3238795\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm3238795\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"31b270a2-41ac-4949-a05e-a5a78220d371\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/images/img813480\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm3238795_disk1_0211d6e6254a4a40997e16078a50f6b4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk1_0211d6e6254a4a40997e16078a50f6b4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm3238795_disk2_fd093818af8c4d5baac29c516badb370\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk2_fd093818af8c4d5baac29c516badb370\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm3238795_disk3_5bc5fc9da485455e9fc9757d8166f8b3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk3_5bc5fc9da485455e9fc9757d8166f8b3\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm3238795_disk4_8477c0152adc4aa8adeb81f54f0ae825\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk4_8477c0152adc4aa8adeb81f54f0ae825\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm3238795_disk5_71246ae193884a20824a709540945e51\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk5_71246ae193884a20824a709540945e51\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3238795\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Network/networkInterfaces/nic166740cbc92\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "f1311797-f2d3-4a96-9fd7-4739b71c2085", + "Body" : "{\r\n \"name\": \"vm3838105\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm3838105\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"45df64a3-5573-4c85-b096-d2f50d28d990\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/images/img209872\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm3838105_disk1_f85f04fdd59043d28f773cd90c2a41a0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk1_f85f04fdd59043d28f773cd90c2a41a0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm3838105_disk2_bcb143daef93406e96d7276a852f495c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk2_bcb143daef93406e96d7276a852f495c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm3838105_disk3_f50ed141015d40289b5b7529aae06675\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk3_f50ed141015d40289b5b7529aae06675\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm3838105_disk4_811257c7d0634fcfb97d0726a82e8b22\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk4_811257c7d0634fcfb97d0726a82e8b22\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm3838105_disk5_4ae821b4bb32433a8efc3a5673c9a640\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk5_4ae821b4bb32433a8efc3a5673c9a640\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3838105\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Network/networkInterfaces/nic943958ed322\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm3238795/deallocate?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm3838105/deallocate?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:48 GMT", + "date" : "Mon, 18 May 2020 10:50:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "97b43c44-81f6-441f-8e89-2b32c33ddfd2", + "x-ms-correlation-request-id" : "c2260054-9449-42a6-92ec-dfa187ebbcd5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1186", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092949Z:97b43c44-81f6-441f-8e89-2b32c33ddfd2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105055Z:c2260054-9449-42a6-92ec-dfa187ebbcd5", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c4f88930-1ce4-4b5d-a68b-8add6460c0c8?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5ec864eb-dea9-4615-ae18-de32e9579301", + "x-ms-request-id" : "c4f88930-1ce4-4b5d-a68b-8add6460c0c8", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "63b2cc2f-ecb2-4b88-b549-91205f8644c3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29672", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093019Z:63b2cc2f-ecb2-4b88-b549-91205f8644c3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5cdbd921-d76a-4640-aa30-8dceca2cd925", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:29:48.8757626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ec864eb-dea9-4615-ae18-de32e9579301\"\r\n}" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c4f88930-1ce4-4b5d-a68b-8add6460c0c8?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c4f88930-1ce4-4b5d-a68b-8add6460c0c8?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:50 GMT", + "date" : "Mon, 18 May 2020 10:51:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11744", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dbbbefb0-7073-4ab8-b4d6-7980da29fa88", + "x-ms-correlation-request-id" : "47b66915-2396-4663-a565-bf8bb087bf26", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29664", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093050Z:dbbbefb0-7073-4ab8-b4d6-7980da29fa88", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29967", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105126Z:47b66915-2396-4663-a565-bf8bb087bf26", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e0d5be59-8bb7-4c18-a89d-13042880c7d6", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:29:48.8757626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ec864eb-dea9-4615-ae18-de32e9579301\"\r\n}" + "x-ms-request-id" : "2c38bed7-5461-4308-af97-44e93250bcd8", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:50:54.9460474+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c4f88930-1ce4-4b5d-a68b-8add6460c0c8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c4f88930-1ce4-4b5d-a68b-8add6460c0c8?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:20 GMT", + "date" : "Mon, 18 May 2020 10:51:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11776", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a4562e8a-b7f6-478d-b726-51dbfcfdd77b", + "x-ms-correlation-request-id" : "cbc4724c-c531-4ab4-8500-460384a93b35", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29655", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093120Z:a4562e8a-b7f6-478d-b726-51dbfcfdd77b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29965", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105156Z:cbc4724c-c531-4ab4-8500-460384a93b35", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "68a56723-59d6-49f8-914e-174a543c4917", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:29:48.8757626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ec864eb-dea9-4615-ae18-de32e9579301\"\r\n}" + "x-ms-request-id" : "dd5ac9ca-f00e-4b30-850a-2626d67c5152", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:50:54.9460474+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c4f88930-1ce4-4b5d-a68b-8add6460c0c8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c4f88930-1ce4-4b5d-a68b-8add6460c0c8?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:50 GMT", + "date" : "Mon, 18 May 2020 10:52:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11742", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6b2fd258-587f-4b34-8a02-57d25652c9b9", + "x-ms-correlation-request-id" : "7d12ac4b-7901-44ee-87d3-ef30a829fada", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29650", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093151Z:6b2fd258-587f-4b34-8a02-57d25652c9b9", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29962", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105227Z:7d12ac4b-7901-44ee-87d3-ef30a829fada", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ad3a25cf-cf9d-48ad-982d-9c876feb97b5", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:29:48.8757626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ec864eb-dea9-4615-ae18-de32e9579301\"\r\n}" + "x-ms-request-id" : "f1fdda18-05e6-4f6d-aa57-a1e4037589c6", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:50:54.9460474+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c4f88930-1ce4-4b5d-a68b-8add6460c0c8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c4f88930-1ce4-4b5d-a68b-8add6460c0c8?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:32:21 GMT", + "date" : "Mon, 18 May 2020 10:52:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3d2d533a-e975-424e-9188-b4c9c7e99bdb", + "x-ms-correlation-request-id" : "d0569bfb-d9d0-4725-9f08-8587052cce6a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29643", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093222Z:3d2d533a-e975-424e-9188-b4c9c7e99bdb", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29959", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105258Z:d0569bfb-d9d0-4725-9f08-8587052cce6a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8a4e7a76-bbda-4aa8-a524-cd4af397270e", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:29:48.8757626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ec864eb-dea9-4615-ae18-de32e9579301\"\r\n}" + "x-ms-request-id" : "35e59347-7425-4511-9a6a-c9213d9f1941", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:50:54.9460474+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c4f88930-1ce4-4b5d-a68b-8add6460c0c8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c4f88930-1ce4-4b5d-a68b-8add6460c0c8?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:32:52 GMT", + "date" : "Mon, 18 May 2020 10:53:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11630", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3d1a6153-ffef-474b-a69d-e4f314b356eb", + "x-ms-correlation-request-id" : "f9664322-9a05-4b72-869e-2344ee48ee39", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29634", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093252Z:3d1a6153-ffef-474b-a69d-e4f314b356eb", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29956", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105328Z:f9664322-9a05-4b72-869e-2344ee48ee39", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5a85a3e3-7479-4c0a-9d14-7e98b1e2619a", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:29:48.8757626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ec864eb-dea9-4615-ae18-de32e9579301\"\r\n}" + "x-ms-request-id" : "db97c5b0-4aa9-47da-ab23-9cbb69c1d225", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:50:54.9460474+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c4f88930-1ce4-4b5d-a68b-8add6460c0c8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c4f88930-1ce4-4b5d-a68b-8add6460c0c8?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:33:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11774", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "589037fe-d628-4c39-87f0-616c4e4af09a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29628", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093323Z:589037fe-d628-4c39-87f0-616c4e4af09a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7c2bedd0-e3d4-4382-819b-6fff8c0fe5f1", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:29:48.8757626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ec864eb-dea9-4615-ae18-de32e9579301\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:33:53 GMT", + "date" : "Mon, 18 May 2020 10:53:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11739", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3042d60f-dc7b-4a41-bba4-925b22a7e972", + "x-ms-correlation-request-id" : "a8a4f27d-d48e-4558-82e0-c4b9adebe7de", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29624", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093354Z:3042d60f-dc7b-4a41-bba4-925b22a7e972", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29953", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105359Z:a8a4f27d-d48e-4558-82e0-c4b9adebe7de", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5ad67811-4b37-45e2-9f35-2c77a8b00507", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:29:48.8757626+00:00\",\r\n \"endTime\": \"2020-04-29T09:33:47.2063354+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5ec864eb-dea9-4615-ae18-de32e9579301\"\r\n}" + "x-ms-request-id" : "f8060584-449a-4d85-8921-4e4d3a01e6c5", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:50:54.9460474+00:00\",\r\n \"endTime\": \"2020-05-18T10:53:44.8992878+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c4f88930-1ce4-4b5d-a68b-8add6460c0c8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ec864eb-dea9-4615-ae18-de32e9579301?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c4f88930-1ce4-4b5d-a68b-8add6460c0c8?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:34:25 GMT", + "date" : "Mon, 18 May 2020 10:54:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0aab6fca-d149-4509-8a71-b126c672e828", + "x-ms-correlation-request-id" : "e4f76e26-3106-4b8b-bd38-6eda194f72ec", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29617", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093426Z:0aab6fca-d149-4509-8a71-b126c672e828", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29952", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105429Z:e4f76e26-3106-4b8b-bd38-6eda194f72ec", "cache-control" : "no-cache", - "x-ms-request-id" : "bfece90a-34dc-4e3c-888f-10ac27aa2760", + "x-ms-request-id" : "4fcd8a5e-199e-4bc9-b17a-c1bcfd8141b8", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk1_0211d6e6254a4a40997e16078a50f6b4?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk1_f85f04fdd59043d28f773cd90c2a41a0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:34:27 GMT", + "date" : "Mon, 18 May 2020 10:54:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1235", + "content-length" : "1282", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11641", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "59be230a-a448-4ce4-8ac3-8c35e375be4a", + "x-ms-correlation-request-id" : "d12b9231-9994-4a48-8121-7acd2b955c82", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093427Z:59be230a-a448-4ce4-8ac3-8c35e375be4a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39983", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105431Z:d12b9231-9994-4a48-8121-7acd2b955c82", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4d961f8b-b467-4586-8ed9-c6d5c8c8ed50", - "Body" : "{\r\n \"name\": \"vm3238795_disk1_0211d6e6254a4a40997e16078a50f6b4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk1_0211d6e6254a4a40997e16078a50f6b4\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm3238795\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/snapshots/img813480_0_vpkkwhnkb4g\",\r\n \"sourceUniqueId\": \"33d5309a-2268-487f-a63c-f54fccbe4908\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:28:15.5441215+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"0211d6e6-254a-4a40-997e-16078a50f6b4\"\r\n }\r\n}" + "x-ms-request-id" : "81c03970-e46f-4516-9f19-3e6ed0e7d028", + "Body" : "{\r\n \"name\": \"vm3838105_disk1_f85f04fdd59043d28f773cd90c2a41a0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk1_f85f04fdd59043d28f773cd90c2a41a0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm3838105\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/snapshots/img209872_0_bbtbpuhhq0f\",\r\n \"sourceUniqueId\": \"1b406ce8-9bac-4b82-ac3c-fdc508d7599b\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T10:49:21.6720514+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"f85f04fd-d590-43d2-8f77-3cd90c2a41a0\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk1_0211d6e6254a4a40997e16078a50f6b4/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk1_f85f04fdd59043d28f773cd90c2a41a0/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:34:27 GMT", + "date" : "Mon, 18 May 2020 10:54:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eb2ddc4f-0980-4b70-b1c4-98be652815bc", + "x-ms-correlation-request-id" : "c8f84ec1-5d77-4b35-9cd0-c0a6d4e42632", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;999,Microsoft.Compute/HighCostDiskHydrate30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093428Z:eb2ddc4f-0980-4b70-b1c4-98be652815bc", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ef023cf-2117-4de3-987a-ea2cc8844063?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;999,Microsoft.Compute/HighCostDiskHydrate30Min;7999", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105431Z:c8f84ec1-5d77-4b35-9cd0-c0a6d4e42632", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ebad4992-bf74-418a-80de-9a0cd09a17dd?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5ef023cf-2117-4de3-987a-ea2cc8844063", + "x-ms-request-id" : "ebad4992-bf74-418a-80de-9a0cd09a17dd", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ef023cf-2117-4de3-987a-ea2cc8844063?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ebad4992-bf74-418a-80de-9a0cd09a17dd?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ef023cf-2117-4de3-987a-ea2cc8844063?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ebad4992-bf74-418a-80de-9a0cd09a17dd?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:34:58 GMT", + "date" : "Mon, 18 May 2020 10:55:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "429", + "content-length" : "426", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11625", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b6bb828b-228d-401c-bdfc-e60af57483e7", + "x-ms-correlation-request-id" : "a3c11781-8975-414d-b9e3-85178021d7ff", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093459Z:b6bb828b-228d-401c-bdfc-e60af57483e7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105502Z:a3c11781-8975-414d-b9e3-85178021d7ff", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6efe99f5-0b79-4008-811d-08f768bf380e", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:34:27.8899058+00:00\",\r\n \"endTime\": \"2020-04-29T09:34:28.0930555+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-hj0cfdjzsqm4.z3.blob.storage.azure.net/js5s4fhf41mz/abcd?sv=2017-04-17&sr=b&si=9df645d6-76cd-4f87-9411-c7633563a9a5&sig=BA0CQst2HMK2IMPEKQ1fwrqWX%2BfCZtmhy%2F1PykdaZzM%3D\"\r\n}\r\n },\r\n \"name\": \"5ef023cf-2117-4de3-987a-ea2cc8844063\"\r\n}" + "x-ms-request-id" : "5d5d36ff-a028-48c3-aad2-4cc9e508cd44", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:54:31.6567778+00:00\",\r\n \"endTime\": \"2020-05-18T10:54:31.8130191+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/nclrm4ps00n3/abcd?sv=2017-04-17&sr=b&si=0ca09957-d0e7-4fe1-95d6-c6f7242639de&sig=ox3z2wU3eYHcc5DR6ceqNfGcnz9tx9UpxfmiKCiWdtE%3D\"\r\n}\r\n },\r\n \"name\": \"ebad4992-bf74-418a-80de-9a0cd09a17dd\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ef023cf-2117-4de3-987a-ea2cc8844063?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ebad4992-bf74-418a-80de-9a0cd09a17dd?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:35:29 GMT", + "date" : "Mon, 18 May 2020 10:55:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "204", + "content-length" : "201", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "718bea56-46f6-4a48-825e-af88b36caf16", + "x-ms-correlation-request-id" : "678d9bf2-19e9-4657-bdfd-ed544b68b169", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093530Z:718bea56-46f6-4a48-825e-af88b36caf16", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105533Z:678d9bf2-19e9-4657-bdfd-ed544b68b169", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bb73c0d3-514b-4b8d-813a-7ffb6926f9a8", - "Body" : "{\r\n \"accessSAS\": \"https://md-hj0cfdjzsqm4.z3.blob.storage.azure.net/js5s4fhf41mz/abcd?sv=2017-04-17&sr=b&si=9df645d6-76cd-4f87-9411-c7633563a9a5&sig=BA0CQst2HMK2IMPEKQ1fwrqWX%2BfCZtmhy%2F1PykdaZzM%3D\"\r\n}" + "x-ms-request-id" : "8cba6079-48de-4476-9f2c-a5c221c045d7", + "Body" : "{\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/nclrm4ps00n3/abcd?sv=2017-04-17&sr=b&si=0ca09957-d0e7-4fe1-95d6-c6f7242639de&sig=ox3z2wU3eYHcc5DR6ceqNfGcnz9tx9UpxfmiKCiWdtE%3D\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk2_fd093818af8c4d5baac29c516badb370?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk2_bcb143daef93406e96d7276a852f495c?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:35:30 GMT", + "date" : "Mon, 18 May 2020 10:55:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "942", + "content-length" : "1020", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8574b544-d800-46bd-b11c-16f7ec6dee25", + "x-ms-correlation-request-id" : "7cbe3cb5-3aca-4b54-a5e1-97d9ca9c32d2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093531Z:8574b544-d800-46bd-b11c-16f7ec6dee25", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39974", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105534Z:7cbe3cb5-3aca-4b54-a5e1-97d9ca9c32d2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "45f92a91-1671-47ad-8785-eed3eef07fda", - "Body" : "{\r\n \"name\": \"vm3238795_disk2_fd093818af8c4d5baac29c516badb370\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk2_fd093818af8c4d5baac29c516badb370\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm3238795\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:28:15.5441215+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"fd093818-af8c-4d5b-aac2-9c516badb370\"\r\n }\r\n}" + "x-ms-request-id" : "c15ab6e2-d227-4149-9004-25bc48f5dfaf", + "Body" : "{\r\n \"name\": \"vm3838105_disk2_bcb143daef93406e96d7276a852f495c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk2_bcb143daef93406e96d7276a852f495c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm3838105\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T10:49:21.6720514+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"bcb143da-ef93-406e-96d7-276a852f495c\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk2_fd093818af8c4d5baac29c516badb370/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk2_bcb143daef93406e96d7276a852f495c/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:35:31 GMT", + "date" : "Mon, 18 May 2020 10:55:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f5657066-f8df-4e33-86e4-775dcbdda786", + "x-ms-correlation-request-id" : "695a9d91-607e-4fd7-9753-29c38f3f9f3d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;998,Microsoft.Compute/HighCostDiskHydrate30Min;7996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093532Z:f5657066-f8df-4e33-86e4-775dcbdda786", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a2630c09-707f-475c-9a21-6d108a42d3ce?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;998,Microsoft.Compute/HighCostDiskHydrate30Min;7998", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105534Z:695a9d91-607e-4fd7-9753-29c38f3f9f3d", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/907f613d-6824-4260-b645-51bdc1d0a83a?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a2630c09-707f-475c-9a21-6d108a42d3ce", + "x-ms-request-id" : "907f613d-6824-4260-b645-51bdc1d0a83a", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a2630c09-707f-475c-9a21-6d108a42d3ce?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/907f613d-6824-4260-b645-51bdc1d0a83a?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a2630c09-707f-475c-9a21-6d108a42d3ce?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/907f613d-6824-4260-b645-51bdc1d0a83a?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:36:03 GMT", + "date" : "Mon, 18 May 2020 10:56:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "428", + "content-length" : "426", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11771", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "11210593-41c3-4011-8ef7-04ea969d326a", + "x-ms-correlation-request-id" : "dc3a508c-8cb0-4e29-abf7-ff598e73d6cb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093603Z:11210593-41c3-4011-8ef7-04ea969d326a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105605Z:dc3a508c-8cb0-4e29-abf7-ff598e73d6cb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "732ca61a-86ad-42fe-9520-021c142c7c84", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:35:32.2805963+00:00\",\r\n \"endTime\": \"2020-04-29T09:35:32.483704+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-dp1j2hwzmgwm.z7.blob.storage.azure.net/wf5rtkh35mxd/abcd?sv=2017-04-17&sr=b&si=a7364eaf-d071-42b4-9ad2-f68d01207561&sig=3pU74GUFu%2FwWTwzljHVafZ%2BCz8fLf0dqQKKc7zlPI1w%3D\"\r\n}\r\n },\r\n \"name\": \"a2630c09-707f-475c-9a21-6d108a42d3ce\"\r\n}" + "x-ms-request-id" : "33f72978-8655-4e14-9b70-fbf9536bcf96", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:55:34.6882292+00:00\",\r\n \"endTime\": \"2020-05-18T10:55:34.8288534+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/dpsw14l0fjfp/abcd?sv=2017-04-17&sr=b&si=5beb11c9-70de-403d-a3e6-238f43847212&sig=0oIheq2cXsGFMwaNQWJK9gCSPJoIQpR0imz16C8eRrY%3D\"\r\n}\r\n },\r\n \"name\": \"907f613d-6824-4260-b645-51bdc1d0a83a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a2630c09-707f-475c-9a21-6d108a42d3ce?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/907f613d-6824-4260-b645-51bdc1d0a83a?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:36:33 GMT", + "date" : "Mon, 18 May 2020 10:56:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "204", + "content-length" : "201", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11719", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ee6f434b-00ed-4a6f-a73d-fae10a39455b", + "x-ms-correlation-request-id" : "754dce08-206d-466d-b9fd-97029bdc3b67", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093634Z:ee6f434b-00ed-4a6f-a73d-fae10a39455b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105635Z:754dce08-206d-466d-b9fd-97029bdc3b67", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6692d17b-3457-4812-80c3-17bb391ce3b0", - "Body" : "{\r\n \"accessSAS\": \"https://md-dp1j2hwzmgwm.z7.blob.storage.azure.net/wf5rtkh35mxd/abcd?sv=2017-04-17&sr=b&si=a7364eaf-d071-42b4-9ad2-f68d01207561&sig=3pU74GUFu%2FwWTwzljHVafZ%2BCz8fLf0dqQKKc7zlPI1w%3D\"\r\n}" + "x-ms-request-id" : "018b1b5f-e108-4004-b76f-f61de6e6b560", + "Body" : "{\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/dpsw14l0fjfp/abcd?sv=2017-04-17&sr=b&si=5beb11c9-70de-403d-a3e6-238f43847212&sig=0oIheq2cXsGFMwaNQWJK9gCSPJoIQpR0imz16C8eRrY%3D\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk3_5bc5fc9da485455e9fc9757d8166f8b3?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk3_f50ed141015d40289b5b7529aae06675?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:36:35 GMT", + "date" : "Mon, 18 May 2020 10:56:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1182", + "content-length" : "1260", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11620", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "042769fe-5cfb-4021-931a-c3db91d14a26", + "x-ms-correlation-request-id" : "ab2107b0-8936-4641-821f-a0706f15879b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093635Z:042769fe-5cfb-4021-931a-c3db91d14a26", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39973", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105636Z:ab2107b0-8936-4641-821f-a0706f15879b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "827bc98a-f544-44a7-99ca-95f043341b6a", - "Body" : "{\r\n \"name\": \"vm3238795_disk3_5bc5fc9da485455e9fc9757d8166f8b3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk3_5bc5fc9da485455e9fc9757d8166f8b3\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm3238795\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/snapshots/img813480_1_esk32ghybzz\",\r\n \"sourceUniqueId\": \"6a9f3657-73ef-4c8f-9167-5ec03212c50b\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:28:15.5441215+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"5bc5fc9d-a485-455e-9fc9-757d8166f8b3\"\r\n }\r\n}" + "x-ms-request-id" : "32e375a9-30b2-488b-8e4b-c729b2f7c823", + "Body" : "{\r\n \"name\": \"vm3838105_disk3_f50ed141015d40289b5b7529aae06675\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk3_f50ed141015d40289b5b7529aae06675\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm3838105\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/snapshots/img209872_1_l50jdxusmuk\",\r\n \"sourceUniqueId\": \"de435ff3-e8da-45e8-b192-a95205a8436b\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T10:49:21.6720514+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"f50ed141-015d-4028-9b5b-7529aae06675\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk3_5bc5fc9da485455e9fc9757d8166f8b3/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk3_f50ed141015d40289b5b7529aae06675/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:36:36 GMT", + "date" : "Mon, 18 May 2020 10:56:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1b95f509-191e-4f25-972a-0852286ac95d", + "x-ms-correlation-request-id" : "f35d8384-261c-445b-8d79-168435fb3d89", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;997,Microsoft.Compute/HighCostDiskHydrate30Min;7995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093636Z:1b95f509-191e-4f25-972a-0852286ac95d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5367ebaa-7682-479d-99c7-abb99a4cab77?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;997,Microsoft.Compute/HighCostDiskHydrate30Min;7997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105636Z:f35d8384-261c-445b-8d79-168435fb3d89", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/bd288882-beef-4476-b1fb-40b49844234c?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5367ebaa-7682-479d-99c7-abb99a4cab77", + "x-ms-request-id" : "bd288882-beef-4476-b1fb-40b49844234c", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5367ebaa-7682-479d-99c7-abb99a4cab77?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/bd288882-beef-4476-b1fb-40b49844234c?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5367ebaa-7682-479d-99c7-abb99a4cab77?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/bd288882-beef-4476-b1fb-40b49844234c?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:37:06 GMT", + "date" : "Mon, 18 May 2020 10:57:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "429", + "content-length" : "428", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11617", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d42ca970-88fd-42ae-97e8-1a9e7bf38ec1", + "x-ms-correlation-request-id" : "4de1a67b-6bda-42ed-bd68-8a6575b65183", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093707Z:d42ca970-88fd-42ae-97e8-1a9e7bf38ec1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105707Z:4de1a67b-6bda-42ed-bd68-8a6575b65183", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9f439e79-3b8e-4a03-a395-ab7e82edd2cf", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:36:36.5310878+00:00\",\r\n \"endTime\": \"2020-04-29T09:36:36.6717066+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-hj0cfdjzsqm4.z3.blob.storage.azure.net/c20pbp5qmrwm/abcd?sv=2017-04-17&sr=b&si=69c539bf-febc-4ca1-8159-a072e6d1b9bd&sig=SJED1PTRXAIpPxKLObUIch9%2FC1FsgNF%2B8kpQJ44BD0M%3D\"\r\n}\r\n },\r\n \"name\": \"5367ebaa-7682-479d-99c7-abb99a4cab77\"\r\n}" + "x-ms-request-id" : "cec33c43-1b6b-4570-96bf-9c726adff53a", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:56:36.8445577+00:00\",\r\n \"endTime\": \"2020-05-18T10:56:36.9539192+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/2flx5qbq2sxt/abcd?sv=2017-04-17&sr=b&si=8a443538-5d86-450b-a071-11d405e1af8f&sig=dsyfKyLtY6F1B8k%2BSzKFoEt5vxSFA1B6HBLciBTWm0g%3D\"\r\n}\r\n },\r\n \"name\": \"bd288882-beef-4476-b1fb-40b49844234c\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5367ebaa-7682-479d-99c7-abb99a4cab77?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/bd288882-beef-4476-b1fb-40b49844234c?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:37:38 GMT", + "date" : "Mon, 18 May 2020 10:57:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "204", + "content-length" : "203", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11717", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3e84dcdc-11bf-4811-8ad4-cc12eb07f69e", + "x-ms-correlation-request-id" : "e671430a-e8f1-407c-95da-b7769e42c9d5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093738Z:3e84dcdc-11bf-4811-8ad4-cc12eb07f69e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399987", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105737Z:e671430a-e8f1-407c-95da-b7769e42c9d5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c8dceb69-7352-4b96-b192-e3d539d3204b", - "Body" : "{\r\n \"accessSAS\": \"https://md-hj0cfdjzsqm4.z3.blob.storage.azure.net/c20pbp5qmrwm/abcd?sv=2017-04-17&sr=b&si=69c539bf-febc-4ca1-8159-a072e6d1b9bd&sig=SJED1PTRXAIpPxKLObUIch9%2FC1FsgNF%2B8kpQJ44BD0M%3D\"\r\n}" + "x-ms-request-id" : "f6c4a18c-c2ae-4c31-801f-4f0e8c1ed640", + "Body" : "{\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/2flx5qbq2sxt/abcd?sv=2017-04-17&sr=b&si=8a443538-5d86-450b-a071-11d405e1af8f&sig=dsyfKyLtY6F1B8k%2BSzKFoEt5vxSFA1B6HBLciBTWm0g%3D\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk4_8477c0152adc4aa8adeb81f54f0ae825?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk4_811257c7d0634fcfb97d0726a82e8b22?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:37:38 GMT", + "date" : "Mon, 18 May 2020 10:57:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1182", + "content-length" : "1260", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a344043a-7bc7-4f93-955c-bd9ce5ae15fa", + "x-ms-correlation-request-id" : "e3bfe688-a2d5-499b-ba62-fe2baf2137b0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39790", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093739Z:a344043a-7bc7-4f93-955c-bd9ce5ae15fa", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39972", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105738Z:e3bfe688-a2d5-499b-ba62-fe2baf2137b0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ab3b8a99-1f4d-480e-acd7-a61236db235d", - "Body" : "{\r\n \"name\": \"vm3238795_disk4_8477c0152adc4aa8adeb81f54f0ae825\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk4_8477c0152adc4aa8adeb81f54f0ae825\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm3238795\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/snapshots/img813480_2_0g2kf145jo2\",\r\n \"sourceUniqueId\": \"41208dd3-eb6b-4c7a-979e-402c052532af\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:28:15.5441215+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"8477c015-2adc-4aa8-adeb-81f54f0ae825\"\r\n }\r\n}" + "x-ms-request-id" : "40ed4a4b-d714-4ddd-b81a-41c1c1213e3f", + "Body" : "{\r\n \"name\": \"vm3838105_disk4_811257c7d0634fcfb97d0726a82e8b22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk4_811257c7d0634fcfb97d0726a82e8b22\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm3838105\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/snapshots/img209872_2_01yjbcyuwdu\",\r\n \"sourceUniqueId\": \"0241bca4-dc81-47a0-b326-232a55a72424\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T10:49:21.6720514+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"811257c7-d063-4fcf-b97d-0726a82e8b22\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk4_8477c0152adc4aa8adeb81f54f0ae825/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk4_811257c7d0634fcfb97d0726a82e8b22/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:37:40 GMT", + "date" : "Mon, 18 May 2020 10:57:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "58af8735-e0e9-403b-b073-c2f4e489795d", + "x-ms-correlation-request-id" : "b4904d9c-6133-4c9c-8d1a-07b1c7dd22a9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;997,Microsoft.Compute/HighCostDiskHydrate30Min;7994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093740Z:58af8735-e0e9-403b-b073-c2f4e489795d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b15f9690-2f2c-4273-a71e-45a3304db470?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;997,Microsoft.Compute/HighCostDiskHydrate30Min;7996", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105738Z:b4904d9c-6133-4c9c-8d1a-07b1c7dd22a9", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3dc6ae53-b9c1-414d-ba40-ce3a0284900b?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b15f9690-2f2c-4273-a71e-45a3304db470", + "x-ms-request-id" : "3dc6ae53-b9c1-414d-ba40-ce3a0284900b", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b15f9690-2f2c-4273-a71e-45a3304db470?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3dc6ae53-b9c1-414d-ba40-ce3a0284900b?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b15f9690-2f2c-4273-a71e-45a3304db470?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3dc6ae53-b9c1-414d-ba40-ce3a0284900b?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:38:10 GMT", + "date" : "Mon, 18 May 2020 10:58:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "429", + "content-length" : "428", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11815", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "862ce226-5ddd-4863-84af-b4c13afac83a", + "x-ms-correlation-request-id" : "b4a1441b-1f8a-4e8e-af94-b00ef42bfc05", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093811Z:862ce226-5ddd-4863-84af-b4c13afac83a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399985", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105809Z:b4a1441b-1f8a-4e8e-af94-b00ef42bfc05", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e72be7a7-3398-4bc8-9e18-7feea613c882", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:37:40.6718514+00:00\",\r\n \"endTime\": \"2020-04-29T09:37:40.8437237+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-hj0cfdjzsqm4.z3.blob.storage.azure.net/wnktwgt4tbfk/abcd?sv=2017-04-17&sr=b&si=6badf9d6-b5ff-41f6-abc8-32f477dad24a&sig=pZj%2BXLh12pcOXb%2Brn0jIXWj50DyWMXC8I8GtIawZ1Uk%3D\"\r\n}\r\n },\r\n \"name\": \"b15f9690-2f2c-4273-a71e-45a3304db470\"\r\n}" + "x-ms-request-id" : "d28e9dc2-d5b0-4595-a466-5591c0a44004", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:57:38.8282379+00:00\",\r\n \"endTime\": \"2020-05-18T10:57:38.9532484+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/xp5jrplnfrgr/abcd?sv=2017-04-17&sr=b&si=0ec4dc80-0e41-48ef-a451-2e525bcd8bd7&sig=wGcs8TANtqxobgCO2u8vYKxoNtu0B88bgkLc16p%2BPdQ%3D\"\r\n}\r\n },\r\n \"name\": \"3dc6ae53-b9c1-414d-ba40-ce3a0284900b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b15f9690-2f2c-4273-a71e-45a3304db470?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3dc6ae53-b9c1-414d-ba40-ce3a0284900b?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:38:42 GMT", + "date" : "Mon, 18 May 2020 10:58:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "204", + "content-length" : "203", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11636", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a37ed4b6-7aa6-4c2a-a0e7-c646496d82d6", + "x-ms-correlation-request-id" : "d38112d8-f372-46dc-a811-bb1b7a6485c2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093842Z:a37ed4b6-7aa6-4c2a-a0e7-c646496d82d6", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399984", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105840Z:d38112d8-f372-46dc-a811-bb1b7a6485c2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "60585475-75d7-48d4-9c5d-1d1c520a424d", - "Body" : "{\r\n \"accessSAS\": \"https://md-hj0cfdjzsqm4.z3.blob.storage.azure.net/wnktwgt4tbfk/abcd?sv=2017-04-17&sr=b&si=6badf9d6-b5ff-41f6-abc8-32f477dad24a&sig=pZj%2BXLh12pcOXb%2Brn0jIXWj50DyWMXC8I8GtIawZ1Uk%3D\"\r\n}" + "x-ms-request-id" : "9532a80d-98b1-40f8-9703-159deff6168a", + "Body" : "{\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/xp5jrplnfrgr/abcd?sv=2017-04-17&sr=b&si=0ec4dc80-0e41-48ef-a451-2e525bcd8bd7&sig=wGcs8TANtqxobgCO2u8vYKxoNtu0B88bgkLc16p%2BPdQ%3D\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk5_71246ae193884a20824a709540945e51?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk5_4ae821b4bb32433a8efc3a5673c9a640?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:38:43 GMT", + "date" : "Mon, 18 May 2020 10:58:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1182", + "content-length" : "1260", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11613", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bccc7d6b-dd9b-4f08-a0e7-77b2a567a80a", + "x-ms-correlation-request-id" : "63abbada-21d8-4a39-b1ac-2850d54efc4c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39774", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093844Z:bccc7d6b-dd9b-4f08-a0e7-77b2a567a80a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39971", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105840Z:63abbada-21d8-4a39-b1ac-2850d54efc4c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8fbda91a-36a1-41df-8f43-b94bc8ebc408", - "Body" : "{\r\n \"name\": \"vm3238795_disk5_71246ae193884a20824a709540945e51\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk5_71246ae193884a20824a709540945e51\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/virtualMachines/vm3238795\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/snapshots/img813480_3_wjwv0qe53lf\",\r\n \"sourceUniqueId\": \"2de947c8-74aa-4715-8706-6810853c90be\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:28:15.5441215+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"71246ae1-9388-4a20-824a-709540945e51\"\r\n }\r\n}" + "x-ms-request-id" : "2a10348a-7757-428f-bd0a-c3b0fabb163e", + "Body" : "{\r\n \"name\": \"vm3838105_disk5_4ae821b4bb32433a8efc3a5673c9a640\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk5_4ae821b4bb32433a8efc3a5673c9a640\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/virtualMachines/vm3838105\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/snapshots/img209872_3_55k1pzagpxm\",\r\n \"sourceUniqueId\": \"7e266963-1cae-4835-9583-102151fa337d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T10:49:21.6720514+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"4ae821b4-bb32-433a-8efc-3a5673c9a640\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV0C457171/providers/Microsoft.Compute/disks/vm3238795_disk5_71246ae193884a20824a709540945e51/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV9FE62809/providers/Microsoft.Compute/disks/vm3838105_disk5_4ae821b4bb32433a8efc3a5673c9a640/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:38:44 GMT", + "date" : "Mon, 18 May 2020 10:58:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", @@ -2296,170 +2146,170 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2a4997cf-3c3c-4d1e-b15a-90b442a357a1", + "x-ms-correlation-request-id" : "4a9885f9-e5d4-495a-b9cb-10d0035eeaef", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;996,Microsoft.Compute/HighCostDiskHydrate30Min;7992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093844Z:2a4997cf-3c3c-4d1e-b15a-90b442a357a1", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3c702557-bed9-4aa8-b3e6-5186df149ef9?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;997,Microsoft.Compute/HighCostDiskHydrate30Min;7995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105841Z:4a9885f9-e5d4-495a-b9cb-10d0035eeaef", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2e1eb43d-81a6-4b9d-b3af-1982abc0b728?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "3c702557-bed9-4aa8-b3e6-5186df149ef9", + "x-ms-request-id" : "2e1eb43d-81a6-4b9d-b3af-1982abc0b728", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3c702557-bed9-4aa8-b3e6-5186df149ef9?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2e1eb43d-81a6-4b9d-b3af-1982abc0b728?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3c702557-bed9-4aa8-b3e6-5186df149ef9?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2e1eb43d-81a6-4b9d-b3af-1982abc0b728?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:39:15 GMT", + "date" : "Mon, 18 May 2020 10:59:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "427", + "content-length" : "432", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c986440d-281c-494d-ae55-67c09bdb199c", + "x-ms-correlation-request-id" : "d5117072-9e9a-4955-b548-2a3cc768abbc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49975,Microsoft.Compute/GetOperation30Min;399885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093915Z:c986440d-281c-494d-ae55-67c09bdb199c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399982", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105912Z:d5117072-9e9a-4955-b548-2a3cc768abbc", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6623f195-186b-47fb-bede-93e9d84aa40f", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:38:44.5470826+00:00\",\r\n \"endTime\": \"2020-04-29T09:38:44.6877125+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-hj0cfdjzsqm4.z3.blob.storage.azure.net/hlkhpbzxdq22/abcd?sv=2017-04-17&sr=b&si=4ed17795-f2b6-4d26-a4d2-49ba50bc3f0f&sig=FqxIeROgDIySfM%2BqjJc46DtUq9WtIJWklUMHOLetNUg%3D\"\r\n}\r\n },\r\n \"name\": \"3c702557-bed9-4aa8-b3e6-5186df149ef9\"\r\n}" + "x-ms-request-id" : "97130625-605f-4340-9964-192a1dafa415", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:58:41.4072061+00:00\",\r\n \"endTime\": \"2020-05-18T10:58:41.5322007+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/gjzqw3tkfvbb/abcd?sv=2017-04-17&sr=b&si=82a5014e-ebc0-4018-a0e8-6465e80b64a7&sig=vnQRHw%2FNxNch%2BRWPteDH1f6m49JJCNSzsUd%2FZLcu7KM%3D\"\r\n}\r\n },\r\n \"name\": \"2e1eb43d-81a6-4b9d-b3af-1982abc0b728\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3c702557-bed9-4aa8-b3e6-5186df149ef9?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2e1eb43d-81a6-4b9d-b3af-1982abc0b728?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:39:46 GMT", + "date" : "Mon, 18 May 2020 10:59:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "202", + "content-length" : "207", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11712", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8a2d1eac-fd18-43e9-abea-de58f01ebc3f", + "x-ms-correlation-request-id" : "afb0d904-b5c0-4316-9e5a-5fffce282e0a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49975,Microsoft.Compute/GetOperation30Min;399883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093946Z:8a2d1eac-fd18-43e9-abea-de58f01ebc3f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399981", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105942Z:afb0d904-b5c0-4316-9e5a-5fffce282e0a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3cfbf001-f95c-44ea-ac1f-f22db123620e", - "Body" : "{\r\n \"accessSAS\": \"https://md-hj0cfdjzsqm4.z3.blob.storage.azure.net/hlkhpbzxdq22/abcd?sv=2017-04-17&sr=b&si=4ed17795-f2b6-4d26-a4d2-49ba50bc3f0f&sig=FqxIeROgDIySfM%2BqjJc46DtUq9WtIJWklUMHOLetNUg%3D\"\r\n}" + "x-ms-request-id" : "663a53f0-9a20-485e-8a6d-fa4b9b71d387", + "Body" : "{\r\n \"accessSAS\": \"https://md-f45s4zfjlskl.z39.blob.storage.azure.net/gjzqw3tkfvbb/abcd?sv=2017-04-17&sr=b&si=82a5014e-ebc0-4018-a0e8-6465e80b64a7&sig=vnQRHw%2FNxNch%2BRWPteDH1f6m49JJCNSzsUd%2FZLcu7KM%3D\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0c457171/providers/Microsoft.Compute/images/img813480?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv9fe62809/providers/Microsoft.Compute/images/img209872?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:39:47 GMT", + "date" : "Mon, 18 May 2020 10:59:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1b8658df-6e0a-4e78-a39d-c2e1bb320a4f", + "x-ms-correlation-request-id" : "7aeb2802-65c7-4f39-a5de-eef53a6fc687", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteImages3Min;119,Microsoft.Compute/DeleteImages30Min;599", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093948Z:1b8658df-6e0a-4e78-a39d-c2e1bb320a4f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/606edfba-4cb1-4de5-8591-12df71b4481e?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T105944Z:7aeb2802-65c7-4f39-a5de-eef53a6fc687", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/0fcad6ae-c37e-493d-b5d1-2b0d551fbb2a?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "606edfba-4cb1-4de5-8591-12df71b4481e", + "x-ms-request-id" : "0fcad6ae-c37e-493d-b5d1-2b0d551fbb2a", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/606edfba-4cb1-4de5-8591-12df71b4481e?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/0fcad6ae-c37e-493d-b5d1-2b0d551fbb2a?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/606edfba-4cb1-4de5-8591-12df71b4481e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/0fcad6ae-c37e-493d-b5d1-2b0d551fbb2a?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:40:18 GMT", + "date" : "Mon, 18 May 2020 11:00:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11609", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8345b078-6b9d-4e1a-8331-8eada716a529", + "x-ms-correlation-request-id" : "5f816de9-03d8-4df5-b039-369c721c3180", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29606", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094019Z:8345b078-6b9d-4e1a-8331-8eada716a529", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29950", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110015Z:5f816de9-03d8-4df5-b039-369c721c3180", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4c05a544-f088-4b89-9de1-c7f14411fa91", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:39:48.723896+00:00\",\r\n \"endTime\": \"2020-04-29T09:39:53.9114336+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"606edfba-4cb1-4de5-8591-12df71b4481e\"\r\n}" + "x-ms-request-id" : "e63e7621-d127-4757-8eab-b5e91e81f06c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T10:59:43.8847651+00:00\",\r\n \"endTime\": \"2020-05-18T10:59:48.9941445+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0fcad6ae-c37e-493d-b5d1-2b0d551fbb2a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/606edfba-4cb1-4de5-8591-12df71b4481e?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/0fcad6ae-c37e-493d-b5d1-2b0d551fbb2a?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:40:49 GMT", + "date" : "Mon, 18 May 2020 11:00:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11767", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3beed6dc-a7a7-40f9-976e-b9cb35f7432e", + "x-ms-correlation-request-id" : "1da4fddd-a5f2-4f3e-9b45-ea6a790fc1d1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29605", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094049Z:3beed6dc-a7a7-40f9-976e-b9cb35f7432e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29949", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110045Z:1da4fddd-a5f2-4f3e-9b45-ea6a790fc1d1", "cache-control" : "no-cache", - "x-ms-request-id" : "1f0b8e0d-9d4d-4cf6-8124-b5c9a6bed7c9", + "x-ms-request-id" : "77ac8561-c4e3-4d20-a42f-4be936212310", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0c457171?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv9fe62809?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:40:53 GMT", + "date" : "Mon, 18 May 2020 11:00:49 GMT", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14992", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e8c13dba-84a2-4314-a69e-3513aedbb6f1", + "x-ms-correlation-request-id" : "04be1785-4eca-407b-9d15-41d47d87f0a2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094053Z:e8c13dba-84a2-4314-a69e-3513aedbb6f1", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwQzQ1NzE3MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110049Z:04be1785-4eca-407b-9d15-41d47d87f0a2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5RkU2MjgwOS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e8c13dba-84a2-4314-a69e-3513aedbb6f1", + "x-ms-request-id" : "04be1785-4eca-407b-9d15-41d47d87f0a2", "Body" : "" } } ], - "variables" : [ "vm123428f", "vm217525d", "vm3238795", "img813480", "rgcomv0c457171", "pip48019e", "nic83058287b33", "vnet712797f60c", "pip85903595", "stgvm123428fabe07331f0", "nic08142bd8ecc", "vnet7123130bf5", "nic166740cbc92", "vnet39794ca883" ] + "variables" : [ "vm119858f", "vm2075082", "vm3838105", "img209872", "rgcomv9fe62809", "pip099791", "nic01225fd68a4", "vnet324418442b", "pip53318787", "stgvm119858fd0b441246e", "nic690866fe27d", "vnet67880906e4", "nic943958ed322", "vnet70477e9d84" ] } \ No newline at end of file diff --git a/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingSpecializedDiskFromSnapshot.json b/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingSpecializedDiskFromSnapshot.json index 988eed8def0d..c3a42224b572 100644 --- a/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingSpecializedDiskFromSnapshot.json +++ b/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingSpecializedDiskFromSnapshot.json @@ -1,587 +1,587 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomve5534286?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvc9b20442?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:02 GMT", - "content-length" : "322", + "date" : "Mon, 18 May 2020 12:14:51 GMT", + "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a728f0aa-4c5c-4d98-8e04-d8d4520a24cb", + "x-ms-correlation-request-id" : "17b81942-ba2a-4931-8383-e19def282015", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090903Z:a728f0aa-4c5c-4d98-8e04-d8d4520a24cb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121451Z:17b81942-ba2a-4931-8383-e19def282015", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a728f0aa-4c5c-4d98-8e04-d8d4520a24cb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286\",\"name\":\"rgcomve5534286\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-04-29T09:08:59.954933900Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "17b81942-ba2a-4931-8383-e19def282015", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442\",\"name\":\"rgcomvc9b20442\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T12:14:46.294Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet22550d34ab?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/publicIPAddresses/pip38421184?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:10 GMT", + "date" : "Mon, 18 May 2020 12:14:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "1349", + "content-length" : "768", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bfbda126-5040-4e83-b6a3-1a56c9f57848", + "x-ms-correlation-request-id" : "e991c14b-c5a5-49a2-b827-c654328c5b4a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "74640357-d31f-40f6-83f4-e47e95f3a174", + "x-ms-arm-service-request-id" : "b4b6228a-a50a-4565-b1f1-217f1385191d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090911Z:bfbda126-5040-4e83-b6a3-1a56c9f57848", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121458Z:e991c14b-c5a5-49a2-b827-c654328c5b4a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "91f43042-5126-45c2-970e-37432da2dfc3", - "Body" : "{\r\n \"name\": \"vnet22550d34ab\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet22550d34ab\",\r\n \"etag\": \"W/\\\"e3f3e120-b344-4fe1-a688-2ab469f16578\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8b03590d-4e7d-4ca2-8dc1-a74e5fe1eac4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet22550d34ab/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e3f3e120-b344-4fe1-a688-2ab469f16578\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/91f43042-5126-45c2-970e-37432da2dfc3?api-version=2019-06-01" + "x-ms-request-id" : "64924e75-496c-45ae-8699-0d4f6c1f9b82", + "Body" : "{\r\n \"name\": \"pip38421184\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/publicIPAddresses/pip38421184\",\r\n \"etag\": \"W/\\\"41c2370e-848d-420d-ba37-d78683ea469b\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"78b9a35c-71fe-4336-8543-ae6529748114\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipb9008957d6\",\r\n \"fqdn\": \"pipb9008957d6.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/64924e75-496c-45ae-8699-0d4f6c1f9b82?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/publicIPAddresses/pip78087d61?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet23343c6567?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:11 GMT", + "date" : "Mon, 18 May 2020 12:14:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "768", + "content-length" : "1349", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4b9ef5c7-1384-4f15-8343-0d2840be1042", + "x-ms-correlation-request-id" : "83caea00-366d-4e06-9b8b-d5a2ae86041f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "48e26e79-2fd9-4fc5-b380-f0de258dba7b", + "x-ms-arm-service-request-id" : "3bbe6739-d68d-407a-a7ff-1a18610bbc3c", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090911Z:4b9ef5c7-1384-4f15-8343-0d2840be1042", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121459Z:83caea00-366d-4e06-9b8b-d5a2ae86041f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "162ce647-91b1-4cb1-a68f-7ae9405c1f29", - "Body" : "{\r\n \"name\": \"pip78087d61\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/publicIPAddresses/pip78087d61\",\r\n \"etag\": \"W/\\\"b8f78ee3-d3c0-4d16-96da-163d85a07beb\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3f647a9e-6654-4f32-aab2-6a1d66f58068\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip74260517aa\",\r\n \"fqdn\": \"pip74260517aa.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/162ce647-91b1-4cb1-a68f-7ae9405c1f29?api-version=2019-06-01" + "x-ms-request-id" : "35296b91-e449-418d-87f9-eabf482d05fc", + "Body" : "{\r\n \"name\": \"vnet23343c6567\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet23343c6567\",\r\n \"etag\": \"W/\\\"e346f907-6e75-4a55-800d-77816a5b274e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ddbeff5a-204d-44a5-abdf-980b1f7451d5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet23343c6567/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e346f907-6e75-4a55-800d-77816a5b274e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/35296b91-e449-418d-87f9-eabf482d05fc?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/91f43042-5126-45c2-970e-37432da2dfc3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/64924e75-496c-45ae-8699-0d4f6c1f9b82?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:43 GMT", + "date" : "Mon, 18 May 2020 12:15:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a80301a4-4c57-4659-b387-db56ea36e24e", + "x-ms-correlation-request-id" : "1f7ade44-18f8-4d8a-bac5-907a27113015", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "64cad9a4-9b11-4414-8076-a497ec0e75ba", + "x-ms-arm-service-request-id" : "7777ad56-28e0-4b99-befa-42310c8c93c8", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090944Z:a80301a4-4c57-4659-b387-db56ea36e24e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121529Z:1f7ade44-18f8-4d8a-bac5-907a27113015", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "69ac9f65-324c-4cd7-9191-7ddc0f7923bf", + "x-ms-request-id" : "4f57c7a5-7f41-4399-91a4-b6923acfa535", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/162ce647-91b1-4cb1-a68f-7ae9405c1f29?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/35296b91-e449-418d-87f9-eabf482d05fc?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:43 GMT", + "date" : "Mon, 18 May 2020 12:15:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d2eb117d-0869-43a5-8a9c-dab1254e0240", + "x-ms-correlation-request-id" : "d5d52c02-db80-4acc-9b56-e6662597593e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6f51e757-f65b-4a5c-906a-229f59b0d7d8", + "x-ms-arm-service-request-id" : "018d17fa-6f16-44ef-9d9a-a362b44f7fee", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090944Z:d2eb117d-0869-43a5-8a9c-dab1254e0240", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121530Z:d5d52c02-db80-4acc-9b56-e6662597593e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "89c211fe-9475-4d8e-bff6-e32d45f5fb9d", + "x-ms-request-id" : "54ef05fe-703b-4fc3-93e6-8358e4a53bc2", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet22550d34ab?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet23343c6567?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:15 GMT", + "date" : "Mon, 18 May 2020 12:16:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1351", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1718b762-908b-4243-8db8-e5cd1d78cedf", + "x-ms-correlation-request-id" : "8c59b5ee-3491-4bf4-b62f-74c733dd5b93", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "02422ccd-14e5-4f24-9532-1b67fdabdcc1", + "x-ms-arm-service-request-id" : "76e0585c-8bce-4711-9813-c91ecccdbbcc", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091015Z:1718b762-908b-4243-8db8-e5cd1d78cedf", - "etag" : "W/\"05bb4a99-6355-4ec1-8676-ce1293ca4832\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121600Z:8c59b5ee-3491-4bf4-b62f-74c733dd5b93", + "etag" : "W/\"10e30983-33a4-4cca-82d2-e797ac765d79\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "921831e6-5d3b-4c10-9345-a8a4ea5b2794", - "Body" : "{\r\n \"name\": \"vnet22550d34ab\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet22550d34ab\",\r\n \"etag\": \"W/\\\"05bb4a99-6355-4ec1-8676-ce1293ca4832\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b03590d-4e7d-4ca2-8dc1-a74e5fe1eac4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet22550d34ab/subnets/subnet1\",\r\n \"etag\": \"W/\\\"05bb4a99-6355-4ec1-8676-ce1293ca4832\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "e1fa3cdb-6b2a-40a0-a27c-f937af1d86bb", + "Body" : "{\r\n \"name\": \"vnet23343c6567\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet23343c6567\",\r\n \"etag\": \"W/\\\"10e30983-33a4-4cca-82d2-e797ac765d79\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbeff5a-204d-44a5-abdf-980b1f7451d5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet23343c6567/subnets/subnet1\",\r\n \"etag\": \"W/\\\"10e30983-33a4-4cca-82d2-e797ac765d79\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/publicIPAddresses/pip78087d61?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/publicIPAddresses/pip38421184?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:15 GMT", + "date" : "Mon, 18 May 2020 12:15:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "769", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aef9e2a2-7ddf-4898-9559-1a5ed2dadada", + "x-ms-correlation-request-id" : "5fea7bed-73b9-40a8-b580-895c0e14986f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "94ac4059-77df-42d9-b424-16f039806814", + "x-ms-arm-service-request-id" : "b6c5425c-c6c4-437e-9222-d0465b918114", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091015Z:aef9e2a2-7ddf-4898-9559-1a5ed2dadada", - "etag" : "W/\"71a2e5ab-38a6-4e43-9330-e17122e32789\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121600Z:5fea7bed-73b9-40a8-b580-895c0e14986f", + "etag" : "W/\"9ba4e963-d390-4b99-b6ed-05ad72a934b3\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9ef13a68-be90-4310-932d-bd2bf4d7dc99", - "Body" : "{\r\n \"name\": \"pip78087d61\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/publicIPAddresses/pip78087d61\",\r\n \"etag\": \"W/\\\"71a2e5ab-38a6-4e43-9330-e17122e32789\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f647a9e-6654-4f32-aab2-6a1d66f58068\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip74260517aa\",\r\n \"fqdn\": \"pip74260517aa.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "01b2228f-0ffe-4098-8b36-af2a9b6d1d7f", + "Body" : "{\r\n \"name\": \"pip38421184\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/publicIPAddresses/pip38421184\",\r\n \"etag\": \"W/\\\"9ba4e963-d390-4b99-b6ed-05ad72a934b3\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78b9a35c-71fe-4336-8543-ae6529748114\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipb9008957d6\",\r\n \"fqdn\": \"pipb9008957d6.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic149189e0928?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic413054d56ed?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:21 GMT", + "date" : "Mon, 18 May 2020 12:16:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1849", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ee72a510-4404-45ce-8888-6abe3e6367b1", + "x-ms-correlation-request-id" : "9e2a25c0-f16c-47a8-8bd6-25de4feaf53c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "dc8b28e2-ed70-41a9-9c62-b190ef6a9536", + "x-ms-arm-service-request-id" : "0d777feb-6cf6-489c-a73d-16859823faa7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091022Z:ee72a510-4404-45ce-8888-6abe3e6367b1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121605Z:9e2a25c0-f16c-47a8-8bd6-25de4feaf53c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f70a8f49-874c-4c20-bdac-1b73157c1f98", - "Body" : "{\r\n \"name\": \"nic149189e0928\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic149189e0928\",\r\n \"etag\": \"W/\\\"71714e8e-93e2-41a6-b1cf-0c785a08ab3c\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"42730138-06e7-4102-86c0-8b76e650dae3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic149189e0928/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"71714e8e-93e2-41a6-b1cf-0c785a08ab3c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/publicIPAddresses/pip78087d61\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet22550d34ab/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"bvmqhc13j0rezdobu3hf5ypkye.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f70a8f49-874c-4c20-bdac-1b73157c1f98?api-version=2019-06-01" + "x-ms-request-id" : "143f5899-25da-42f7-a204-039eb05a3405", + "Body" : "{\r\n \"name\": \"nic413054d56ed\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic413054d56ed\",\r\n \"etag\": \"W/\\\"2587a6dd-2342-4610-90c8-d5acf83e79ba\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2bbf7931-2048-49c6-a20b-918a67d5e79f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic413054d56ed/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2587a6dd-2342-4610-90c8-d5acf83e79ba\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/publicIPAddresses/pip38421184\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet23343c6567/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ll513xknecsujk45tafr43cr0f.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/143f5899-25da-42f7-a204-039eb05a3405?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f70a8f49-874c-4c20-bdac-1b73157c1f98?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/143f5899-25da-42f7-a204-039eb05a3405?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:51 GMT", + "date" : "Mon, 18 May 2020 12:16:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", + "x-ms-ratelimit-remaining-subscription-reads" : "11907", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b0c62851-f95d-4e96-8783-066ef6c085ef", + "x-ms-correlation-request-id" : "9f67d7df-26e8-41af-bd76-70b8c2a2d7ae", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "842f9fdc-968a-4d77-972a-2b3b50fc35d3", + "x-ms-arm-service-request-id" : "9b562164-bc82-4e90-80cc-5d88856beb49", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091052Z:b0c62851-f95d-4e96-8783-066ef6c085ef", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121636Z:9f67d7df-26e8-41af-bd76-70b8c2a2d7ae", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d64f4ef1-7c4a-4ca9-b98e-0ddc5e4727b6", + "x-ms-request-id" : "3d6dab1e-3a8b-4016-bc46-b158a72ee120", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic149189e0928?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic413054d56ed?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:22 GMT", + "date" : "Mon, 18 May 2020 12:17:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1849", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", + "x-ms-ratelimit-remaining-subscription-reads" : "11941", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9d8b419b-f5da-4d4d-a9b2-b4ce52079635", + "x-ms-correlation-request-id" : "70029693-202a-4926-aecb-1a7014c2ec59", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4e74aef0-aa80-4db7-8c88-43bb3e303396", + "x-ms-arm-service-request-id" : "6aaded01-5274-470e-8742-af15dbc6259a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091123Z:9d8b419b-f5da-4d4d-a9b2-b4ce52079635", - "etag" : "W/\"71714e8e-93e2-41a6-b1cf-0c785a08ab3c\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121707Z:70029693-202a-4926-aecb-1a7014c2ec59", + "etag" : "W/\"2587a6dd-2342-4610-90c8-d5acf83e79ba\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c3a9f86e-326f-40be-8451-d10a133a234b", - "Body" : "{\r\n \"name\": \"nic149189e0928\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic149189e0928\",\r\n \"etag\": \"W/\\\"71714e8e-93e2-41a6-b1cf-0c785a08ab3c\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"42730138-06e7-4102-86c0-8b76e650dae3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic149189e0928/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"71714e8e-93e2-41a6-b1cf-0c785a08ab3c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/publicIPAddresses/pip78087d61\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet22550d34ab/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"bvmqhc13j0rezdobu3hf5ypkye.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "eac2742d-847d-424d-bf7b-0c446caeee54", + "Body" : "{\r\n \"name\": \"nic413054d56ed\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic413054d56ed\",\r\n \"etag\": \"W/\\\"2587a6dd-2342-4610-90c8-d5acf83e79ba\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2bbf7931-2048-49c6-a20b-918a67d5e79f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic413054d56ed/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2587a6dd-2342-4610-90c8-d5acf83e79ba\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/publicIPAddresses/pip38421184\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet23343c6567/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ll513xknecsujk45tafr43cr0f.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:28 GMT", + "date" : "Mon, 18 May 2020 12:17:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2036", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "29a3bb8f-fd85-480c-b668-b5ff31901c19", + "x-ms-correlation-request-id" : "088131fb-bf47-42e5-9562-2166d9f88b21", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091128Z:29a3bb8f-fd85-480c-b668-b5ff31901c19", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1194", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121719Z:088131fb-bf47-42e5-9562-2166d9f88b21", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b343ff8d-d7dc-4ce0-934a-907779f5b301", - "Body" : "{\r\n \"name\": \"vm14e02882063\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"72cd7d37-f5bf-45e5-a14e-32e0026e55d1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm14e02882063\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic149189e0928\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b343ff8d-d7dc-4ce0-934a-907779f5b301?api-version=2019-03-01" + "x-ms-request-id" : "94a412d8-1879-4883-960e-ecd1bbc96819", + "Body" : "{\r\n \"name\": \"vm1cbe2349266\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a228baf4-7958-4107-8570-0f06a4d25a7f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1cbe2349266\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic413054d56ed\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/94a412d8-1879-4883-960e-ecd1bbc96819?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b343ff8d-d7dc-4ce0-934a-907779f5b301?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/94a412d8-1879-4883-960e-ecd1bbc96819?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:58 GMT", + "date" : "Mon, 18 May 2020 12:17:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", + "x-ms-ratelimit-remaining-subscription-reads" : "11814", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f9e2b88c-ebfb-4f0f-b13e-3da5f7ca8d51", + "x-ms-correlation-request-id" : "24055aa5-1972-49da-b493-f0eecdaa868b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091158Z:f9e2b88c-ebfb-4f0f-b13e-3da5f7ca8d51", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121749Z:24055aa5-1972-49da-b493-f0eecdaa868b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b26d80d8-7164-4127-b246-94345315b719", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:11:26.8558331+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b343ff8d-d7dc-4ce0-934a-907779f5b301\"\r\n}" + "x-ms-request-id" : "487fca4e-ea26-4510-aac8-d83f985b641d", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:17:17.2036265+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"94a412d8-1879-4883-960e-ecd1bbc96819\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b343ff8d-d7dc-4ce0-934a-907779f5b301?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/94a412d8-1879-4883-960e-ecd1bbc96819?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:29 GMT", + "date" : "Mon, 18 May 2020 12:18:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11807", + "x-ms-ratelimit-remaining-subscription-reads" : "11874", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4ee157b8-582a-4cb2-af05-a73e8918ca78", + "x-ms-correlation-request-id" : "10703bd5-ca66-4453-aee7-e17f69476e6f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091229Z:4ee157b8-582a-4cb2-af05-a73e8918ca78", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121820Z:10703bd5-ca66-4453-aee7-e17f69476e6f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5f308741-9f41-491f-afa3-894cdcefff73", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:11:26.8558331+00:00\",\r\n \"endTime\": \"2020-04-29T09:12:15.887106+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b343ff8d-d7dc-4ce0-934a-907779f5b301\"\r\n}" + "x-ms-request-id" : "338ba28b-a139-4f27-bb6f-42c47fa11454", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:17:17.2036265+00:00\",\r\n \"endTime\": \"2020-05-18T12:18:05.1724029+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"94a412d8-1879-4883-960e-ecd1bbc96819\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:59 GMT", + "date" : "Mon, 18 May 2020 12:18:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2837", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", + "x-ms-ratelimit-remaining-subscription-reads" : "11932", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "69615c8a-5c89-452f-99f8-675041a1b945", + "x-ms-correlation-request-id" : "40a9858b-7933-4a46-b21e-7e19ae2939fa", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091259Z:69615c8a-5c89-452f-99f8-675041a1b945", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121850Z:40a9858b-7933-4a46-b21e-7e19ae2939fa", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fd190b6a-278f-45e5-8fa1-71651c6bcde0", - "Body" : "{\r\n \"name\": \"vm14e02882063\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"72cd7d37-f5bf-45e5-a14e-32e0026e55d1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm14e02882063_OsDisk_1_1b849ec5e307481eaf58d42dfbb88314\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_OsDisk_1_1b849ec5e307481eaf58d42dfbb88314\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm14e02882063_disk2_d1422a51922a40fb8317907f21e28f85\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk2_d1422a51922a40fb8317907f21e28f85\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm14e02882063_disk3_06df333ca4ad4424975e6376816b01a1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk3_06df333ca4ad4424975e6376816b01a1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm14e02882063\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic149189e0928\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "43860a65-ab9c-4175-99ed-6e1787fbf440", + "Body" : "{\r\n \"name\": \"vm1cbe2349266\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a228baf4-7958-4107-8570-0f06a4d25a7f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1cbe2349266_OsDisk_1_2ca8dd6b76894e56aa0cf2c0b71d4853\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_OsDisk_1_2ca8dd6b76894e56aa0cf2c0b71d4853\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1cbe2349266_disk2_e8033614ccbf4214ae816a8af0d359a1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk2_e8033614ccbf4214ae816a8af0d359a1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm1cbe2349266_disk3_63e35e6b1853404698339cd47b7fee80\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk3_63e35e6b1853404698339cd47b7fee80\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1cbe2349266\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic413054d56ed\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063/extensions/CustomScriptForLinux?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266/extensions/CustomScriptForLinux?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:05 GMT", + "date" : "Mon, 18 May 2020 12:19:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "732", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2642dee6-a596-4172-aae4-1cbc4291f78a", + "x-ms-correlation-request-id" : "181c0700-3d30-4be3-b134-ff61c8a1e983", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091305Z:2642dee6-a596-4172-aae4-1cbc4291f78a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121901Z:181c0700-3d30-4be3-b134-ff61c8a1e983", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d20be984-5ff5-45fc-99e9-dae41ba6c3cb", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d20be984-5ff5-45fc-99e9-dae41ba6c3cb?api-version=2019-03-01" + "x-ms-request-id" : "7c1398db-b090-4aa6-8c06-31ab10c64cdf", + "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7c1398db-b090-4aa6-8c06-31ab10c64cdf?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d20be984-5ff5-45fc-99e9-dae41ba6c3cb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7c1398db-b090-4aa6-8c06-31ab10c64cdf?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:35 GMT", + "date" : "Mon, 18 May 2020 12:19:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", + "x-ms-ratelimit-remaining-subscription-reads" : "11900", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "403d1a11-39e8-47ae-b985-cebe15cfd262", + "x-ms-correlation-request-id" : "35800ddf-ed6a-4bda-b8e4-ec1fdb4b80c5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091336Z:403d1a11-39e8-47ae-b985-cebe15cfd262", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29956", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121932Z:35800ddf-ed6a-4bda-b8e4-ec1fdb4b80c5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f92c49cc-8535-403a-9191-dfa8cb15abb2", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:13:04.6058392+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d20be984-5ff5-45fc-99e9-dae41ba6c3cb\"\r\n}" + "x-ms-request-id" : "e4d5c00c-6613-4ed9-8e7e-2ccaa1ae4d76", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:59.3599832+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c1398db-b090-4aa6-8c06-31ab10c64cdf\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d20be984-5ff5-45fc-99e9-dae41ba6c3cb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7c1398db-b090-4aa6-8c06-31ab10c64cdf?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:06 GMT", + "date" : "Mon, 18 May 2020 12:20:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", + "x-ms-ratelimit-remaining-subscription-reads" : "11748", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6f85521b-8358-4517-971f-a72469df9952", + "x-ms-correlation-request-id" : "65563102-602b-41ec-868b-037431fdd1ae", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091406Z:6f85521b-8358-4517-971f-a72469df9952", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29943", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122002Z:65563102-602b-41ec-868b-037431fdd1ae", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f5228f9c-3b96-4849-859c-bfd1313d302d", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:13:04.6058392+00:00\",\r\n \"endTime\": \"2020-04-29T09:13:51.652705+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d20be984-5ff5-45fc-99e9-dae41ba6c3cb\"\r\n}" + "x-ms-request-id" : "b27c173a-55b0-4cfc-9f85-48761d6504e7", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:59.3599832+00:00\",\r\n \"endTime\": \"2020-05-18T12:19:44.0162562+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7c1398db-b090-4aa6-8c06-31ab10c64cdf\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063/extensions/CustomScriptForLinux?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266/extensions/CustomScriptForLinux?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:36 GMT", + "date" : "Mon, 18 May 2020 12:20:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "733", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", + "x-ms-ratelimit-remaining-subscription-reads" : "11906", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b5c9c2c-78fe-430f-9aa9-69393db639b9", + "x-ms-correlation-request-id" : "7f2269a3-7ef5-4f2e-bc15-2069b7c5d5f1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3965,Microsoft.Compute/LowCostGet30Min;31965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091437Z:0b5c9c2c-78fe-430f-9aa9-69393db639b9", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3948,Microsoft.Compute/LowCostGet30Min;31948", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122033Z:7f2269a3-7ef5-4f2e-bc15-2069b7c5d5f1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "788fbb1e-ceb1-4266-b046-4c4ca6cb7107", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}" + "x-ms-request-id" : "ae2ac58d-a03b-48dc-a412-90d5e908ca9b", + "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:37 GMT", + "date" : "Mon, 18 May 2020 12:20:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3652", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", + "x-ms-ratelimit-remaining-subscription-reads" : "11881", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "de70aa66-7e2c-4b46-a93c-6a706a235392", + "x-ms-correlation-request-id" : "02cdb1d1-eaa4-4a44-9cb0-c25c4f7d7234", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3964,Microsoft.Compute/LowCostGet30Min;31964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091437Z:de70aa66-7e2c-4b46-a93c-6a706a235392", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3947,Microsoft.Compute/LowCostGet30Min;31947", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122033Z:02cdb1d1-eaa4-4a44-9cb0-c25c4f7d7234", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "df172f44-a548-44ad-9e97-282e57c56349", - "Body" : "{\r\n \"name\": \"vm14e02882063\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"72cd7d37-f5bf-45e5-a14e-32e0026e55d1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm14e02882063_OsDisk_1_1b849ec5e307481eaf58d42dfbb88314\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_OsDisk_1_1b849ec5e307481eaf58d42dfbb88314\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm14e02882063_disk2_d1422a51922a40fb8317907f21e28f85\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk2_d1422a51922a40fb8317907f21e28f85\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm14e02882063_disk3_06df333ca4ad4424975e6376816b01a1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk3_06df333ca4ad4424975e6376816b01a1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm14e02882063\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic149189e0928\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "0a1b8e66-a812-4bb2-a61f-59062e93bc20", + "Body" : "{\r\n \"name\": \"vm1cbe2349266\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a228baf4-7958-4107-8570-0f06a4d25a7f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1cbe2349266_OsDisk_1_2ca8dd6b76894e56aa0cf2c0b71d4853\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_OsDisk_1_2ca8dd6b76894e56aa0cf2c0b71d4853\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1cbe2349266_disk2_e8033614ccbf4214ae816a8af0d359a1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk2_e8033614ccbf4214ae816a8af0d359a1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm1cbe2349266_disk3_63e35e6b1853404698339cd47b7fee80\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk3_63e35e6b1853404698339cd47b7fee80\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1cbe2349266\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic413054d56ed\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_OsDisk_1_1b849ec5e307481eaf58d42dfbb88314?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_OsDisk_1_2ca8dd6b76894e56aa0cf2c0b71d4853?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:38 GMT", + "date" : "Mon, 18 May 2020 12:20:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1282", + "content-length" : "1359", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", + "x-ms-ratelimit-remaining-subscription-reads" : "11888", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8e5af229-1188-4ef4-9b75-2c398e150440", + "x-ms-correlation-request-id" : "69d1a2a8-1cf4-4d83-bf92-aecd09d8ff95", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091439Z:8e5af229-1188-4ef4-9b75-2c398e150440", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39959", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122034Z:69d1a2a8-1cf4-4d83-bf92-aecd09d8ff95", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5a3aafd5-1a5d-4db5-bc9c-545ecea98af0", - "Body" : "{\r\n \"name\": \"vm14e02882063_OsDisk_1_1b849ec5e307481eaf58d42dfbb88314\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_OsDisk_1_1b849ec5e307481eaf58d42dfbb88314\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004070\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:11:27.3620795+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1b849ec5-e307-481e-af58-d42dfbb88314\"\r\n }\r\n}" + "x-ms-request-id" : "558431c0-513a-489a-b816-5a66b8f62e9a", + "Body" : "{\r\n \"name\": \"vm1cbe2349266_OsDisk_1_2ca8dd6b76894e56aa0cf2c0b71d4853\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_OsDisk_1_2ca8dd6b76894e56aa0cf2c0b71d4853\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:17:17.542292+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"2ca8dd6b-7689-4e56-aa0c-f2c0b71d4853\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk2_d1422a51922a40fb8317907f21e28f85?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk2_e8033614ccbf4214ae816a8af0d359a1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:39 GMT", + "date" : "Mon, 18 May 2020 12:20:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "956", + "content-length" : "1033", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11704", + "x-ms-ratelimit-remaining-subscription-reads" : "11879", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e6d3ca16-53d0-47ed-afe7-23137b3ce85e", + "x-ms-correlation-request-id" : "732936fe-3893-44eb-bfca-479691221921", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091440Z:e6d3ca16-53d0-47ed-afe7-23137b3ce85e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39958", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122035Z:732936fe-3893-44eb-bfca-479691221921", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "be64c1c6-63c1-44c4-804e-ebfd08118525", - "Body" : "{\r\n \"name\": \"vm14e02882063_disk2_d1422a51922a40fb8317907f21e28f85\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk2_d1422a51922a40fb8317907f21e28f85\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:11:27.3620795+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"d1422a51-922a-40fb-8317-907f21e28f85\"\r\n }\r\n}" + "x-ms-request-id" : "296fec76-f760-424c-a738-a72e7912e042", + "Body" : "{\r\n \"name\": \"vm1cbe2349266_disk2_e8033614ccbf4214ae816a8af0d359a1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk2_e8033614ccbf4214ae816a8af0d359a1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:17:17.542292+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e8033614-ccbf-4214-ae81-6a8af0d359a1\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk3_06df333ca4ad4424975e6376816b01a1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk3_63e35e6b1853404698339cd47b7fee80?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:39 GMT", + "date" : "Mon, 18 May 2020 12:20:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "956", + "content-length" : "1033", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", + "x-ms-ratelimit-remaining-subscription-reads" : "11703", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ea8774d8-1845-4306-998a-b9926b0a572c", + "x-ms-correlation-request-id" : "35cdde3c-7451-4f41-a4f8-1feab00eb72f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091440Z:ea8774d8-1845-4306-998a-b9926b0a572c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39957", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122036Z:35cdde3c-7451-4f41-a4f8-1feab00eb72f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "60f4a7ab-7db4-423d-89b2-28a21cd1d080", - "Body" : "{\r\n \"name\": \"vm14e02882063_disk3_06df333ca4ad4424975e6376816b01a1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk3_06df333ca4ad4424975e6376816b01a1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:11:27.3620795+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"06df333c-a4ad-4424-975e-6376816b01a1\"\r\n }\r\n}" + "x-ms-request-id" : "8d80f896-0d2a-46be-b3a5-7e52909319ae", + "Body" : "{\r\n \"name\": \"vm1cbe2349266_disk3_63e35e6b1853404698339cd47b7fee80\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk3_63e35e6b1853404698339cd47b7fee80\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:17:17.542292+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"63e35e6b-1853-4046-9833-9cd47b7fee80\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm14e02882063?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm1cbe2349266?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:40 GMT", + "date" : "Mon, 18 May 2020 12:20:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "0", @@ -590,356 +590,256 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0c431277-c871-4b1c-887f-3b94671be641", + "x-ms-correlation-request-id" : "1d0d643b-efa1-4dae-b037-e19cd2519be2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091441Z:0c431277-c871-4b1c-887f-3b94671be641", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122038Z:1d0d643b-efa1-4dae-b037-e19cd2519be2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c39bded5-857c-41cd-8d4e-b013ab219c57?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "c10da9f9-1ea8-4490-b177-31a335988727", + "x-ms-request-id" : "c39bded5-857c-41cd-8d4e-b013ab219c57", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f8eec2e9-8434-49c7-9581-6e43df4ee04b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091511Z:f8eec2e9-8434-49c7-9581-6e43df4ee04b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bb16bd10-1d72-4c43-8364-7e11e3890a45", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.3099947+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c10da9f9-1ea8-4490-b177-31a335988727\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:41 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "49fd4972-9930-4357-9ea8-ccd7c335cc2f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091542Z:49fd4972-9930-4357-9ea8-ccd7c335cc2f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c8f0ba61-f52e-4be1-afb6-f9e123aa58d8", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.3099947+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c10da9f9-1ea8-4490-b177-31a335988727\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:12 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "294c5b04-375e-442d-a40b-0125c261de09", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091613Z:294c5b04-375e-442d-a40b-0125c261de09", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e8147633-0011-4a32-bd35-41fe9746da53", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.3099947+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c10da9f9-1ea8-4490-b177-31a335988727\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:42 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "97a8d1da-f026-4805-a619-242addf9c0dc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091643Z:97a8d1da-f026-4805-a619-242addf9c0dc", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "33c7d8c2-83bb-45bc-9177-8916c57f0185", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.3099947+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c10da9f9-1ea8-4490-b177-31a335988727\"\r\n}" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c39bded5-857c-41cd-8d4e-b013ab219c57?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c39bded5-857c-41cd-8d4e-b013ab219c57?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:13 GMT", + "date" : "Mon, 18 May 2020 12:21:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11762", + "x-ms-ratelimit-remaining-subscription-reads" : "11805", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b2c1f4ef-2ba2-40ad-863d-771542c48971", + "x-ms-correlation-request-id" : "ff3f0ba7-57b4-40fe-a424-bee4d58130e4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091714Z:b2c1f4ef-2ba2-40ad-863d-771542c48971", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29927", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122108Z:ff3f0ba7-57b4-40fe-a424-bee4d58130e4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "11992996-fb75-44b9-9b51-8a8e2ad9bd79", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.3099947+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c10da9f9-1ea8-4490-b177-31a335988727\"\r\n}" + "x-ms-request-id" : "66c64531-a045-43d5-92d1-a19e4dd602d9", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:20:37.9694365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c39bded5-857c-41cd-8d4e-b013ab219c57\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c39bded5-857c-41cd-8d4e-b013ab219c57?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:44 GMT", + "date" : "Mon, 18 May 2020 12:21:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", + "x-ms-ratelimit-remaining-subscription-reads" : "11728", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6ffa6cba-4129-485a-8216-ed52fa261c67", + "x-ms-correlation-request-id" : "4d8adf21-7e5a-4da2-a819-5ef6a289879b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29900", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091744Z:6ffa6cba-4129-485a-8216-ed52fa261c67", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29921", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122138Z:4d8adf21-7e5a-4da2-a819-5ef6a289879b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0af09111-a6f5-4c20-b40e-72420a53cf03", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.3099947+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c10da9f9-1ea8-4490-b177-31a335988727\"\r\n}" + "x-ms-request-id" : "e1252d62-88a7-4def-ab99-bb71ef168c54", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:20:37.9694365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c39bded5-857c-41cd-8d4e-b013ab219c57\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c39bded5-857c-41cd-8d4e-b013ab219c57?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:14 GMT", + "date" : "Mon, 18 May 2020 12:22:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11776", + "x-ms-ratelimit-remaining-subscription-reads" : "11814", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3210645b-a2ed-4957-8461-ecf46483e1e5", + "x-ms-correlation-request-id" : "c480b6ec-31d0-47c9-bad8-0266ec9959f1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29886", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091814Z:3210645b-a2ed-4957-8461-ecf46483e1e5", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29912", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122209Z:c480b6ec-31d0-47c9-bad8-0266ec9959f1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8ccda7d2-d68f-4f0a-a7db-a7b0ab1cedac", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.3099947+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c10da9f9-1ea8-4490-b177-31a335988727\"\r\n}" + "x-ms-request-id" : "db5a8790-72b7-4e45-a3b7-cbb50103b9fa", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:20:37.9694365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c39bded5-857c-41cd-8d4e-b013ab219c57\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c39bded5-857c-41cd-8d4e-b013ab219c57?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:45 GMT", + "date" : "Mon, 18 May 2020 12:22:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", + "x-ms-ratelimit-remaining-subscription-reads" : "11690", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "011f9606-2a96-4343-b108-42b5fb362efc", + "x-ms-correlation-request-id" : "6e35b291-65a7-45e2-8f0c-2e3a67ed1147", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29869", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091845Z:011f9606-2a96-4343-b108-42b5fb362efc", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29899", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122239Z:6e35b291-65a7-45e2-8f0c-2e3a67ed1147", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8e7fd2f5-d726-4fb6-b3aa-733febd1ef3b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.3099947+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c10da9f9-1ea8-4490-b177-31a335988727\"\r\n}" + "x-ms-request-id" : "6ae1ee56-7176-4206-8bb3-9e796417715e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:20:37.9694365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c39bded5-857c-41cd-8d4e-b013ab219c57\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c39bded5-857c-41cd-8d4e-b013ab219c57?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:15 GMT", + "date" : "Mon, 18 May 2020 12:23:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", + "x-ms-ratelimit-remaining-subscription-reads" : "11809", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3284e27d-37c2-450f-a935-4577638e5196", + "x-ms-correlation-request-id" : "0c5d2ce9-90c6-4051-97a2-cb7df5d97a72", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14915,Microsoft.Compute/GetOperation30Min;29850", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091915Z:3284e27d-37c2-450f-a935-4577638e5196", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29882", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122310Z:0c5d2ce9-90c6-4051-97a2-cb7df5d97a72", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "00d15ecd-8831-49f9-b9f5-f9afb4f8e8e3", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.3099947+00:00\",\r\n \"endTime\": \"2020-04-29T09:18:55.2163846+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c10da9f9-1ea8-4490-b177-31a335988727\"\r\n}" + "x-ms-request-id" : "3aaded4c-fd52-434e-8564-7dca01d6881b", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:20:37.9694365+00:00\",\r\n \"endTime\": \"2020-05-18T12:22:45.2979108+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c39bded5-857c-41cd-8d4e-b013ab219c57\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c10da9f9-1ea8-4490-b177-31a335988727?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c39bded5-857c-41cd-8d4e-b013ab219c57?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:45 GMT", + "date" : "Mon, 18 May 2020 12:23:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11771", + "x-ms-ratelimit-remaining-subscription-reads" : "11760", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5e6ced72-5827-4031-8d61-dac937a23e07", + "x-ms-correlation-request-id" : "08f3e20c-d754-4798-be78-37e28aca0b04", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14909,Microsoft.Compute/GetOperation30Min;29830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091946Z:5e6ced72-5827-4031-8d61-dac937a23e07", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14934,Microsoft.Compute/GetOperation30Min;29864", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122340Z:08f3e20c-d754-4798-be78-37e28aca0b04", "cache-control" : "no-cache", - "x-ms-request-id" : "8bad5aa6-1445-431b-836c-1b3c91e4187e", + "x-ms-request-id" : "4f0306bf-ae0b-4076-8acb-76c3540d4cf3", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-os-d0205797?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-os-15e81680?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:50 GMT", + "date" : "Mon, 18 May 2020 12:23:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "569", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f4823e6f-439e-471a-aee1-1a19b688d1e5", + "x-ms-correlation-request-id" : "c2d113eb-f6e7-47d8-9560-4d8ee5b065f0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091951Z:f4823e6f-439e-471a-aee1-1a19b688d1e5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122345Z:c2d113eb-f6e7-47d8-9560-4d8ee5b065f0", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f0f2ec9d-2c10-4158-9843-18d94567a117?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/fde2311c-c0b5-4e51-9fcf-d6bc08a79abb?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f0f2ec9d-2c10-4158-9843-18d94567a117", - "Body" : "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_OsDisk_1_1b849ec5e307481eaf58d42dfbb88314\",\r\n \"sourceUniqueId\": \"1b849ec5-e307-481e-af58-d42dfbb88314\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f0f2ec9d-2c10-4158-9843-18d94567a117?api-version=2019-03-01" + "x-ms-request-id" : "fde2311c-c0b5-4e51-9fcf-d6bc08a79abb", + "Body" : "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_OsDisk_1_2ca8dd6b76894e56aa0cf2c0b71d4853\",\r\n \"sourceUniqueId\": \"2ca8dd6b-7689-4e56-aa0c-f2c0b71d4853\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/fde2311c-c0b5-4e51-9fcf-d6bc08a79abb?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f0f2ec9d-2c10-4158-9843-18d94567a117?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/fde2311c-c0b5-4e51-9fcf-d6bc08a79abb?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:21 GMT", + "date" : "Mon, 18 May 2020 12:24:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1079", + "content-length" : "1135", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", + "x-ms-ratelimit-remaining-subscription-reads" : "11820", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eb926569-7a46-49e7-a905-6cf324f30a4a", + "x-ms-correlation-request-id" : "acd47838-7556-42ed-8c6d-25dfa365584a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092022Z:eb926569-7a46-49e7-a905-6cf324f30a4a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399970", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122416Z:acd47838-7556-42ed-8c6d-25dfa365584a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c292c4e3-83d5-49c4-b7b3-c437c83ce5f6", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:19:51.3236791+00:00\",\r\n \"endTime\": \"2020-04-29T09:19:51.7299011+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ss-os-d0205797\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-os-d0205797\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_OsDisk_1_1b849ec5e307481eaf58d42dfbb88314\",\"sourceUniqueId\":\"1b849ec5-e307-481e-af58-d42dfbb88314\"},\"diskSizeGB\":30,\"incremental\":false,\"timeCreated\":\"2020-04-29T09:19:51.3549346+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":32213303296,\"uniqueId\":\"11d6a469-72ed-428d-9073-949cfe38769a\"}}\r\n },\r\n \"name\": \"f0f2ec9d-2c10-4158-9843-18d94567a117\"\r\n}" + "x-ms-request-id" : "c3a95582-8f88-414b-a02b-df1115fe31a8", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:23:45.7142361+00:00\",\r\n \"endTime\": \"2020-05-18T12:23:46.1360968+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ss-os-15e81680\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-os-15e81680\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_OsDisk_1_2ca8dd6b76894e56aa0cf2c0b71d4853\",\"sourceUniqueId\":\"2ca8dd6b-7689-4e56-aa0c-f2c0b71d4853\"},\"diskSizeGB\":30,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"timeCreated\":\"2020-05-18T12:23:45.7142361+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":32213303296,\"uniqueId\":\"c681fb96-b06f-4db7-9e13-b9a4f2603817\"}}\r\n },\r\n \"name\": \"fde2311c-c0b5-4e51-9fcf-d6bc08a79abb\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-os-d0205797?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-os-15e81680?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:52 GMT", + "date" : "Mon, 18 May 2020 12:24:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1016", + "content-length" : "1094", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", + "x-ms-ratelimit-remaining-subscription-reads" : "11713", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9025c5be-b276-4c45-8ea0-1cc531466b42", + "x-ms-correlation-request-id" : "0e4e56ab-149d-4b15-a1fb-9315ffbc4c9b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4973,Microsoft.Compute/LowCostGet30Min;39929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092053Z:9025c5be-b276-4c45-8ea0-1cc531466b42", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39935", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122447Z:0e4e56ab-149d-4b15-a1fb-9315ffbc4c9b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0982ee84-4d5f-4bea-83a0-f198e5537e6d", - "Body" : "{\r\n \"name\": \"ss-os-d0205797\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-os-d0205797\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_OsDisk_1_1b849ec5e307481eaf58d42dfbb88314\",\r\n \"sourceUniqueId\": \"1b849ec5-e307-481e-af58-d42dfbb88314\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-04-29T09:19:51.3549346+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"11d6a469-72ed-428d-9073-949cfe38769a\"\r\n }\r\n}" + "x-ms-request-id" : "f7fd9c77-f814-423a-a0df-713baf16b9cc", + "Body" : "{\r\n \"name\": \"ss-os-15e81680\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-os-15e81680\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_OsDisk_1_2ca8dd6b76894e56aa0cf2c0b71d4853\",\r\n \"sourceUniqueId\": \"2ca8dd6b-7689-4e56-aa0c-f2c0b71d4853\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-05-18T12:23:45.7142361+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"c681fb96-b06f-4db7-9e13-b9a4f2603817\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:58 GMT", + "date" : "Mon, 18 May 2020 12:24:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "511", "expires" : "-1", @@ -948,403 +848,403 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "47bc7440-b641-491f-bf77-509dbfca71f0", + "x-ms-correlation-request-id" : "0a93b7aa-bf91-4f27-a364-5a9e305f3a26", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092058Z:47bc7440-b641-491f-bf77-509dbfca71f0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122451Z:0a93b7aa-bf91-4f27-a364-5a9e305f3a26", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/57c89ae9-fbd9-43b1-9070-cc3b9718f92c?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/21eb3a59-61c8-4db6-932a-1fb8a2d5d6d2?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "57c89ae9-fbd9-43b1-9070-cc3b9718f92c", - "Body" : "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk2_d1422a51922a40fb8317907f21e28f85\",\r\n \"sourceUniqueId\": \"d1422a51-922a-40fb-8317-907f21e28f85\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/57c89ae9-fbd9-43b1-9070-cc3b9718f92c?api-version=2019-03-01" + "x-ms-request-id" : "21eb3a59-61c8-4db6-932a-1fb8a2d5d6d2", + "Body" : "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk2_e8033614ccbf4214ae816a8af0d359a1\",\r\n \"sourceUniqueId\": \"e8033614-ccbf-4214-ae81-6a8af0d359a1\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/21eb3a59-61c8-4db6-932a-1fb8a2d5d6d2?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/57c89ae9-fbd9-43b1-9070-cc3b9718f92c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/21eb3a59-61c8-4db6-932a-1fb8a2d5d6d2?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:29 GMT", + "date" : "Mon, 18 May 2020 12:25:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1041", + "content-length" : "1097", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", + "x-ms-ratelimit-remaining-subscription-reads" : "11708", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bdeac67e-bed1-429b-a29c-d38e787bd4df", + "x-ms-correlation-request-id" : "9b7b0e91-7754-4f47-966e-07f04cd0ad7c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092129Z:bdeac67e-bed1-429b-a29c-d38e787bd4df", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49979,Microsoft.Compute/GetOperation30Min;399953", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122521Z:9b7b0e91-7754-4f47-966e-07f04cd0ad7c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ac2277b7-0613-4773-ae78-915b601d7631", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:20:58.4026526+00:00\",\r\n \"endTime\": \"2020-04-29T09:20:58.7932326+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ss-data-65857e-0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-0\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk2_d1422a51922a40fb8317907f21e28f85\",\"sourceUniqueId\":\"d1422a51-922a-40fb-8317-907f21e28f85\"},\"diskSizeGB\":100,\"incremental\":false,\"timeCreated\":\"2020-04-29T09:20:58.4026526+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"1eda9d7b-7ed7-4be2-9593-d88b0554974f\"}}\r\n },\r\n \"name\": \"57c89ae9-fbd9-43b1-9070-cc3b9718f92c\"\r\n}" + "x-ms-request-id" : "8737b8ee-ec1b-44dc-9d66-cf531f7ad453", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:24:50.7773335+00:00\",\r\n \"endTime\": \"2020-05-18T12:24:51.2773407+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ss-data-047951-0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-0\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk2_e8033614ccbf4214ae816a8af0d359a1\",\"sourceUniqueId\":\"e8033614-ccbf-4214-ae81-6a8af0d359a1\"},\"diskSizeGB\":100,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"timeCreated\":\"2020-05-18T12:24:50.7929574+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"41bd1e17-42f8-47b0-8956-43346f4247ed\"}}\r\n },\r\n \"name\": \"21eb3a59-61c8-4db6-932a-1fb8a2d5d6d2\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:00 GMT", + "date" : "Mon, 18 May 2020 12:25:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "964", + "content-length" : "1042", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11797", + "x-ms-ratelimit-remaining-subscription-reads" : "11858", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "312c6e5f-5c2e-469c-93da-4ab58529511d", + "x-ms-correlation-request-id" : "fbd1595d-ca93-42a4-aebc-2efacfdffbf6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4964,Microsoft.Compute/LowCostGet30Min;39914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092200Z:312c6e5f-5c2e-469c-93da-4ab58529511d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4968,Microsoft.Compute/LowCostGet30Min;39918", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122552Z:fbd1595d-ca93-42a4-aebc-2efacfdffbf6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "53e1c5a4-c238-42a3-b81a-1afdc4bdab43", - "Body" : "{\r\n \"name\": \"ss-data-65857e-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-0\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk2_d1422a51922a40fb8317907f21e28f85\",\r\n \"sourceUniqueId\": \"d1422a51-922a-40fb-8317-907f21e28f85\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-04-29T09:20:58.4026526+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"1eda9d7b-7ed7-4be2-9593-d88b0554974f\"\r\n }\r\n}" + "x-ms-request-id" : "4adad280-1a2a-47a3-b80e-89d859baa555", + "Body" : "{\r\n \"name\": \"ss-data-047951-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-0\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk2_e8033614ccbf4214ae816a8af0d359a1\",\r\n \"sourceUniqueId\": \"e8033614-ccbf-4214-ae81-6a8af0d359a1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-05-18T12:24:50.7929574+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"41bd1e17-42f8-47b0-8956-43346f4247ed\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:04 GMT", + "date" : "Mon, 18 May 2020 12:25:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "511", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "x-ms-ratelimit-remaining-subscription-writes" : "1166", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "96f7742d-16f4-48a6-9799-0eef9d3af622", + "x-ms-correlation-request-id" : "a2ea290f-f6f5-4766-a46f-a71a71321135", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092205Z:96f7742d-16f4-48a6-9799-0eef9d3af622", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122555Z:a2ea290f-f6f5-4766-a46f-a71a71321135", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c0dbca35-b03e-4e2e-a420-ec0080a9b60a?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/896dcc20-a308-4011-9bf4-c89d4ae5864c?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "c0dbca35-b03e-4e2e-a420-ec0080a9b60a", - "Body" : "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk3_06df333ca4ad4424975e6376816b01a1\",\r\n \"sourceUniqueId\": \"06df333c-a4ad-4424-975e-6376816b01a1\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c0dbca35-b03e-4e2e-a420-ec0080a9b60a?api-version=2019-03-01" + "x-ms-request-id" : "896dcc20-a308-4011-9bf4-c89d4ae5864c", + "Body" : "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk3_63e35e6b1853404698339cd47b7fee80\",\r\n \"sourceUniqueId\": \"63e35e6b-1853-4046-9833-9cd47b7fee80\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/896dcc20-a308-4011-9bf4-c89d4ae5864c?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c0dbca35-b03e-4e2e-a420-ec0080a9b60a?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/896dcc20-a308-4011-9bf4-c89d4ae5864c?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:35 GMT", + "date" : "Mon, 18 May 2020 12:26:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1041", + "content-length" : "1097", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11664", + "x-ms-ratelimit-remaining-subscription-reads" : "11867", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b3593ba8-bb5c-486f-b957-7ea646bff09b", + "x-ms-correlation-request-id" : "3d946a69-8625-4142-9fc4-a11cb074f4b8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092236Z:b3593ba8-bb5c-486f-b957-7ea646bff09b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49973,Microsoft.Compute/GetOperation30Min;399947", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122626Z:3d946a69-8625-4142-9fc4-a11cb074f4b8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e862b9e3-19f7-484b-b5ec-da37625a2178", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:05.4184919+00:00\",\r\n \"endTime\": \"2020-04-29T09:22:05.8716388+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ss-data-65857e-1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-1\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk3_06df333ca4ad4424975e6376816b01a1\",\"sourceUniqueId\":\"06df333c-a4ad-4424-975e-6376816b01a1\"},\"diskSizeGB\":100,\"incremental\":false,\"timeCreated\":\"2020-04-29T09:22:05.4341419+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"43b0e77b-fc4c-4f39-87ca-ed5da9d6af2b\"}}\r\n },\r\n \"name\": \"c0dbca35-b03e-4e2e-a420-ec0080a9b60a\"\r\n}" + "x-ms-request-id" : "1ce569d5-59a5-457f-a5c4-24c15f5b30f1", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:25:55.1371826+00:00\",\r\n \"endTime\": \"2020-05-18T12:25:55.5434357+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ss-data-047951-1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-1\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk3_63e35e6b1853404698339cd47b7fee80\",\"sourceUniqueId\":\"63e35e6b-1853-4046-9833-9cd47b7fee80\"},\"diskSizeGB\":100,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"timeCreated\":\"2020-05-18T12:25:55.1528284+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"fe15839f-9d7b-43a7-8374-fa709b979676\"}}\r\n },\r\n \"name\": \"896dcc20-a308-4011-9bf4-c89d4ae5864c\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:06 GMT", + "date" : "Mon, 18 May 2020 12:26:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "964", + "content-length" : "1042", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11746", + "x-ms-ratelimit-remaining-subscription-reads" : "11811", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5258d0f0-cbfc-4fce-bed2-2b50e6eebf01", + "x-ms-correlation-request-id" : "8c516057-ee6e-47e5-80ab-da2e338ff5ae", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4956,Microsoft.Compute/LowCostGet30Min;39896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092307Z:5258d0f0-cbfc-4fce-bed2-2b50e6eebf01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4954,Microsoft.Compute/LowCostGet30Min;39900", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122657Z:8c516057-ee6e-47e5-80ab-da2e338ff5ae", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7ec2905f-44d0-413c-a62c-48c92f2dd749", - "Body" : "{\r\n \"name\": \"ss-data-65857e-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-1\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVE5534286/providers/Microsoft.Compute/disks/vm14e02882063_disk3_06df333ca4ad4424975e6376816b01a1\",\r\n \"sourceUniqueId\": \"06df333c-a4ad-4424-975e-6376816b01a1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-04-29T09:22:05.4341419+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"43b0e77b-fc4c-4f39-87ca-ed5da9d6af2b\"\r\n }\r\n}" + "x-ms-request-id" : "68d6833f-f695-4cbe-ac1e-5b0231d6c9fc", + "Body" : "{\r\n \"name\": \"ss-data-047951-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-1\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVC9B20442/providers/Microsoft.Compute/disks/vm1cbe2349266_disk3_63e35e6b1853404698339cd47b7fee80\",\r\n \"sourceUniqueId\": \"63e35e6b-1853-4046-9833-9cd47b7fee80\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-05-18T12:25:55.1528284+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"fe15839f-9d7b-43a7-8374-fa709b979676\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/ds-os-nw-10789?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/ds-os-nw-22755?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:12 GMT", + "date" : "Mon, 18 May 2020 12:27:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "585", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f4767f0d-3d1c-4c95-840d-51674e043bb8", + "x-ms-correlation-request-id" : "d3332051-e6c4-4c30-9b3f-b0442cc52cab", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092312Z:f4767f0d-3d1c-4c95-840d-51674e043bb8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7986", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122701Z:d3332051-e6c4-4c30-9b3f-b0442cc52cab", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ae0f2aa3-cb6d-4312-8a74-c9e3f537419b?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c7bfdea8-d25f-4c02-a878-43ebb50739e9?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ae0f2aa3-cb6d-4312-8a74-c9e3f537419b", - "Body" : "{\r\n \"name\": \"ds-os-nw-10789\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-os-d0205797\",\r\n \"sourceUniqueId\": \"11d6a469-72ed-428d-9073-949cfe38769a\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ae0f2aa3-cb6d-4312-8a74-c9e3f537419b?api-version=2019-03-01" + "x-ms-request-id" : "c7bfdea8-d25f-4c02-a878-43ebb50739e9", + "Body" : "{\r\n \"name\": \"ds-os-nw-22755\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-os-15e81680\",\r\n \"sourceUniqueId\": \"c681fb96-b06f-4db7-9e13-b9a4f2603817\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c7bfdea8-d25f-4c02-a878-43ebb50739e9?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/ae0f2aa3-cb6d-4312-8a74-c9e3f537419b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c7bfdea8-d25f-4c02-a878-43ebb50739e9?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:43 GMT", + "date" : "Mon, 18 May 2020 12:27:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1063", + "content-length" : "1119", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", + "x-ms-ratelimit-remaining-subscription-reads" : "11794", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "097ccdba-cc56-42e9-8bfe-6bded422602d", + "x-ms-correlation-request-id" : "52bd19fa-5dfd-408b-b58b-6d2c4849172e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092343Z:097ccdba-cc56-42e9-8bfe-6bded422602d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49968,Microsoft.Compute/GetOperation30Min;399931", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122731Z:52bd19fa-5dfd-408b-b58b-6d2c4849172e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f1fd8cc0-c261-44ec-8bb3-69f14c0cc47d", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:23:12.2157781+00:00\",\r\n \"endTime\": \"2020-04-29T09:23:12.6532489+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ds-os-nw-10789\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/ds-os-nw-10789\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-os-d0205797\",\"sourceUniqueId\":\"11d6a469-72ed-428d-9073-949cfe38769a\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:23:12.2157781+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"f56e8019-00b2-48de-a29d-8cb6b71d9cb7\"}}\r\n },\r\n \"name\": \"ae0f2aa3-cb6d-4312-8a74-c9e3f537419b\"\r\n}" + "x-ms-request-id" : "5e4ca286-042f-4787-ba7f-aef926934b28", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:27:00.7624093+00:00\",\r\n \"endTime\": \"2020-05-18T12:27:01.2936618+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ds-os-nw-22755\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/ds-os-nw-22755\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-os-15e81680\",\"sourceUniqueId\":\"c681fb96-b06f-4db7-9e13-b9a4f2603817\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:27:00.7624093+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"fbbf43c1-cd09-46b3-a832-c54f31369c0e\"}}\r\n },\r\n \"name\": \"c7bfdea8-d25f-4c02-a878-43ebb50739e9\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/ds-os-nw-10789?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/ds-os-nw-22755?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:13 GMT", + "date" : "Mon, 18 May 2020 12:28:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1007", + "content-length" : "1085", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", + "x-ms-ratelimit-remaining-subscription-reads" : "11697", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "de4c72d6-ace9-4a70-8e0f-9c48df1f17e7", + "x-ms-correlation-request-id" : "52e2f080-897d-43ea-8935-e75165b1ebc1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4970,Microsoft.Compute/LowCostGet30Min;39890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092414Z:de4c72d6-ace9-4a70-8e0f-9c48df1f17e7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4955,Microsoft.Compute/LowCostGet30Min;39878", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122802Z:52e2f080-897d-43ea-8935-e75165b1ebc1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "938d2a94-b30f-45e3-8797-50e2c0466f2a", - "Body" : "{\r\n \"name\": \"ds-os-nw-10789\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/ds-os-nw-10789\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-os-d0205797\",\r\n \"sourceUniqueId\": \"11d6a469-72ed-428d-9073-949cfe38769a\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:23:12.2157781+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"f56e8019-00b2-48de-a29d-8cb6b71d9cb7\"\r\n }\r\n}" + "x-ms-request-id" : "ed0bde2d-f4b7-415e-a08e-dbc6b4c24d9b", + "Body" : "{\r\n \"name\": \"ds-os-nw-22755\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/ds-os-nw-22755\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-os-15e81680\",\r\n \"sourceUniqueId\": \"c681fb96-b06f-4db7-9e13-b9a4f2603817\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:27:00.7624093+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"fbbf43c1-cd09-46b3-a832-c54f31369c0e\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:18 GMT", + "date" : "Mon, 18 May 2020 12:28:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "465", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "898eb626-1105-4699-b9dc-87af9a61c896", + "x-ms-correlation-request-id" : "f05d320c-2190-471f-b776-ee0f000abfb8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092419Z:898eb626-1105-4699-b9dc-87af9a61c896", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7984", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122808Z:f05d320c-2190-471f-b776-ee0f000abfb8", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/09de31f1-42f2-4204-ad8a-304c64741d54?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7e249e1b-71e4-4c6b-8e1f-608f379ea0d9?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "09de31f1-42f2-4204-ad8a-304c64741d54", - "Body" : "{\r\n \"name\": \"6eb281555508402-0\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-0\",\r\n \"sourceUniqueId\": \"1eda9d7b-7ed7-4be2-9593-d88b0554974f\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/09de31f1-42f2-4204-ad8a-304c64741d54?api-version=2019-03-01" + "x-ms-request-id" : "7e249e1b-71e4-4c6b-8e1f-608f379ea0d9", + "Body" : "{\r\n \"name\": \"b120f4acdb4a4ba-0\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-0\",\r\n \"sourceUniqueId\": \"41bd1e17-42f8-47b0-8956-43346f4247ed\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7e249e1b-71e4-4c6b-8e1f-608f379ea0d9?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/09de31f1-42f2-4204-ad8a-304c64741d54?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7e249e1b-71e4-4c6b-8e1f-608f379ea0d9?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:50 GMT", + "date" : "Mon, 18 May 2020 12:28:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1028", + "content-length" : "1086", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", + "x-ms-ratelimit-remaining-subscription-reads" : "11659", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cb9b7922-9813-4c53-8bd3-b41e9cc25b9f", + "x-ms-correlation-request-id" : "a3018131-cb00-4e87-af96-5705579132bb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092450Z:cb9b7922-9813-4c53-8bd3-b41e9cc25b9f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399927", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122839Z:a3018131-cb00-4e87-af96-5705579132bb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f973fefd-763e-442c-9316-aae291cb5b5b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:24:19.1223101+00:00\",\r\n \"endTime\": \"2020-04-29T09:24:19.450419+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"6eb281555508402-0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-0\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-0\",\"sourceUniqueId\":\"1eda9d7b-7ed7-4be2-9593-d88b0554974f\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:24:19.137918+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"b3f59f53-5162-4bb0-906a-c98f6c0c81ef\"}}\r\n },\r\n \"name\": \"09de31f1-42f2-4204-ad8a-304c64741d54\"\r\n}" + "x-ms-request-id" : "1b6fd953-67f2-4f99-8107-1e10bb4975f5", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:28:08.5125102+00:00\",\r\n \"endTime\": \"2020-05-18T12:28:08.8406296+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"b120f4acdb4a4ba-0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-0\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-0\",\"sourceUniqueId\":\"41bd1e17-42f8-47b0-8956-43346f4247ed\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:28:08.5125102+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"f2644a81-5a81-4383-bbcb-b9f90661891b\"}}\r\n },\r\n \"name\": \"7e249e1b-71e4-4c6b-8e1f-608f379ea0d9\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:20 GMT", + "date" : "Mon, 18 May 2020 12:29:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "959", + "content-length" : "1038", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", + "x-ms-ratelimit-remaining-subscription-reads" : "11844", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a2157d7e-e677-4c7d-ac5c-4f69ce4d6cbb", + "x-ms-correlation-request-id" : "bfc732eb-3f1b-4c1a-b085-7c14985c5d89", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4973,Microsoft.Compute/LowCostGet30Min;39880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092520Z:a2157d7e-e677-4c7d-ac5c-4f69ce4d6cbb", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4950,Microsoft.Compute/LowCostGet30Min;39854", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122910Z:bfc732eb-3f1b-4c1a-b085-7c14985c5d89", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d0497740-f3ff-4663-8934-a3f2de0ad682", - "Body" : "{\r\n \"name\": \"6eb281555508402-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-0\",\r\n \"sourceUniqueId\": \"1eda9d7b-7ed7-4be2-9593-d88b0554974f\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:24:19.137918+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"b3f59f53-5162-4bb0-906a-c98f6c0c81ef\"\r\n }\r\n}" + "x-ms-request-id" : "9a14761a-19b1-4593-b9ec-9954bb79aaf5", + "Body" : "{\r\n \"name\": \"b120f4acdb4a4ba-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-0\",\r\n \"sourceUniqueId\": \"41bd1e17-42f8-47b0-8956-43346f4247ed\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:28:08.5125102+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"f2644a81-5a81-4383-bbcb-b9f90661891b\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:23 GMT", + "date" : "Mon, 18 May 2020 12:29:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "465", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eddf5b2e-6f6d-47ec-a10d-652b087041e8", + "x-ms-correlation-request-id" : "4b0a770b-54c7-4968-a0f3-b7c25591164f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092524Z:eddf5b2e-6f6d-47ec-a10d-652b087041e8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7982", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122915Z:4b0a770b-54c7-4968-a0f3-b7c25591164f", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f83e5f4a-4598-48d9-85f4-33452a3182ee?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2644575f-4f9d-4c7b-9067-aff8d6d85c87?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f83e5f4a-4598-48d9-85f4-33452a3182ee", - "Body" : "{\r\n \"name\": \"6eb281555508402-1\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-1\",\r\n \"sourceUniqueId\": \"43b0e77b-fc4c-4f39-87ca-ed5da9d6af2b\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f83e5f4a-4598-48d9-85f4-33452a3182ee?api-version=2019-03-01" + "x-ms-request-id" : "2644575f-4f9d-4c7b-9067-aff8d6d85c87", + "Body" : "{\r\n \"name\": \"b120f4acdb4a4ba-1\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-1\",\r\n \"sourceUniqueId\": \"fe15839f-9d7b-43a7-8374-fa709b979676\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2644575f-4f9d-4c7b-9067-aff8d6d85c87?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f83e5f4a-4598-48d9-85f4-33452a3182ee?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/2644575f-4f9d-4c7b-9067-aff8d6d85c87?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:54 GMT", + "date" : "Mon, 18 May 2020 12:29:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1030", + "content-length" : "1086", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9206fc84-efb5-48ec-b447-21400f90151e", + "x-ms-correlation-request-id" : "694a76b4-35cc-48f1-a1c9-5bdf483500ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092554Z:9206fc84-efb5-48ec-b447-21400f90151e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399923", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122946Z:694a76b4-35cc-48f1-a1c9-5bdf483500ac", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "be01dd70-f482-4463-b4c2-82ea419c23b4", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:25:24.0595858+00:00\",\r\n \"endTime\": \"2020-04-29T09:25:24.3877396+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"6eb281555508402-1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-1\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-1\",\"sourceUniqueId\":\"43b0e77b-fc4c-4f39-87ca-ed5da9d6af2b\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:25:24.0595858+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"c5108335-4bc4-4da0-a4d5-405d82f92e5d\"}}\r\n },\r\n \"name\": \"f83e5f4a-4598-48d9-85f4-33452a3182ee\"\r\n}" + "x-ms-request-id" : "e6b6b1a8-5129-4901-860b-0f9aed136ff5", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:29:14.9031793+00:00\",\r\n \"endTime\": \"2020-05-18T12:29:15.2157304+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"b120f4acdb4a4ba-1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-1\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-1\",\"sourceUniqueId\":\"fe15839f-9d7b-43a7-8374-fa709b979676\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:29:14.9188034+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"a8552ee7-62d5-442e-ab7d-3790cbd9fb3b\"}}\r\n },\r\n \"name\": \"2644575f-4f9d-4c7b-9067-aff8d6d85c87\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:25 GMT", + "date" : "Mon, 18 May 2020 12:30:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "960", + "content-length" : "1038", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1298c22e-0c57-49f5-954e-e39ea7333bcb", + "x-ms-correlation-request-id" : "e76143fd-708f-4733-9931-05fcae89d489", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39867", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092625Z:1298c22e-0c57-49f5-954e-e39ea7333bcb", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4959,Microsoft.Compute/LowCostGet30Min;39843", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123017Z:e76143fd-708f-4733-9931-05fcae89d489", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a128dedc-15af-4d30-a5c0-1e9451ac1d71", - "Body" : "{\r\n \"name\": \"6eb281555508402-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-1\",\r\n \"sourceUniqueId\": \"43b0e77b-fc4c-4f39-87ca-ed5da9d6af2b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:25:24.0595858+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"c5108335-4bc4-4da0-a4d5-405d82f92e5d\"\r\n }\r\n}" + "x-ms-request-id" : "84761e68-c100-439f-9cde-c1891a4a6ba4", + "Body" : "{\r\n \"name\": \"b120f4acdb4a4ba-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-1\",\r\n \"sourceUniqueId\": \"fe15839f-9d7b-43a7-8374-fa709b979676\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:29:14.9188034+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"a8552ee7-62d5-442e-ab7d-3790cbd9fb3b\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet5726719fb3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet82325e0c11?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:31 GMT", + "date" : "Mon, 18 May 2020 12:30:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1349", @@ -1353,906 +1253,831 @@ "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d2cab6e8-f051-4b95-9628-7238d8a74608", + "x-ms-correlation-request-id" : "a513989c-c4aa-4b6a-b325-ea633b53ab6e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8b74ffb7-2fbb-41bf-b771-1d1e14e5b98a", + "x-ms-arm-service-request-id" : "7a680b7f-90da-4bf4-966f-cac4ece4d73d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092631Z:d2cab6e8-f051-4b95-9628-7238d8a74608", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123021Z:a513989c-c4aa-4b6a-b325-ea633b53ab6e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8f51a8aa-82e2-4f2b-a236-396b76414fb6", - "Body" : "{\r\n \"name\": \"vnet5726719fb3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet5726719fb3\",\r\n \"etag\": \"W/\\\"1209799a-d9d1-44cc-acb2-737c8e52f87e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ab10ef94-9d43-4a58-a43f-8d54d7d15e63\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet5726719fb3/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1209799a-d9d1-44cc-acb2-737c8e52f87e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8f51a8aa-82e2-4f2b-a236-396b76414fb6?api-version=2019-06-01" + "x-ms-request-id" : "c628abf4-14ab-4e48-8083-faf8508f80d5", + "Body" : "{\r\n \"name\": \"vnet82325e0c11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet82325e0c11\",\r\n \"etag\": \"W/\\\"009ba9ad-e2cc-4aae-b8b0-38bbe53db356\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8ff809f3-3fac-4130-be23-1018e1e0507e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet82325e0c11/subnets/subnet1\",\r\n \"etag\": \"W/\\\"009ba9ad-e2cc-4aae-b8b0-38bbe53db356\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c628abf4-14ab-4e48-8083-faf8508f80d5?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8f51a8aa-82e2-4f2b-a236-396b76414fb6?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c628abf4-14ab-4e48-8083-faf8508f80d5?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:02 GMT", + "date" : "Mon, 18 May 2020 12:30:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11647", + "x-ms-ratelimit-remaining-subscription-reads" : "11837", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2e13ff16-c69c-48e6-9786-78e751eebebf", + "x-ms-correlation-request-id" : "fdf6abc3-1acc-4a8c-8639-040cd437d845", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "58a60b77-4449-4fb5-9aba-73c74fe66ae4", + "x-ms-arm-service-request-id" : "c112fd8e-059c-47fa-9c5d-9536094d8b4f", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092702Z:2e13ff16-c69c-48e6-9786-78e751eebebf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123052Z:fdf6abc3-1acc-4a8c-8639-040cd437d845", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "61eafa1a-f8a1-4e9b-b3c4-64efeaa94d4a", + "x-ms-request-id" : "eb82e111-43ea-44b4-b78d-331eaca68856", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet5726719fb3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet82325e0c11?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:32 GMT", + "date" : "Mon, 18 May 2020 12:31:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1351", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", + "x-ms-ratelimit-remaining-subscription-reads" : "11767", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "90b80c96-8b17-4558-bb39-dfc0223d6ccb", + "x-ms-correlation-request-id" : "650ccaa7-5528-45f8-8159-8ac058cb606d", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4109a0d1-03b5-4bbd-b810-ddf5f9c703f7", + "x-ms-arm-service-request-id" : "82ffe210-fa29-4fbe-935e-800c80b9ee49", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092733Z:90b80c96-8b17-4558-bb39-dfc0223d6ccb", - "etag" : "W/\"b9ac6af5-0203-42f3-82e9-0a16bbc31f82\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123123Z:650ccaa7-5528-45f8-8159-8ac058cb606d", + "etag" : "W/\"6dee3fcd-b43c-49c2-8ff6-9f208a39c6ec\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "57917d7a-aada-48a8-9ea2-7ff3db31c89a", - "Body" : "{\r\n \"name\": \"vnet5726719fb3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet5726719fb3\",\r\n \"etag\": \"W/\\\"b9ac6af5-0203-42f3-82e9-0a16bbc31f82\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab10ef94-9d43-4a58-a43f-8d54d7d15e63\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet5726719fb3/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b9ac6af5-0203-42f3-82e9-0a16bbc31f82\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "fdeff02a-292d-48b1-9093-66d95e49a869", + "Body" : "{\r\n \"name\": \"vnet82325e0c11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet82325e0c11\",\r\n \"etag\": \"W/\\\"6dee3fcd-b43c-49c2-8ff6-9f208a39c6ec\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8ff809f3-3fac-4130-be23-1018e1e0507e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet82325e0c11/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6dee3fcd-b43c-49c2-8ff6-9f208a39c6ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic54534877e3d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic33990476889?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:39 GMT", + "date" : "Mon, 18 May 2020 12:31:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1642", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e8b10c84-38a4-486c-aae2-43bd600c48c1", + "x-ms-correlation-request-id" : "4e1b5d52-f96c-47a9-afcc-c15ed8378579", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "83a7659b-05d7-46da-9a03-d0847833370f", + "x-ms-arm-service-request-id" : "e02337bc-ff4c-453a-8b24-e595519dd330", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092739Z:e8b10c84-38a4-486c-aae2-43bd600c48c1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123130Z:4e1b5d52-f96c-47a9-afcc-c15ed8378579", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "66506d2e-500e-4a88-8730-902f55866f1b", - "Body" : "{\r\n \"name\": \"nic54534877e3d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic54534877e3d\",\r\n \"etag\": \"W/\\\"4c8a2989-bc39-46a9-83d3-c1dd3ded66fb\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ed6935ec-6219-4e1c-9be5-679e3d186f8a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic54534877e3d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4c8a2989-bc39-46a9-83d3-c1dd3ded66fb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet5726719fb3/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"stxrbk0dtvmevjb5rvknpuk4md.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/66506d2e-500e-4a88-8730-902f55866f1b?api-version=2019-06-01" + "x-ms-request-id" : "9b15b39d-930d-4685-b95e-e8f535d8a640", + "Body" : "{\r\n \"name\": \"nic33990476889\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic33990476889\",\r\n \"etag\": \"W/\\\"3100c59c-5aeb-4e31-b838-ae3aefdcb267\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bcd6f22c-3c5f-4d9e-9db2-23070a7e76ca\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic33990476889/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3100c59c-5aeb-4e31-b838-ae3aefdcb267\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet82325e0c11/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4me5rd3mh2yedprdcamodycqpg.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/9b15b39d-930d-4685-b95e-e8f535d8a640?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/66506d2e-500e-4a88-8730-902f55866f1b?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/9b15b39d-930d-4685-b95e-e8f535d8a640?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:10 GMT", + "date" : "Mon, 18 May 2020 12:32:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11650", + "x-ms-ratelimit-remaining-subscription-reads" : "11797", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "603f296c-3bfa-40a0-99a7-8e644858c873", + "x-ms-correlation-request-id" : "72f72a98-43ad-4239-b182-d13804e9d966", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "790bbc76-010a-4060-bea3-6e74831f636f", + "x-ms-arm-service-request-id" : "e27d9b9b-b29a-4bde-9425-ceffabb99ba5", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092810Z:603f296c-3bfa-40a0-99a7-8e644858c873", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123200Z:72f72a98-43ad-4239-b182-d13804e9d966", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "46996e02-b786-41ad-b8df-a8c7e82a767c", + "x-ms-request-id" : "4b1bce13-b441-4013-878c-defa0d00b96e", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic54534877e3d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic33990476889?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:40 GMT", + "date" : "Mon, 18 May 2020 12:32:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1642", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", + "x-ms-ratelimit-remaining-subscription-reads" : "11795", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "83b2c661-fca6-460c-8837-0b220ac9fbf6", + "x-ms-correlation-request-id" : "a55ecba6-56d6-4b32-a48b-aec91cbf15e9", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "919d1c32-d7e7-4e22-b2d3-005240eb76bb", + "x-ms-arm-service-request-id" : "a04eb255-edf2-4991-9d2d-24d6a1634bea", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092841Z:83b2c661-fca6-460c-8837-0b220ac9fbf6", - "etag" : "W/\"4c8a2989-bc39-46a9-83d3-c1dd3ded66fb\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123231Z:a55ecba6-56d6-4b32-a48b-aec91cbf15e9", + "etag" : "W/\"3100c59c-5aeb-4e31-b838-ae3aefdcb267\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "661c5d04-6e40-41f6-ab1f-2d620b6a1fb9", - "Body" : "{\r\n \"name\": \"nic54534877e3d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic54534877e3d\",\r\n \"etag\": \"W/\\\"4c8a2989-bc39-46a9-83d3-c1dd3ded66fb\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ed6935ec-6219-4e1c-9be5-679e3d186f8a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic54534877e3d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4c8a2989-bc39-46a9-83d3-c1dd3ded66fb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/virtualNetworks/vnet5726719fb3/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"stxrbk0dtvmevjb5rvknpuk4md.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "cb93aab8-8b87-4bbd-afb4-6671ea714e32", + "Body" : "{\r\n \"name\": \"nic33990476889\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic33990476889\",\r\n \"etag\": \"W/\\\"3100c59c-5aeb-4e31-b838-ae3aefdcb267\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bcd6f22c-3c5f-4d9e-9db2-23070a7e76ca\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic33990476889/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3100c59c-5aeb-4e31-b838-ae3aefdcb267\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/virtualNetworks/vnet82325e0c11/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4me5rd3mh2yedprdcamodycqpg.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm2f3b262356a?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm222b44962a6?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:47 GMT", + "date" : "Mon, 18 May 2020 12:32:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2112", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3b78fe84-5377-4d0c-9f44-c1d67d238dca", + "x-ms-correlation-request-id" : "54c8908d-7365-43b6-8f66-5f331e39ab22", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1165", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092848Z:3b78fe84-5377-4d0c-9f44-c1d67d238dca", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1161", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123238Z:54c8908d-7365-43b6-8f66-5f331e39ab22", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1c9fbdbc-afb5-467c-8c0e-7282b198b466", - "Body" : "{\r\n \"name\": \"vm2f3b262356a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm2f3b262356a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"bf40d171-ddd0-4a6b-9643-981e7f832bfc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-nw-10789\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/ds-os-nw-10789\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"6eb281555508402-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"6eb281555508402-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic54534877e3d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1c9fbdbc-afb5-467c-8c0e-7282b198b466?api-version=2019-03-01" + "x-ms-request-id" : "7d2db9ef-4d9e-4aa0-95d9-3dc8cac93a75", + "Body" : "{\r\n \"name\": \"vm222b44962a6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm222b44962a6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a51e3d87-725e-4eaa-ac17-971028fdc20f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-nw-22755\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/ds-os-nw-22755\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"b120f4acdb4a4ba-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"b120f4acdb4a4ba-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic33990476889\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7d2db9ef-4d9e-4aa0-95d9-3dc8cac93a75?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1c9fbdbc-afb5-467c-8c0e-7282b198b466?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7d2db9ef-4d9e-4aa0-95d9-3dc8cac93a75?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:18 GMT", + "date" : "Mon, 18 May 2020 12:33:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", + "x-ms-ratelimit-remaining-subscription-reads" : "11760", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5f7e3577-9dc1-4b15-b18d-69324909f723", + "x-ms-correlation-request-id" : "b568fdee-ea79-4918-8941-cd0adaaf0d60", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29683", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092918Z:5f7e3577-9dc1-4b15-b18d-69324909f723", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29727", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123308Z:b568fdee-ea79-4918-8941-cd0adaaf0d60", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a1e4abab-93e6-426f-91a1-7871f2f9c1ad", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:28:47.1253599+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1c9fbdbc-afb5-467c-8c0e-7282b198b466\"\r\n}" + "x-ms-request-id" : "86472422-a15a-4fa5-8643-6cdca8f083e3", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:32:37.1582368+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d2db9ef-4d9e-4aa0-95d9-3dc8cac93a75\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1c9fbdbc-afb5-467c-8c0e-7282b198b466?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7d2db9ef-4d9e-4aa0-95d9-3dc8cac93a75?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:49 GMT", + "date" : "Mon, 18 May 2020 12:33:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", + "x-ms-ratelimit-remaining-subscription-reads" : "11640", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "815d9438-23fc-4993-9165-ad56e3826c63", + "x-ms-correlation-request-id" : "82e810bf-8b2b-4074-8e9a-3b57f91eea70", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29678", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092949Z:815d9438-23fc-4993-9165-ad56e3826c63", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29721", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123339Z:82e810bf-8b2b-4074-8e9a-3b57f91eea70", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a47c3eb3-579e-4eb4-a492-e9b059f9167d", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:28:47.1253599+00:00\",\r\n \"endTime\": \"2020-04-29T09:29:26.5631007+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1c9fbdbc-afb5-467c-8c0e-7282b198b466\"\r\n}" + "x-ms-request-id" : "b7883721-1f98-479b-9219-403071a400d3", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:32:37.1582368+00:00\",\r\n \"endTime\": \"2020-05-18T12:33:23.1582765+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7d2db9ef-4d9e-4aa0-95d9-3dc8cac93a75\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm2f3b262356a?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm222b44962a6?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:20 GMT", + "date" : "Mon, 18 May 2020 12:34:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2113", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", + "x-ms-ratelimit-remaining-subscription-reads" : "11793", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9ba1142d-0f24-4ac9-8e0c-50d2d8904c81", + "x-ms-correlation-request-id" : "cc995465-da95-43b4-9f44-ec381e5dc2a2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31844", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093020Z:9ba1142d-0f24-4ac9-8e0c-50d2d8904c81", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31780", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123410Z:cc995465-da95-43b4-9f44-ec381e5dc2a2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "17917890-8fe8-43ca-ac8b-95950ff75c84", - "Body" : "{\r\n \"name\": \"vm2f3b262356a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm2f3b262356a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"bf40d171-ddd0-4a6b-9643-981e7f832bfc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-nw-10789\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/ds-os-nw-10789\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"6eb281555508402-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"6eb281555508402-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Network/networkInterfaces/nic54534877e3d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "ecc62921-fb41-4180-898c-cb1288190a6a", + "Body" : "{\r\n \"name\": \"vm222b44962a6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm222b44962a6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a51e3d87-725e-4eaa-ac17-971028fdc20f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-nw-22755\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/ds-os-nw-22755\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"b120f4acdb4a4ba-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"b120f4acdb4a4ba-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Network/networkInterfaces/nic33990476889\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-os-d0205797?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-os-15e81680?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:22 GMT", + "date" : "Mon, 18 May 2020 12:34:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0eed045f-805b-486e-8f36-cb9eba7d0d44", + "x-ms-correlation-request-id" : "8b9e89d1-220d-441c-ba4a-2725fd9ba315", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;995,Microsoft.Compute/DeleteDisks30Min;7990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093022Z:0eed045f-805b-486e-8f36-cb9eba7d0d44", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/07a014b8-71c5-41ae-9408-bfea078bb2bf?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;991,Microsoft.Compute/DeleteDisks30Min;7983", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123411Z:8b9e89d1-220d-441c-ba4a-2725fd9ba315", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c6c20b6c-9733-4bff-ac3b-fe587f5b743d?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "07a014b8-71c5-41ae-9408-bfea078bb2bf", + "x-ms-request-id" : "c6c20b6c-9733-4bff-ac3b-fe587f5b743d", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/07a014b8-71c5-41ae-9408-bfea078bb2bf?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c6c20b6c-9733-4bff-ac3b-fe587f5b743d?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/07a014b8-71c5-41ae-9408-bfea078bb2bf?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c6c20b6c-9733-4bff-ac3b-fe587f5b743d?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:53 GMT", + "date" : "Mon, 18 May 2020 12:34:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11743", + "x-ms-ratelimit-remaining-subscription-reads" : "11824", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5ef103e4-77af-4e73-9619-701802556220", + "x-ms-correlation-request-id" : "ca14e0b2-4831-433f-a5df-8a72b2a179bb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093053Z:5ef103e4-77af-4e73-9619-701802556220", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49975,Microsoft.Compute/GetOperation30Min;399897", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123442Z:ca14e0b2-4831-433f-a5df-8a72b2a179bb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9e938439-cfe1-4178-9e85-d9fc7e60c5ba", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:30:22.7478134+00:00\",\r\n \"endTime\": \"2020-04-29T09:30:23.1071829+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"07a014b8-71c5-41ae-9408-bfea078bb2bf\"\r\n}" + "x-ms-request-id" : "2cb798db-bc7e-491f-9d75-c3bf82417105", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:34:11.3412374+00:00\",\r\n \"endTime\": \"2020-05-18T12:34:11.6225156+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c6c20b6c-9733-4bff-ac3b-fe587f5b743d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/07a014b8-71c5-41ae-9408-bfea078bb2bf?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c6c20b6c-9733-4bff-ac3b-fe587f5b743d?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:24 GMT", + "date" : "Mon, 18 May 2020 12:35:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11775", + "x-ms-ratelimit-remaining-subscription-reads" : "11672", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8dc91499-6c4f-4507-a7cb-6ab8f26f3449", + "x-ms-correlation-request-id" : "83efc9d7-34e4-4a3d-9753-ff250afb70f7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093125Z:8dc91499-6c4f-4507-a7cb-6ab8f26f3449", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399895", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123513Z:83efc9d7-34e4-4a3d-9753-ff250afb70f7", "cache-control" : "no-cache", - "x-ms-request-id" : "d6da7600-666d-4f8d-8145-ca095d18b29f", + "x-ms-request-id" : "65a1f12b-0299-4f38-8da8-b62ad4665a44", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:27 GMT", + "date" : "Mon, 18 May 2020 12:35:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0c2a4500-8491-4904-84d7-dd2a0346c1fc", + "x-ms-correlation-request-id" : "e145d083-526e-4102-9c4c-76718cbbcbe7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;991,Microsoft.Compute/DeleteDisks30Min;7986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093127Z:0c2a4500-8491-4904-84d7-dd2a0346c1fc", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ae97914-2845-4017-b3a5-22dee0b24a07?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;992,Microsoft.Compute/DeleteDisks30Min;7977", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123515Z:e145d083-526e-4102-9c4c-76718cbbcbe7", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f38942d4-1a00-49f2-8c2e-5277461b1b16?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "1ae97914-2845-4017-b3a5-22dee0b24a07", + "x-ms-request-id" : "f38942d4-1a00-49f2-8c2e-5277461b1b16", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ae97914-2845-4017-b3a5-22dee0b24a07?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f38942d4-1a00-49f2-8c2e-5277461b1b16?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ae97914-2845-4017-b3a5-22dee0b24a07?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f38942d4-1a00-49f2-8c2e-5277461b1b16?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:58 GMT", + "date" : "Mon, 18 May 2020 12:35:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11773", + "x-ms-ratelimit-remaining-subscription-reads" : "11876", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f009f5de-787b-4b63-89bd-64f083ecb871", + "x-ms-correlation-request-id" : "32371f3d-d483-4fe6-93c6-dc2cdf9621ec", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093158Z:f009f5de-787b-4b63-89bd-64f083ecb871", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399892", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123546Z:32371f3d-d483-4fe6-93c6-dc2cdf9621ec", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4cc48a70-e217-4244-a13d-479986f21fe6", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:31:27.3108449+00:00\",\r\n \"endTime\": \"2020-04-29T09:31:27.5451992+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1ae97914-2845-4017-b3a5-22dee0b24a07\"\r\n}" + "x-ms-request-id" : "7573b601-c5ce-471a-a7a5-1de19c63adde", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:35:15.6540028+00:00\",\r\n \"endTime\": \"2020-05-18T12:35:15.9352665+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f38942d4-1a00-49f2-8c2e-5277461b1b16\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ae97914-2845-4017-b3a5-22dee0b24a07?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/f38942d4-1a00-49f2-8c2e-5277461b1b16?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:32:29 GMT", + "date" : "Mon, 18 May 2020 12:36:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11643", + "x-ms-ratelimit-remaining-subscription-reads" : "11774", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "407df845-a19e-48b6-93d8-a30599b8ad86", + "x-ms-correlation-request-id" : "742d93ed-ca69-4a33-9f14-7f2aaee70ff8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093229Z:407df845-a19e-48b6-93d8-a30599b8ad86", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399891", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123618Z:742d93ed-ca69-4a33-9f14-7f2aaee70ff8", "cache-control" : "no-cache", - "x-ms-request-id" : "bef56b50-cf7b-4c37-bc6f-aa95e4e96a28", + "x-ms-request-id" : "c5278493-43cc-4930-93d6-09611aa4f8c3", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:32:30 GMT", + "date" : "Mon, 18 May 2020 12:36:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14996", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "75001714-e984-4e4e-9f00-7b0ff5ab5634", + "x-ms-correlation-request-id" : "b0bbb262-b460-48af-a40c-74dd6627c8a9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;986,Microsoft.Compute/DeleteDisks30Min;7980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093230Z:75001714-e984-4e4e-9f00-7b0ff5ab5634", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/bd1aa182-af1d-4fec-af7b-a2f750474924?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;987,Microsoft.Compute/DeleteDisks30Min;7971", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123620Z:b0bbb262-b460-48af-a40c-74dd6627c8a9", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/91137572-fb09-4a5b-92ef-8f07f57d7a5f?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "bd1aa182-af1d-4fec-af7b-a2f750474924", + "x-ms-request-id" : "91137572-fb09-4a5b-92ef-8f07f57d7a5f", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/bd1aa182-af1d-4fec-af7b-a2f750474924?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/91137572-fb09-4a5b-92ef-8f07f57d7a5f?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/bd1aa182-af1d-4fec-af7b-a2f750474924?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/91137572-fb09-4a5b-92ef-8f07f57d7a5f?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:33:00 GMT", + "date" : "Mon, 18 May 2020 12:36:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11629", + "x-ms-ratelimit-remaining-subscription-reads" : "11631", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ecf32116-778a-470d-bd9f-3307135904eb", + "x-ms-correlation-request-id" : "eb6e704b-7cfd-45f5-89a8-40685a46f5ed", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093301Z:ecf32116-778a-470d-bd9f-3307135904eb", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399884", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123651Z:eb6e704b-7cfd-45f5-89a8-40685a46f5ed", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c82d28b8-a25a-4808-9fd7-5a3c87625748", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:32:30.4518478+00:00\",\r\n \"endTime\": \"2020-04-29T09:32:30.6862273+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bd1aa182-af1d-4fec-af7b-a2f750474924\"\r\n}" + "x-ms-request-id" : "22a66b85-b9d7-4d3f-bbc3-048fbf7317db", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:36:20.0916061+00:00\",\r\n \"endTime\": \"2020-05-18T12:36:20.3259854+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"91137572-fb09-4a5b-92ef-8f07f57d7a5f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/bd1aa182-af1d-4fec-af7b-a2f750474924?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/91137572-fb09-4a5b-92ef-8f07f57d7a5f?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:33:31 GMT", + "date" : "Mon, 18 May 2020 12:37:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11627", + "x-ms-ratelimit-remaining-subscription-reads" : "11665", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "655cf391-d735-4609-a553-a94a967492be", + "x-ms-correlation-request-id" : "6df24c74-ac95-4b37-8208-3754c7ed48e7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093331Z:655cf391-d735-4609-a553-a94a967492be", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399878", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123723Z:6df24c74-ac95-4b37-8208-3754c7ed48e7", "cache-control" : "no-cache", - "x-ms-request-id" : "ccb30f2a-89fd-48fd-bb10-35b30554f04e", + "x-ms-request-id" : "5337866d-fe71-4929-acd6-9c61261d5598", "Body" : "" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm2f3b262356a/deallocate?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm222b44962a6/deallocate?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:33:31 GMT", + "date" : "Mon, 18 May 2020 12:37:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b43183c3-50a3-4e33-8988-4e4c7759802d", + "x-ms-correlation-request-id" : "54425bc6-5126-4f16-a2d9-a28d67b6ad5c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1182", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093332Z:b43183c3-50a3-4e33-8988-4e4c7759802d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1179", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123723Z:54425bc6-5126-4f16-a2d9-a28d67b6ad5c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bb69a4f9-4b39-4653-8dc2-79e842baf630?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ddf6b7f5-def9-438c-b328-51e4f30102d5", + "x-ms-request-id" : "bb69a4f9-4b39-4653-8dc2-79e842baf630", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:34:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c32e4057-dc60-4b45-83ff-6136d23d9934", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29623", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093402Z:c32e4057-dc60-4b45-83ff-6136d23d9934", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "50d9dc48-d482-47aa-b659-5f7aede95a02", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:33:32.0656178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddf6b7f5-def9-438c-b328-51e4f30102d5\"\r\n}" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bb69a4f9-4b39-4653-8dc2-79e842baf630?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bb69a4f9-4b39-4653-8dc2-79e842baf630?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:34:33 GMT", + "date" : "Mon, 18 May 2020 12:37:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11626", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8e322d27-ce2f-480d-bed9-88c9c027dca9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29616", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093433Z:8e322d27-ce2f-480d-bed9-88c9c027dca9", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "190eec75-5e62-4762-9371-150a106cae4b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:33:32.0656178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddf6b7f5-def9-438c-b328-51e4f30102d5\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:35:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11624", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b6c86f7-5045-48dd-82e3-1a966b41aecb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29608", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093503Z:0b6c86f7-5045-48dd-82e3-1a966b41aecb", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ebfea6f0-f681-4e7c-a240-684934fd08dc", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:33:32.0656178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddf6b7f5-def9-438c-b328-51e4f30102d5\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:35:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11721", + "x-ms-ratelimit-remaining-subscription-reads" : "11861", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7dad19bb-310b-4995-afce-ca793e097eff", + "x-ms-correlation-request-id" : "aa6a1f6b-5351-48ce-86c4-da2bdbde348e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29603", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093534Z:7dad19bb-310b-4995-afce-ca793e097eff", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29682", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123755Z:aa6a1f6b-5351-48ce-86c4-da2bdbde348e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "22faf175-89f2-414b-bd6a-b96545697e0a", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:33:32.0656178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddf6b7f5-def9-438c-b328-51e4f30102d5\"\r\n}" + "x-ms-request-id" : "12244de9-ea1c-429a-9165-c07c3cf1e332", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:37:23.7834621+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb69a4f9-4b39-4653-8dc2-79e842baf630\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bb69a4f9-4b39-4653-8dc2-79e842baf630?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:36:04 GMT", + "date" : "Mon, 18 May 2020 12:38:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11720", + "x-ms-ratelimit-remaining-subscription-reads" : "11936", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "413981c2-ea56-4d82-8fe7-d3e028cbe3a7", + "x-ms-correlation-request-id" : "43579976-d849-4aab-b5f8-77323da49998", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29598", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093604Z:413981c2-ea56-4d82-8fe7-d3e028cbe3a7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29676", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123825Z:43579976-d849-4aab-b5f8-77323da49998", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e6a138b1-60a0-4e2a-8de3-06ef28d6b8cd", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:33:32.0656178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddf6b7f5-def9-438c-b328-51e4f30102d5\"\r\n}" + "x-ms-request-id" : "c6c687cd-701b-4034-95c9-a19fcd939d4f", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:37:23.7834621+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb69a4f9-4b39-4653-8dc2-79e842baf630\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bb69a4f9-4b39-4653-8dc2-79e842baf630?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:36:34 GMT", + "date" : "Mon, 18 May 2020 12:38:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", + "x-ms-ratelimit-remaining-subscription-reads" : "11846", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "062f8c74-1250-4b45-b2d6-0653fa7faede", + "x-ms-correlation-request-id" : "f8b42141-a554-4f1f-9436-3feb58002dc2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29592", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093635Z:062f8c74-1250-4b45-b2d6-0653fa7faede", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29669", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123856Z:f8b42141-a554-4f1f-9436-3feb58002dc2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f4ce0fec-5a64-4159-b334-78e75df9561f", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:33:32.0656178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddf6b7f5-def9-438c-b328-51e4f30102d5\"\r\n}" + "x-ms-request-id" : "d9bc4d90-04a7-44f9-8275-2f0c2e68316c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:37:23.7834621+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb69a4f9-4b39-4653-8dc2-79e842baf630\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bb69a4f9-4b39-4653-8dc2-79e842baf630?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:37:05 GMT", + "date" : "Mon, 18 May 2020 12:39:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", + "x-ms-ratelimit-remaining-subscription-reads" : "11935", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "34d16ee0-6eff-4465-945c-482e5aa60df9", + "x-ms-correlation-request-id" : "d64c410e-1416-410c-b7a8-1d70f06d359c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29584", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093705Z:34d16ee0-6eff-4465-945c-482e5aa60df9", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29664", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123926Z:d64c410e-1416-410c-b7a8-1d70f06d359c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cea4b027-e47a-4e7c-bbfb-097e607f0685", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:33:32.0656178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddf6b7f5-def9-438c-b328-51e4f30102d5\"\r\n}" + "x-ms-request-id" : "29e3bf26-3436-496b-91b9-fa998cea8161", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:37:23.7834621+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb69a4f9-4b39-4653-8dc2-79e842baf630\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bb69a4f9-4b39-4653-8dc2-79e842baf630?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:37:36 GMT", + "date" : "Mon, 18 May 2020 12:39:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11718", + "x-ms-ratelimit-remaining-subscription-reads" : "11786", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8eab3274-6747-412f-b458-18743cb89658", + "x-ms-correlation-request-id" : "c8606269-37da-414a-a0ac-e5ee233844e1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29577", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093736Z:8eab3274-6747-412f-b458-18743cb89658", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29660", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123957Z:c8606269-37da-414a-a0ac-e5ee233844e1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7d9bf87c-d81a-4c66-b217-3d1546b2ac30", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:33:32.0656178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddf6b7f5-def9-438c-b328-51e4f30102d5\"\r\n}" + "x-ms-request-id" : "999341c7-4e60-46fc-8f41-e6ef5f48749e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:37:23.7834621+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb69a4f9-4b39-4653-8dc2-79e842baf630\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bb69a4f9-4b39-4653-8dc2-79e842baf630?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:38:06 GMT", + "date" : "Mon, 18 May 2020 12:40:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", + "x-ms-ratelimit-remaining-subscription-reads" : "11831", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60daea68-e452-44cc-9f4b-40e0753cac69", + "x-ms-correlation-request-id" : "436b4cef-1984-45a3-8c02-dbb1bebfc9e8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29571", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093807Z:60daea68-e452-44cc-9f4b-40e0753cac69", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29655", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124028Z:436b4cef-1984-45a3-8c02-dbb1bebfc9e8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "27a45940-3cf6-4ac8-a1a0-88f9532e0e02", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:33:32.0656178+00:00\",\r\n \"endTime\": \"2020-04-29T09:37:55.9263095+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ddf6b7f5-def9-438c-b328-51e4f30102d5\"\r\n}" + "x-ms-request-id" : "0edd1f78-063d-4df5-b193-5e772941b0e3", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:37:23.7834621+00:00\",\r\n \"endTime\": \"2020-05-18T12:40:23.5339635+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bb69a4f9-4b39-4653-8dc2-79e842baf630\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ddf6b7f5-def9-438c-b328-51e4f30102d5?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bb69a4f9-4b39-4653-8dc2-79e842baf630?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:38:37 GMT", + "date" : "Mon, 18 May 2020 12:40:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11614", + "x-ms-ratelimit-remaining-subscription-reads" : "11844", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e2f96d03-26ef-4684-a7b0-3fc9db1c4b77", + "x-ms-correlation-request-id" : "e1a766be-7720-40f9-8a93-3cc8a7d258d8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29567", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093838Z:e2f96d03-26ef-4684-a7b0-3fc9db1c4b77", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29652", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124058Z:e1a766be-7720-40f9-8a93-3cc8a7d258d8", "cache-control" : "no-cache", - "x-ms-request-id" : "00fbdb3e-3521-40ed-b9c2-97467a2a05c2", + "x-ms-request-id" : "4ade2cf2-2c4c-40ff-a473-0c68cd07e6c9", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/ds-os-nw-10789?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/ds-os-nw-22755?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:38:38 GMT", + "date" : "Mon, 18 May 2020 12:40:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1164", + "content-length" : "1242", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", + "x-ms-ratelimit-remaining-subscription-reads" : "11766", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3bbe9786-1bac-4ab7-812b-34ed85675e27", + "x-ms-correlation-request-id" : "8712f0e9-98e1-4dc5-9a34-1ad0e4f4e411", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39775", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093839Z:3bbe9786-1bac-4ab7-812b-34ed85675e27", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4978,Microsoft.Compute/LowCostGet30Min;39762", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124059Z:8712f0e9-98e1-4dc5-9a34-1ad0e4f4e411", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b3b338f3-bad1-4045-bdf2-fe7abda4388f", - "Body" : "{\r\n \"name\": \"ds-os-nw-10789\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/ds-os-nw-10789\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm2f3b262356a\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-os-d0205797\",\r\n \"sourceUniqueId\": \"11d6a469-72ed-428d-9073-949cfe38769a\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:23:12.2157781+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"f56e8019-00b2-48de-a29d-8cb6b71d9cb7\"\r\n }\r\n}" + "x-ms-request-id" : "fd8c5992-db42-4930-be7e-decd50c5f327", + "Body" : "{\r\n \"name\": \"ds-os-nw-22755\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/ds-os-nw-22755\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm222b44962a6\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-os-15e81680\",\r\n \"sourceUniqueId\": \"c681fb96-b06f-4db7-9e13-b9a4f2603817\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:27:00.7624093+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"fbbf43c1-cd09-46b3-a832-c54f31369c0e\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/ds-os-nw-10789/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/ds-os-nw-22755/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:38:40 GMT", + "date" : "Mon, 18 May 2020 12:40:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "78d75282-5dee-434c-b461-d754ea1a675e", + "x-ms-correlation-request-id" : "71972f22-1c49-485f-85bf-9a60b678bc9c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;997,Microsoft.Compute/HighCostDiskHydrate30Min;7993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093840Z:78d75282-5dee-434c-b461-d754ea1a675e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dc14500f-8d08-4b53-b85d-00052445bcb8?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;996,Microsoft.Compute/HighCostDiskHydrate30Min;7993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124059Z:71972f22-1c49-485f-85bf-9a60b678bc9c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/af900ac5-8a0a-4df2-9573-17782f0eec4b?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "dc14500f-8d08-4b53-b85d-00052445bcb8", + "x-ms-request-id" : "af900ac5-8a0a-4df2-9573-17782f0eec4b", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dc14500f-8d08-4b53-b85d-00052445bcb8?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/af900ac5-8a0a-4df2-9573-17782f0eec4b?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dc14500f-8d08-4b53-b85d-00052445bcb8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/af900ac5-8a0a-4df2-9573-17782f0eec4b?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:39:10 GMT", + "date" : "Mon, 18 May 2020 12:41:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "425", + "content-length" : "430", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", + "x-ms-ratelimit-remaining-subscription-reads" : "11721", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "40521f70-f032-4710-907c-7894b89429d7", + "x-ms-correlation-request-id" : "df1a9761-b6d6-4a79-ba1c-a59a9db6a058", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399887", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093910Z:40521f70-f032-4710-907c-7894b89429d7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399863", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124130Z:df1a9761-b6d6-4a79-ba1c-a59a9db6a058", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "929ece67-0e08-4ee8-bba4-d772a5cc08a4", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:38:40.3751661+00:00\",\r\n \"endTime\": \"2020-04-29T09:38:40.5314609+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-dp1j2hwzmgwm.z7.blob.storage.azure.net/w3c4t2rwh5gr/abcd?sv=2017-04-17&sr=b&si=7642a5a2-8566-4dce-bf82-8c5884885527&sig=PnLuJhW1ZxrdTHDGkJzd9CF0aznQQ7US74JEtUqpyc8%3D\"\r\n}\r\n },\r\n \"name\": \"dc14500f-8d08-4b53-b85d-00052445bcb8\"\r\n}" + "x-ms-request-id" : "d95f7d04-b50b-4550-a376-ee604c1b705e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:40:59.8421553+00:00\",\r\n \"endTime\": \"2020-05-18T12:40:59.9983889+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-jttsnpfbg5m1.z30.blob.storage.azure.net/blq32wcjh10b/abcd?sv=2017-04-17&sr=b&si=b3d6a6e8-106b-49ad-85c7-c58af5b68b16&sig=l1xSS9TS%2FQEAhKW1UzZrpMTzSBYSnMbXt%2B8STCfPmyc%3D\"\r\n}\r\n },\r\n \"name\": \"af900ac5-8a0a-4df2-9573-17782f0eec4b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dc14500f-8d08-4b53-b85d-00052445bcb8?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/af900ac5-8a0a-4df2-9573-17782f0eec4b?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:39:41 GMT", + "date" : "Mon, 18 May 2020 12:42:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "200", + "content-length" : "205", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11735", + "x-ms-ratelimit-remaining-subscription-reads" : "11742", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "55400ef2-65b5-43c1-8477-c372d468c528", + "x-ms-correlation-request-id" : "12e3fd18-581b-45ae-a90a-a1b353aa79fe", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49976,Microsoft.Compute/GetOperation30Min;399884", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093942Z:55400ef2-65b5-43c1-8477-c372d468c528", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399860", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124202Z:12e3fd18-581b-45ae-a90a-a1b353aa79fe", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b53af152-46f5-43b1-bc7c-445b8b8ddbd8", - "Body" : "{\r\n \"accessSAS\": \"https://md-dp1j2hwzmgwm.z7.blob.storage.azure.net/w3c4t2rwh5gr/abcd?sv=2017-04-17&sr=b&si=7642a5a2-8566-4dce-bf82-8c5884885527&sig=PnLuJhW1ZxrdTHDGkJzd9CF0aznQQ7US74JEtUqpyc8%3D\"\r\n}" + "x-ms-request-id" : "e03df5f6-de84-42a5-bff1-4ad0741ba724", + "Body" : "{\r\n \"accessSAS\": \"https://md-jttsnpfbg5m1.z30.blob.storage.azure.net/blq32wcjh10b/abcd?sv=2017-04-17&sr=b&si=b3d6a6e8-106b-49ad-85c7-c58af5b68b16&sig=l1xSS9TS%2FQEAhKW1UzZrpMTzSBYSnMbXt%2B8STCfPmyc%3D\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:39:42 GMT", + "date" : "Mon, 18 May 2020 12:42:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1116", + "content-length" : "1195", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", + "x-ms-ratelimit-remaining-subscription-reads" : "11762", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "971dd3fb-a690-49c7-aee6-b0eb10397050", + "x-ms-correlation-request-id" : "0062f978-81d2-452a-bd6d-f76eb2eb2682", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4978,Microsoft.Compute/LowCostGet30Min;39769", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093943Z:971dd3fb-a690-49c7-aee6-b0eb10397050", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39760", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124203Z:0062f978-81d2-452a-bd6d-f76eb2eb2682", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c6971489-d717-4989-b3d2-5fb73dfc17da", - "Body" : "{\r\n \"name\": \"6eb281555508402-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm2f3b262356a\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-0\",\r\n \"sourceUniqueId\": \"1eda9d7b-7ed7-4be2-9593-d88b0554974f\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:24:19.137918+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"b3f59f53-5162-4bb0-906a-c98f6c0c81ef\"\r\n }\r\n}" + "x-ms-request-id" : "728bb3dc-4aaf-4e5f-a365-c4d7faec3825", + "Body" : "{\r\n \"name\": \"b120f4acdb4a4ba-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm222b44962a6\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-0\",\r\n \"sourceUniqueId\": \"41bd1e17-42f8-47b0-8956-43346f4247ed\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:28:08.5125102+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"f2644a81-5a81-4383-bbcb-b9f90661891b\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-0/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-0/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:39:43 GMT", + "date" : "Mon, 18 May 2020 12:42:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", @@ -2261,200 +2086,200 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ef624bbe-4394-4043-831d-df7624ba0a2c", + "x-ms-correlation-request-id" : "5eb26057-ce88-4d92-b74f-579d865f999a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;996,Microsoft.Compute/HighCostDiskHydrate30Min;7991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093944Z:ef624bbe-4394-4043-831d-df7624ba0a2c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/031226df-9822-464e-81b4-355208c430b4?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;995,Microsoft.Compute/HighCostDiskHydrate30Min;7991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124203Z:5eb26057-ce88-4d92-b74f-579d865f999a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/cc37e348-2a46-405b-a215-eaf2484dad6c?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "031226df-9822-464e-81b4-355208c430b4", + "x-ms-request-id" : "cc37e348-2a46-405b-a215-eaf2484dad6c", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/031226df-9822-464e-81b4-355208c430b4?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/cc37e348-2a46-405b-a215-eaf2484dad6c?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/031226df-9822-464e-81b4-355208c430b4?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/cc37e348-2a46-405b-a215-eaf2484dad6c?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:40:14 GMT", + "date" : "Mon, 18 May 2020 12:42:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "428", + "content-length" : "427", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", + "x-ms-ratelimit-remaining-subscription-reads" : "11654", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "25f5cec3-a84b-4bd7-8b63-00bae13e05c0", + "x-ms-correlation-request-id" : "31724146-df13-46d7-aaf2-56684abbe604", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49972,Microsoft.Compute/GetOperation30Min;399896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094015Z:25f5cec3-a84b-4bd7-8b63-00bae13e05c0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399857", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124234Z:31724146-df13-46d7-aaf2-56684abbe604", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5f34dccc-b72b-4efc-8e37-abf59599d6a2", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:39:44.297536+00:00\",\r\n \"endTime\": \"2020-04-29T09:39:44.4381871+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-dp1j2hwzmgwm.z7.blob.storage.azure.net/hb53vlqlvrqd/abcd?sv=2017-04-17&sr=b&si=cd9ca30f-4334-44bb-9184-7f080e5f8276&sig=P2aHIcQ%2FPOWxLm0kGa7I4pYoJLnTZRdBqxnULP%2FWke4%3D\"\r\n}\r\n },\r\n \"name\": \"031226df-9822-464e-81b4-355208c430b4\"\r\n}" + "x-ms-request-id" : "fa825ce7-8a6c-45c7-af03-2a75763cf31b", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:42:03.607971+00:00\",\r\n \"endTime\": \"2020-05-18T12:42:03.7642204+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-jttsnpfbg5m1.z30.blob.storage.azure.net/lwjfd4vgs5dn/abcd?sv=2017-04-17&sr=b&si=359190d9-5494-4bfa-801e-2692c9e7a973&sig=RWoGMABN5dkfBpGECK3L7z92Ge7icLF36hBC%2BlAgA0k%3D\"\r\n}\r\n },\r\n \"name\": \"cc37e348-2a46-405b-a215-eaf2484dad6c\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/031226df-9822-464e-81b4-355208c430b4?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/cc37e348-2a46-405b-a215-eaf2484dad6c?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:40:45 GMT", + "date" : "Mon, 18 May 2020 12:43:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "204", + "content-length" : "203", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", + "x-ms-ratelimit-remaining-subscription-reads" : "11760", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e924c42a-960a-4704-9c3c-3582af05bc36", + "x-ms-correlation-request-id" : "90e35131-07e4-4c1b-a121-f0f43385a188", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49979,Microsoft.Compute/GetOperation30Min;399895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094046Z:e924c42a-960a-4704-9c3c-3582af05bc36", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399853", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124305Z:90e35131-07e4-4c1b-a121-f0f43385a188", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "99ab9a4f-69ce-44dd-8c64-1ca6fdb501c2", - "Body" : "{\r\n \"accessSAS\": \"https://md-dp1j2hwzmgwm.z7.blob.storage.azure.net/hb53vlqlvrqd/abcd?sv=2017-04-17&sr=b&si=cd9ca30f-4334-44bb-9184-7f080e5f8276&sig=P2aHIcQ%2FPOWxLm0kGa7I4pYoJLnTZRdBqxnULP%2FWke4%3D\"\r\n}" + "x-ms-request-id" : "d8467302-b5b5-4711-ab04-8ea1975ed9b2", + "Body" : "{\r\n \"accessSAS\": \"https://md-jttsnpfbg5m1.z30.blob.storage.azure.net/lwjfd4vgs5dn/abcd?sv=2017-04-17&sr=b&si=359190d9-5494-4bfa-801e-2692c9e7a973&sig=RWoGMABN5dkfBpGECK3L7z92Ge7icLF36hBC%2BlAgA0k%3D\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:40:47 GMT", + "date" : "Mon, 18 May 2020 12:43:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1117", + "content-length" : "1195", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11819", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "86d9364f-3a6e-4a69-97d5-bd834ebe156c", + "x-ms-correlation-request-id" : "e77d37ff-2558-44c9-9be4-2352f65bf49e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094047Z:86d9364f-3a6e-4a69-97d5-bd834ebe156c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39747", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124306Z:e77d37ff-2558-44c9-9be4-2352f65bf49e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8df7772d-f42e-4ccd-baa8-7f6266e2aa0e", - "Body" : "{\r\n \"name\": \"6eb281555508402-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/virtualMachines/vm2f3b262356a\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/snapshots/ss-data-65857e-1\",\r\n \"sourceUniqueId\": \"43b0e77b-fc4c-4f39-87ca-ed5da9d6af2b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:25:24.0595858+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"c5108335-4bc4-4da0-a4d5-405d82f92e5d\"\r\n }\r\n}" + "x-ms-request-id" : "beb3f9d6-00ba-499f-a32b-3d94621f0904", + "Body" : "{\r\n \"name\": \"b120f4acdb4a4ba-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/virtualMachines/vm222b44962a6\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/snapshots/ss-data-047951-1\",\r\n \"sourceUniqueId\": \"fe15839f-9d7b-43a7-8374-fa709b979676\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:29:14.9188034+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"a8552ee7-62d5-442e-ab7d-3790cbd9fb3b\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomve5534286/providers/Microsoft.Compute/disks/6eb281555508402-1/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvc9b20442/providers/Microsoft.Compute/disks/b120f4acdb4a4ba-1/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:40:48 GMT", + "date" : "Mon, 18 May 2020 12:43:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0d4ffad3-01e0-40b0-b058-7298e38c6ead", + "x-ms-correlation-request-id" : "a030a75d-7b66-4b2d-8f02-15199afaefeb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;996,Microsoft.Compute/HighCostDiskHydrate30Min;7990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094048Z:0d4ffad3-01e0-40b0-b058-7298e38c6ead", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7c2b5ae3-1f6c-4727-826d-6450b006a8c8?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;995,Microsoft.Compute/HighCostDiskHydrate30Min;7990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124308Z:a030a75d-7b66-4b2d-8f02-15199afaefeb", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3bf4c1b7-69c7-4ad0-bf0a-1e3b03eb037d?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "7c2b5ae3-1f6c-4727-826d-6450b006a8c8", + "x-ms-request-id" : "3bf4c1b7-69c7-4ad0-bf0a-1e3b03eb037d", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7c2b5ae3-1f6c-4727-826d-6450b006a8c8?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3bf4c1b7-69c7-4ad0-bf0a-1e3b03eb037d?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7c2b5ae3-1f6c-4727-826d-6450b006a8c8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3bf4c1b7-69c7-4ad0-bf0a-1e3b03eb037d?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:41:18 GMT", + "date" : "Mon, 18 May 2020 12:43:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "425", + "content-length" : "427", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11709", + "x-ms-ratelimit-remaining-subscription-reads" : "11852", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e61f5e46-eb8c-4359-9b19-69750443553c", + "x-ms-correlation-request-id" : "ea502f6c-75f6-4499-8e66-6e69893eed56", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094119Z:e61f5e46-eb8c-4359-9b19-69750443553c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399850", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124339Z:ea502f6c-75f6-4499-8e66-6e69893eed56", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "aa1403ea-4b24-4fae-a9fc-21c1729835e8", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:40:48.3603925+00:00\",\r\n \"endTime\": \"2020-04-29T09:40:48.5010157+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-hj0cfdjzsqm4.z3.blob.storage.azure.net/grvmd3pvdvq1/abcd?sv=2017-04-17&sr=b&si=a2224ccf-bebd-45f7-b539-af3c7d044a50&sig=r8dRw9tuO0Piphz5tB8pvX5ZunkrYwmKGVwFQ6QG87U%3D\"\r\n}\r\n },\r\n \"name\": \"7c2b5ae3-1f6c-4727-826d-6450b006a8c8\"\r\n}" + "x-ms-request-id" : "20f7e310-5167-424e-bb20-540a3b3f649b", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:43:07.920679+00:00\",\r\n \"endTime\": \"2020-05-18T12:43:08.1081929+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-jttsnpfbg5m1.z30.blob.storage.azure.net/glt4r3mq4fqb/abcd?sv=2017-04-17&sr=b&si=c1e67f91-7a20-448f-b4a3-12485e18b7ed&sig=xiqWdHF8NXFxxadsrO23abiwVhJ%2FEhu8uCAngwMnvwU%3D\"\r\n}\r\n },\r\n \"name\": \"3bf4c1b7-69c7-4ad0-bf0a-1e3b03eb037d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7c2b5ae3-1f6c-4727-826d-6450b006a8c8?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3bf4c1b7-69c7-4ad0-bf0a-1e3b03eb037d?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:41:49 GMT", + "date" : "Mon, 18 May 2020 12:44:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "200", + "content-length" : "203", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", + "x-ms-ratelimit-remaining-subscription-reads" : "11649", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6381c558-1a43-4fba-93e4-9fde4b05b878", + "x-ms-correlation-request-id" : "aeec1980-925a-462d-afa8-5f3cb2b2504e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399892", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094149Z:6381c558-1a43-4fba-93e4-9fde4b05b878", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399848", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124410Z:aeec1980-925a-462d-afa8-5f3cb2b2504e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "63bdae93-f1c9-4b24-a77a-68828aa79554", - "Body" : "{\r\n \"accessSAS\": \"https://md-hj0cfdjzsqm4.z3.blob.storage.azure.net/grvmd3pvdvq1/abcd?sv=2017-04-17&sr=b&si=a2224ccf-bebd-45f7-b539-af3c7d044a50&sig=r8dRw9tuO0Piphz5tB8pvX5ZunkrYwmKGVwFQ6QG87U%3D\"\r\n}" + "x-ms-request-id" : "c7466dd4-ad3e-443b-9bd2-6a1723e9fd39", + "Body" : "{\r\n \"accessSAS\": \"https://md-jttsnpfbg5m1.z30.blob.storage.azure.net/glt4r3mq4fqb/abcd?sv=2017-04-17&sr=b&si=c1e67f91-7a20-448f-b4a3-12485e18b7ed&sig=xiqWdHF8NXFxxadsrO23abiwVhJ%2FEhu8uCAngwMnvwU%3D\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomve5534286?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvc9b20442?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:41:54 GMT", + "date" : "Mon, 18 May 2020 12:44:14 GMT", "content-length" : "0", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fe7b1d00-013e-4401-bddf-5e54409910b2", + "x-ms-correlation-request-id" : "e704e8c6-780c-4e8e-b3fd-08513ac342fb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094154Z:fe7b1d00-013e-4401-bddf-5e54409910b2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZFNTUzNDI4Ni1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T124414Z:e704e8c6-780c-4e8e-b3fd-08513ac342fb", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZDOUIyMDQ0Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "fe7b1d00-013e-4401-bddf-5e54409910b2", + "x-ms-request-id" : "e704e8c6-780c-4e8e-b3fd-08513ac342fb", "Body" : "" } } ], - "variables" : [ "vm14e02882063", "vm2f3b262356a", "ss-os-d0205797", "ss-data-65857e", "ds-os-nw-10789", "6eb281555508402", "rgcomve5534286", "pip74260517aa", "nic149189e0928", "vnet22550d34ab", "pip78087d61", "nic54534877e3d", "vnet5726719fb3" ] + "variables" : [ "vm1cbe2349266", "vm222b44962a6", "ss-os-15e81680", "ss-data-047951", "ds-os-nw-22755", "b120f4acdb4a4ba", "rgcomvc9b20442", "pipb9008957d6", "nic413054d56ed", "vnet23343c6567", "pip38421184", "nic33990476889", "vnet82325e0c11" ] } \ No newline at end of file diff --git a/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingSpecializedDiskFromVhd.json b/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingSpecializedDiskFromVhd.json index 67becefb44f6..5888f52bbd21 100644 --- a/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingSpecializedDiskFromVhd.json +++ b/sdk/management/samples/src/test/resources/session-records/testCreateVirtualMachineUsingSpecializedDiskFromVhd.json @@ -1,1619 +1,1544 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:03 GMT", - "content-length" : "322", + "date" : "Mon, 18 May 2020 12:14:49 GMT", + "content-length" : "316", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "52520fef-32e0-40d4-875d-5a28b083759d", + "x-ms-correlation-request-id" : "f4b3d38c-23a6-44bd-a425-8be760941a96", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090903Z:52520fef-32e0-40d4-875d-5a28b083759d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121449Z:f4b3d38c-23a6-44bd-a425-8be760941a96", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "52520fef-32e0-40d4-875d-5a28b083759d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940\",\"name\":\"rgcomvadc15940\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-04-29T09:09:00.555750400Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "f4b3d38c-23a6-44bd-a425-8be760941a96", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409\",\"name\":\"rgcomv5ba14409\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T12:14:46.463Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/publicIPAddresses/pip16330d1c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:09 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "768", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7e05faf2-9fe4-43f3-9db5-e5a34556b37e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c5ee34a0-d657-4f38-98fc-48ae8b10e3c7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090910Z:7e05faf2-9fe4-43f3-9db5-e5a34556b37e", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "33963c3d-9588-457e-8f57-f1343c85f95a", - "Body" : "{\r\n \"name\": \"pip16330d1c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/publicIPAddresses/pip16330d1c\",\r\n \"etag\": \"W/\\\"72a508d6-b0c0-4af3-8ce7-4fe0f77e7636\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"445c1064-7c35-46bc-abf1-cd513ca26d13\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipc69641842a\",\r\n \"fqdn\": \"pipc69641842a.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/33963c3d-9588-457e-8f57-f1343c85f95a?api-version=2019-06-01" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (11.0.6; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:10 GMT", + "date" : "Mon, 18 May 2020 12:14:56 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2de53f8c-4def-4acd-a57f-d32d408d08dd", + "x-ms-correlation-request-id" : "374b1f2b-b7c1-45cd-a257-51734f88c100", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090910Z:2de53f8c-4def-4acd-a57f-d32d408d08dd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121456Z:374b1f2b-b7c1-45cd-a257-51734f88c100", "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/bea6b796-5efc-4686-9ce5-d3df9eced937?monitor=true&api-version=2019-06-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/178d2bb1-c90f-46a2-9052-11d6a66d7e8e?monitor=true&api-version=2019-06-01", "cache-control" : "no-cache", - "x-ms-request-id" : "bea6b796-5efc-4686-9ce5-d3df9eced937", + "x-ms-request-id" : "178d2bb1-c90f-46a2-9052-11d6a66d7e8e", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet93253fcff2?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/publicIPAddresses/pip5308256e?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:11 GMT", + "date" : "Mon, 18 May 2020 12:14:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "1349", + "content-length" : "768", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e08e4dbc-eed1-4f8a-8a36-4c320502c0ea", + "x-ms-correlation-request-id" : "a2614248-4332-4f85-b767-ec5849cc12fb", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b9c96d4f-7b5a-47f0-b765-3dba06a8abc7", + "x-ms-arm-service-request-id" : "0144db39-a5b8-4400-a5f5-6ba47ac28b28", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090912Z:e08e4dbc-eed1-4f8a-8a36-4c320502c0ea", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121457Z:a2614248-4332-4f85-b767-ec5849cc12fb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3f0b69c5-a92f-485f-a465-b5f0848bd1d4", - "Body" : "{\r\n \"name\": \"vnet93253fcff2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet93253fcff2\",\r\n \"etag\": \"W/\\\"30d23d87-f564-4f22-92f0-64ef608cd2f5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"be16d951-b1e4-475a-9bd6-8c8752684339\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet93253fcff2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"30d23d87-f564-4f22-92f0-64ef608cd2f5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3f0b69c5-a92f-485f-a465-b5f0848bd1d4?api-version=2019-06-01" + "x-ms-request-id" : "a09792c4-e082-4e20-89b8-54c78000ca89", + "Body" : "{\r\n \"name\": \"pip5308256e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/publicIPAddresses/pip5308256e\",\r\n \"etag\": \"W/\\\"157d4dff-fc3f-4e6a-8619-0193cf79e4fc\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d7bc640c-d513-4661-8425-3da942a949c1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipad6463534d\",\r\n \"fqdn\": \"pipad6463534d.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/a09792c4-e082-4e20-89b8-54c78000ca89?api-version=2019-06-01" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/33963c3d-9588-457e-8f57-f1343c85f95a?api-version=2019-06-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet98594e8b2f?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:41 GMT", + "date" : "Mon, 18 May 2020 12:14:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", + "azure-asyncnotification" : "Enabled", + "content-length" : "1349", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", + "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5a813d1b-db5f-4653-bc2b-1e24f890851f", + "x-ms-correlation-request-id" : "5ae06ae9-db89-4387-8788-07c27352429a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "cf1886d0-48fa-4e1a-ab00-d592d9034ee6", + "x-ms-arm-service-request-id" : "b2765a6a-8d40-4d5e-8172-c1aa5976f3c8", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090941Z:5a813d1b-db5f-4653-bc2b-1e24f890851f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121457Z:5ae06ae9-db89-4387-8788-07c27352429a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8f315832-c5bd-43e6-8538-a6a1bd072838", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" + "x-ms-request-id" : "fa2ea8f5-9c16-444e-a790-ec5ef779589e", + "Body" : "{\r\n \"name\": \"vnet98594e8b2f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet98594e8b2f\",\r\n \"etag\": \"W/\\\"40747a12-6b7c-4513-90ce-aab519f89ec0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c5c83667-2d55-4ef5-a48c-ad7746d7fbcc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet98594e8b2f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"40747a12-6b7c-4513-90ce-aab519f89ec0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fa2ea8f5-9c16-444e-a790-ec5ef779589e?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/bea6b796-5efc-4686-9ce5-d3df9eced937?monitor=true&api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/178d2bb1-c90f-46a2-9052-11d6a66d7e8e?monitor=true&api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:40 GMT", + "date" : "Mon, 18 May 2020 12:15:27 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1189", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1424ff9b-2cca-4761-9c54-2781f57a8527", + "x-ms-correlation-request-id" : "012cb289-d799-4073-8296-d4ffde23c0e3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090941Z:1424ff9b-2cca-4761-9c54-2781f57a8527", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121528Z:012cb289-d799-4073-8296-d4ffde23c0e3", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "e353d561-e0ff-4c25-819a-f74f46b4f0a6", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\"name\":\"stg8078737703\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T09:09:10.3315931Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T09:09:10.3315931Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-29T09:09:10.2691429Z\",\"primaryEndpoints\":{\"blob\":\"https://stg8078737703.blob.core.windows.net/\",\"queue\":\"https://stg8078737703.queue.core.windows.net/\",\"table\":\"https://stg8078737703.table.core.windows.net/\",\"file\":\"https://stg8078737703.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "1e7cedcb-9999-4149-81f1-f7d2d318582d", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\"name\":\"stg28e88307dd\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T12:14:56.3353353Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T12:14:56.3353353Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T12:14:56.2728346Z\",\"primaryEndpoints\":{\"blob\":\"https://stg28e88307dd.blob.core.windows.net/\",\"queue\":\"https://stg28e88307dd.queue.core.windows.net/\",\"table\":\"https://stg28e88307dd.table.core.windows.net/\",\"file\":\"https://stg28e88307dd.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3f0b69c5-a92f-485f-a465-b5f0848bd1d4?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/a09792c4-e082-4e20-89b8-54c78000ca89?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:44 GMT", + "date" : "Mon, 18 May 2020 12:15:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4802db64-b5dc-4374-b6b3-370ecafe2e0b", + "x-ms-correlation-request-id" : "91971036-d437-478b-ac6d-2a46f3798397", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f95cf1cf-fe91-448c-997f-d7f0832b4373", + "x-ms-arm-service-request-id" : "0533bd9c-7de1-4085-8142-316c9bc1fda2", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090944Z:4802db64-b5dc-4374-b6b3-370ecafe2e0b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121528Z:91971036-d437-478b-ac6d-2a46f3798397", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2da78afb-bb1a-4968-9f3b-a08aafd020eb", + "x-ms-request-id" : "9fbca8a6-f42d-4976-b5e0-268b80a012ea", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/publicIPAddresses/pip16330d1c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fa2ea8f5-9c16-444e-a790-ec5ef779589e?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:11 GMT", + "date" : "Mon, 18 May 2020 12:15:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "769", + "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "21c5e03e-601d-409f-968b-b31da6894cfc", + "x-ms-correlation-request-id" : "86606f39-fa39-452b-89c9-0702dc095b39", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "01fef25d-19f2-4457-af74-60f272c2ed0f", + "x-ms-arm-service-request-id" : "ed5329de-e357-48f0-bd57-77759c58e01d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091011Z:21c5e03e-601d-409f-968b-b31da6894cfc", - "etag" : "W/\"5ae91eb4-c326-4fa2-84ba-6c544f905ea7\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121529Z:86606f39-fa39-452b-89c9-0702dc095b39", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cfc74576-5e8f-4a3a-851c-344499e36cfd", - "Body" : "{\r\n \"name\": \"pip16330d1c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/publicIPAddresses/pip16330d1c\",\r\n \"etag\": \"W/\\\"5ae91eb4-c326-4fa2-84ba-6c544f905ea7\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"445c1064-7c35-46bc-abf1-cd513ca26d13\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipc69641842a\",\r\n \"fqdn\": \"pipc69641842a.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "516d4c43-01f7-4e88-b1a5-406a742c96fa", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:12 GMT", + "date" : "Mon, 18 May 2020 12:15:59 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1189", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f14b74ad-fa41-4b7f-b8f2-ea91c2ee719c", + "x-ms-correlation-request-id" : "4ef7ba75-d33a-4ca6-a6b7-6671a6d4369d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091012Z:f14b74ad-fa41-4b7f-b8f2-ea91c2ee719c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121559Z:4ef7ba75-d33a-4ca6-a6b7-6671a6d4369d", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "5b89041a-ec1b-41f7-b4b6-8c1678e14c7e", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\"name\":\"stg8078737703\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T09:09:10.3315931Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T09:09:10.3315931Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-29T09:09:10.2691429Z\",\"primaryEndpoints\":{\"blob\":\"https://stg8078737703.blob.core.windows.net/\",\"queue\":\"https://stg8078737703.queue.core.windows.net/\",\"table\":\"https://stg8078737703.table.core.windows.net/\",\"file\":\"https://stg8078737703.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "bfc77616-9238-4b65-a728-aa39d8a1d900", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\"name\":\"stg28e88307dd\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T12:14:56.3353353Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T12:14:56.3353353Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T12:14:56.2728346Z\",\"primaryEndpoints\":{\"blob\":\"https://stg28e88307dd.blob.core.windows.net/\",\"queue\":\"https://stg28e88307dd.queue.core.windows.net/\",\"table\":\"https://stg28e88307dd.table.core.windows.net/\",\"file\":\"https://stg28e88307dd.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet93253fcff2?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet98594e8b2f?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:16 GMT", + "date" : "Mon, 18 May 2020 12:15:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1351", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "87c2a7f3-02c9-4521-9202-312e5c5070ab", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "35e4d8f4-924a-4765-9881-c39017b3c6c6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091016Z:87c2a7f3-02c9-4521-9202-312e5c5070ab", - "etag" : "W/\"5432a612-ba5e-4262-a090-0bd0890ae402\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "59d2f06a-8b9b-44c3-9ee4-5e9b9a3b0adb", - "Body" : "{\r\n \"name\": \"vnet93253fcff2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet93253fcff2\",\r\n \"etag\": \"W/\\\"5432a612-ba5e-4262-a090-0bd0890ae402\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be16d951-b1e4-475a-9bd6-8c8752684339\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet93253fcff2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5432a612-ba5e-4262-a090-0bd0890ae402\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic18087d157cb?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1849", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ce816391-43dc-40c7-a832-26d5bbdb7139", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "344393bd-4c49-4d03-adba-a6259ffed4c1", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091019Z:ce816391-43dc-40c7-a832-26d5bbdb7139", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7dd27fb8-f75f-4c6a-9c13-21bfb8143cd5", - "Body" : "{\r\n \"name\": \"nic18087d157cb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic18087d157cb\",\r\n \"etag\": \"W/\\\"7f10e3a7-64f9-4df6-ad91-5dc7c3ae95be\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6c33f4d8-b6d4-4b1e-bc65-88df73172b3f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic18087d157cb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7f10e3a7-64f9-4df6-ad91-5dc7c3ae95be\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/publicIPAddresses/pip16330d1c\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet93253fcff2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"khmrnpxewfnepg4wrsdve0cdhb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7dd27fb8-f75f-4c6a-9c13-21bfb8143cd5?api-version=2019-06-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7dd27fb8-f75f-4c6a-9c13-21bfb8143cd5?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:50 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", + "x-ms-ratelimit-remaining-subscription-reads" : "11926", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "355d0387-5c16-4eb8-a9ab-d97e553403dc", + "x-ms-correlation-request-id" : "a0dd4eb2-3eae-432f-9134-5174b4d185b7", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "088b0dbe-027d-4d85-9225-6213073a3c25", + "x-ms-arm-service-request-id" : "e608c23d-ae4e-4f9f-9fd1-334ecac51e8b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091050Z:355d0387-5c16-4eb8-a9ab-d97e553403dc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121559Z:a0dd4eb2-3eae-432f-9134-5174b4d185b7", + "etag" : "W/\"fdcb09c7-84d0-4bee-b3ba-5c46cfd99fe2\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "abcdc54e-c8bd-4d75-a32e-63ea00326977", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" + "x-ms-request-id" : "d3617d08-512f-4b0f-8fee-21ab9ea23343", + "Body" : "{\r\n \"name\": \"vnet98594e8b2f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet98594e8b2f\",\r\n \"etag\": \"W/\\\"fdcb09c7-84d0-4bee-b3ba-5c46cfd99fe2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5c83667-2d55-4ef5-a48c-ad7746d7fbcc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet98594e8b2f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"fdcb09c7-84d0-4bee-b3ba-5c46cfd99fe2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic18087d157cb?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/publicIPAddresses/pip5308256e?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:20 GMT", + "date" : "Mon, 18 May 2020 12:15:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1849", + "content-length" : "769", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", + "x-ms-ratelimit-remaining-subscription-reads" : "11932", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6841b943-22c2-455c-8ebd-5691356556a9", + "x-ms-correlation-request-id" : "9bc08520-8135-4fbd-b4eb-fd60e850b6ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "69e8fd1f-0d9b-4536-9488-52606897e812", + "x-ms-arm-service-request-id" : "e3d8cc6c-fe96-4420-ac80-814cf29bffa9", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091121Z:6841b943-22c2-455c-8ebd-5691356556a9", - "etag" : "W/\"7f10e3a7-64f9-4df6-ad91-5dc7c3ae95be\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121559Z:9bc08520-8135-4fbd-b4eb-fd60e850b6ac", + "etag" : "W/\"93c05e43-1c4a-4a09-af62-28a90ae3bad8\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "214d638d-7f1d-4908-82d7-4f5fe841d6d6", - "Body" : "{\r\n \"name\": \"nic18087d157cb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic18087d157cb\",\r\n \"etag\": \"W/\\\"7f10e3a7-64f9-4df6-ad91-5dc7c3ae95be\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6c33f4d8-b6d4-4b1e-bc65-88df73172b3f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic18087d157cb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7f10e3a7-64f9-4df6-ad91-5dc7c3ae95be\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/publicIPAddresses/pip16330d1c\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet93253fcff2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"khmrnpxewfnepg4wrsdve0cdhb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "16c5d73c-97d8-4270-bd1c-6aff3182e8c4", + "Body" : "{\r\n \"name\": \"pip5308256e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/publicIPAddresses/pip5308256e\",\r\n \"etag\": \"W/\\\"93c05e43-1c4a-4a09-af62-28a90ae3bad8\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d7bc640c-d513-4661-8425-3da942a949c1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipad6463534d\",\r\n \"fqdn\": \"pipad6463534d.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic468154c1fff?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:28 GMT", + "date" : "Mon, 18 May 2020 12:16:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "2343", + "content-length" : "1849", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8baef2ff-53b0-4a19-8585-0bc8b7984bde", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091129Z:8baef2ff-53b0-4a19-8585-0bc8b7984bde", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "44d1f988-38cc-4c0f-9024-0543af7c5258", - "Body" : "{\r\n \"name\": \"vm128440373c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c17a57da-283f-44fa-b76f-e102c0327463\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm128440373c2-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-os-disk-e060ce3d-d443-4250-a27a-9f920b3994f7.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-1-b55cac30-a9c6-4efb-8563-e5ea4eb17669.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-2-55fc209c-e039-4111-bcbc-e9d8c13e60d8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm128440373c2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic18087d157cb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/44d1f988-38cc-4c0f-9024-0543af7c5258?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/44d1f988-38cc-4c0f-9024-0543af7c5258?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "034bbecd-81b4-40a2-bd3a-670a967da30f", + "x-ms-correlation-request-id" : "5e58eed2-2619-4232-a472-5cac95fbcecc", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "b48deae1-b5d2-4a2d-8daa-0b7a86c3dda4", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091200Z:034bbecd-81b4-40a2-bd3a-670a967da30f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121604Z:5e58eed2-2619-4232-a472-5cac95fbcecc", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9dae1f5d-7d0c-44c0-948e-0057d8adf618", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:11:27.9339754+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44d1f988-38cc-4c0f-9024-0543af7c5258\"\r\n}" + "x-ms-request-id" : "14933b24-0a79-4980-834d-6232f5a11a1b", + "Body" : "{\r\n \"name\": \"nic468154c1fff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic468154c1fff\",\r\n \"etag\": \"W/\\\"7f614fe4-48ad-43d1-b7da-630f1f19b221\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"940c7bbc-9e84-4871-b267-79df380b8309\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic468154c1fff/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7f614fe4-48ad-43d1-b7da-630f1f19b221\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/publicIPAddresses/pip5308256e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet98594e8b2f/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"m21mrrkvfx0u3jemvv1unv51ze.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/14933b24-0a79-4980-834d-6232f5a11a1b?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/44d1f988-38cc-4c0f-9024-0543af7c5258?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/14933b24-0a79-4980-834d-6232f5a11a1b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:30 GMT", + "date" : "Mon, 18 May 2020 12:16:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", + "x-ms-ratelimit-remaining-subscription-reads" : "11901", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "de888b2d-916d-4f30-a1b7-7acc324d9c81", + "x-ms-correlation-request-id" : "feb0d859-bef8-424a-aa3b-a3ab278e70c0", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "e5e2bc46-e6ae-4697-9952-100fb62f37eb", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091230Z:de888b2d-916d-4f30-a1b7-7acc324d9c81", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121635Z:feb0d859-bef8-424a-aa3b-a3ab278e70c0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5166d3fe-6c57-41f6-856a-aebadc08c4e1", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:11:27.9339754+00:00\",\r\n \"endTime\": \"2020-04-29T09:12:09.9339768+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"44d1f988-38cc-4c0f-9024-0543af7c5258\"\r\n}" + "x-ms-request-id" : "6716537a-ec74-4ccb-b988-862dc046f8df", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic468154c1fff?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:00 GMT", + "date" : "Mon, 18 May 2020 12:17:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2371", + "content-length" : "1849", "expires" : "-1", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11876", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c1d24e59-537d-48d8-a8d4-39722239eaab", + "x-ms-correlation-request-id" : "68369441-9642-4c8c-8fd7-42ed44c4d6db", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "ebba1be8-12c8-4669-bb51-c7e5e13b5dbb", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091300Z:c1d24e59-537d-48d8-a8d4-39722239eaab", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121706Z:68369441-9642-4c8c-8fd7-42ed44c4d6db", + "etag" : "W/\"7f614fe4-48ad-43d1-b7da-630f1f19b221\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8ba20bef-e1e3-4710-a476-152cd59690d6", - "Body" : "{\r\n \"name\": \"vm128440373c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c17a57da-283f-44fa-b76f-e102c0327463\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm128440373c2-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-os-disk-e060ce3d-d443-4250-a27a-9f920b3994f7.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-1-b55cac30-a9c6-4efb-8563-e5ea4eb17669.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-2-55fc209c-e039-4111-bcbc-e9d8c13e60d8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm128440373c2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic18087d157cb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "8104da02-64e8-4bfd-82af-246d5f77a1c0", + "Body" : "{\r\n \"name\": \"nic468154c1fff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic468154c1fff\",\r\n \"etag\": \"W/\\\"7f614fe4-48ad-43d1-b7da-630f1f19b221\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"940c7bbc-9e84-4871-b267-79df380b8309\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic468154c1fff/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7f614fe4-48ad-43d1-b7da-630f1f19b221\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/publicIPAddresses/pip5308256e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet98594e8b2f/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"m21mrrkvfx0u3jemvv1unv51ze.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2/extensions/CustomScriptForLinux?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:07 GMT", + "date" : "Mon, 18 May 2020 12:17:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "732", + "content-length" : "2343", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cd97d300-9342-42b9-8474-68e99ad84357", + "x-ms-correlation-request-id" : "6bb246c6-5625-4a05-b671-6391d230125f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091308Z:cd97d300-9342-42b9-8474-68e99ad84357", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121714Z:6bb246c6-5625-4a05-b671-6391d230125f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "09664607-1faf-435c-a242-1480b0563def", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/09664607-1faf-435c-a242-1480b0563def?api-version=2019-03-01" + "x-ms-request-id" : "5e4da241-a9a3-48ba-9fc9-48252264b95d", + "Body" : "{\r\n \"name\": \"vm10090028316\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5ffee83c-e3d5-4dc3-9f95-66ad520047bc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm10090028316-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-os-disk-ddb3dd3b-dbb2-4845-97fb-20c8c720690f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-1-d61ca84a-ec87-4ac0-8ad6-24b23eb8b7be.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-2-41b47e46-0275-43a4-8f54-45fac6b25535.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10090028316\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic468154c1fff\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e4da241-a9a3-48ba-9fc9-48252264b95d?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/09664607-1faf-435c-a242-1480b0563def?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e4da241-a9a3-48ba-9fc9-48252264b95d?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:38 GMT", + "date" : "Mon, 18 May 2020 12:17:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", + "x-ms-ratelimit-remaining-subscription-reads" : "11795", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "65c7147b-7766-4173-b2a5-358621af4257", + "x-ms-correlation-request-id" : "55f32e1f-006e-49b3-97b4-58ca5b3af770", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091338Z:65c7147b-7766-4173-b2a5-358621af4257", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121744Z:55f32e1f-006e-49b3-97b4-58ca5b3af770", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9718f3d3-3c1b-44e8-9776-d5d8b149fa25", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:13:06.6527141+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"09664607-1faf-435c-a242-1480b0563def\"\r\n}" + "x-ms-request-id" : "a5e9169e-0ef5-47aa-b885-bb66e279d3eb", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:17:11.6098809+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5e4da241-a9a3-48ba-9fc9-48252264b95d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/09664607-1faf-435c-a242-1480b0563def?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e4da241-a9a3-48ba-9fc9-48252264b95d?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:08 GMT", + "date" : "Mon, 18 May 2020 12:18:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", + "x-ms-ratelimit-remaining-subscription-reads" : "11906", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ba2eba8f-8a4f-4ae6-af2b-3cf10dfe2196", + "x-ms-correlation-request-id" : "65c31c0c-9439-4928-9e87-63de144f60cb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091409Z:ba2eba8f-8a4f-4ae6-af2b-3cf10dfe2196", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121815Z:65c31c0c-9439-4928-9e87-63de144f60cb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "aa9bfe86-7beb-487a-90e3-2954fcb2b2f6", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:13:06.6527141+00:00\",\r\n \"endTime\": \"2020-04-29T09:13:52.8402078+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"09664607-1faf-435c-a242-1480b0563def\"\r\n}" + "x-ms-request-id" : "2663aeb7-669d-4b02-9aba-4a10a72a0235", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:17:11.6098809+00:00\",\r\n \"endTime\": \"2020-05-18T12:18:02.3130499+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5e4da241-a9a3-48ba-9fc9-48252264b95d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2/extensions/CustomScriptForLinux?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:39 GMT", + "date" : "Mon, 18 May 2020 12:18:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "733", + "content-length" : "2371", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11770", + "x-ms-ratelimit-remaining-subscription-reads" : "11909", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eb6a376a-dbb2-49bf-a0ba-30ce0c6a2234", + "x-ms-correlation-request-id" : "7cfaa0bb-d92d-49cf-8ee4-e18cd7642d65", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3963,Microsoft.Compute/LowCostGet30Min;31963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091440Z:eb6a376a-dbb2-49bf-a0ba-30ce0c6a2234", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121846Z:7cfaa0bb-d92d-49cf-8ee4-e18cd7642d65", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c0ec65f6-fa0d-4b27-80de-9b5d0e5deb1e", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}" + "x-ms-request-id" : "5e33b1e3-ba03-4f7a-8d51-3af0721740bb", + "Body" : "{\r\n \"name\": \"vm10090028316\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5ffee83c-e3d5-4dc3-9f95-66ad520047bc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm10090028316-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-os-disk-ddb3dd3b-dbb2-4845-97fb-20c8c720690f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-1-d61ca84a-ec87-4ac0-8ad6-24b23eb8b7be.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-2-41b47e46-0275-43a4-8f54-45fac6b25535.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10090028316\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic468154c1fff\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2?api-version=2019-03-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316/extensions/CustomScriptForLinux?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:40 GMT", + "date" : "Mon, 18 May 2020 12:18:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3186", + "azure-asyncnotification" : "Enabled", + "content-length" : "732", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", + "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5d7f35b7-7215-4b22-99d2-cc412ed91d0e", + "x-ms-correlation-request-id" : "f6bb9ccb-c360-4581-b6ea-7550756e2774", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3962,Microsoft.Compute/LowCostGet30Min;31962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091440Z:5d7f35b7-7215-4b22-99d2-cc412ed91d0e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121850Z:f6bb9ccb-c360-4581-b6ea-7550756e2774", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8da522e3-8966-4df4-baec-c06abf6a06d6", - "Body" : "{\r\n \"name\": \"vm128440373c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c17a57da-283f-44fa-b76f-e102c0327463\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm128440373c2-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-os-disk-e060ce3d-d443-4250-a27a-9f920b3994f7.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-1-b55cac30-a9c6-4efb-8563-e5ea4eb17669.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-2-55fc209c-e039-4111-bcbc-e9d8c13e60d8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm128440373c2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic18087d157cb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "6db701ba-2c9c-4b56-ad50-342d63649641", + "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6db701ba-2c9c-4b56-ad50-342d63649641?api-version=2019-03-01" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm128440373c2?api-version=2019-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6db701ba-2c9c-4b56-ad50-342d63649641?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:41 GMT", + "date" : "Mon, 18 May 2020 12:19:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "0", + "content-length" : "134", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", - "StatusCode" : "202", + "x-ms-ratelimit-remaining-subscription-reads" : "11887", + "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9a341940-ae7d-4715-9268-6f32eb918015", + "x-ms-correlation-request-id" : "9712aeb4-29a6-49c8-9df2-2c21e7b49579", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091441Z:9a341940-ae7d-4715-9268-6f32eb918015", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29963", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121920Z:9712aeb4-29a6-49c8-9df2-2c21e7b49579", + "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e2ce3a06-f248-49d0-81cb-6bb205f3bff8", - "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?api-version=2019-03-01" + "x-ms-request-id" : "7f4bee9c-5ec9-4139-b014-b806f8955d7c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:48.7349983+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6db701ba-2c9c-4b56-ad50-342d63649641\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6db701ba-2c9c-4b56-ad50-342d63649641?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:12 GMT", + "date" : "Mon, 18 May 2020 12:19:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11823", + "x-ms-ratelimit-remaining-subscription-reads" : "11888", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a6c6e6cc-02ab-406a-8be9-07a9eba17349", + "x-ms-correlation-request-id" : "67f6f1d1-ca22-45f1-a297-35b52d7cfb68", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091512Z:a6c6e6cc-02ab-406a-8be9-07a9eba17349", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29948", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121951Z:67f6f1d1-ca22-45f1-a297-35b52d7cfb68", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5ccb0b01-4cd8-4a02-bb76-53461bb4b0d8", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.5131183+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ce3a06-f248-49d0-81cb-6bb205f3bff8\"\r\n}" + "x-ms-request-id" : "86994316-5be2-46ec-919a-1b6272f26a26", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:48.7349983+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6db701ba-2c9c-4b56-ad50-342d63649641\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6db701ba-2c9c-4b56-ad50-342d63649641?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:41 GMT", + "date" : "Mon, 18 May 2020 12:20:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "182", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11813", + "x-ms-ratelimit-remaining-subscription-reads" : "11825", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a84a54e0-532c-483a-bb0f-99d3b9d4c3ec", + "x-ms-correlation-request-id" : "a8a81436-94c5-4f29-a8d1-e7ad4fc37379", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091542Z:a84a54e0-532c-483a-bb0f-99d3b9d4c3ec", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29939", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122021Z:a8a81436-94c5-4f29-a8d1-e7ad4fc37379", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0a3e5829-7ac7-4677-b27d-a5dccb2886f0", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.5131183+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ce3a06-f248-49d0-81cb-6bb205f3bff8\"\r\n}" + "x-ms-request-id" : "b8704f89-8164-4ed3-9f5b-ddb705ef2bf2", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:48.7349983+00:00\",\r\n \"endTime\": \"2020-05-18T12:20:03.15689+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6db701ba-2c9c-4b56-ad50-342d63649641\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316/extensions/CustomScriptForLinux?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:13 GMT", + "date" : "Mon, 18 May 2020 12:20:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "733", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11696", + "x-ms-ratelimit-remaining-subscription-reads" : "11775", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "99d817e1-0483-4948-aba9-e8918287084e", + "x-ms-correlation-request-id" : "c5674aa3-439a-46a0-a514-e2434ae94921", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091613Z:99d817e1-0483-4948-aba9-e8918287084e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3940,Microsoft.Compute/LowCostGet30Min;31940", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122052Z:c5674aa3-439a-46a0-a514-e2434ae94921", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ea741544-f35a-4ebd-8556-19faaaca15dd", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.5131183+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ce3a06-f248-49d0-81cb-6bb205f3bff8\"\r\n}" + "x-ms-request-id" : "4b1a3088-7b79-4814-a8d7-1d472bc34f6f", + "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:43 GMT", + "date" : "Mon, 18 May 2020 12:20:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "3186", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11764", + "x-ms-ratelimit-remaining-subscription-reads" : "11820", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "29158f66-709a-42c1-be97-d4050162780f", + "x-ms-correlation-request-id" : "31192ec9-50e7-48e4-9426-7c3249fa1d68", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091644Z:29158f66-709a-42c1-be97-d4050162780f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3939,Microsoft.Compute/LowCostGet30Min;31939", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122053Z:31192ec9-50e7-48e4-9426-7c3249fa1d68", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4ed9d552-d32c-4231-a1ee-ec91c72062c5", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.5131183+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ce3a06-f248-49d0-81cb-6bb205f3bff8\"\r\n}" + "x-ms-request-id" : "50a85bee-4970-4c66-a365-5071018f73e6", + "Body" : "{\r\n \"name\": \"vm10090028316\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5ffee83c-e3d5-4dc3-9f95-66ad520047bc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm10090028316-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-os-disk-ddb3dd3b-dbb2-4845-97fb-20c8c720690f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-1-d61ca84a-ec87-4ac0-8ad6-24b23eb8b7be.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-2-41b47e46-0275-43a4-8f54-45fac6b25535.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10090028316\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic468154c1fff\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?api-version=2019-03-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm10090028316?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:14 GMT", + "date" : "Mon, 18 May 2020 12:20:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "azure-asyncnotification" : "Enabled", + "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "30d5c11e-0924-4f6b-b071-f086bc46ae0a", + "x-ms-correlation-request-id" : "c31d0379-2a56-48bc-9188-01a16ee7de3f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091715Z:30d5c11e-0924-4f6b-b071-f086bc46ae0a", - "content-type" : "application/json; charset=utf-8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1198", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122054Z:c31d0379-2a56-48bc-9188-01a16ee7de3f", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/17d0eecf-8424-4c8f-8d5f-92e3f471fdd0?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ead58a3f-5e78-4f88-82f3-ad212f0d3326", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.5131183+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ce3a06-f248-49d0-81cb-6bb205f3bff8\"\r\n}" + "x-ms-request-id" : "17d0eecf-8424-4c8f-8d5f-92e3f471fdd0", + "Body" : "", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/17d0eecf-8424-4c8f-8d5f-92e3f471fdd0?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/17d0eecf-8424-4c8f-8d5f-92e3f471fdd0?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:44 GMT", + "date" : "Mon, 18 May 2020 12:21:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", + "x-ms-ratelimit-remaining-subscription-reads" : "11700", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ddbed5cc-1115-4061-a262-e18a7d9f28cc", + "x-ms-correlation-request-id" : "c42f2d8d-b333-457e-b246-5346f50e8849", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091745Z:ddbed5cc-1115-4061-a262-e18a7d9f28cc", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14940,Microsoft.Compute/GetOperation30Min;29924", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122125Z:c42f2d8d-b333-457e-b246-5346f50e8849", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fa8a840a-1b5f-4798-a4e3-92d31da0fe00", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.5131183+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ce3a06-f248-49d0-81cb-6bb205f3bff8\"\r\n}" + "x-ms-request-id" : "fbdff647-a242-473b-9c87-cb5df62c5a10", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:20:53.8756926+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"17d0eecf-8424-4c8f-8d5f-92e3f471fdd0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/17d0eecf-8424-4c8f-8d5f-92e3f471fdd0?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:16 GMT", + "date" : "Mon, 18 May 2020 12:21:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", + "x-ms-ratelimit-remaining-subscription-reads" : "11828", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "de0efeae-b075-4f8e-bfc6-51dba9e701ee", + "x-ms-correlation-request-id" : "0434c9b0-60c3-4ecd-bad3-01029f1caac9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14938,Microsoft.Compute/GetOperation30Min;29885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091816Z:de0efeae-b075-4f8e-bfc6-51dba9e701ee", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29918", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122155Z:0434c9b0-60c3-4ecd-bad3-01029f1caac9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "76ff36b8-b168-4a19-8285-09aecf673748", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.5131183+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ce3a06-f248-49d0-81cb-6bb205f3bff8\"\r\n}" + "x-ms-request-id" : "50b3bcd6-3ac9-46bd-b7a7-d505a88bc906", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:20:53.8756926+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"17d0eecf-8424-4c8f-8d5f-92e3f471fdd0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/17d0eecf-8424-4c8f-8d5f-92e3f471fdd0?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:47 GMT", + "date" : "Mon, 18 May 2020 12:22:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11774", + "x-ms-ratelimit-remaining-subscription-reads" : "11878", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0f40bf85-4775-4b0d-93f8-91573be946ae", + "x-ms-correlation-request-id" : "7cbecb33-5b0c-43be-b5fa-52a4ed15f218", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14927,Microsoft.Compute/GetOperation30Min;29866", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091847Z:0f40bf85-4775-4b0d-93f8-91573be946ae", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29908", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122226Z:7cbecb33-5b0c-43be-b5fa-52a4ed15f218", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a0f5e7eb-5ce9-426c-a2c2-5bfe84a0a502", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.5131183+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ce3a06-f248-49d0-81cb-6bb205f3bff8\"\r\n}" + "x-ms-request-id" : "2c8298d6-46a9-4105-9023-1649617b34ef", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:20:53.8756926+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"17d0eecf-8424-4c8f-8d5f-92e3f471fdd0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/17d0eecf-8424-4c8f-8d5f-92e3f471fdd0?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:17 GMT", + "date" : "Mon, 18 May 2020 12:22:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", + "x-ms-ratelimit-remaining-subscription-reads" : "11689", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0ed21976-8efb-4322-957e-253c2c6f004f", + "x-ms-correlation-request-id" : "e11d3ed9-5c3b-4802-b54e-ad152734f7b4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14913,Microsoft.Compute/GetOperation30Min;29848", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091918Z:0ed21976-8efb-4322-957e-253c2c6f004f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29891", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122256Z:e11d3ed9-5c3b-4802-b54e-ad152734f7b4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b74fd84d-8c7f-49d6-b333-e71d157f7b8b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:41.5131183+00:00\",\r\n \"endTime\": \"2020-04-29T09:18:59.6070245+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e2ce3a06-f248-49d0-81cb-6bb205f3bff8\"\r\n}" + "x-ms-request-id" : "ef4e31c6-4b61-4ff5-8ac4-858bda779100", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:20:53.8756926+00:00\",\r\n \"endTime\": \"2020-05-18T12:22:45.2979108+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"17d0eecf-8424-4c8f-8d5f-92e3f471fdd0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e2ce3a06-f248-49d0-81cb-6bb205f3bff8?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/17d0eecf-8424-4c8f-8d5f-92e3f471fdd0?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:47 GMT", + "date" : "Mon, 18 May 2020 12:23:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11679", + "x-ms-ratelimit-remaining-subscription-reads" : "11721", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8f64c1af-6bd5-4ad0-bd13-bbfc322d8962", + "x-ms-correlation-request-id" : "c10fa6ba-9e00-4d01-8538-26260970c439", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14908,Microsoft.Compute/GetOperation30Min;29829", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091948Z:8f64c1af-6bd5-4ad0-bd13-bbfc322d8962", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14937,Microsoft.Compute/GetOperation30Min;29874", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122327Z:c10fa6ba-9e00-4d01-8538-26260970c439", "cache-control" : "no-cache", - "x-ms-request-id" : "4244d422-ed98-4549-9d87-2b82205f2890", + "x-ms-request-id" : "d7130031-c3c8-441a-9e65-6bd99b3a607f", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-os-60230316?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-os-02c72882?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:54 GMT", + "date" : "Mon, 18 May 2020 12:23:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "585", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "324b8293-5a7e-47eb-b705-f3d3363f7d4a", + "x-ms-correlation-request-id" : "8f8ba1d3-2bbb-4e5a-9903-4379ba09dba0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091955Z:324b8293-5a7e-47eb-b705-f3d3363f7d4a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122332Z:8f8ba1d3-2bbb-4e5a-9903-4379ba09dba0", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b2e7853c-a1e3-4358-9376-032814bbb968?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/907c9015-1f66-467f-b51d-8c9982df7ab5?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b2e7853c-a1e3-4358-9376-032814bbb968", - "Body" : "{\r\n \"name\": \"ds-os-60230316\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\r\n \"sourceUri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-os-disk-e060ce3d-d443-4250-a27a-9f920b3994f7.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b2e7853c-a1e3-4358-9376-032814bbb968?api-version=2019-03-01" + "x-ms-request-id" : "907c9015-1f66-467f-b51d-8c9982df7ab5", + "Body" : "{\r\n \"name\": \"ds-os-02c72882\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\r\n \"sourceUri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-os-disk-ddb3dd3b-dbb2-4845-97fb-20c8c720690f.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/907c9015-1f66-467f-b51d-8c9982df7ab5?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b2e7853c-a1e3-4358-9376-032814bbb968?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/907c9015-1f66-467f-b51d-8c9982df7ab5?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:25 GMT", + "date" : "Mon, 18 May 2020 12:24:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1116", + "content-length" : "1172", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11752", + "x-ms-ratelimit-remaining-subscription-reads" : "11873", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "762433af-b4b8-4600-8d7d-9aa4c8324a74", + "x-ms-correlation-request-id" : "86bad558-355d-4f7b-acb9-60a4c69f345f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092025Z:762433af-b4b8-4600-8d7d-9aa4c8324a74", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399971", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122403Z:86bad558-355d-4f7b-acb9-60a4c69f345f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "384cd620-4994-4570-a877-ad7ed3a3a5ed", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:19:55.1049577+00:00\",\r\n \"endTime\": \"2020-04-29T09:19:56.2768052+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ds-os-60230316\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-os-60230316\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\"sourceUri\":\"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-os-disk-e060ce3d-d443-4250-a27a-9f920b3994f7.vhd\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:19:55.3236753+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"563dffcc-f077-46d1-98c8-0f6bb979392e\"}}\r\n },\r\n \"name\": \"b2e7853c-a1e3-4358-9376-032814bbb968\"\r\n}" + "x-ms-request-id" : "cd54defa-eb7e-4827-a722-9e00735080ec", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:23:31.9940245+00:00\",\r\n \"endTime\": \"2020-05-18T12:23:33.4786218+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ds-os-02c72882\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-os-02c72882\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\"sourceUri\":\"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-os-disk-ddb3dd3b-dbb2-4845-97fb-20c8c720690f.vhd\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:23:32.1346715+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"8f99b2a2-dcb5-43fc-b908-990cf9c69459\"}}\r\n },\r\n \"name\": \"907c9015-1f66-467f-b51d-8c9982df7ab5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-os-60230316?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-os-02c72882?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:56 GMT", + "date" : "Mon, 18 May 2020 12:24:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1053", + "content-length" : "1131", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", + "x-ms-ratelimit-remaining-subscription-reads" : "11791", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "610ea177-7e70-4e69-84fa-949a2bad3dad", + "x-ms-correlation-request-id" : "4957cef1-6eec-4af5-a562-c1c492b6b53f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4972,Microsoft.Compute/LowCostGet30Min;39928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092056Z:610ea177-7e70-4e69-84fa-949a2bad3dad", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39938", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122434Z:4957cef1-6eec-4af5-a562-c1c492b6b53f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "863db035-a5b8-476c-bd5a-4cceb818f48e", - "Body" : "{\r\n \"name\": \"ds-os-60230316\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-os-60230316\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\r\n \"sourceUri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-os-disk-e060ce3d-d443-4250-a27a-9f920b3994f7.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:19:55.3236753+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"563dffcc-f077-46d1-98c8-0f6bb979392e\"\r\n }\r\n}" + "x-ms-request-id" : "1b4955e6-145d-4db7-ad43-e13cdb5d3840", + "Body" : "{\r\n \"name\": \"ds-os-02c72882\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-os-02c72882\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\r\n \"sourceUri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-os-disk-ddb3dd3b-dbb2-4845-97fb-20c8c720690f.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:23:32.1346715+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"8f99b2a2-dcb5-43fc-b908-990cf9c69459\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:00 GMT", + "date" : "Mon, 18 May 2020 12:24:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "613", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "61e6eeb7-b8a6-4b13-ad34-70a2b8024d1e", + "x-ms-correlation-request-id" : "86f4df88-5161-4fbc-82f2-3c479010293c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092100Z:61e6eeb7-b8a6-4b13-ad34-70a2b8024d1e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7990", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122438Z:86f4df88-5161-4fbc-82f2-3c479010293c", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e6e00ebf-a3bb-4ebc-9ada-51906826815a?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7155a870-6535-4765-aa93-63c763e94b7e?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e6e00ebf-a3bb-4ebc-9ada-51906826815a", - "Body" : "{\r\n \"name\": \"ds-data-325067-0\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\r\n \"sourceUri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-1-b55cac30-a9c6-4efb-8563-e5ea4eb17669.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e6e00ebf-a3bb-4ebc-9ada-51906826815a?api-version=2019-03-01" + "x-ms-request-id" : "7155a870-6535-4765-aa93-63c763e94b7e", + "Body" : "{\r\n \"name\": \"ds-data-402417-0\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\r\n \"sourceUri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-1-d61ca84a-ec87-4ac0-8ad6-24b23eb8b7be.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7155a870-6535-4765-aa93-63c763e94b7e?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e6e00ebf-a3bb-4ebc-9ada-51906826815a?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7155a870-6535-4765-aa93-63c763e94b7e?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:30 GMT", + "date" : "Mon, 18 May 2020 12:25:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1106", + "content-length" : "1163", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11767", + "x-ms-ratelimit-remaining-subscription-reads" : "11709", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6172b0c1-1da2-407a-bb2c-64f483e7a081", + "x-ms-correlation-request-id" : "d3a1dcc3-7862-4a17-9a52-598294e89f1a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092130Z:6172b0c1-1da2-407a-bb2c-64f483e7a081", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399957", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122509Z:d3a1dcc3-7862-4a17-9a52-598294e89f1a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f5fd2aeb-686d-4217-b6ee-90b7b6cda25d", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:21:00.105756+00:00\",\r\n \"endTime\": \"2020-04-29T09:21:00.6995262+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ds-data-325067-0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-0\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\"sourceUri\":\"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-1-b55cac30-a9c6-4efb-8563-e5ea4eb17669.vhd\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:21:00.1213791+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"9b8821e0-8b8f-4bfb-a605-f517b32a0577\"}}\r\n },\r\n \"name\": \"e6e00ebf-a3bb-4ebc-9ada-51906826815a\"\r\n}" + "x-ms-request-id" : "d516b0dd-219e-4367-83d5-1df52ee9ffe0", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:24:38.3555438+00:00\",\r\n \"endTime\": \"2020-05-18T12:24:39.4647625+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ds-data-402417-0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-0\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\"sourceUri\":\"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-1-d61ca84a-ec87-4ac0-8ad6-24b23eb8b7be.vhd\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:24:38.3710148+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"59baf21c-bbec-473d-bcad-423a218c2a62\"}}\r\n },\r\n \"name\": \"7155a870-6535-4765-aa93-63c763e94b7e\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:00 GMT", + "date" : "Mon, 18 May 2020 12:25:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1037", + "content-length" : "1115", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11666", + "x-ms-ratelimit-remaining-subscription-reads" : "11675", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "97aa1229-0f8a-4562-980d-213ad58655e2", + "x-ms-correlation-request-id" : "c70473fc-9f4b-4e41-852a-7b11f7feeca8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4963,Microsoft.Compute/LowCostGet30Min;39913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092201Z:97aa1229-0f8a-4562-980d-213ad58655e2", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4971,Microsoft.Compute/LowCostGet30Min;39921", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122539Z:c70473fc-9f4b-4e41-852a-7b11f7feeca8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e9ec58e6-f730-4ddc-8480-e87a09b75943", - "Body" : "{\r\n \"name\": \"ds-data-325067-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\r\n \"sourceUri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-1-b55cac30-a9c6-4efb-8563-e5ea4eb17669.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:21:00.1213791+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"9b8821e0-8b8f-4bfb-a605-f517b32a0577\"\r\n }\r\n}" + "x-ms-request-id" : "0fdd7fe2-5147-4486-977e-d0cc1a51c178", + "Body" : "{\r\n \"name\": \"ds-data-402417-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\r\n \"sourceUri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-1-d61ca84a-ec87-4ac0-8ad6-24b23eb8b7be.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:24:38.3710148+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"59baf21c-bbec-473d-bcad-423a218c2a62\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:06 GMT", + "date" : "Mon, 18 May 2020 12:25:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "613", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "55d56406-12c1-428e-afb6-72831de7039a", + "x-ms-correlation-request-id" : "db7060a4-ece9-4304-a07c-08053e991164", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092206Z:55d56406-12c1-428e-afb6-72831de7039a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122543Z:db7060a4-ece9-4304-a07c-08053e991164", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/62223737-a748-4e18-9275-6138155a8bbb?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ed94e54-a884-4333-a648-659aa001102f?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "62223737-a748-4e18-9275-6138155a8bbb", - "Body" : "{\r\n \"name\": \"ds-data-325067-1\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\r\n \"sourceUri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-2-55fc209c-e039-4111-bcbc-e9d8c13e60d8.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/62223737-a748-4e18-9275-6138155a8bbb?api-version=2019-03-01" + "x-ms-request-id" : "5ed94e54-a884-4333-a648-659aa001102f", + "Body" : "{\r\n \"name\": \"ds-data-402417-1\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\r\n \"sourceUri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-2-41b47e46-0275-43a4-8f54-45fac6b25535.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ed94e54-a884-4333-a648-659aa001102f?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/62223737-a748-4e18-9275-6138155a8bbb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5ed94e54-a884-4333-a648-659aa001102f?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:37 GMT", + "date" : "Mon, 18 May 2020 12:26:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1106", + "content-length" : "1163", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11669", + "x-ms-ratelimit-remaining-subscription-reads" : "11672", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fae5617a-0d7c-4663-94aa-9f5a6eb94881", + "x-ms-correlation-request-id" : "236f435d-1320-42e0-b67a-6140b23eefec", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092237Z:fae5617a-0d7c-4663-94aa-9f5a6eb94881", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49974,Microsoft.Compute/GetOperation30Min;399948", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122614Z:236f435d-1320-42e0-b67a-6140b23eefec", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "aa36475d-a581-4545-ba11-eb0e9eeb207b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:06.559148+00:00\",\r\n \"endTime\": \"2020-04-29T09:22:07.1841484+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ds-data-325067-1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-1\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\"sourceUri\":\"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-2-55fc209c-e039-4111-bcbc-e9d8c13e60d8.vhd\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:22:06.5747988+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"c9e4cc14-2f9e-4e4a-8ac6-7478ec5e905d\"}}\r\n },\r\n \"name\": \"62223737-a748-4e18-9275-6138155a8bbb\"\r\n}" + "x-ms-request-id" : "0f8d3db7-a9e4-49c4-84a2-2fdd651084f0", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:25:43.7464835+00:00\",\r\n \"endTime\": \"2020-05-18T12:25:44.5120873+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ds-data-402417-1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-1\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Import\",\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\"sourceUri\":\"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-2-41b47e46-0275-43a4-8f54-45fac6b25535.vhd\"},\"diskSizeGB\":150,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:25:43.7777347+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":161061273600,\"uniqueId\":\"a3c73546-e9c8-4570-98b7-adb27b59b555\"}}\r\n },\r\n \"name\": \"5ed94e54-a884-4333-a648-659aa001102f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:07 GMT", + "date" : "Mon, 18 May 2020 12:26:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1037", + "content-length" : "1115", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11662", + "x-ms-ratelimit-remaining-subscription-reads" : "11797", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "440f6ed8-a8a7-403f-b7ee-d7d5e553ad7d", + "x-ms-correlation-request-id" : "68642e16-9986-4f6e-9b8c-82f0d4dceb46", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4955,Microsoft.Compute/LowCostGet30Min;39895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092308Z:440f6ed8-a8a7-403f-b7ee-d7d5e553ad7d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4955,Microsoft.Compute/LowCostGet30Min;39901", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122645Z:68642e16-9986-4f6e-9b8c-82f0d4dceb46", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "81063708-57bf-47b4-9d05-2ae4aba2a205", - "Body" : "{\r\n \"name\": \"ds-data-325067-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\r\n \"sourceUri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-2-55fc209c-e039-4111-bcbc-e9d8c13e60d8.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:22:06.5747988+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"c9e4cc14-2f9e-4e4a-8ac6-7478ec5e905d\"\r\n }\r\n}" + "x-ms-request-id" : "248cceea-df9e-47f2-9aeb-a16755d84ce2", + "Body" : "{\r\n \"name\": \"ds-data-402417-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\r\n \"sourceUri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-2-41b47e46-0275-43a4-8f54-45fac6b25535.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:25:43.7777347+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"a3c73546-e9c8-4570-98b7-adb27b59b555\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet05576dd47d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet6547317486?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:14 GMT", + "date" : "Mon, 18 May 2020 12:26:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1349", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5562bff2-5881-452f-871d-bdbe93bf59b9", + "x-ms-correlation-request-id" : "30bb1f19-c7ef-4674-8577-a951d386f61d", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "21518044-9501-4c6e-935e-7af82432461f", + "x-ms-arm-service-request-id" : "b2d7b725-2f4f-4aba-b15a-bf2c37e7de99", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092315Z:5562bff2-5881-452f-871d-bdbe93bf59b9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122652Z:30bb1f19-c7ef-4674-8577-a951d386f61d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "914a3996-b25c-4fdc-b850-6ea5f9b3d212", - "Body" : "{\r\n \"name\": \"vnet05576dd47d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet05576dd47d\",\r\n \"etag\": \"W/\\\"938f17e0-f38e-4d6e-8910-6e187673d496\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6382c531-0f18-4a3c-9caa-b94f5a7086b1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet05576dd47d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"938f17e0-f38e-4d6e-8910-6e187673d496\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/914a3996-b25c-4fdc-b850-6ea5f9b3d212?api-version=2019-06-01" + "x-ms-request-id" : "b33cbab9-60aa-4f17-9d23-203568bf4ec7", + "Body" : "{\r\n \"name\": \"vnet6547317486\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet6547317486\",\r\n \"etag\": \"W/\\\"1c0827fb-d5c8-406a-a507-4c8b7b559a42\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"23e30d96-1e62-4421-ab1a-4759cf14c839\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet6547317486/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1c0827fb-d5c8-406a-a507-4c8b7b559a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b33cbab9-60aa-4f17-9d23-203568bf4ec7?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/914a3996-b25c-4fdc-b850-6ea5f9b3d212?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b33cbab9-60aa-4f17-9d23-203568bf4ec7?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:46 GMT", + "date" : "Mon, 18 May 2020 12:27:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11659", + "x-ms-ratelimit-remaining-subscription-reads" : "11854", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "774dd6d2-9020-4cbc-b895-9928e1422744", + "x-ms-correlation-request-id" : "20757557-4f81-49fd-b73c-ee8127dc3d5f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1acbac8e-e13c-4f84-a1f3-770c0f22f0d4", + "x-ms-arm-service-request-id" : "d4330f3b-0f80-4adf-b0fc-afae0f5ee205", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092346Z:774dd6d2-9020-4cbc-b895-9928e1422744", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122723Z:20757557-4f81-49fd-b73c-ee8127dc3d5f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e6fddcaf-702e-4f21-9c19-ba1e17eca44a", + "x-ms-request-id" : "d164c295-4954-4fe8-a9b4-85d862781423", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet05576dd47d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet6547317486?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:16 GMT", + "date" : "Mon, 18 May 2020 12:27:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1351", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11743", + "x-ms-ratelimit-remaining-subscription-reads" : "11848", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "39acee0f-994d-4e63-b38f-eef017f2c31c", + "x-ms-correlation-request-id" : "e8adb3a2-0ce8-41a3-98ff-5a8f3784ac59", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0050dc19-d6f9-480b-94d1-ba9eed5c93a4", + "x-ms-arm-service-request-id" : "8078fac2-85c1-48ca-91bb-38554caa0382", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092417Z:39acee0f-994d-4e63-b38f-eef017f2c31c", - "etag" : "W/\"df237aac-102a-490b-9f6b-1cb9d02c5267\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122753Z:e8adb3a2-0ce8-41a3-98ff-5a8f3784ac59", + "etag" : "W/\"5b164140-1590-4b75-bab5-2dee12d52015\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3e298325-a5a3-4b1a-9bfa-fe5c2fd00cf3", - "Body" : "{\r\n \"name\": \"vnet05576dd47d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet05576dd47d\",\r\n \"etag\": \"W/\\\"df237aac-102a-490b-9f6b-1cb9d02c5267\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6382c531-0f18-4a3c-9caa-b94f5a7086b1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet05576dd47d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"df237aac-102a-490b-9f6b-1cb9d02c5267\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "b5cda5b8-38cd-4c0e-b624-f346e9c43627", + "Body" : "{\r\n \"name\": \"vnet6547317486\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet6547317486\",\r\n \"etag\": \"W/\\\"5b164140-1590-4b75-bab5-2dee12d52015\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"23e30d96-1e62-4421-ab1a-4759cf14c839\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet6547317486/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5b164140-1590-4b75-bab5-2dee12d52015\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic617640c1056?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic406520ecbeb?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:22 GMT", + "date" : "Mon, 18 May 2020 12:27:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1642", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "48207509-9024-4c27-aad0-9149b063b0dc", + "x-ms-correlation-request-id" : "478473a4-3691-4513-8b3e-e6db98439438", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "41158e09-fb1b-4d0f-859d-350cd32364bb", + "x-ms-arm-service-request-id" : "172922d2-3726-4e7e-bfe7-1da01b563738", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092422Z:48207509-9024-4c27-aad0-9149b063b0dc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122759Z:478473a4-3691-4513-8b3e-e6db98439438", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b66cb762-b019-4c98-825c-39f8f96b2785", - "Body" : "{\r\n \"name\": \"nic617640c1056\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic617640c1056\",\r\n \"etag\": \"W/\\\"bfbbd83e-adc8-4515-a013-2c7ec716d22f\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c57f4de5-3bb8-4bd2-917a-6f401f8ad79f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic617640c1056/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"bfbbd83e-adc8-4515-a013-2c7ec716d22f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet05576dd47d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ghcyeyyyb24evhfkxfhvu2egwb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b66cb762-b019-4c98-825c-39f8f96b2785?api-version=2019-06-01" + "x-ms-request-id" : "0b01bd73-dae6-4f20-9b71-40a50b6afe3a", + "Body" : "{\r\n \"name\": \"nic406520ecbeb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic406520ecbeb\",\r\n \"etag\": \"W/\\\"ea14dfc2-2fc6-4c0f-beeb-cbeffe530f5d\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eedc1056-ebea-4bf3-8944-3207afa31145\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic406520ecbeb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ea14dfc2-2fc6-4c0f-beeb-cbeffe530f5d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet6547317486/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"syg4gi1cdyqujky0i3m24fgihb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0b01bd73-dae6-4f20-9b71-40a50b6afe3a?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b66cb762-b019-4c98-825c-39f8f96b2785?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0b01bd73-dae6-4f20-9b71-40a50b6afe3a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:52 GMT", + "date" : "Mon, 18 May 2020 12:28:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", + "x-ms-ratelimit-remaining-subscription-reads" : "11807", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5adee914-d1d1-4b80-a360-92314b6758f1", + "x-ms-correlation-request-id" : "0f9ca6f3-335c-4651-9167-6bb0ba93c157", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2282fceb-cabd-4a16-ad57-56875d5d6407", + "x-ms-arm-service-request-id" : "e64d2720-3311-4683-b2ac-2c56ef11df1d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092453Z:5adee914-d1d1-4b80-a360-92314b6758f1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122830Z:0f9ca6f3-335c-4651-9167-6bb0ba93c157", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e4e7550c-3711-4b77-86a7-17f18a058c62", + "x-ms-request-id" : "daa4db0e-d012-4aa7-b25b-f5c4a785ad06", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic617640c1056?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic406520ecbeb?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:24 GMT", + "date" : "Mon, 18 May 2020 12:29:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1642", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", + "x-ms-ratelimit-remaining-subscription-reads" : "11694", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b229e598-07a7-49d8-8179-1719ebec34cc", + "x-ms-correlation-request-id" : "11525860-9e1d-4ec9-909c-7c00d0d5bddf", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "780afc02-4309-4a2b-bc76-733b65e1603e", + "x-ms-arm-service-request-id" : "018f1c53-f613-41f3-89c8-f326eeece016", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092524Z:b229e598-07a7-49d8-8179-1719ebec34cc", - "etag" : "W/\"bfbbd83e-adc8-4515-a013-2c7ec716d22f\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122900Z:11525860-9e1d-4ec9-909c-7c00d0d5bddf", + "etag" : "W/\"ea14dfc2-2fc6-4c0f-beeb-cbeffe530f5d\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "11bc387d-5da0-434e-ba89-74cc76878ba0", - "Body" : "{\r\n \"name\": \"nic617640c1056\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic617640c1056\",\r\n \"etag\": \"W/\\\"bfbbd83e-adc8-4515-a013-2c7ec716d22f\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c57f4de5-3bb8-4bd2-917a-6f401f8ad79f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic617640c1056/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"bfbbd83e-adc8-4515-a013-2c7ec716d22f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/virtualNetworks/vnet05576dd47d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ghcyeyyyb24evhfkxfhvu2egwb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "0eb8ae61-90a0-48e4-ab4a-fae53d73d1e5", + "Body" : "{\r\n \"name\": \"nic406520ecbeb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic406520ecbeb\",\r\n \"etag\": \"W/\\\"ea14dfc2-2fc6-4c0f-beeb-cbeffe530f5d\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eedc1056-ebea-4bf3-8944-3207afa31145\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic406520ecbeb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ea14dfc2-2fc6-4c0f-beeb-cbeffe530f5d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/virtualNetworks/vnet6547317486/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"syg4gi1cdyqujky0i3m24fgihb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm26c57658006?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm25cb4161947?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:27 GMT", + "date" : "Mon, 18 May 2020 12:29:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2108", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f07b99f0-dac3-4223-a352-67444653a4eb", + "x-ms-correlation-request-id" : "a1e25a65-645b-4d52-83c3-2fa14c0bc36e", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1165", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122908Z:a1e25a65-645b-4d52-83c3-2fa14c0bc36e", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "ab4fc3d5-ae5a-4b8c-a0ac-26c1ec961ba6", + "Body" : "{\r\n \"name\": \"vm25cb4161947\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm25cb4161947\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d8802f6c-4d01-4705-af14-1f3793856fc4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-02c72882\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-os-02c72882\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds-data-402417-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-0\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"ds-data-402417-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-1\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic406520ecbeb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ab4fc3d5-ae5a-4b8c-a0ac-26c1ec961ba6?api-version=2019-03-01" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ab4fc3d5-ae5a-4b8c-a0ac-26c1ec961ba6?api-version=2019-03-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + }, + "Response" : { + "date" : "Mon, 18 May 2020 12:29:38 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11840", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b152a6aa-ecf0-4840-b8e8-bcd99db27743", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1170", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092528Z:f07b99f0-dac3-4223-a352-67444653a4eb", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29769", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122938Z:b152a6aa-ecf0-4840-b8e8-bcd99db27743", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5e7bbf17-d978-41c6-a877-47072f3df4d9", - "Body" : "{\r\n \"name\": \"vm26c57658006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm26c57658006\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ef754436-152e-4880-8545-213f6e326578\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-60230316\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-os-60230316\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds-data-325067-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-0\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"ds-data-325067-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-1\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic617640c1056\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e7bbf17-d978-41c6-a877-47072f3df4d9?api-version=2019-03-01" + "x-ms-request-id" : "7b02afee-abe8-42b6-8094-68d4cc1b024f", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:29:06.8612249+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ab4fc3d5-ae5a-4b8c-a0ac-26c1ec961ba6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e7bbf17-d978-41c6-a877-47072f3df4d9?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ab4fc3d5-ae5a-4b8c-a0ac-26c1ec961ba6?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:58 GMT", + "date" : "Mon, 18 May 2020 12:30:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", + "x-ms-ratelimit-remaining-subscription-reads" : "11803", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fdf338d5-775c-4d3c-98e0-23e0178fdb8f", + "x-ms-correlation-request-id" : "7ee7bb8b-311c-4c92-8a0b-2e787b9cfd2d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29711", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092559Z:fdf338d5-775c-4d3c-98e0-23e0178fdb8f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29761", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123009Z:7ee7bb8b-311c-4c92-8a0b-2e787b9cfd2d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d6eda486-b8c6-49f0-875f-70a886749594", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:25:26.7322486+00:00\",\r\n \"endTime\": \"2020-04-29T09:25:40.8418739+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5e7bbf17-d978-41c6-a877-47072f3df4d9\"\r\n}" + "x-ms-request-id" : "cbcafea8-c4c5-4d90-8c36-64b314e4bfee", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:29:06.8612249+00:00\",\r\n \"endTime\": \"2020-05-18T12:29:44.6112364+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ab4fc3d5-ae5a-4b8c-a0ac-26c1ec961ba6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm26c57658006?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm25cb4161947?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:29 GMT", + "date" : "Mon, 18 May 2020 12:30:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2109", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", + "x-ms-ratelimit-remaining-subscription-reads" : "11884", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "25681943-459b-46f3-9b50-fb915ecee518", + "x-ms-correlation-request-id" : "597cd03c-128b-4001-8b43-878b2c95de35", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31865", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092629Z:25681943-459b-46f3-9b50-fb915ecee518", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31828", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123039Z:597cd03c-128b-4001-8b43-878b2c95de35", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1801c782-9c35-4bba-a3d9-3007f5d0b3e0", - "Body" : "{\r\n \"name\": \"vm26c57658006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm26c57658006\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ef754436-152e-4880-8545-213f6e326578\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-60230316\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-os-60230316\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds-data-325067-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-0\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"ds-data-325067-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-1\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic617640c1056\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "dcf3061c-8b27-4d01-89c1-71c5e5e166da", + "Body" : "{\r\n \"name\": \"vm25cb4161947\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm25cb4161947\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d8802f6c-4d01-4705-af14-1f3793856fc4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-02c72882\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-os-02c72882\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds-data-402417-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-0\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"ds-data-402417-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-1\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic406520ecbeb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm26c57658006?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm25cb4161947?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:32 GMT", + "date" : "Mon, 18 May 2020 12:30:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2106", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eb1a924e-1588-4978-b350-4f137f24dd6f", + "x-ms-correlation-request-id" : "5e8fa076-2f97-48d8-b9f7-ce885fc68aaa", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1168", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092633Z:eb1a924e-1588-4978-b350-4f137f24dd6f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1164", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123044Z:5e8fa076-2f97-48d8-b9f7-ce885fc68aaa", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "81da754b-8d7d-4887-a01a-e9c71917d2ae", - "Body" : "{\r\n \"name\": \"vm26c57658006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm26c57658006\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ef754436-152e-4880-8545-213f6e326578\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-60230316\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-os-60230316\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds-data-325067-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-0\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"ds-data-325067-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-1\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": true\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic617640c1056\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/81da754b-8d7d-4887-a01a-e9c71917d2ae?api-version=2019-03-01" + "x-ms-request-id" : "9d2f507e-560c-4876-8ec0-52a20a31d32c", + "Body" : "{\r\n \"name\": \"vm25cb4161947\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm25cb4161947\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d8802f6c-4d01-4705-af14-1f3793856fc4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-02c72882\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-os-02c72882\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds-data-402417-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-0\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"ds-data-402417-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-1\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": true\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic406520ecbeb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9d2f507e-560c-4876-8ec0-52a20a31d32c?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm26c57658006?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm25cb4161947?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:02 GMT", + "date" : "Mon, 18 May 2020 12:31:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1172", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11646", + "x-ms-ratelimit-remaining-subscription-reads" : "11684", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fe18742d-6f80-4c7d-848c-92fd92e8ff3f", + "x-ms-correlation-request-id" : "368ff423-5fbb-472d-bc29-25971f146213", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31858", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092703Z:fe18742d-6f80-4c7d-848c-92fd92e8ff3f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3961,Microsoft.Compute/LowCostGet30Min;31817", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123115Z:368ff423-5fbb-472d-bc29-25971f146213", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ced8dea0-58ce-4373-a046-6c36ecdca60e", - "Body" : "{\r\n \"name\": \"vm26c57658006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/virtualMachines/vm26c57658006\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ef754436-152e-4880-8545-213f6e326578\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-60230316\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-os-60230316\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Network/networkInterfaces/nic617640c1056\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "4ade4e3f-fd08-4cdf-a35a-1938f0e6e331", + "Body" : "{\r\n \"name\": \"vm25cb4161947\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/virtualMachines/vm25cb4161947\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d8802f6c-4d01-4705-af14-1f3793856fc4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-02c72882\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-os-02c72882\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Network/networkInterfaces/nic406520ecbeb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-0?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:34 GMT", + "date" : "Mon, 18 May 2020 12:31:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1037", + "content-length" : "1115", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", + "x-ms-ratelimit-remaining-subscription-reads" : "11798", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "82442879-d0f7-4aeb-8ab7-912cdaa1bbff", + "x-ms-correlation-request-id" : "94f2947d-5ad7-40f2-818b-1c1a883e4fa8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39863", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092734Z:82442879-d0f7-4aeb-8ab7-912cdaa1bbff", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39837", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123146Z:94f2947d-5ad7-40f2-818b-1c1a883e4fa8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a7af43d2-4e85-4912-b25c-7a257e91e330", - "Body" : "{\r\n \"name\": \"ds-data-325067-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\r\n \"sourceUri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-1-b55cac30-a9c6-4efb-8563-e5ea4eb17669.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:21:00.1213791+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"9b8821e0-8b8f-4bfb-a605-f517b32a0577\"\r\n }\r\n}" + "x-ms-request-id" : "6283143b-10f2-488f-8045-bfa01aab902b", + "Body" : "{\r\n \"name\": \"ds-data-402417-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\r\n \"sourceUri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-1-d61ca84a-ec87-4ac0-8ad6-24b23eb8b7be.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:24:38.3710148+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"59baf21c-bbec-473d-bcad-423a218c2a62\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-0/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-0/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:35 GMT", + "date" : "Mon, 18 May 2020 12:31:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "752a79a8-5e7f-416a-8a10-3f21bb559d87", + "x-ms-correlation-request-id" : "75a8c81e-d283-45a4-8ea6-737bc0c885d9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;999,Microsoft.Compute/HighCostDiskHydrate30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092735Z:752a79a8-5e7f-416a-8a10-3f21bb559d87", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/742e37ff-a9ad-40d6-b2e3-dc2d5f63381a?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123147Z:75a8c81e-d283-45a4-8ea6-737bc0c885d9", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/459e70e2-57ee-4195-ab79-ebf4edc44d01?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "742e37ff-a9ad-40d6-b2e3-dc2d5f63381a", + "x-ms-request-id" : "459e70e2-57ee-4195-ab79-ebf4edc44d01", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/742e37ff-a9ad-40d6-b2e3-dc2d5f63381a?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/459e70e2-57ee-4195-ab79-ebf4edc44d01?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/742e37ff-a9ad-40d6-b2e3-dc2d5f63381a?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/459e70e2-57ee-4195-ab79-ebf4edc44d01?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:06 GMT", + "date" : "Mon, 18 May 2020 12:32:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "425", + "content-length" : "426", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11781", + "x-ms-ratelimit-remaining-subscription-reads" : "11867", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "51341568-1198-4062-a114-94dba2b149a8", + "x-ms-correlation-request-id" : "742ef39b-d25a-4ccc-a281-eb6015a9f34e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092806Z:51341568-1198-4062-a114-94dba2b149a8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399912", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123218Z:742ef39b-d25a-4ccc-a281-eb6015a9f34e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "552b4752-62e6-4324-84fe-1c5157463a63", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:27:35.7315083+00:00\",\r\n \"endTime\": \"2020-04-29T09:27:35.9190057+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-dp1j2hwzmgwm.z7.blob.storage.azure.net/qcdgl25vxwqp/abcd?sv=2017-04-17&sr=b&si=df6c1ffd-ec33-4825-8010-18780ec11fcf&sig=o04XQyd3blvGrvbVhjG6ZheKWeaobEo5C5HZHGMT80I%3D\"\r\n}\r\n },\r\n \"name\": \"742e37ff-a9ad-40d6-b2e3-dc2d5f63381a\"\r\n}" + "x-ms-request-id" : "74382376-c013-401d-8cb5-2535a80646cf", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:31:47.2163786+00:00\",\r\n \"endTime\": \"2020-05-18T12:31:47.4195285+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-jttsnpfbg5m1.z30.blob.storage.azure.net/t4x0x4v5nkfv/abcd?sv=2017-04-17&sr=b&si=b118d1c3-0516-433b-8dbb-62caa2c128d1&sig=9yteimeXm281P9ND9FhFw1D4kg09BFlcscEGcADGx8I%3D\"\r\n}\r\n },\r\n \"name\": \"459e70e2-57ee-4195-ab79-ebf4edc44d01\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/742e37ff-a9ad-40d6-b2e3-dc2d5f63381a?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/459e70e2-57ee-4195-ab79-ebf4edc44d01?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:37 GMT", + "date" : "Mon, 18 May 2020 12:32:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "200", + "content-length" : "201", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11732", + "x-ms-ratelimit-remaining-subscription-reads" : "11643", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4f9010ff-25d3-4c3e-a148-d98cc169bab4", + "x-ms-correlation-request-id" : "ba094bf2-edc0-47c4-b663-a1fb8510b74f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092837Z:4f9010ff-25d3-4c3e-a148-d98cc169bab4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49981,Microsoft.Compute/GetOperation30Min;399904", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123249Z:ba094bf2-edc0-47c4-b663-a1fb8510b74f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "793d8634-3de8-4104-a7a8-966fea7c8027", - "Body" : "{\r\n \"accessSAS\": \"https://md-dp1j2hwzmgwm.z7.blob.storage.azure.net/qcdgl25vxwqp/abcd?sv=2017-04-17&sr=b&si=df6c1ffd-ec33-4825-8010-18780ec11fcf&sig=o04XQyd3blvGrvbVhjG6ZheKWeaobEo5C5HZHGMT80I%3D\"\r\n}" + "x-ms-request-id" : "d80fd84c-eac7-4f66-a810-eeb03be32db8", + "Body" : "{\r\n \"accessSAS\": \"https://md-jttsnpfbg5m1.z30.blob.storage.azure.net/t4x0x4v5nkfv/abcd?sv=2017-04-17&sr=b&si=b118d1c3-0516-433b-8dbb-62caa2c128d1&sig=9yteimeXm281P9ND9FhFw1D4kg09BFlcscEGcADGx8I%3D\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-1?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:37 GMT", + "date" : "Mon, 18 May 2020 12:32:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1037", + "content-length" : "1115", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11641", + "x-ms-ratelimit-remaining-subscription-reads" : "11734", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a249fca1-8e4e-429c-9a32-a940a75f56b9", + "x-ms-correlation-request-id" : "c4f8fea4-e823-4f55-bff1-8fb34a10fc5c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39853", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092838Z:a249fca1-8e4e-429c-9a32-a940a75f56b9", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39830", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123250Z:c4f8fea4-e823-4f55-bff1-8fb34a10fc5c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9c3b07fa-2767-4ec7-9dd9-142983feb83d", - "Body" : "{\r\n \"name\": \"ds-data-325067-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940/providers/Microsoft.Storage/storageAccounts/stg8078737703\",\r\n \"sourceUri\": \"https://stg8078737703.blob.core.windows.net/vhds/vm128440373c2-data-disk-2-55fc209c-e039-4111-bcbc-e9d8c13e60d8.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:22:06.5747988+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"c9e4cc14-2f9e-4e4a-8ac6-7478ec5e905d\"\r\n }\r\n}" + "x-ms-request-id" : "1745e1f5-7ba0-4a6e-8d80-5c16b9b34bb3", + "Body" : "{\r\n \"name\": \"ds-data-402417-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409/providers/Microsoft.Storage/storageAccounts/stg28e88307dd\",\r\n \"sourceUri\": \"https://stg28e88307dd.blob.core.windows.net/vhds/vm10090028316-data-disk-2-41b47e46-0275-43a4-8f54-45fac6b25535.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:25:43.7777347+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"a3c73546-e9c8-4570-98b7-adb27b59b555\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvadc15940/providers/Microsoft.Compute/disks/ds-data-325067-1/beginGetAccess?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5ba14409/providers/Microsoft.Compute/disks/ds-data-402417-1/beginGetAccess?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:38 GMT", + "date" : "Mon, 18 May 2020 12:32:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b2391dec-92ae-48a7-8a2b-662ad9f6adf9", + "x-ms-correlation-request-id" : "786ed357-9cf7-4ba4-8f4d-99b7a854823f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;998,Microsoft.Compute/HighCostDiskHydrate30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092838Z:b2391dec-92ae-48a7-8a2b-662ad9f6adf9", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/18455dac-b912-408d-a02f-c0d647f44887?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123251Z:786ed357-9cf7-4ba4-8f4d-99b7a854823f", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d53c21ba-f2cb-47b3-821b-b2408584e335?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "18455dac-b912-408d-a02f-c0d647f44887", + "x-ms-request-id" : "d53c21ba-f2cb-47b3-821b-b2408584e335", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/18455dac-b912-408d-a02f-c0d647f44887?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d53c21ba-f2cb-47b3-821b-b2408584e335?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/18455dac-b912-408d-a02f-c0d647f44887?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d53c21ba-f2cb-47b3-821b-b2408584e335?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:09 GMT", + "date" : "Mon, 18 May 2020 12:33:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "427", + "content-length" : "425", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", + "x-ms-ratelimit-remaining-subscription-reads" : "11641", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8b5ecdcb-73b9-4e70-8922-cdb2d10aec0d", + "x-ms-correlation-request-id" : "767e9f64-c1c4-4303-a279-6649feede081", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092909Z:8b5ecdcb-73b9-4e70-8922-cdb2d10aec0d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49978,Microsoft.Compute/GetOperation30Min;399901", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123321Z:767e9f64-c1c4-4303-a279-6649feede081", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c99f04b0-4a85-44f5-bccb-f3e48bf29536", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:28:38.7002987+00:00\",\r\n \"endTime\": \"2020-04-29T09:28:38.8877957+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-dp1j2hwzmgwm.z7.blob.storage.azure.net/gxjq0ccr5w4n/abcd?sv=2017-04-17&sr=b&si=2b075c70-aae4-4471-ab63-36129117e13e&sig=Qhk%2FRhzPwju1Vus9kVMzfceHMAokNC8kwNVWtdBjuiM%3D\"\r\n}\r\n },\r\n \"name\": \"18455dac-b912-408d-a02f-c0d647f44887\"\r\n}" + "x-ms-request-id" : "87d1c2ee-e3a6-4a32-8f25-837f5229a046", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:32:50.8726485+00:00\",\r\n \"endTime\": \"2020-05-18T12:32:51.060155+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-jttsnpfbg5m1.z30.blob.storage.azure.net/d10crj44smhh/abcd?sv=2017-04-17&sr=b&si=c424d3c8-75d9-4cec-97e4-260db921f289&sig=qHUP1ebE5oD9VWcPMArDNNuyPhONIXmOzAGJCMy9TW0%3D\"\r\n}\r\n },\r\n \"name\": \"d53c21ba-f2cb-47b3-821b-b2408584e335\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/18455dac-b912-408d-a02f-c0d647f44887?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d53c21ba-f2cb-47b3-821b-b2408584e335?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:40 GMT", + "date" : "Mon, 18 May 2020 12:33:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "202", + "content-length" : "201", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", + "x-ms-ratelimit-remaining-subscription-reads" : "11780", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d5b686ec-d03c-4b3a-9ae2-08d2c0e8c521", + "x-ms-correlation-request-id" : "31278fcb-e0f7-492a-9161-5fa7c0f519d4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092941Z:d5b686ec-d03c-4b3a-9ae2-08d2c0e8c521", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49976,Microsoft.Compute/GetOperation30Min;399899", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123352Z:31278fcb-e0f7-492a-9161-5fa7c0f519d4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b0cbdda3-e8d7-4269-b56e-7cd7d3c99858", - "Body" : "{\r\n \"accessSAS\": \"https://md-dp1j2hwzmgwm.z7.blob.storage.azure.net/gxjq0ccr5w4n/abcd?sv=2017-04-17&sr=b&si=2b075c70-aae4-4471-ab63-36129117e13e&sig=Qhk%2FRhzPwju1Vus9kVMzfceHMAokNC8kwNVWtdBjuiM%3D\"\r\n}" + "x-ms-request-id" : "dc967df8-bdfb-46a3-9fd2-60f81199575c", + "Body" : "{\r\n \"accessSAS\": \"https://md-jttsnpfbg5m1.z30.blob.storage.azure.net/d10crj44smhh/abcd?sv=2017-04-17&sr=b&si=c424d3c8-75d9-4cec-97e4-260db921f289&sig=qHUP1ebE5oD9VWcPMArDNNuyPhONIXmOzAGJCMy9TW0%3D\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvadc15940?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5ba14409?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:45 GMT", + "date" : "Mon, 18 May 2020 12:33:56 GMT", "content-length" : "0", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6f963b78-cf88-4ae7-ada2-84dabc94a36e", + "x-ms-correlation-request-id" : "d0d484c4-2cfa-4e39-a9ba-3b187d2fea50", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092945Z:6f963b78-cf88-4ae7-ada2-84dabc94a36e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBREMxNTk0MC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123356Z:d0d484c4-2cfa-4e39-a9ba-3b187d2fea50", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY1QkExNDQwOS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "6f963b78-cf88-4ae7-ada2-84dabc94a36e", + "x-ms-request-id" : "d0d484c4-2cfa-4e39-a9ba-3b187d2fea50", "Body" : "" } } ], - "variables" : [ "vm128440373c2", "vm26c57658006", "ds-os-60230316", "ds-data-325067", "rgcomvadc15940", "pipc69641842a", "stg8078737703", "nic18087d157cb", "vnet93253fcff2", "pip16330d1c", "nic617640c1056", "vnet05576dd47d" ] + "variables" : [ "vm10090028316", "vm25cb4161947", "ds-os-02c72882", "ds-data-402417", "rgcomv5ba14409", "pipad6463534d", "stg28e88307dd", "nic468154c1fff", "vnet98594e8b2f", "pip5308256e", "nic406520ecbeb", "vnet6547317486" ] } \ No newline at end of file diff --git a/sdk/management/samples/src/test/resources/session-records/testManageManagedDisks.json b/sdk/management/samples/src/test/resources/session-records/testManageManagedDisks.json index bb03395efc58..5d1d8098bf64 100644 --- a/sdk/management/samples/src/test/resources/session-records/testManageManagedDisks.json +++ b/sdk/management/samples/src/test/resources/session-records/testManageManagedDisks.json @@ -1,794 +1,794 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvfda50287?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv39280115?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:57:24 GMT", - "content-length" : "323", + "date" : "Mon, 18 May 2020 11:02:38 GMT", + "content-length" : "317", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4effad68-8c59-49c1-ad31-486e988e5154", + "x-ms-correlation-request-id" : "d2c47cdf-a3db-4479-9ab4-8661a5b57899", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095725Z:4effad68-8c59-49c1-ad31-486e988e5154", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110239Z:d2c47cdf-a3db-4479-9ab4-8661a5b57899", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4effad68-8c59-49c1-ad31-486e988e5154", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287\",\"name\":\"rgcomvfda50287\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-04-29T09:57:21.886514300Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "d2c47cdf-a3db-4479-9ab4-8661a5b57899", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115\",\"name\":\"rgcomv39280115\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-05-18T11:02:35.506Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet7116832a39?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip96282519?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:57:32 GMT", + "date" : "Mon, 18 May 2020 11:02:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "1350", + "content-length" : "774", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f164b6fa-30d1-4d2b-90e3-0e4ded8d7d54", + "x-ms-correlation-request-id" : "07d90eda-4618-4256-a938-00a3fd3aa4ed", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6a363852-51c2-4b23-a6e4-89fb764e178a", + "x-ms-arm-service-request-id" : "8c6a06fe-2c37-4949-8d74-1ed94d7a104a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095732Z:f164b6fa-30d1-4d2b-90e3-0e4ded8d7d54", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110248Z:07d90eda-4618-4256-a938-00a3fd3aa4ed", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2330d983-efe0-49cb-a451-cb64b090884d", - "Body" : "{\r\n \"name\": \"vnet7116832a39\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet7116832a39\",\r\n \"etag\": \"W/\\\"2e95583f-9c12-4ae3-9f98-63469426287e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6025b6b7-ac36-462b-9b2e-b89805b6c2bc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet7116832a39/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2e95583f-9c12-4ae3-9f98-63469426287e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2330d983-efe0-49cb-a451-cb64b090884d?api-version=2019-06-01" + "x-ms-request-id" : "750e0894-9b78-4e7c-87a3-93dfd8fa36fa", + "Body" : "{\r\n \"name\": \"pip96282519\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip96282519\",\r\n \"etag\": \"W/\\\"7e6e0ed4-7baf-4f7d-9e29-7b880fad35b9\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9ebba5db-92cc-45e0-a574-010b2603fe3a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-20085187d42\",\r\n \"fqdn\": \"pip-20085187d42.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/750e0894-9b78-4e7c-87a3-93dfd8fa36fa?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip58471db8?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet35249dee91?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:57:32 GMT", + "date" : "Mon, 18 May 2020 11:02:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "774", + "content-length" : "1350", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4a7a87e3-b272-48bb-8932-d69decb2536d", + "x-ms-correlation-request-id" : "0fd3d0d0-d7a5-4dd8-a339-17335ba00ade", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b98fd9df-de11-40c1-a7b3-4235168eb1c0", + "x-ms-arm-service-request-id" : "c306443c-a738-435b-9ac9-cdacd9ef8d5d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095732Z:4a7a87e3-b272-48bb-8932-d69decb2536d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110248Z:0fd3d0d0-d7a5-4dd8-a339-17335ba00ade", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "529cf33c-7dc4-4c94-b24d-6a0248710eb2", - "Body" : "{\r\n \"name\": \"pip58471db8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip58471db8\",\r\n \"etag\": \"W/\\\"aa67ad65-0ff2-4456-b626-643470c521b4\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0eb61431-120c-4e6c-af67-007122eb2c97\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-bdd74719d52\",\r\n \"fqdn\": \"pip-bdd74719d52.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/529cf33c-7dc4-4c94-b24d-6a0248710eb2?api-version=2019-06-01" + "x-ms-request-id" : "e69bff46-b691-4f2d-80d7-1a9061a613fc", + "Body" : "{\r\n \"name\": \"vnet35249dee91\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet35249dee91\",\r\n \"etag\": \"W/\\\"cf51afbe-39b0-49ae-9aaa-70eace1c8d5a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1ad21516-c34f-455e-93cb-e3d8ba7a98b1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet35249dee91/subnets/subnet1\",\r\n \"etag\": \"W/\\\"cf51afbe-39b0-49ae-9aaa-70eace1c8d5a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e69bff46-b691-4f2d-80d7-1a9061a613fc?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2330d983-efe0-49cb-a451-cb64b090884d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e69bff46-b691-4f2d-80d7-1a9061a613fc?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:58:03 GMT", + "date" : "Mon, 18 May 2020 11:03:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e64fab97-0046-43c6-936a-a9cbab016343", + "x-ms-correlation-request-id" : "e2be15c7-e9b0-44f8-bfac-3f07b81445c0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "42de5c2c-7b79-492f-bc61-a91a51663929", + "x-ms-arm-service-request-id" : "893f9a43-9d66-472d-af81-9c2113ec08ea", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095803Z:e64fab97-0046-43c6-936a-a9cbab016343", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110319Z:e2be15c7-e9b0-44f8-bfac-3f07b81445c0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3d10812d-1eae-4830-87e5-5eb3d7442935", + "x-ms-request-id" : "b825e982-9dd4-4c4c-9690-f9bc89ab8d39", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/529cf33c-7dc4-4c94-b24d-6a0248710eb2?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/750e0894-9b78-4e7c-87a3-93dfd8fa36fa?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:58:03 GMT", + "date" : "Mon, 18 May 2020 11:03:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1712cc15-2536-47e7-b474-39f6659f03e3", + "x-ms-correlation-request-id" : "c003f757-e70a-4410-899e-1f6e066cf038", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ee25f09e-4790-4a80-93d7-9e3ba7d5040a", + "x-ms-arm-service-request-id" : "d9cf8642-a3e5-47fb-9c8a-f1aa130a9b7d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095804Z:1712cc15-2536-47e7-b474-39f6659f03e3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110319Z:c003f757-e70a-4410-899e-1f6e066cf038", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0fa5edf2-8f29-4434-934d-ffe675a7818b", + "x-ms-request-id" : "9a31a460-9164-4308-a9fc-14f116257f55", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip58471db8?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet35249dee91?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:58:34 GMT", + "date" : "Mon, 18 May 2020 11:03:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "775", + "content-length" : "1352", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a83f7e00-bf4e-4b2f-9440-82c5b48dfd45", + "x-ms-correlation-request-id" : "c23d5b23-8336-409a-855f-dbbf1bd40718", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "752b210f-94d8-46fe-938b-4e389abfa3f4", + "x-ms-arm-service-request-id" : "2fe8ca9b-9787-47b9-81db-98b99987a2a1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095834Z:a83f7e00-bf4e-4b2f-9440-82c5b48dfd45", - "etag" : "W/\"fd7bdb6f-6e0a-4ff6-befb-983fd1a43e33\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110349Z:c23d5b23-8336-409a-855f-dbbf1bd40718", + "etag" : "W/\"373babdf-1b2f-4cee-84e2-c716f38ef083\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "96ee8cdc-5906-4400-8d67-fe9bb43ed66a", - "Body" : "{\r\n \"name\": \"pip58471db8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip58471db8\",\r\n \"etag\": \"W/\\\"fd7bdb6f-6e0a-4ff6-befb-983fd1a43e33\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0eb61431-120c-4e6c-af67-007122eb2c97\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-bdd74719d52\",\r\n \"fqdn\": \"pip-bdd74719d52.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "662da499-489e-4453-8d8a-8761b939b9de", + "Body" : "{\r\n \"name\": \"vnet35249dee91\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet35249dee91\",\r\n \"etag\": \"W/\\\"373babdf-1b2f-4cee-84e2-c716f38ef083\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ad21516-c34f-455e-93cb-e3d8ba7a98b1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet35249dee91/subnets/subnet1\",\r\n \"etag\": \"W/\\\"373babdf-1b2f-4cee-84e2-c716f38ef083\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet7116832a39?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip96282519?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:58:34 GMT", + "date" : "Mon, 18 May 2020 11:03:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1352", + "content-length" : "775", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8c5281fc-1b7a-4db7-acc7-47c68b104de5", + "x-ms-correlation-request-id" : "b652ad20-749e-418b-ade1-adf8cc7f74f9", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "47b439e8-43ff-488e-8dfd-bc7469fea570", + "x-ms-arm-service-request-id" : "8c0655d0-9bbb-44cf-90f0-5ab9d13a89b4", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095834Z:8c5281fc-1b7a-4db7-acc7-47c68b104de5", - "etag" : "W/\"75c4789d-d424-4f4c-9aab-a52a43a1ee1c\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110349Z:b652ad20-749e-418b-ade1-adf8cc7f74f9", + "etag" : "W/\"94777bb1-459c-4698-a0b5-4e6c0f21afa6\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c6a8194e-87c3-4927-8e2d-54c1053f04aa", - "Body" : "{\r\n \"name\": \"vnet7116832a39\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet7116832a39\",\r\n \"etag\": \"W/\\\"75c4789d-d424-4f4c-9aab-a52a43a1ee1c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6025b6b7-ac36-462b-9b2e-b89805b6c2bc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet7116832a39/subnets/subnet1\",\r\n \"etag\": \"W/\\\"75c4789d-d424-4f4c-9aab-a52a43a1ee1c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "59b3181a-a56a-4df2-aa20-807b5b2cc11b", + "Body" : "{\r\n \"name\": \"pip96282519\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip96282519\",\r\n \"etag\": \"W/\\\"94777bb1-459c-4698-a0b5-4e6c0f21afa6\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9ebba5db-92cc-45e0-a574-010b2603fe3a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-20085187d42\",\r\n \"fqdn\": \"pip-20085187d42.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic370777f12e2?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic307722d9955?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:58:41 GMT", + "date" : "Mon, 18 May 2020 11:03:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1850", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "36b1bd16-cde6-4e07-81ff-870e6f5cea11", + "x-ms-correlation-request-id" : "f1d3d54c-3767-4f40-b6b0-d9f2f8bf1e50", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e4607a95-9dd9-4936-8d78-4e075b6b7b0b", + "x-ms-arm-service-request-id" : "33d0ef70-60af-419a-83b9-2405793eecbb", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095841Z:36b1bd16-cde6-4e07-81ff-870e6f5cea11", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110356Z:f1d3d54c-3767-4f40-b6b0-d9f2f8bf1e50", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b8567aed-a5d9-4d73-9312-d445f4d7fc7e", - "Body" : "{\r\n \"name\": \"nic370777f12e2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic370777f12e2\",\r\n \"etag\": \"W/\\\"7a4fc674-4e4f-4d2f-92fb-bf281475a314\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4fe962b-cd06-4fb8-9eb7-c11d39d85ed4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic370777f12e2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7a4fc674-4e4f-4d2f-92fb-bf281475a314\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip58471db8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet7116832a39/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"w41ckybwvqvungzoxcmalnwcxe.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b8567aed-a5d9-4d73-9312-d445f4d7fc7e?api-version=2019-06-01" + "x-ms-request-id" : "000b2a50-84aa-4ab9-ba8f-0e681951f6fc", + "Body" : "{\r\n \"name\": \"nic307722d9955\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic307722d9955\",\r\n \"etag\": \"W/\\\"c11fdb1c-2f3d-4eb5-bea6-3c8ef17f0da3\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30a4dc49-85f3-448e-8a1d-c360949b753f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic307722d9955/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c11fdb1c-2f3d-4eb5-bea6-3c8ef17f0da3\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip96282519\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet35249dee91/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cyk3egspynpele4l2pmlu4uywb.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/000b2a50-84aa-4ab9-ba8f-0e681951f6fc?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b8567aed-a5d9-4d73-9312-d445f4d7fc7e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/000b2a50-84aa-4ab9-ba8f-0e681951f6fc?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:59:11 GMT", + "date" : "Mon, 18 May 2020 11:04:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11850", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3d989d9b-7d8e-4194-9fed-2b65b383280d", + "x-ms-correlation-request-id" : "35f9e696-9b3c-4e34-bc54-8710fa2ede3b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "75a667ff-3db6-4b04-8ab9-a3a4d4408178", + "x-ms-arm-service-request-id" : "8a34d2a6-aa87-4c1a-a91f-3b6eb8375199", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095912Z:3d989d9b-7d8e-4194-9fed-2b65b383280d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110427Z:35f9e696-9b3c-4e34-bc54-8710fa2ede3b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ca34429d-c21f-41ad-ab57-f381770b0fa9", + "x-ms-request-id" : "21273d23-5f2b-475b-acb9-c6b0a0fd14fd", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic370777f12e2?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic307722d9955?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:59:42 GMT", + "date" : "Mon, 18 May 2020 11:04:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1850", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5368c88c-df47-4764-a353-c061cd94d351", + "x-ms-correlation-request-id" : "6399c0fa-93c6-477e-8425-75dbbf4632a5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d99067d6-c5c8-462b-8afb-bf5797567f07", + "x-ms-arm-service-request-id" : "428288d2-a298-4b33-9e57-e6cd3d35725e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095943Z:5368c88c-df47-4764-a353-c061cd94d351", - "etag" : "W/\"7a4fc674-4e4f-4d2f-92fb-bf281475a314\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110457Z:6399c0fa-93c6-477e-8425-75dbbf4632a5", + "etag" : "W/\"c11fdb1c-2f3d-4eb5-bea6-3c8ef17f0da3\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1090202a-79e8-4232-8f4d-e7bd3bdd26c4", - "Body" : "{\r\n \"name\": \"nic370777f12e2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic370777f12e2\",\r\n \"etag\": \"W/\\\"7a4fc674-4e4f-4d2f-92fb-bf281475a314\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4fe962b-cd06-4fb8-9eb7-c11d39d85ed4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic370777f12e2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7a4fc674-4e4f-4d2f-92fb-bf281475a314\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip58471db8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet7116832a39/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"w41ckybwvqvungzoxcmalnwcxe.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "d441a294-30be-4447-a671-d818cd243b99", + "Body" : "{\r\n \"name\": \"nic307722d9955\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic307722d9955\",\r\n \"etag\": \"W/\\\"c11fdb1c-2f3d-4eb5-bea6-3c8ef17f0da3\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30a4dc49-85f3-448e-8a1d-c360949b753f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic307722d9955/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c11fdb1c-2f3d-4eb5-bea6-3c8ef17f0da3\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip96282519\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet35249dee91/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cyk3egspynpele4l2pmlu4uywb.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-d0009363e98?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-22894422b08?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:59:49 GMT", + "date" : "Mon, 18 May 2020 11:05:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2360", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c542750d-6fec-476b-b9c5-c81be824c01e", + "x-ms-correlation-request-id" : "d52afe4e-b1c9-4dff-badf-757405235213", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T095950Z:c542750d-6fec-476b-b9c5-c81be824c01e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110505Z:d52afe4e-b1c9-4dff-badf-757405235213", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3d6c980b-493d-464a-a51f-48e33b035ad1", - "Body" : "{\r\n \"name\": \"vm-d0009363e98\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-d0009363e98\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"40c986c6-42c7-46eb-ab95-716b59837bb0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-d0009363e98\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic370777f12e2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3d6c980b-493d-464a-a51f-48e33b035ad1?api-version=2019-03-01" + "x-ms-request-id" : "f58440e7-da98-4d56-936f-9cb0eb987923", + "Body" : "{\r\n \"name\": \"vm-22894422b08\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-22894422b08\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"35abdd12-f6b9-441f-81e9-1a17e1a3bc66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-22894422b08\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic307722d9955\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f58440e7-da98-4d56-936f-9cb0eb987923?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3d6c980b-493d-464a-a51f-48e33b035ad1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f58440e7-da98-4d56-936f-9cb0eb987923?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:00:21 GMT", + "date" : "Mon, 18 May 2020 11:05:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "81bc2b5d-0e12-4277-b055-a487deeab9a2", + "x-ms-correlation-request-id" : "743ffefb-dacd-4dd8-b253-3031dd3e541c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100021Z:81bc2b5d-0e12-4277-b055-a487deeab9a2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110536Z:743ffefb-dacd-4dd8-b253-3031dd3e541c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d1c1409b-6a91-4962-bd1e-af1298c13a17", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:59:47.9949395+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d6c980b-493d-464a-a51f-48e33b035ad1\"\r\n}" + "x-ms-request-id" : "43562034-33a9-4f8f-b09f-c9c4e0196629", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:05:03.6855538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f58440e7-da98-4d56-936f-9cb0eb987923\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3d6c980b-493d-464a-a51f-48e33b035ad1?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f58440e7-da98-4d56-936f-9cb0eb987923?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:00:52 GMT", + "date" : "Mon, 18 May 2020 11:06:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "44c87af1-d8ec-4f2d-9823-67ae93ea874a", + "x-ms-correlation-request-id" : "56dd3a0a-ce6f-45dd-a409-d96d8e4b968d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100052Z:44c87af1-d8ec-4f2d-9823-67ae93ea874a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110606Z:56dd3a0a-ce6f-45dd-a409-d96d8e4b968d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0610b805-4060-4e62-a0bc-e701f439d36e", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:59:47.9949395+00:00\",\r\n \"endTime\": \"2020-04-29T10:00:51.2933657+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3d6c980b-493d-464a-a51f-48e33b035ad1\"\r\n}" + "x-ms-request-id" : "9dabee4a-f803-4416-8ecf-8dd7aa2ea25e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:05:03.6855538+00:00\",\r\n \"endTime\": \"2020-05-18T11:06:05.7503589+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f58440e7-da98-4d56-936f-9cb0eb987923\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-d0009363e98?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-22894422b08?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:01:22 GMT", + "date" : "Mon, 18 May 2020 11:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2899", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a33a7ba4-af5a-41f7-ad51-bc43b2cb6bff", + "x-ms-correlation-request-id" : "4243b68f-109b-47c2-991c-87b273c11570", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100123Z:a33a7ba4-af5a-41f7-ad51-bc43b2cb6bff", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110637Z:4243b68f-109b-47c2-991c-87b273c11570", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ea0b02e5-020b-449a-bc75-c92dad804ca7", - "Body" : "{\r\n \"name\": \"vm-d0009363e98\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-d0009363e98\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"40c986c6-42c7-46eb-ab95-716b59837bb0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-d0009363e98_OsDisk_1_0dd577e414564aaf9d0fb4c15f77c2d2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-d0009363e98_OsDisk_1_0dd577e414564aaf9d0fb4c15f77c2d2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-d0009363e98_disk2_6b5b7e7630b645a0873be1a9747d833e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-d0009363e98_disk2_6b5b7e7630b645a0873be1a9747d833e\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-d0009363e98\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic370777f12e2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "7cda89b4-6ef9-4536-a342-0d2a607e6537", + "Body" : "{\r\n \"name\": \"vm-22894422b08\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-22894422b08\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"35abdd12-f6b9-441f-81e9-1a17e1a3bc66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-22894422b08_OsDisk_1_027a2b534d4245e4a98e1405adfeebf8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-22894422b08_OsDisk_1_027a2b534d4245e4a98e1405adfeebf8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-22894422b08_disk2_e533b82671614b14ae230b284efe7539\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-22894422b08_disk2_e533b82671614b14ae230b284efe7539\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-22894422b08\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic307722d9955\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvfda50287?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv39280115?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:01:25 GMT", - "content-length" : "323", + "date" : "Mon, 18 May 2020 11:06:39 GMT", + "content-length" : "317", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "98b3a9c8-ea9e-4c8b-a005-2745d3375702", + "x-ms-correlation-request-id" : "8bd45210-b31b-40d9-8a06-79cf03d0658b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100126Z:98b3a9c8-ea9e-4c8b-a005-2745d3375702", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110640Z:8bd45210-b31b-40d9-8a06-79cf03d0658b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "98b3a9c8-ea9e-4c8b-a005-2745d3375702", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287\",\"name\":\"rgcomvfda50287\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-04-29T10:01:23.612189100Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "8bd45210-b31b-40d9-8a06-79cf03d0658b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115\",\"name\":\"rgcomv39280115\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-05-18T11:06:37.831Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet03862390dd5616?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet23e105957d33d2?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:01:32 GMT", + "date" : "Mon, 18 May 2020 11:06:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1366", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8a8c549d-a91b-44f9-879e-ffc903e7d997", + "x-ms-correlation-request-id" : "95446b14-5b25-460c-9742-9269dcba123e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "01d0ddc2-6f86-42f5-8997-2db7a6edbadf", + "x-ms-arm-service-request-id" : "02a33f4f-e567-4307-bee7-60b2d1efbb4e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100132Z:8a8c549d-a91b-44f9-879e-ffc903e7d997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110646Z:95446b14-5b25-460c-9742-9269dcba123e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "632a826e-fcdf-40e4-96a1-4766d46cb831", - "Body" : "{\r\n \"name\": \"vnet03862390dd5616\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet03862390dd5616\",\r\n \"etag\": \"W/\\\"3351931d-ed87-4088-91b2-b33687008905\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cadc3427-f5dd-4f70-b300-3537b25009fe\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet03862390dd5616/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3351931d-ed87-4088-91b2-b33687008905\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/632a826e-fcdf-40e4-96a1-4766d46cb831?api-version=2019-06-01" + "x-ms-request-id" : "ddaad9d4-6a8b-4fd0-a83c-9726d78b3720", + "Body" : "{\r\n \"name\": \"vnet23e105957d33d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet23e105957d33d2\",\r\n \"etag\": \"W/\\\"f826cb2c-50cb-434f-8708-4bcbd116cbd5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0177ec51-f219-45eb-a7a9-403c88ce16d9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet23e105957d33d2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f826cb2c-50cb-434f-8708-4bcbd116cbd5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ddaad9d4-6a8b-4fd0-a83c-9726d78b3720?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/632a826e-fcdf-40e4-96a1-4766d46cb831?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ddaad9d4-6a8b-4fd0-a83c-9726d78b3720?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:02:03 GMT", + "date" : "Mon, 18 May 2020 11:07:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e1122c89-df97-4912-baf0-099752c347a8", + "x-ms-correlation-request-id" : "cd74f2a3-f804-4ec9-a99d-4915e4544b79", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "161fab13-8dd2-4f76-bdf5-a4a07fe50fa3", + "x-ms-arm-service-request-id" : "91563041-7488-4a4f-86b4-5e328b0f4379", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100203Z:e1122c89-df97-4912-baf0-099752c347a8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110718Z:cd74f2a3-f804-4ec9-a99d-4915e4544b79", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "36ffafca-970a-432d-b057-d5487900c1aa", + "x-ms-request-id" : "6c2b57b3-0305-46a7-91f7-25254fadf5c7", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet03862390dd5616?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet23e105957d33d2?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:02:34 GMT", + "date" : "Mon, 18 May 2020 11:07:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1368", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5ad8d2d4-f7f0-4079-baab-9bc5d2cb59bb", + "x-ms-correlation-request-id" : "1cfabbcd-9976-4dd2-951d-13531fb27abe", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "56f1183d-ff47-4acf-9ff9-ad95946953ce", + "x-ms-arm-service-request-id" : "b2a9a9d3-477b-49b0-a0a7-76e67649654e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100234Z:5ad8d2d4-f7f0-4079-baab-9bc5d2cb59bb", - "etag" : "W/\"3b282d7f-74eb-41b0-aa69-17e66bfd9b62\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110748Z:1cfabbcd-9976-4dd2-951d-13531fb27abe", + "etag" : "W/\"3743ef9e-a41b-49bb-aa87-b1c8c9184c3a\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "96e60bb9-c9c6-410e-8a2d-d4bae5ee93c1", - "Body" : "{\r\n \"name\": \"vnet03862390dd5616\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet03862390dd5616\",\r\n \"etag\": \"W/\\\"3b282d7f-74eb-41b0-aa69-17e66bfd9b62\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cadc3427-f5dd-4f70-b300-3537b25009fe\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet03862390dd5616/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3b282d7f-74eb-41b0-aa69-17e66bfd9b62\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "2dfb3f44-94bb-423f-8244-8effbf13e467", + "Body" : "{\r\n \"name\": \"vnet23e105957d33d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet23e105957d33d2\",\r\n \"etag\": \"W/\\\"3743ef9e-a41b-49bb-aa87-b1c8c9184c3a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0177ec51-f219-45eb-a7a9-403c88ce16d9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet23e105957d33d2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3743ef9e-a41b-49bb-aa87-b1c8c9184c3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip-intlb-2342087482?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip-intlb-3e696121ee?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:02:40 GMT", + "date" : "Mon, 18 May 2020 11:07:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "802", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f637bd81-b33a-4ff9-aa88-c22bfea06ce2", + "x-ms-correlation-request-id" : "8fdd8800-7556-4b30-940f-c64d03957892", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "73191274-5043-4e52-bc63-d8ff19278d10", + "x-ms-arm-service-request-id" : "a8dd186c-d3bb-41cb-8730-e8fa87284cbc", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100241Z:f637bd81-b33a-4ff9-aa88-c22bfea06ce2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110754Z:8fdd8800-7556-4b30-940f-c64d03957892", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0adac5eb-5cf6-4403-867f-9a6ef7fe92d1", - "Body" : "{\r\n \"name\": \"pip-intlb-2342087482\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip-intlb-2342087482\",\r\n \"etag\": \"W/\\\"980b451f-fe38-4377-97e3-4448f383a786\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b4d97796-3f4f-463b-ab77-0c61901b9d15\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-2342087482\",\r\n \"fqdn\": \"pip-intlb-2342087482.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0adac5eb-5cf6-4403-867f-9a6ef7fe92d1?api-version=2019-06-01" + "x-ms-request-id" : "371cca63-57b1-4629-abc6-0516d0afe7b7", + "Body" : "{\r\n \"name\": \"pip-intlb-3e696121ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip-intlb-3e696121ee\",\r\n \"etag\": \"W/\\\"b8bb7ec7-010b-441d-9e30-0dcebec69f6c\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"657051c7-88ea-49a2-ae95-c7cd35adf2cd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-3e696121ee\",\r\n \"fqdn\": \"pip-intlb-3e696121ee.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/371cca63-57b1-4629-abc6-0516d0afe7b7?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0adac5eb-5cf6-4403-867f-9a6ef7fe92d1?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/371cca63-57b1-4629-abc6-0516d0afe7b7?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:03:11 GMT", + "date" : "Mon, 18 May 2020 11:08:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "55709750-95f3-45c3-a51e-44f481141340", + "x-ms-correlation-request-id" : "2c7c0020-6d68-4159-b0bd-eb47839c33c1", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "591ffcb4-349e-45d4-8d09-dfa404eaff55", + "x-ms-arm-service-request-id" : "140b0407-fc2a-4f1c-ad26-f4e6cd083dbe", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100312Z:55709750-95f3-45c3-a51e-44f481141340", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110826Z:2c7c0020-6d68-4159-b0bd-eb47839c33c1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d8ecb972-4a9f-459c-9f25-489cb953707d", + "x-ms-request-id" : "ba620bb3-d553-40fe-abc0-3228aeb79ab6", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip-intlb-2342087482?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip-intlb-3e696121ee?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:03:43 GMT", + "date" : "Mon, 18 May 2020 11:08:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "803", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8cc20887-e495-43c4-b373-57cdedd5670d", + "x-ms-correlation-request-id" : "f5104d6a-0b8c-4a23-8e71-43ee2b278267", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8e169e5f-8dc7-45f9-bfba-9798a5e34788", + "x-ms-arm-service-request-id" : "b70f6cfc-1f9a-48cc-ac96-9e9f50e29bf6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100343Z:8cc20887-e495-43c4-b373-57cdedd5670d", - "etag" : "W/\"4e0c23e6-59b5-42b9-9f80-c6b57ae1758e\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110856Z:f5104d6a-0b8c-4a23-8e71-43ee2b278267", + "etag" : "W/\"98cba754-ae82-4746-83e3-3157fb105ce0\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fb871f5a-dfbd-4b4c-bbbc-4bbf6733df7b", - "Body" : "{\r\n \"name\": \"pip-intlb-2342087482\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip-intlb-2342087482\",\r\n \"etag\": \"W/\\\"4e0c23e6-59b5-42b9-9f80-c6b57ae1758e\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b4d97796-3f4f-463b-ab77-0c61901b9d15\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-2342087482\",\r\n \"fqdn\": \"pip-intlb-2342087482.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "3cbffe3e-e3e3-40bc-abb2-d4fee2ab4027", + "Body" : "{\r\n \"name\": \"pip-intlb-3e696121ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip-intlb-3e696121ee\",\r\n \"etag\": \"W/\\\"98cba754-ae82-4746-83e3-3157fb105ce0\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"657051c7-88ea-49a2-ae95-c7cd35adf2cd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-3e696121ee\",\r\n \"fqdn\": \"pip-intlb-3e696121ee.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:03:49 GMT", + "date" : "Mon, 18 May 2020 11:09:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "10899", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f9ec324d-db48-46e7-95b9-11e7de52142c", + "x-ms-correlation-request-id" : "4ca9c095-6cdb-43bd-98f8-fa292f31eab7", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "a84e4d43-16a8-4a96-837c-4b08fefcbfed", + "x-ms-arm-service-request-id" : "779431a7-911b-4d23-99a8-b1a366e42f10", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100349Z:f9ec324d-db48-46e7-95b9-11e7de52142c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110903Z:4ca9c095-6cdb-43bd-98f8-fa292f31eab7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9d53dec1-59b7-4f40-9c6b-914d30db3c56", - "Body" : "{\r\n \"name\": \"intlb-2342087482\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ef045ed-88a1-467e-bd87-7dd97a358021\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-2342087482-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip-intlb-2342087482\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-2342087482-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP1\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-2342087482-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP2\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpProbe\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9d53dec1-59b7-4f40-9c6b-914d30db3c56?api-version=2019-06-01" + "x-ms-request-id" : "2b4a06b6-ad69-4112-86ee-38ab1061e5d3", + "Body" : "{\r\n \"name\": \"intlb-3e696121ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"38ef0ad1-de87-4962-bc6a-8274209fe4db\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-3e696121ee-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip-intlb-3e696121ee\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-3e696121ee-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP1\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-3e696121ee-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP2\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpProbe\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2b4a06b6-ad69-4112-86ee-38ab1061e5d3?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9d53dec1-59b7-4f40-9c6b-914d30db3c56?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2b4a06b6-ad69-4112-86ee-38ab1061e5d3?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:04:20 GMT", + "date" : "Mon, 18 May 2020 11:09:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fdd35a45-da81-4e0b-afa0-036164d0e9a1", + "x-ms-correlation-request-id" : "91da8a72-9c46-46e6-9d15-d827c84ec2eb", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e3f9a56c-76c2-42f1-84ec-7dddbae10a17", + "x-ms-arm-service-request-id" : "a81d3045-050d-4d0d-a02b-44410f81fd70", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100421Z:fdd35a45-da81-4e0b-afa0-036164d0e9a1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T110934Z:91da8a72-9c46-46e6-9d15-d827c84ec2eb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "377a25c7-2a3e-4e4b-a825-eb6c7e0dbda2", + "x-ms-request-id" : "c50b0ee3-1210-40ed-b252-debd5ad44aca", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:04:51 GMT", + "date" : "Mon, 18 May 2020 11:10:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "10899", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9d5f5cd7-6d3f-4b38-a93b-39d8c7257992", + "x-ms-correlation-request-id" : "4ef9ac70-b573-4583-9936-ce718b0e8943", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b71bef87-c40e-4d5d-93c9-018de22ceab5", + "x-ms-arm-service-request-id" : "e68e92d9-92a6-4dc8-90db-5d64f02953c6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100451Z:9d5f5cd7-6d3f-4b38-a93b-39d8c7257992", - "etag" : "W/\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111004Z:4ef9ac70-b573-4583-9936-ce718b0e8943", + "etag" : "W/\"2ee0f53f-a16d-4a0b-96a1-12d233018941\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e7da0ecb-b0dd-4071-8745-e75721ebcc63", - "Body" : "{\r\n \"name\": \"intlb-2342087482\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ef045ed-88a1-467e-bd87-7dd97a358021\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-2342087482-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip-intlb-2342087482\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-2342087482-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP1\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-2342087482-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP2\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpProbe\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "227a38de-5c3c-4f57-a21d-3ebb59dcd174", + "Body" : "{\r\n \"name\": \"intlb-3e696121ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"38ef0ad1-de87-4962-bc6a-8274209fe4db\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-3e696121ee-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip-intlb-3e696121ee\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-3e696121ee-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP1\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-3e696121ee-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP2\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpProbe\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:04:51 GMT", + "date" : "Mon, 18 May 2020 11:10:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "10899", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "31e97602-d6dc-4269-b996-23f4fdabecbd", + "x-ms-correlation-request-id" : "deda6c32-e9f8-479c-8bcf-781e3ee2b36c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "273f4b6f-5050-4598-b1c8-214c37362cc1", + "x-ms-arm-service-request-id" : "5cb86e18-3114-4985-bde7-2b41e5108ad7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100452Z:31e97602-d6dc-4269-b996-23f4fdabecbd", - "etag" : "W/\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111005Z:deda6c32-e9f8-479c-8bcf-781e3ee2b36c", + "etag" : "W/\"2ee0f53f-a16d-4a0b-96a1-12d233018941\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "404be2c8-45fb-4f92-aa30-8800c985da13", - "Body" : "{\r\n \"name\": \"intlb-2342087482\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ef045ed-88a1-467e-bd87-7dd97a358021\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-2342087482-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip-intlb-2342087482\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-2342087482-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP1\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-2342087482-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP2\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpProbe\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"2fc7325d-2e9c-4708-8dca-f059eb420b3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/frontendIPConfigurations/intlb-2342087482-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "e528a115-b449-4a39-885a-a66a394b6e6d", + "Body" : "{\r\n \"name\": \"intlb-3e696121ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"38ef0ad1-de87-4962-bc6a-8274209fe4db\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-3e696121ee-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip-intlb-3e696121ee\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-3e696121ee-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP1\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-3e696121ee-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP2\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpProbe\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"2ee0f53f-a16d-4a0b-96a1-12d233018941\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/frontendIPConfigurations/intlb-3e696121ee-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-e8676174cf?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-f2b527257d?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:04:58 GMT", + "date" : "Mon, 18 May 2020 11:10:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "4240", "expires" : "-1", "x-ms-request-charge" : "7", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "495bd9fa-4343-4d35-8f77-16e30755cf78", + "x-ms-correlation-request-id" : "c029bd79-8c09-40b8-82af-6b5f11b596bb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1193,Microsoft.Compute/VmssQueuedVMOperations;4793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100459Z:495bd9fa-4343-4d35-8f77-16e30755cf78", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111012Z:c029bd79-8c09-40b8-82af-6b5f11b596bb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0b9182fb-8931-4f00-a060-514271262be2", - "Body" : "{\r\n \"name\": \"vmss-e8676174cf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-e8676174cf\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm08270\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet03862390dd5616/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool60XXto23\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"4f81c860-0f03-41c0-935d-21d3cf0f63e1\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0b9182fb-8931-4f00-a060-514271262be2?api-version=2019-03-01" + "x-ms-request-id" : "5803c1b7-44f2-492b-a147-a2f2c5b218e6", + "Body" : "{\r\n \"name\": \"vmss-f2b527257d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-f2b527257d\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm42029\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet23e105957d33d2/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool60XXto23\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"5ef7e0a4-15b5-42f5-a482-3753e84575f3\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5803c1b7-44f2-492b-a147-a2f2c5b218e6?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0b9182fb-8931-4f00-a060-514271262be2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5803c1b7-44f2-492b-a147-a2f2c5b218e6?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:05:29 GMT", + "date" : "Mon, 18 May 2020 11:10:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8dae5a6c-45f8-4d0e-a29a-3d84cd4d0b89", + "x-ms-correlation-request-id" : "1dce2aeb-64b2-4e9f-a5fc-4039e58f21d4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100530Z:8dae5a6c-45f8-4d0e-a29a-3d84cd4d0b89", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111043Z:1dce2aeb-64b2-4e9f-a5fc-4039e58f21d4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4698ca29-2912-428c-aa33-0f315e71adaa", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:04:57.9747112+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0b9182fb-8931-4f00-a060-514271262be2\"\r\n}" + "x-ms-request-id" : "9d8aa10b-0ef1-4b29-ad94-fefa6baa669c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:10:10.4462117+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5803c1b7-44f2-492b-a147-a2f2c5b218e6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0b9182fb-8931-4f00-a060-514271262be2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5803c1b7-44f2-492b-a147-a2f2c5b218e6?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:06:00 GMT", + "date" : "Mon, 18 May 2020 11:11:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3383fa79-f0fc-42c4-aa5a-a32a9f2e44b7", + "x-ms-correlation-request-id" : "3069b0a1-8829-4233-8adf-575b7fcfd44c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100601Z:3383fa79-f0fc-42c4-aa5a-a32a9f2e44b7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111113Z:3069b0a1-8829-4233-8adf-575b7fcfd44c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ff5a4e8c-f424-4958-b281-b54a9b49dcee", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:04:57.9747112+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0b9182fb-8931-4f00-a060-514271262be2\"\r\n}" + "x-ms-request-id" : "ffd7e11a-3fce-4ddd-9b67-dd804e3b239c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:10:10.4462117+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5803c1b7-44f2-492b-a147-a2f2c5b218e6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0b9182fb-8931-4f00-a060-514271262be2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5803c1b7-44f2-492b-a147-a2f2c5b218e6?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:06:30 GMT", + "date" : "Mon, 18 May 2020 11:11:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ff6bd074-388b-41cb-a145-72af49b172f5", + "x-ms-correlation-request-id" : "da2279a4-955f-4848-bc28-134d8d1e720f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100631Z:ff6bd074-388b-41cb-a145-72af49b172f5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111144Z:da2279a4-955f-4848-bc28-134d8d1e720f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ebf7759f-e77c-446d-a7ea-2aba5fa1d1f6", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:04:57.9747112+00:00\",\r\n \"endTime\": \"2020-04-29T10:06:22.2435561+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0b9182fb-8931-4f00-a060-514271262be2\"\r\n}" + "x-ms-request-id" : "82f67167-ffb9-4f94-bad3-a33c97d43eaa", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:10:10.4462117+00:00\",\r\n \"endTime\": \"2020-05-18T11:11:27.4174992+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5803c1b7-44f2-492b-a147-a2f2c5b218e6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-e8676174cf?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-f2b527257d?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:07:01 GMT", + "date" : "Mon, 18 May 2020 11:12:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "4241", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "af3a46c4-de52-43f0-8b07-b53b2b958f12", + "x-ms-correlation-request-id" : "3941fc31-deef-4053-877b-64d848669684", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;198,Microsoft.Compute/GetVMScaleSet30Min;1298", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100702Z:af3a46c4-de52-43f0-8b07-b53b2b958f12", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;196,Microsoft.Compute/GetVMScaleSet30Min;1296", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111215Z:3941fc31-deef-4053-877b-64d848669684", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "97f67a2d-3b73-403e-bc32-829d579b2f7a", - "Body" : "{\r\n \"name\": \"vmss-e8676174cf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-e8676174cf\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm08270\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet03862390dd5616/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/backendAddressPools/intlb-2342087482-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/loadBalancers/intlb-2342087482/inboundNatPools/natPool60XXto23\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"4f81c860-0f03-41c0-935d-21d3cf0f63e1\"\r\n }\r\n}" + "x-ms-request-id" : "839d9149-88b6-4d36-bf43-98f07ef17167", + "Body" : "{\r\n \"name\": \"vmss-f2b527257d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-f2b527257d\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm42029\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet23e105957d33d2/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/backendAddressPools/intlb-3e696121ee-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/loadBalancers/intlb-3e696121ee/inboundNatPools/natPool60XXto23\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"5ef7e0a4-15b5-42f5-a482-3753e84575f3\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-e8676174cf?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-f2b527257d?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:07:03 GMT", + "date" : "Mon, 18 May 2020 11:12:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "0", @@ -798,1933 +798,1783 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "06e3701d-a2c8-4817-82cd-0c2817ff4495", + "x-ms-correlation-request-id" : "fc89661b-9426-4388-8983-79b0c783cab9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1186,Microsoft.Compute/VmssQueuedVMOperations;4793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100703Z:06e3701d-a2c8-4817-82cd-0c2817ff4495", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111215Z:fc89661b-9426-4388-8983-79b0c783cab9", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "02e44841-17ff-4a21-91ca-a8a975225304", + "x-ms-request-id" : "f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:07:33 GMT", + "date" : "Mon, 18 May 2020 11:12:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "802c0601-e174-48ea-9eaa-cd01156dfb1e", + "x-ms-correlation-request-id" : "7e773965-594a-42e0-ba94-0a7bfc1f7f1a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100733Z:802c0601-e174-48ea-9eaa-cd01156dfb1e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111246Z:7e773965-594a-42e0-ba94-0a7bfc1f7f1a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0a0d0b9b-6271-4744-9380-58f018f9d37d", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:07:02.8385605+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02e44841-17ff-4a21-91ca-a8a975225304\"\r\n}" + "x-ms-request-id" : "e2c05e64-e5fe-4eb3-8993-6b43abd59488", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:12:15.6378263+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:08:03 GMT", + "date" : "Mon, 18 May 2020 11:13:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6b3e5d0f-e179-48f4-9b97-859e5c36e52b", + "x-ms-correlation-request-id" : "1eb55018-5ec5-45be-89e0-808a7e0c5400", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100804Z:6b3e5d0f-e179-48f4-9b97-859e5c36e52b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111316Z:1eb55018-5ec5-45be-89e0-808a7e0c5400", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b0affe2d-b246-4f10-b0d0-90f49582fc78", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:07:02.8385605+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02e44841-17ff-4a21-91ca-a8a975225304\"\r\n}" + "x-ms-request-id" : "2e5a05ea-1770-4ab6-909f-687b3480ea82", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:12:15.6378263+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:08:33 GMT", + "date" : "Mon, 18 May 2020 11:13:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fac8b6d7-6704-44c2-9bcd-0cf8cd9492a1", + "x-ms-correlation-request-id" : "08ef1bb3-1305-4f8c-bd92-f8a56f528eb1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100834Z:fac8b6d7-6704-44c2-9bcd-0cf8cd9492a1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111347Z:08ef1bb3-1305-4f8c-bd92-f8a56f528eb1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "13ffca68-009b-45b7-b7b1-cf1a731e77dc", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:07:02.8385605+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02e44841-17ff-4a21-91ca-a8a975225304\"\r\n}" + "x-ms-request-id" : "ee0644b8-516e-4bab-b811-94ada0da1cf9", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:12:15.6378263+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:09:04 GMT", + "date" : "Mon, 18 May 2020 11:14:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5c774824-7362-4930-b6f3-432b62a176db", + "x-ms-correlation-request-id" : "0ea552cd-5a00-415b-a833-1436b5491e01", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100905Z:5c774824-7362-4930-b6f3-432b62a176db", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111418Z:0ea552cd-5a00-415b-a833-1436b5491e01", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1922f210-bb7b-442e-8707-2abaecc2f7a5", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:07:02.8385605+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02e44841-17ff-4a21-91ca-a8a975225304\"\r\n}" + "x-ms-request-id" : "4e16a7df-9b55-44b6-b3ec-4289ddc85ed2", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:12:15.6378263+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:09:34 GMT", + "date" : "Mon, 18 May 2020 11:14:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eaa793c4-9f30-4340-8b35-3c2d319897e9", + "x-ms-correlation-request-id" : "9a13f673-d6eb-4fb6-a873-54e35a87d12d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T100935Z:eaa793c4-9f30-4340-8b35-3c2d319897e9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111449Z:9a13f673-d6eb-4fb6-a873-54e35a87d12d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ab5f8a0c-51be-4a39-b209-00412e358a8b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:07:02.8385605+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02e44841-17ff-4a21-91ca-a8a975225304\"\r\n}" + "x-ms-request-id" : "d7852cdb-3f5b-4080-b428-609f256b4b37", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:12:15.6378263+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:10:05 GMT", + "date" : "Mon, 18 May 2020 11:15:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5143fa87-e0b2-4e48-95cc-e2d42525af69", + "x-ms-correlation-request-id" : "b0df0b91-d8f5-4863-865b-4e178837b804", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101006Z:5143fa87-e0b2-4e48-95cc-e2d42525af69", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111519Z:b0df0b91-d8f5-4863-865b-4e178837b804", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a90a847f-2c58-4bc9-a1b1-cd6e47f14384", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:07:02.8385605+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02e44841-17ff-4a21-91ca-a8a975225304\"\r\n}" + "x-ms-request-id" : "573af724-d744-45e6-9c06-bf784cf9ff4c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:12:15.6378263+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:10:36 GMT", + "date" : "Mon, 18 May 2020 11:15:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1ec3d434-c9a7-4b36-beba-30c8f6774afe", + "x-ms-correlation-request-id" : "fdc0bb53-88d8-4099-86f0-d7bf31874d1b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101036Z:1ec3d434-c9a7-4b36-beba-30c8f6774afe", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111550Z:fdc0bb53-88d8-4099-86f0-d7bf31874d1b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "82c7ecb0-cc6c-4239-a956-383112cdceb4", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:07:02.8385605+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02e44841-17ff-4a21-91ca-a8a975225304\"\r\n}" + "x-ms-request-id" : "7b25a1a0-1064-4659-ace4-bf35824a9d4d", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:12:15.6378263+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:11:06 GMT", + "date" : "Mon, 18 May 2020 11:16:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f2013a5d-e1c1-45a6-b6c6-8f2eb4399c68", + "x-ms-correlation-request-id" : "dfcdb1c0-b6ca-4c2b-a226-6efa015d469d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101107Z:f2013a5d-e1c1-45a6-b6c6-8f2eb4399c68", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111620Z:dfcdb1c0-b6ca-4c2b-a226-6efa015d469d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "01a59ec1-ebd2-4bce-bbc7-f6c8f91ac789", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:07:02.8385605+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02e44841-17ff-4a21-91ca-a8a975225304\"\r\n}" + "x-ms-request-id" : "68d91aaa-c269-419e-a68b-9856a37b6e2c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:12:15.6378263+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:11:36 GMT", + "date" : "Mon, 18 May 2020 11:16:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b1c38c11-7e86-415a-bee6-bd5414653861", + "x-ms-correlation-request-id" : "3deb3168-2ca5-48a7-9d93-12027215aec5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101137Z:b1c38c11-7e86-415a-bee6-bd5414653861", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111651Z:3deb3168-2ca5-48a7-9d93-12027215aec5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1b58fbf1-dbbe-474b-9506-86e119bb8309", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:07:02.8385605+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02e44841-17ff-4a21-91ca-a8a975225304\"\r\n}" + "x-ms-request-id" : "432c9d53-2778-47f6-b118-935c84767321", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:12:15.6378263+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:12:08 GMT", + "date" : "Mon, 18 May 2020 11:17:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c033a2cc-21fe-466d-a357-89b4f983ce00", + "x-ms-correlation-request-id" : "a16e040f-f140-4fad-94bc-4caab34e5f5b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101208Z:c033a2cc-21fe-466d-a357-89b4f983ce00", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111721Z:a16e040f-f140-4fad-94bc-4caab34e5f5b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cb366320-c90d-4851-9248-596b5ef194fa", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:07:02.8385605+00:00\",\r\n \"endTime\": \"2020-04-29T10:11:57.7553959+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"02e44841-17ff-4a21-91ca-a8a975225304\"\r\n}" + "x-ms-request-id" : "ca4eaaa0-717f-4d30-8ae7-d3a2307cbcc8", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:12:15.6378263+00:00\",\r\n \"endTime\": \"2020-05-18T11:17:09.3516571+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/02e44841-17ff-4a21-91ca-a8a975225304?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f0521e4a-cfbd-4e4f-b7c7-03d7a5a45f97?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:12:38 GMT", + "date" : "Mon, 18 May 2020 11:17:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "467b2e0b-971f-440c-ab6e-2120a7c1fda0", + "x-ms-correlation-request-id" : "4c778284-661e-4719-8233-a88d79353c5f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101238Z:467b2e0b-971f-440c-ab6e-2120a7c1fda0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111752Z:4c778284-661e-4719-8233-a88d79353c5f", "cache-control" : "no-cache", - "x-ms-request-id" : "d4af5263-31d5-407b-9e1d-35c3432eebde", + "x-ms-request-id" : "cfddccbe-5e82-4fcc-8ed0-7056e523ce40", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-7813336478d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-a7938269f83?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:12:43 GMT", + "date" : "Mon, 18 May 2020 11:17:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "256", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "03ccd57b-ee1c-45a2-a15e-bcccccad77b8", + "x-ms-correlation-request-id" : "5949baa5-3036-40f7-bfc8-3a52be67c73b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101243Z:03ccd57b-ee1c-45a2-a15e-bcccccad77b8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111758Z:5949baa5-3036-40f7-bfc8-3a52be67c73b", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/b0ddf1d7-01c6-4d7e-be94-1cd3f0d19d10?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/5f2bc67f-c0f1-4bfa-b3f1-536ff6401059?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b0ddf1d7-01c6-4d7e-be94-1cd3f0d19d10", - "Body" : "{\r\n \"name\": \"dsk-7813336478d\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/b0ddf1d7-01c6-4d7e-be94-1cd3f0d19d10?api-version=2019-03-01" + "x-ms-request-id" : "5f2bc67f-c0f1-4bfa-b3f1-536ff6401059", + "Body" : "{\r\n \"name\": \"dsk-a7938269f83\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/5f2bc67f-c0f1-4bfa-b3f1-536ff6401059?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/b0ddf1d7-01c6-4d7e-be94-1cd3f0d19d10?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/5f2bc67f-c0f1-4bfa-b3f1-536ff6401059?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:13:13 GMT", + "date" : "Mon, 18 May 2020 11:18:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "812", + "content-length" : "868", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "35b42122-f05f-4519-b15d-63986d571ee0", + "x-ms-correlation-request-id" : "360d9593-c9a8-4078-ab56-f0b0ec37cdb2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101314Z:35b42122-f05f-4519-b15d-63986d571ee0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111829Z:360d9593-c9a8-4078-ab56-f0b0ec37cdb2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "75e9a2fe-437b-4e17-817e-1d9ab3260837", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:12:43.5014011+00:00\",\r\n \"endTime\": \"2020-04-29T10:12:43.6889017+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-7813336478d\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-7813336478d\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"southcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T10:12:43.5014011+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"ffbbb206-ff71-4a20-9963-e565537e6c91\"}}\r\n },\r\n \"name\": \"b0ddf1d7-01c6-4d7e-be94-1cd3f0d19d10\"\r\n}" + "x-ms-request-id" : "c23faef9-09e0-4b46-9cfe-cc8d271e5552", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:17:58.1832542+00:00\",\r\n \"endTime\": \"2020-05-18T11:17:58.3551227+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-a7938269f83\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-a7938269f83\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"southcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T11:17:58.1832542+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"9c23bd51-11bf-4174-af4b-e3c677dc85c6\"}}\r\n },\r\n \"name\": \"5f2bc67f-c0f1-4bfa-b3f1-536ff6401059\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-7813336478d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-a7938269f83?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:13:43 GMT", + "date" : "Mon, 18 May 2020 11:18:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "724", + "content-length" : "802", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "91fafb6d-ab90-4064-9554-2fa32725fcae", + "x-ms-correlation-request-id" : "c5760599-7d6e-45bb-b7da-835d4aa81eb8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101344Z:91fafb6d-ab90-4064-9554-2fa32725fcae", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111900Z:c5760599-7d6e-45bb-b7da-835d4aa81eb8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cbf8d5e2-4d3c-4c13-9d69-9c21897de2e7", - "Body" : "{\r\n \"name\": \"dsk-7813336478d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-7813336478d\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T10:12:43.5014011+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"ffbbb206-ff71-4a20-9963-e565537e6c91\"\r\n }\r\n}" + "x-ms-request-id" : "f9a5d0dd-bdb4-410d-8019-0b0ae94c1afa", + "Body" : "{\r\n \"name\": \"dsk-a7938269f83\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-a7938269f83\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T11:17:58.1832542+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"9c23bd51-11bf-4174-af4b-e3c677dc85c6\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet95626cdb16?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip26595127?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:13:49 GMT", + "date" : "Mon, 18 May 2020 11:19:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "1350", + "content-length" : "774", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c7e54b6c-c6c2-41eb-98ba-617e56ff6424", + "x-ms-correlation-request-id" : "04ec1876-f432-47b8-95b5-958535561183", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c3a18883-fd00-4b5a-b904-23c0471bff9b", + "x-ms-arm-service-request-id" : "c22d1057-3213-48c6-ae30-a5ed488fc4aa", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101350Z:c7e54b6c-c6c2-41eb-98ba-617e56ff6424", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111906Z:04ec1876-f432-47b8-95b5-958535561183", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "50e65f61-7259-4108-ba79-be41d5fc85fa", - "Body" : "{\r\n \"name\": \"vnet95626cdb16\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet95626cdb16\",\r\n \"etag\": \"W/\\\"53be4e30-955b-4899-a160-fb67be4b17e7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e03a1186-3afd-454d-98b6-72b9a110b838\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet95626cdb16/subnets/subnet1\",\r\n \"etag\": \"W/\\\"53be4e30-955b-4899-a160-fb67be4b17e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/50e65f61-7259-4108-ba79-be41d5fc85fa?api-version=2019-06-01" + "x-ms-request-id" : "5940cd3d-ff4b-4fe8-83c1-b6ef328afee7", + "Body" : "{\r\n \"name\": \"pip26595127\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip26595127\",\r\n \"etag\": \"W/\\\"f8d69dea-adb2-4edd-a830-3e2a888f51a3\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"63462f33-4418-43c6-b9dd-e11ec92fbcd3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-bfd985027f3\",\r\n \"fqdn\": \"pip-bfd985027f3.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/5940cd3d-ff4b-4fe8-83c1-b6ef328afee7?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip917150c3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet43666c171b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:13:49 GMT", + "date" : "Mon, 18 May 2020 11:19:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "774", + "content-length" : "1350", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ff8d6c60-96cb-47a5-a772-92f76ed663b6", + "x-ms-correlation-request-id" : "bc0db17d-3109-44b6-81a3-f38f2d33d3a2", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d195892b-12aa-4fe6-a2db-c6a811617088", + "x-ms-arm-service-request-id" : "ed6fc580-b3a1-4b1a-92ed-14181412a6b6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101350Z:ff8d6c60-96cb-47a5-a772-92f76ed663b6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111907Z:bc0db17d-3109-44b6-81a3-f38f2d33d3a2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "62902047-e269-4d80-80c5-486b3787be7a", - "Body" : "{\r\n \"name\": \"pip917150c3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip917150c3\",\r\n \"etag\": \"W/\\\"6eead61c-dd3a-4e2e-b0a5-b8d6af577b93\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1f890183-aa3c-4757-ac47-eb05e0db2599\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-00076281a37\",\r\n \"fqdn\": \"pip-00076281a37.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/62902047-e269-4d80-80c5-486b3787be7a?api-version=2019-06-01" + "x-ms-request-id" : "8307df4b-7b33-45ab-befe-491dda7337d2", + "Body" : "{\r\n \"name\": \"vnet43666c171b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet43666c171b\",\r\n \"etag\": \"W/\\\"70e7b5d0-f562-4237-9e1f-281c1bd1e4e5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3c6368ea-7e20-41b7-935f-c3abb018b7a1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet43666c171b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"70e7b5d0-f562-4237-9e1f-281c1bd1e4e5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8307df4b-7b33-45ab-befe-491dda7337d2?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/62902047-e269-4d80-80c5-486b3787be7a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/5940cd3d-ff4b-4fe8-83c1-b6ef328afee7?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:14:21 GMT", + "date" : "Mon, 18 May 2020 11:19:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3b7c0ef2-1661-4f4b-8256-81c1a1dea5b7", + "x-ms-correlation-request-id" : "faba2324-8a8e-4447-81b0-7c037ea21b15", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e82f131e-dbfb-4e98-b553-b1cdd3b61493", + "x-ms-arm-service-request-id" : "446267c9-9b5d-46ce-8816-0c4e8d002ae6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101422Z:3b7c0ef2-1661-4f4b-8256-81c1a1dea5b7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111937Z:faba2324-8a8e-4447-81b0-7c037ea21b15", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ab6d4dbf-d6e0-4120-a1a0-f6885eaab64b", + "x-ms-request-id" : "378a858e-0ceb-451e-b8a9-4ac4d094d3d9", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/50e65f61-7259-4108-ba79-be41d5fc85fa?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8307df4b-7b33-45ab-befe-491dda7337d2?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:14:21 GMT", + "date" : "Mon, 18 May 2020 11:19:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3565f7fe-786b-40d3-bec9-10d501a65d21", + "x-ms-correlation-request-id" : "d6a3e648-8889-44bf-af8b-3dd23db75cda", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "918c1882-a454-4807-a702-7ca7cd06fae8", + "x-ms-arm-service-request-id" : "1905f857-2d13-4fda-b8ed-f8f09e87b156", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101422Z:3565f7fe-786b-40d3-bec9-10d501a65d21", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T111938Z:d6a3e648-8889-44bf-af8b-3dd23db75cda", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d2c958d1-e557-4afc-8160-ceb675d59f58", + "x-ms-request-id" : "de2c67d1-cb7c-4e21-9b46-41f8f2bca746", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip917150c3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip26595127?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:14:52 GMT", + "date" : "Mon, 18 May 2020 11:20:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "775", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d36f6482-3719-4adb-9968-982cd3c488bd", + "x-ms-correlation-request-id" : "85eecdfc-e5c0-46ec-bd4e-4ca51365cc8d", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "a268b196-6164-4679-ace2-f20c21dad14b", + "x-ms-arm-service-request-id" : "c04a3ef3-4d3c-466b-9db8-161f08ddd196", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101452Z:d36f6482-3719-4adb-9968-982cd3c488bd", - "etag" : "W/\"991a0c5d-1cb7-439a-b0f8-638cd435781e\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112008Z:85eecdfc-e5c0-46ec-bd4e-4ca51365cc8d", + "etag" : "W/\"db869ee0-4eec-414a-b0c4-58086d10a264\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "be679278-99d0-4b45-bbb8-02fcd064ae4c", - "Body" : "{\r\n \"name\": \"pip917150c3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip917150c3\",\r\n \"etag\": \"W/\\\"991a0c5d-1cb7-439a-b0f8-638cd435781e\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1f890183-aa3c-4757-ac47-eb05e0db2599\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-00076281a37\",\r\n \"fqdn\": \"pip-00076281a37.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "fd9a9f28-0145-4301-a34c-82834220160c", + "Body" : "{\r\n \"name\": \"pip26595127\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip26595127\",\r\n \"etag\": \"W/\\\"db869ee0-4eec-414a-b0c4-58086d10a264\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"63462f33-4418-43c6-b9dd-e11ec92fbcd3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-bfd985027f3\",\r\n \"fqdn\": \"pip-bfd985027f3.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet95626cdb16?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet43666c171b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:14:51 GMT", + "date" : "Mon, 18 May 2020 11:20:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1352", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a67f8527-f14a-4613-9947-daf60c125b5c", + "x-ms-correlation-request-id" : "7a7fd979-8b50-4a3a-b056-3efb35a0dffa", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3b4a486f-5a6a-41f4-a582-d116a46b373c", + "x-ms-arm-service-request-id" : "b1ee0939-99af-4908-984a-0d5ff7c2b736", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101452Z:a67f8527-f14a-4613-9947-daf60c125b5c", - "etag" : "W/\"d8a2b894-8fa1-40d3-87d7-f131963cfa70\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112009Z:7a7fd979-8b50-4a3a-b056-3efb35a0dffa", + "etag" : "W/\"2b2fce37-046a-40a5-8e41-ce5aaa4ab7cd\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fed9459c-f275-4c3d-8a6f-1ded073733e6", - "Body" : "{\r\n \"name\": \"vnet95626cdb16\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet95626cdb16\",\r\n \"etag\": \"W/\\\"d8a2b894-8fa1-40d3-87d7-f131963cfa70\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e03a1186-3afd-454d-98b6-72b9a110b838\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet95626cdb16/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d8a2b894-8fa1-40d3-87d7-f131963cfa70\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "6c4ab923-96d3-4657-9d6b-73e3639e34d0", + "Body" : "{\r\n \"name\": \"vnet43666c171b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet43666c171b\",\r\n \"etag\": \"W/\\\"2b2fce37-046a-40a5-8e41-ce5aaa4ab7cd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3c6368ea-7e20-41b7-935f-c3abb018b7a1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet43666c171b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2b2fce37-046a-40a5-8e41-ce5aaa4ab7cd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3745007cfe3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:14:57 GMT", + "date" : "Mon, 18 May 2020 11:20:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1850", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bade3386-ee2c-47ac-aefc-debd38853a8a", + "x-ms-correlation-request-id" : "de0fa5e2-60ac-4ef0-aea9-b1d250e152ec", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "933df9af-8b83-43ae-aa3f-79fcbcd7937c", + "x-ms-arm-service-request-id" : "bf7eece4-aafb-42c4-9f03-3b6557710765", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101458Z:bade3386-ee2c-47ac-aefc-debd38853a8a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112015Z:de0fa5e2-60ac-4ef0-aea9-b1d250e152ec", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "580d8884-7a80-47b2-a06f-482393d735f3", - "Body" : "{\r\n \"name\": \"nic3745007cfe3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3745007cfe3\",\r\n \"etag\": \"W/\\\"8f8d7984-903c-40b4-86fd-e56d2a60629d\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58efcb26-9451-4bb5-9830-52c35ffbaa59\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3745007cfe3/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8f8d7984-903c-40b4-86fd-e56d2a60629d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip917150c3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet95626cdb16/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"qyitvyh3hjgulgfwok20cefyha.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/580d8884-7a80-47b2-a06f-482393d735f3?api-version=2019-06-01" + "x-ms-request-id" : "de1143ab-433d-4817-8fc6-5785eba2567a", + "Body" : "{\r\n \"name\": \"nic17133465c74\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74\",\r\n \"etag\": \"W/\\\"736f69f7-494d-4048-8f64-b5ee12a1bc07\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ae2ecf0-7765-467a-b52f-46efdd541a10\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"736f69f7-494d-4048-8f64-b5ee12a1bc07\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip26595127\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet43666c171b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3juggpbap01ude05yov1agfxub.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/de1143ab-433d-4817-8fc6-5785eba2567a?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/580d8884-7a80-47b2-a06f-482393d735f3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/de1143ab-433d-4817-8fc6-5785eba2567a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:15:28 GMT", + "date" : "Mon, 18 May 2020 11:20:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7ae871b5-0c15-4fe5-a3cf-af101fd4f150", + "x-ms-correlation-request-id" : "38aec312-d242-4899-88c4-ec9cfe17ebfd", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "74dbd6c8-99d0-40c2-a1d1-91c3b6faa461", + "x-ms-arm-service-request-id" : "affbfc14-0ce4-4344-8b08-cdf3ce7a4fc8", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101529Z:7ae871b5-0c15-4fe5-a3cf-af101fd4f150", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112047Z:38aec312-d242-4899-88c4-ec9cfe17ebfd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "26f20292-da25-4bc5-99e8-1b0b1899f624", + "x-ms-request-id" : "84dfcc6e-64e4-49c7-86ba-8e3356783c61", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3745007cfe3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:15:59 GMT", + "date" : "Mon, 18 May 2020 11:21:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1850", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "371c206b-5221-44f0-aebb-ef0d1bd21cf1", + "x-ms-correlation-request-id" : "b04087e6-2cf5-42f9-9d92-5dca27839b09", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "17b063e3-6ce1-4949-b0ba-39b44f0795e4", + "x-ms-arm-service-request-id" : "14696f42-30aa-45bd-ae43-35d45542c65f", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101559Z:371c206b-5221-44f0-aebb-ef0d1bd21cf1", - "etag" : "W/\"8f8d7984-903c-40b4-86fd-e56d2a60629d\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112117Z:b04087e6-2cf5-42f9-9d92-5dca27839b09", + "etag" : "W/\"736f69f7-494d-4048-8f64-b5ee12a1bc07\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "00019d8f-6d5a-4517-bade-ab9f3d83f78b", - "Body" : "{\r\n \"name\": \"nic3745007cfe3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3745007cfe3\",\r\n \"etag\": \"W/\\\"8f8d7984-903c-40b4-86fd-e56d2a60629d\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58efcb26-9451-4bb5-9830-52c35ffbaa59\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3745007cfe3/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8f8d7984-903c-40b4-86fd-e56d2a60629d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip917150c3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet95626cdb16/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"qyitvyh3hjgulgfwok20cefyha.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "a8c23471-f2eb-4917-9d18-d35270e4cb2a", + "Body" : "{\r\n \"name\": \"nic17133465c74\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74\",\r\n \"etag\": \"W/\\\"736f69f7-494d-4048-8f64-b5ee12a1bc07\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ae2ecf0-7765-467a-b52f-46efdd541a10\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"736f69f7-494d-4048-8f64-b5ee12a1bc07\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip26595127\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet43666c171b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3juggpbap01ude05yov1agfxub.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-44432d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-90881e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:16:06 GMT", + "date" : "Mon, 18 May 2020 11:21:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3076", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b67164da-95df-4a50-95db-311e05c61004", + "x-ms-correlation-request-id" : "d0069e84-d493-46b4-aa5d-309d8563d84b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101606Z:b67164da-95df-4a50-95db-311e05c61004", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112124Z:d0069e84-d493-46b4-aa5d-309d8563d84b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "167e68cf-d11e-4856-8023-e54b62cafa0e", - "Body" : "{\r\n \"name\": \"vm-44432d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-44432d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"73bc5fed-2698-48b1-9f8b-f16a1c49fb5d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-7813336478d\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-7813336478d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-44432d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3745007cfe3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/167e68cf-d11e-4856-8023-e54b62cafa0e?api-version=2019-03-01" + "x-ms-request-id" : "fb00416f-57ab-4fce-9eeb-599818f82b4b", + "Body" : "{\r\n \"name\": \"vm-90881e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-90881e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"66766416-204f-4ec5-9745-877d147d1ff7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a7938269f83\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-a7938269f83\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-90881e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/fb00416f-57ab-4fce-9eeb-599818f82b4b?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/167e68cf-d11e-4856-8023-e54b62cafa0e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/fb00416f-57ab-4fce-9eeb-599818f82b4b?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:16:36 GMT", + "date" : "Mon, 18 May 2020 11:21:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "163b6148-e976-4a1b-be58-d2a989a2789a", + "x-ms-correlation-request-id" : "5117e44d-30d4-4916-b58e-e618662167c2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101636Z:163b6148-e976-4a1b-be58-d2a989a2789a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112155Z:5117e44d-30d4-4916-b58e-e618662167c2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c4938d0b-0baa-41bf-b9b4-b9783580c37f", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:16:04.3889088+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"167e68cf-d11e-4856-8023-e54b62cafa0e\"\r\n}" + "x-ms-request-id" : "cf43967b-f184-4e8c-a6b2-6e3b405df626", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:21:22.7357731+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fb00416f-57ab-4fce-9eeb-599818f82b4b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/167e68cf-d11e-4856-8023-e54b62cafa0e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/fb00416f-57ab-4fce-9eeb-599818f82b4b?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:17:06 GMT", + "date" : "Mon, 18 May 2020 11:22:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1955665a-2e07-4430-84d9-9d084a3baf3f", + "x-ms-correlation-request-id" : "381b8bcb-a3a3-4444-8c88-19978228507c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101707Z:1955665a-2e07-4430-84d9-9d084a3baf3f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112225Z:381b8bcb-a3a3-4444-8c88-19978228507c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ca157a58-1dc8-44ec-ab81-1891f7cb9156", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:16:04.3889088+00:00\",\r\n \"endTime\": \"2020-04-29T10:17:03.2978904+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"167e68cf-d11e-4856-8023-e54b62cafa0e\"\r\n}" + "x-ms-request-id" : "bc95bb8b-cb4c-4c44-84c1-6c54fd8f1546", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:21:22.7357731+00:00\",\r\n \"endTime\": \"2020-05-18T11:22:24.3473663+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fb00416f-57ab-4fce-9eeb-599818f82b4b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-44432d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-90881e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:17:37 GMT", + "date" : "Mon, 18 May 2020 11:22:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3853", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7ff7c0a4-7aa9-43ce-aeff-73573405fbde", + "x-ms-correlation-request-id" : "21c0a1d7-6555-427d-91a1-758731a1f429", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101737Z:7ff7c0a4-7aa9-43ce-aeff-73573405fbde", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112256Z:21c0a1d7-6555-427d-91a1-758731a1f429", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "af71c2a4-05b9-4062-a251-8baedd0410b9", - "Body" : "{\r\n \"name\": \"vm-44432d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-44432d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"73bc5fed-2698-48b1-9f8b-f16a1c49fb5d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-44432d_OsDisk_1_93c671dbd41644a6bb688f83c23b8475\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-44432d_OsDisk_1_93c671dbd41644a6bb688f83c23b8475\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-7813336478d\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-7813336478d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-44432d_disk3_067c7ef41ae14eeda158f30dd6915e92\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-44432d_disk3_067c7ef41ae14eeda158f30dd6915e92\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-44432d_disk4_1ef0ffb120cc425a94ab8c0ea65be10d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-44432d_disk4_1ef0ffb120cc425a94ab8c0ea65be10d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-44432d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3745007cfe3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "2e0e2570-9228-43c1-af93-be0a01c5600d", + "Body" : "{\r\n \"name\": \"vm-90881e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-90881e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"66766416-204f-4ec5-9745-877d147d1ff7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-90881e_OsDisk_1_84acc00383f344028f1aa62b2930b584\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_OsDisk_1_84acc00383f344028f1aa62b2930b584\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a7938269f83\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-a7938269f83\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-90881e_disk3_7365ebfedda94df8ad0adcba679be35e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_disk3_7365ebfedda94df8ad0adcba679be35e\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-90881e_disk4_ef01c35e3ce447389fce01b0cb4ed6f4\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_disk4_ef01c35e3ce447389fce01b0cb4ed6f4\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-90881e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-44432d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-90881e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:17:42 GMT", + "date" : "Mon, 18 May 2020 11:23:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "4121", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e0849622-2863-4276-9188-07ae632ddcaf", + "x-ms-correlation-request-id" : "c91a64b9-2328-48de-8282-9172b0da78fa", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101742Z:e0849622-2863-4276-9188-07ae632ddcaf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112301Z:c91a64b9-2328-48de-8282-9172b0da78fa", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "87fe2cad-5a34-41a2-abbb-14139968e113", + "Body" : "{\r\n \"name\": \"vm-90881e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-90881e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"66766416-204f-4ec5-9745-877d147d1ff7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-90881e_OsDisk_1_84acc00383f344028f1aa62b2930b584\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_OsDisk_1_84acc00383f344028f1aa62b2930b584\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a7938269f83\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-a7938269f83\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-90881e_disk3_7365ebfedda94df8ad0adcba679be35e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_disk3_7365ebfedda94df8ad0adcba679be35e\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-90881e_disk4_ef01c35e3ce447389fce01b0cb4ed6f4\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_disk4_ef01c35e3ce447389fce01b0cb4ed6f4\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-90881e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/87fe2cad-5a34-41a2-abbb-14139968e113?api-version=2019-03-01" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-90881e?api-version=2019-03-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + }, + "Response" : { + "date" : "Mon, 18 May 2020 11:23:31 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "4379", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "0b3fdb1f-8f03-464b-8cc9-45b256409ae1", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31986", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112331Z:0b3fdb1f-8f03-464b-8cc9-45b256409ae1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "748ed965-c224-4ec5-ab9f-54a27f7bd9f2", - "Body" : "{\r\n \"name\": \"vm-44432d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-44432d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"73bc5fed-2698-48b1-9f8b-f16a1c49fb5d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-44432d_OsDisk_1_93c671dbd41644a6bb688f83c23b8475\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-44432d_OsDisk_1_93c671dbd41644a6bb688f83c23b8475\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-7813336478d\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-7813336478d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-44432d_disk3_067c7ef41ae14eeda158f30dd6915e92\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-44432d_disk3_067c7ef41ae14eeda158f30dd6915e92\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-44432d_disk4_1ef0ffb120cc425a94ab8c0ea65be10d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-44432d_disk4_1ef0ffb120cc425a94ab8c0ea65be10d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-44432d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3745007cfe3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/748ed965-c224-4ec5-ab9f-54a27f7bd9f2?api-version=2019-03-01" + "x-ms-request-id" : "a3e310e8-aa66-469b-a164-6c43069db08d", + "Body" : "{\r\n \"name\": \"vm-90881e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-90881e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"66766416-204f-4ec5-9745-877d147d1ff7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-90881e_OsDisk_1_84acc00383f344028f1aa62b2930b584\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_OsDisk_1_84acc00383f344028f1aa62b2930b584\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a7938269f83\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-a7938269f83\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-90881e_disk3_7365ebfedda94df8ad0adcba679be35e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_disk3_7365ebfedda94df8ad0adcba679be35e\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-90881e_disk4_ef01c35e3ce447389fce01b0cb4ed6f4\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_disk4_ef01c35e3ce447389fce01b0cb4ed6f4\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm-90881e_disk5_f3f56dbc359a43508d321a6123d01a87\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_disk5_f3f56dbc359a43508d321a6123d01a87\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-90881e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-44432d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-90881e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:18:12 GMT", + "date" : "Mon, 18 May 2020 11:24:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3854", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "82ac397e-cc4f-4a9e-b920-7c26f89faaef", + "x-ms-correlation-request-id" : "4749088d-552b-43ea-b029-8f0293825c15", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101813Z:82ac397e-cc4f-4a9e-b920-7c26f89faaef", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31983", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112402Z:4749088d-552b-43ea-b029-8f0293825c15", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4ab30ac0-fb2a-4e6d-ace2-66afd592febb", - "Body" : "{\r\n \"name\": \"vm-44432d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-44432d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"73bc5fed-2698-48b1-9f8b-f16a1c49fb5d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-44432d_OsDisk_1_93c671dbd41644a6bb688f83c23b8475\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-44432d_OsDisk_1_93c671dbd41644a6bb688f83c23b8475\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-7813336478d\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-7813336478d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-44432d_disk4_1ef0ffb120cc425a94ab8c0ea65be10d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-44432d_disk4_1ef0ffb120cc425a94ab8c0ea65be10d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm-44432d_disk5_790e554838614f37932068bd86a09ece\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-44432d_disk5_790e554838614f37932068bd86a09ece\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-44432d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3745007cfe3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "1914b2d4-9306-4c48-a9d5-c776ecb6d9c6", + "Body" : "{\r\n \"name\": \"vm-90881e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-90881e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"66766416-204f-4ec5-9745-877d147d1ff7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-90881e_OsDisk_1_84acc00383f344028f1aa62b2930b584\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_OsDisk_1_84acc00383f344028f1aa62b2930b584\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a7938269f83\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-a7938269f83\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-90881e_disk4_ef01c35e3ce447389fce01b0cb4ed6f4\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_disk4_ef01c35e3ce447389fce01b0cb4ed6f4\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm-90881e_disk5_f3f56dbc359a43508d321a6123d01a87\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-90881e_disk5_f3f56dbc359a43508d321a6123d01a87\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-90881e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic17133465c74\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvfda50287?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv39280115?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:18:45 GMT", - "content-length" : "323", + "date" : "Mon, 18 May 2020 11:24:35 GMT", + "content-length" : "317", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "61c94758-b912-411e-aa0c-94a9238a5ec0", + "x-ms-correlation-request-id" : "a7cc08e4-a7cd-4e2b-b9b3-31e522e4348e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101846Z:61c94758-b912-411e-aa0c-94a9238a5ec0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112436Z:a7cc08e4-a7cd-4e2b-b9b3-31e522e4348e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "61c94758-b912-411e-aa0c-94a9238a5ec0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287\",\"name\":\"rgcomvfda50287\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-04-29T10:18:44.018012600Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "a7cc08e4-a7cd-4e2b-b9b3-31e522e4348e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115\",\"name\":\"rgcomv39280115\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-05-18T11:24:33.119Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet84278daab2?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip87692ca1?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:18:51 GMT", + "date" : "Mon, 18 May 2020 11:24:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "1350", + "content-length" : "776", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6c02255f-187f-4ec1-bbf8-615e327dad46", + "x-ms-correlation-request-id" : "44b0c9d0-a9be-4f97-a69b-ca5ba253abcc", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0fc8e450-eb3e-40c6-a8a9-9562912b4fcd", + "x-ms-arm-service-request-id" : "0883409f-2a4f-41d6-9585-2f8cfc425969", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101852Z:6c02255f-187f-4ec1-bbf8-615e327dad46", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112442Z:44b0c9d0-a9be-4f97-a69b-ca5ba253abcc", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "97dd483a-ab44-479d-8936-e9992e831fe6", - "Body" : "{\r\n \"name\": \"vnet84278daab2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet84278daab2\",\r\n \"etag\": \"W/\\\"c5575fd7-1eab-457e-812d-4f5443bde1a6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2464641e-eec4-44de-a123-be6dd97f0a17\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet84278daab2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c5575fd7-1eab-457e-812d-4f5443bde1a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/97dd483a-ab44-479d-8936-e9992e831fe6?api-version=2019-06-01" + "x-ms-request-id" : "b71d4c84-8e89-414b-8cc6-42498b999498", + "Body" : "{\r\n \"name\": \"pip87692ca1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip87692ca1\",\r\n \"etag\": \"W/\\\"7657ae87-0d25-46f9-ac5a-4dd76c892096\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"232c6a78-dded-47f0-80fd-49380db6957e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-8a780921f1c1\",\r\n \"fqdn\": \"pip-8a780921f1c1.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b71d4c84-8e89-414b-8cc6-42498b999498?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip24297c59?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet45641df620?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:18:52 GMT", + "date" : "Mon, 18 May 2020 11:24:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "776", + "content-length" : "1350", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a1fde8fd-23b5-4f47-a277-55a7e298700a", + "x-ms-correlation-request-id" : "25ccf27a-4443-4b26-9023-38e29d8cfe44", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7ebb44f5-3c36-468f-98f7-de74e5227f6e", + "x-ms-arm-service-request-id" : "57081a05-e872-41b2-a06a-da52f4ed196b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101853Z:a1fde8fd-23b5-4f47-a277-55a7e298700a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112442Z:25ccf27a-4443-4b26-9023-38e29d8cfe44", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1375d355-730f-49ff-9d1c-99070f5215a6", - "Body" : "{\r\n \"name\": \"pip24297c59\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip24297c59\",\r\n \"etag\": \"W/\\\"e9f55614-bbfe-4607-a26c-a6c5f5bfdb25\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"29ec6895-dbcb-4ce7-a2ae-a6252598a4ac\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-394495884247\",\r\n \"fqdn\": \"pip-394495884247.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1375d355-730f-49ff-9d1c-99070f5215a6?api-version=2019-06-01" + "x-ms-request-id" : "43c90e90-6861-4127-9d12-587c3c28e996", + "Body" : "{\r\n \"name\": \"vnet45641df620\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet45641df620\",\r\n \"etag\": \"W/\\\"c2f27250-97fe-44c3-80de-fdc9eb1242c1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c6d1d8f0-c101-4872-90af-ffc0620eb9f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet45641df620/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c2f27250-97fe-44c3-80de-fdc9eb1242c1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/43c90e90-6861-4127-9d12-587c3c28e996?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Storage/storageAccounts/stgvm3276096df084352e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Storage/storageAccounts/stgvm999348e6757220bd?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:18:53 GMT", + "date" : "Mon, 18 May 2020 11:24:43 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b4abae34-7edc-4354-9ecb-2d3e9b2a695f", + "x-ms-correlation-request-id" : "5afe0ff2-4c42-4b1e-b549-7e0c8bd2a8ce", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101854Z:b4abae34-7edc-4354-9ecb-2d3e9b2a695f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112443Z:5afe0ff2-4c42-4b1e-b549-7e0c8bd2a8ce", "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/dd891c79-387a-4c48-aae1-d045aba54b23?monitor=true&api-version=2019-06-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/16bd8279-2ded-4402-9935-ab95b5a238d2?monitor=true&api-version=2019-06-01", "cache-control" : "no-cache", - "x-ms-request-id" : "dd891c79-387a-4c48-aae1-d045aba54b23", + "x-ms-request-id" : "16bd8279-2ded-4402-9935-ab95b5a238d2", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/97dd483a-ab44-479d-8936-e9992e831fe6?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b71d4c84-8e89-414b-8cc6-42498b999498?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:19:22 GMT", + "date" : "Mon, 18 May 2020 11:25:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bc28a1e7-411d-488c-bf17-77f32590eca1", + "x-ms-correlation-request-id" : "2c3a16d0-2099-4bad-ab14-a4c9c638f444", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "88a626e8-ca9f-4225-a764-35dc592c0c8c", + "x-ms-arm-service-request-id" : "4c0f8068-4b8f-41ca-85b3-2653efce7990", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101923Z:bc28a1e7-411d-488c-bf17-77f32590eca1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112513Z:2c3a16d0-2099-4bad-ab14-a4c9c638f444", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6869d4cb-db29-4fe3-9ad5-f2f850bb4230", + "x-ms-request-id" : "8bc17544-a151-4ff9-8f04-e1ff3e836dd8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1375d355-730f-49ff-9d1c-99070f5215a6?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/43c90e90-6861-4127-9d12-587c3c28e996?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:19:24 GMT", + "date" : "Mon, 18 May 2020 11:25:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "117227ad-9154-4e59-a40c-d8b92c769010", + "x-ms-correlation-request-id" : "c8592015-2a74-4461-a406-1052412bb5a1", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3a3e22e7-a42d-4b47-a569-57f3f3d9d119", + "x-ms-arm-service-request-id" : "0412ee45-51c3-4d05-b8f3-d928ebc33f01", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101924Z:117227ad-9154-4e59-a40c-d8b92c769010", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112513Z:c8592015-2a74-4461-a406-1052412bb5a1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "caccec1e-17ee-47be-ab78-f98e4c5f80b0", + "x-ms-request-id" : "c2bb263a-e80c-4b3b-b09f-add7d041420f", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/dd891c79-387a-4c48-aae1-d045aba54b23?monitor=true&api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/16bd8279-2ded-4402-9935-ab95b5a238d2?monitor=true&api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:19:24 GMT", + "date" : "Mon, 18 May 2020 11:25:13 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1246", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ebaeeee-c3c0-4cbb-9ce5-dce50be80f0e", + "x-ms-correlation-request-id" : "9b74896e-295f-48e8-9391-6b6a3b5ea2bf", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101924Z:8ebaeeee-c3c0-4cbb-9ce5-dce50be80f0e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112514Z:9b74896e-295f-48e8-9391-6b6a3b5ea2bf", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "83f535ec-222c-4339-b402-e40011178663", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Storage/storageAccounts/stgvm3276096df084352e\",\"name\":\"stgvm3276096df084352e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T10:18:53.6242740Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T10:18:53.6242740Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-29T10:18:53.5461860Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm3276096df084352e.blob.core.windows.net/\",\"queue\":\"https://stgvm3276096df084352e.queue.core.windows.net/\",\"table\":\"https://stgvm3276096df084352e.table.core.windows.net/\",\"file\":\"https://stgvm3276096df084352e.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "d2e0eb1c-c792-4d4d-93b3-472c76b1a190", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Storage/storageAccounts/stgvm999348e6757220bd\",\"name\":\"stgvm999348e6757220bd\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T11:24:43.0497908Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T11:24:43.0497908Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T11:24:43.0029153Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm999348e6757220bd.blob.core.windows.net/\",\"queue\":\"https://stgvm999348e6757220bd.queue.core.windows.net/\",\"table\":\"https://stgvm999348e6757220bd.table.core.windows.net/\",\"file\":\"https://stgvm999348e6757220bd.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet84278daab2?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip87692ca1?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:19:54 GMT", + "date" : "Mon, 18 May 2020 11:25:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1352", + "content-length" : "777", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f2f05118-710b-42fb-8adf-69f2ff1ef7c7", + "x-ms-correlation-request-id" : "ea66618a-87d1-4b8a-a75e-d039a8d8d1df", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d8e30a5b-75d9-465e-bf73-b756631e6d7e", + "x-ms-arm-service-request-id" : "13eb17db-5b63-4970-9b0d-bb44dd7d4818", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101954Z:f2f05118-710b-42fb-8adf-69f2ff1ef7c7", - "etag" : "W/\"2a9fe631-2349-4579-8f03-5e51098741f6\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112544Z:ea66618a-87d1-4b8a-a75e-d039a8d8d1df", + "etag" : "W/\"345cabce-1c06-4573-ad43-4a34babc0532\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cda10d2d-42b5-49b2-8f78-2cfa62833841", - "Body" : "{\r\n \"name\": \"vnet84278daab2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet84278daab2\",\r\n \"etag\": \"W/\\\"2a9fe631-2349-4579-8f03-5e51098741f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2464641e-eec4-44de-a123-be6dd97f0a17\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet84278daab2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2a9fe631-2349-4579-8f03-5e51098741f6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "512da877-05c4-4ae7-b422-37b70c8b9a24", + "Body" : "{\r\n \"name\": \"pip87692ca1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip87692ca1\",\r\n \"etag\": \"W/\\\"345cabce-1c06-4573-ad43-4a34babc0532\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"232c6a78-dded-47f0-80fd-49380db6957e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-8a780921f1c1\",\r\n \"fqdn\": \"pip-8a780921f1c1.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip24297c59?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet45641df620?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:19:54 GMT", + "date" : "Mon, 18 May 2020 11:25:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "777", + "content-length" : "1352", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bf30b3aa-90e6-4b1c-bdcb-6ced72bf5b58", + "x-ms-correlation-request-id" : "491a3b07-d29e-46fe-8feb-7fd647b2c259", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d7572421-5aad-49c1-8d01-04bf4a13e815", + "x-ms-arm-service-request-id" : "afb17895-db58-414c-9d5d-6fb47fbb37e8", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101954Z:bf30b3aa-90e6-4b1c-bdcb-6ced72bf5b58", - "etag" : "W/\"2b06235a-0a43-4309-a39b-b7c2c680936e\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112544Z:491a3b07-d29e-46fe-8feb-7fd647b2c259", + "etag" : "W/\"7a167de0-2051-4e38-a90a-2f78cdd8d9ac\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9fe2e82d-e560-4e43-bfc2-bcbace6ccd47", - "Body" : "{\r\n \"name\": \"pip24297c59\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip24297c59\",\r\n \"etag\": \"W/\\\"2b06235a-0a43-4309-a39b-b7c2c680936e\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29ec6895-dbcb-4ce7-a2ae-a6252598a4ac\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-394495884247\",\r\n \"fqdn\": \"pip-394495884247.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "8e5afc15-9cba-4dc7-b2a1-4a53afdbad40", + "Body" : "{\r\n \"name\": \"vnet45641df620\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet45641df620\",\r\n \"etag\": \"W/\\\"7a167de0-2051-4e38-a90a-2f78cdd8d9ac\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6d1d8f0-c101-4872-90af-ffc0620eb9f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet45641df620/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7a167de0-2051-4e38-a90a-2f78cdd8d9ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Storage/storageAccounts/stgvm3276096df084352e?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Storage/storageAccounts/stgvm999348e6757220bd?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:19:55 GMT", + "date" : "Mon, 18 May 2020 11:25:44 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1246", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d337c3fb-4c74-4d20-8b07-135e01a3bc0a", + "x-ms-correlation-request-id" : "152e66bb-d4fb-4378-85f6-217abad7d24f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T101955Z:d337c3fb-4c74-4d20-8b07-135e01a3bc0a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112544Z:152e66bb-d4fb-4378-85f6-217abad7d24f", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "e9e994b3-eb6e-488b-8a3d-7e82bc33e8d8", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Storage/storageAccounts/stgvm3276096df084352e\",\"name\":\"stgvm3276096df084352e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T10:18:53.6242740Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T10:18:53.6242740Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-29T10:18:53.5461860Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm3276096df084352e.blob.core.windows.net/\",\"queue\":\"https://stgvm3276096df084352e.queue.core.windows.net/\",\"table\":\"https://stgvm3276096df084352e.table.core.windows.net/\",\"file\":\"https://stgvm3276096df084352e.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "8cde02d3-aabe-46e0-adaf-b4139a27de38", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Storage/storageAccounts/stgvm999348e6757220bd\",\"name\":\"stgvm999348e6757220bd\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T11:24:43.0497908Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T11:24:43.0497908Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T11:24:43.0029153Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm999348e6757220bd.blob.core.windows.net/\",\"queue\":\"https://stgvm999348e6757220bd.queue.core.windows.net/\",\"table\":\"https://stgvm999348e6757220bd.table.core.windows.net/\",\"file\":\"https://stgvm999348e6757220bd.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:20:00 GMT", + "date" : "Mon, 18 May 2020 11:25:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1850", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "224ff7ae-83c0-4c9b-a4f4-dbf1526cabba", + "x-ms-correlation-request-id" : "5b040aed-d3d1-43e3-965c-db538f491628", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "66744e25-4ca1-4a05-a574-5c814b92bb10", + "x-ms-arm-service-request-id" : "415a4367-ca67-4dc6-9242-625eb5dfeba1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102001Z:224ff7ae-83c0-4c9b-a4f4-dbf1526cabba", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112550Z:5b040aed-d3d1-43e3-965c-db538f491628", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "51fcb10e-808d-46ef-a522-a9f737b9600a", - "Body" : "{\r\n \"name\": \"nic3444450f0c1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1\",\r\n \"etag\": \"W/\\\"ab3dfd84-1225-4e4e-8875-af6267bc8410\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9497b382-18f8-4dc4-a380-13de14ca6d3b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ab3dfd84-1225-4e4e-8875-af6267bc8410\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip24297c59\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet84278daab2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dzsgijge31pejijdxzw3s5ykch.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/51fcb10e-808d-46ef-a522-a9f737b9600a?api-version=2019-06-01" + "x-ms-request-id" : "274019ec-e90c-41f3-92f2-a555c75b5f43", + "Body" : "{\r\n \"name\": \"nic725952669ce\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce\",\r\n \"etag\": \"W/\\\"03a7de4e-45a0-48a0-b8aa-c675f27bc07b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0940f089-aa7d-405b-9b36-02119696ba80\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"03a7de4e-45a0-48a0-b8aa-c675f27bc07b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip87692ca1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet45641df620/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4dmndrqbyfzerefp55agedvz4g.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/274019ec-e90c-41f3-92f2-a555c75b5f43?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/51fcb10e-808d-46ef-a522-a9f737b9600a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/274019ec-e90c-41f3-92f2-a555c75b5f43?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:20:31 GMT", + "date" : "Mon, 18 May 2020 11:26:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ab7adf05-611e-467d-b2a2-070e34f0a8fd", + "x-ms-correlation-request-id" : "a3188cf9-ad20-42ed-b7ce-e53e06b64b23", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "836f5f08-d53c-4a82-8095-60d558337e2b", + "x-ms-arm-service-request-id" : "48f4c0cd-b26f-454d-ab9b-833bdaf41792", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102032Z:ab7adf05-611e-467d-b2a2-070e34f0a8fd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112621Z:a3188cf9-ad20-42ed-b7ce-e53e06b64b23", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8783faea-13bb-4326-95cd-f446ec623ae8", + "x-ms-request-id" : "4232ab90-3cb6-4165-af4b-516a2f8dd1cd", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:21:02 GMT", + "date" : "Mon, 18 May 2020 11:26:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1850", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c0e655ad-d13d-4518-a615-df3271477807", + "x-ms-correlation-request-id" : "23e47a23-7508-4c12-a183-2da49f4f3441", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "97ed4b3a-1024-44d1-be9b-4743af5d5eb7", + "x-ms-arm-service-request-id" : "923012bd-215b-43ce-96f3-21e1262519c5", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102103Z:c0e655ad-d13d-4518-a615-df3271477807", - "etag" : "W/\"ab3dfd84-1225-4e4e-8875-af6267bc8410\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112652Z:23e47a23-7508-4c12-a183-2da49f4f3441", + "etag" : "W/\"03a7de4e-45a0-48a0-b8aa-c675f27bc07b\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9a0e827c-abd9-4ab3-b451-b3b9bf426b52", - "Body" : "{\r\n \"name\": \"nic3444450f0c1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1\",\r\n \"etag\": \"W/\\\"ab3dfd84-1225-4e4e-8875-af6267bc8410\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9497b382-18f8-4dc4-a380-13de14ca6d3b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ab3dfd84-1225-4e4e-8875-af6267bc8410\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip24297c59\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet84278daab2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dzsgijge31pejijdxzw3s5ykch.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "30a503fe-bd62-4c71-b830-ec09db5778ae", + "Body" : "{\r\n \"name\": \"nic725952669ce\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce\",\r\n \"etag\": \"W/\\\"03a7de4e-45a0-48a0-b8aa-c675f27bc07b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0940f089-aa7d-405b-9b36-02119696ba80\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"03a7de4e-45a0-48a0-b8aa-c675f27bc07b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip87692ca1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet45641df620/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4dmndrqbyfzerefp55agedvz4g.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:21:10 GMT", + "date" : "Mon, 18 May 2020 11:26:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2341", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4a4b7180-240a-41ac-b312-bcefb9b94700", + "x-ms-correlation-request-id" : "c7562c25-25c7-4bf7-8918-f72fe2d9a5a5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102110Z:4a4b7180-240a-41ac-b312-bcefb9b94700", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112658Z:c7562c25-25c7-4bf7-8918-f72fe2d9a5a5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6ccc8200-8399-4576-9dc4-7f77f1001556", - "Body" : "{\r\n \"name\": \"vm-327609\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"04c34e9b-53e4-4e9d-ba66-93a92b8ac6d5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-327609-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-os-disk-8e851c3b-fae2-4ab7-8e25-dc4aea00b0d1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-data-disk-1-87b9fbcd-575f-41f2-aac2-700062a8e990.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-data-disk-2-6d57d234-8a19-4999-994c-688accb00f3b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-327609\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6ccc8200-8399-4576-9dc4-7f77f1001556?api-version=2019-03-01" + "x-ms-request-id" : "759a70a5-c9e7-43bf-bbde-30d47d4332e0", + "Body" : "{\r\n \"name\": \"vm-999348\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"86366e27-45c7-4591-8622-d47902e476ba\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-999348-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-os-disk-acbcfaae-fc0a-40ad-9cae-2478cb7d7bd6.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-data-disk-1-e790d970-ee33-49d8-9cc4-4c962b253ee0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-data-disk-2-f14e3f1a-577e-4159-86f1-6fc3a953d263.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-999348\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/759a70a5-c9e7-43bf-bbde-30d47d4332e0?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6ccc8200-8399-4576-9dc4-7f77f1001556?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/759a70a5-c9e7-43bf-bbde-30d47d4332e0?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:21:40 GMT", + "date" : "Mon, 18 May 2020 11:27:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d36bdb2b-b95c-4a93-bd68-51622d6aef15", + "x-ms-correlation-request-id" : "6128f959-e26c-40bd-9bd4-3a958c01e6ec", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102141Z:d36bdb2b-b95c-4a93-bd68-51622d6aef15", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112728Z:6128f959-e26c-40bd-9bd4-3a958c01e6ec", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fedc4b1b-a7e8-413e-8eea-c113e02295bc", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:21:08.1348376+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6ccc8200-8399-4576-9dc4-7f77f1001556\"\r\n}" + "x-ms-request-id" : "a399a0a6-4546-49d4-b353-23e384cc0e13", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:26:57.0599741+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"759a70a5-c9e7-43bf-bbde-30d47d4332e0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6ccc8200-8399-4576-9dc4-7f77f1001556?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/759a70a5-c9e7-43bf-bbde-30d47d4332e0?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:22:11 GMT", + "date" : "Mon, 18 May 2020 11:27:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "183", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0993811a-4635-472c-9f30-d2729546bcfc", + "x-ms-correlation-request-id" : "0071e4e4-f9ce-4856-8462-86a2312bbc65", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102211Z:0993811a-4635-472c-9f30-d2729546bcfc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112759Z:0071e4e4-f9ce-4856-8462-86a2312bbc65", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d8f91a31-e1b5-426b-97eb-889ca90b4b87", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:21:08.1348376+00:00\",\r\n \"endTime\": \"2020-04-29T10:21:53.4489425+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6ccc8200-8399-4576-9dc4-7f77f1001556\"\r\n}" + "x-ms-request-id" : "b084c7dc-11f3-4ba5-940f-b484d11dbdfa", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:26:57.0599741+00:00\",\r\n \"endTime\": \"2020-05-18T11:27:47.936652+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"759a70a5-c9e7-43bf-bbde-30d47d4332e0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:22:42 GMT", + "date" : "Mon, 18 May 2020 11:28:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2369", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "70273d28-1b11-4122-9aca-d690af1aadaa", + "x-ms-correlation-request-id" : "3094e6d8-42c1-4748-83c9-fb25b5820c03", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3970,Microsoft.Compute/LowCostGet30Min;31959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102242Z:70273d28-1b11-4122-9aca-d690af1aadaa", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31980", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112830Z:3094e6d8-42c1-4748-83c9-fb25b5820c03", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7fddb00e-4298-447e-9181-4884366f5c2c", - "Body" : "{\r\n \"name\": \"vm-327609\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"04c34e9b-53e4-4e9d-ba66-93a92b8ac6d5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-327609-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-os-disk-8e851c3b-fae2-4ab7-8e25-dc4aea00b0d1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-data-disk-1-87b9fbcd-575f-41f2-aac2-700062a8e990.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-data-disk-2-6d57d234-8a19-4999-994c-688accb00f3b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-327609\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "0ab8f804-3bbb-48fb-9552-6c7f27c174aa", + "Body" : "{\r\n \"name\": \"vm-999348\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"86366e27-45c7-4591-8622-d47902e476ba\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-999348-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-os-disk-acbcfaae-fc0a-40ad-9cae-2478cb7d7bd6.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-data-disk-1-e790d970-ee33-49d8-9cc4-4c962b253ee0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-data-disk-2-f14e3f1a-577e-4159-86f1-6fc3a953d263.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-999348\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:22:41 GMT", + "date" : "Mon, 18 May 2020 11:28:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2096", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eb35c618-0022-4eaa-a5b2-cf62c14383e0", + "x-ms-correlation-request-id" : "5d3006c3-cccd-4ffa-bcb2-5f4d19f4f70c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "30cf9a1b-230f-4af9-b54a-1e3827141718", + "x-ms-arm-service-request-id" : "ee89a3c1-4f85-4505-8ab9-cb8130567806", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102242Z:eb35c618-0022-4eaa-a5b2-cf62c14383e0", - "etag" : "W/\"acbf538b-4e13-43ed-80c9-296f00204533\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112830Z:5d3006c3-cccd-4ffa-bcb2-5f4d19f4f70c", + "etag" : "W/\"976f24d8-09f8-4420-9c55-4ef7fadcfc23\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "63695401-357b-443c-b43c-f136bebd30af", - "Body" : "{\r\n \"name\": \"nic3444450f0c1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1\",\r\n \"etag\": \"W/\\\"acbf538b-4e13-43ed-80c9-296f00204533\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9497b382-18f8-4dc4-a380-13de14ca6d3b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"acbf538b-4e13-43ed-80c9-296f00204533\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip24297c59\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet84278daab2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dzsgijge31pejijdxzw3s5ykch.jx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-75-0C-EB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "8898380c-7722-43f3-8948-35a883c58787", + "Body" : "{\r\n \"name\": \"nic725952669ce\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce\",\r\n \"etag\": \"W/\\\"976f24d8-09f8-4420-9c55-4ef7fadcfc23\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0940f089-aa7d-405b-9b36-02119696ba80\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"976f24d8-09f8-4420-9c55-4ef7fadcfc23\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip87692ca1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet45641df620/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4dmndrqbyfzerefp55agedvz4g.jx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-76-B5-DB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip24297c59?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip87692ca1?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:22:42 GMT", + "date" : "Mon, 18 May 2020 11:28:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1029", + "content-length" : "1030", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3a45beee-d249-401b-9984-ef627c6c1237", + "x-ms-correlation-request-id" : "b79c8c89-1248-4b3a-b1dc-d9c9b6c7f3df", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6831b1d1-57e2-49ed-a35d-a551568eab51", + "x-ms-arm-service-request-id" : "6eabc91e-c52d-41e2-881c-93a88a517bd0", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102243Z:3a45beee-d249-401b-9984-ef627c6c1237", - "etag" : "W/\"91f8c608-e154-45ec-98ee-e8a5751ec0ce\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112831Z:b79c8c89-1248-4b3a-b1dc-d9c9b6c7f3df", + "etag" : "W/\"38c4454a-5d5d-4cd7-959f-f005950f3748\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c2661cc0-4eec-419a-89f3-b84a8d3a4090", - "Body" : "{\r\n \"name\": \"pip24297c59\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip24297c59\",\r\n \"etag\": \"W/\\\"91f8c608-e154-45ec-98ee-e8a5751ec0ce\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29ec6895-dbcb-4ce7-a2ae-a6252598a4ac\",\r\n \"ipAddress\": \"40.124.51.127\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-394495884247\",\r\n \"fqdn\": \"pip-394495884247.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "a30cbe6d-f686-4eda-93d1-41e150201c0d", + "Body" : "{\r\n \"name\": \"pip87692ca1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip87692ca1\",\r\n \"etag\": \"W/\\\"38c4454a-5d5d-4cd7-959f-f005950f3748\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"232c6a78-dded-47f0-80fd-49380db6957e\",\r\n \"ipAddress\": \"104.214.32.254\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-8a780921f1c1\",\r\n \"fqdn\": \"pip-8a780921f1c1.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609/deallocate?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348/deallocate?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:23:06 GMT", + "date" : "Mon, 18 May 2020 11:28:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9d9f8e9d-4b78-450c-99c5-7e0078553c56", + "x-ms-correlation-request-id" : "35fbce2c-40b9-4215-9fe5-6892a20c3936", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102306Z:9d9f8e9d-4b78-450c-99c5-7e0078553c56", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112854Z:35fbce2c-40b9-4215-9fe5-6892a20c3936", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/13b1e664-2b67-4eec-85f2-d0560f424b41?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e7f6d84a-aa14-4ed8-9a61-333a05f1bc82", + "x-ms-request-id" : "13b1e664-2b67-4eec-85f2-d0560f424b41", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/13b1e664-2b67-4eec-85f2-d0560f424b41?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/13b1e664-2b67-4eec-85f2-d0560f424b41?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:23:36 GMT", + "date" : "Mon, 18 May 2020 11:29:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "970e7a5b-27f7-4501-9ca9-87f4ab1db1e5", + "x-ms-correlation-request-id" : "bdb23779-ef39-4d44-9387-f032a1381117", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102337Z:970e7a5b-27f7-4501-9ca9-87f4ab1db1e5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ec7484f7-6cf9-4fc3-9112-11a1a4610343", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:23:06.4984742+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e7f6d84a-aa14-4ed8-9a61-333a05f1bc82\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:24:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "17376863-409f-4c1c-9f42-13c59cbf1ada", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102407Z:17376863-409f-4c1c-9f42-13c59cbf1ada", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "878609d0-b278-45f3-aba6-eee996d9f10b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:23:06.4984742+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e7f6d84a-aa14-4ed8-9a61-333a05f1bc82\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:24:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "be83b865-ecd4-4b10-a322-022210ebb612", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102438Z:be83b865-ecd4-4b10-a322-022210ebb612", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112925Z:bdb23779-ef39-4d44-9387-f032a1381117", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7af65198-a942-46cc-a1a6-ecf27e0335c1", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:23:06.4984742+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e7f6d84a-aa14-4ed8-9a61-333a05f1bc82\"\r\n}" + "x-ms-request-id" : "81ac126b-de8a-44b1-ac60-1cf497b4964c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:28:54.4855858+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"13b1e664-2b67-4eec-85f2-d0560f424b41\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/13b1e664-2b67-4eec-85f2-d0560f424b41?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:25:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5a4cbae1-eae9-4b84-8cd6-7053672421c3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102509Z:5a4cbae1-eae9-4b84-8cd6-7053672421c3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "dc4fbe8f-b389-431e-b688-81e7aa07496e", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:23:06.4984742+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e7f6d84a-aa14-4ed8-9a61-333a05f1bc82\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:25:39 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4a6d0887-20f0-4209-8648-f073912c5cd4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102539Z:4a6d0887-20f0-4209-8648-f073912c5cd4", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4eea7685-ee3a-4d4e-a567-f482ae916137", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:23:06.4984742+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e7f6d84a-aa14-4ed8-9a61-333a05f1bc82\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:26:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "634eef5d-241e-4da7-be81-2aafd8d4ec0b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102610Z:634eef5d-241e-4da7-be81-2aafd8d4ec0b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5f227c75-8b40-4818-b6e4-ed70a4456827", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:23:06.4984742+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e7f6d84a-aa14-4ed8-9a61-333a05f1bc82\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:26:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60773f5a-948c-43d0-83ea-71b1005921da", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102640Z:60773f5a-948c-43d0-83ea-71b1005921da", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "aca5d2c6-5f3b-459f-831b-76a3910a3200", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:23:06.4984742+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e7f6d84a-aa14-4ed8-9a61-333a05f1bc82\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:27:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b996e926-d9ff-421e-9f6f-a1db966c5740", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102711Z:b996e926-d9ff-421e-9f6f-a1db966c5740", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "50c09548-c684-4e4d-9ea7-773ce3322c38", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:23:06.4984742+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e7f6d84a-aa14-4ed8-9a61-333a05f1bc82\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:27:40 GMT", + "date" : "Mon, 18 May 2020 11:29:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b9839c2c-60bc-42d4-bcae-059773b73e06", + "x-ms-correlation-request-id" : "ac51682c-5acc-4711-9bed-ab9fb6c52074", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102741Z:b9839c2c-60bc-42d4-bcae-059773b73e06", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29968", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T112955Z:ac51682c-5acc-4711-9bed-ab9fb6c52074", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6987cd97-9c88-483b-93a9-22e5c4f9652f", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:23:06.4984742+00:00\",\r\n \"endTime\": \"2020-04-29T10:27:19.0856579+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e7f6d84a-aa14-4ed8-9a61-333a05f1bc82\"\r\n}" + "x-ms-request-id" : "4c4154b8-295f-458e-99bc-6f8c9737f0b2", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:28:54.4855858+00:00\",\r\n \"endTime\": \"2020-05-18T11:29:55.2846482+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"13b1e664-2b67-4eec-85f2-d0560f424b41\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e7f6d84a-aa14-4ed8-9a61-333a05f1bc82?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/13b1e664-2b67-4eec-85f2-d0560f424b41?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:28:12 GMT", + "date" : "Mon, 18 May 2020 11:30:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8af12c2f-a879-49fd-8f6b-1ea550d562c1", + "x-ms-correlation-request-id" : "636d69f6-82bb-426b-9555-aff567b1798f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102812Z:8af12c2f-a879-49fd-8f6b-1ea550d562c1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29966", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113026Z:636d69f6-82bb-426b-9555-aff567b1798f", "cache-control" : "no-cache", - "x-ms-request-id" : "352c4657-d2d8-487f-9d42-44d3a58fdae8", + "x-ms-request-id" : "4109af36-c053-421b-85dc-f87869249f34", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609?$expand=instanceView&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348?$expand=instanceView&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:28:13 GMT", + "date" : "Mon, 18 May 2020 11:30:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3817", + "content-length" : "3819", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c7855acc-f24c-4c22-b2cc-7599638c8165", + "x-ms-correlation-request-id" : "475ba30b-4943-470f-9eb4-c62c85b0b10a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102814Z:c7855acc-f24c-4c22-b2cc-7599638c8165", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31978", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113027Z:475ba30b-4943-470f-9eb4-c62c85b0b10a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a366a2fd-39c7-4d41-9b9a-8979651b187f", - "Body" : "{\r\n \"name\": \"vm-327609\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"04c34e9b-53e4-4e9d-ba66-93a92b8ac6d5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-327609-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-os-disk-8e851c3b-fae2-4ab7-8e25-dc4aea00b0d1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-data-disk-1-87b9fbcd-575f-41f2-aac2-700062a8e990.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-data-disk-2-6d57d234-8a19-4999-994c-688accb00f3b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-327609\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic3444450f0c1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm-327609-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T10:27:19.038777+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T10:27:19.038777+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T10:27:19.038777+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T10:27:19.0544012+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n }\r\n}" + "x-ms-request-id" : "bb12341d-e29c-4699-8df9-4bbdba91f848", + "Body" : "{\r\n \"name\": \"vm-999348\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"86366e27-45c7-4591-8622-d47902e476ba\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-999348-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-os-disk-acbcfaae-fc0a-40ad-9cae-2478cb7d7bd6.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-data-disk-1-e790d970-ee33-49d8-9cc4-4c962b253ee0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-data-disk-2-f14e3f1a-577e-4159-86f1-6fc3a953d263.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-999348\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic725952669ce\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm-999348-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T11:29:55.2378014+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T11:29:55.2378014+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T11:29:55.2378014+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T11:29:55.253404+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609/generalize?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348/generalize?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:28:14 GMT", + "date" : "Mon, 18 May 2020 11:30:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "557787b2-867e-4fb1-9a8f-576828836cb1", + "x-ms-correlation-request-id" : "dec2782a-51aa-4c8f-a81d-f0439fd209c9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102814Z:557787b2-867e-4fb1-9a8f-576828836cb1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113027Z:dec2782a-51aa-4c8f-a81d-f0439fd209c9", "cache-control" : "no-cache", - "x-ms-request-id" : "3178d957-2bb6-4c8f-adba-61f52b19e9e0", + "x-ms-request-id" : "8b033e73-1aa2-4ce9-8aed-dc2081d23316", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/images/cimg-37420?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/images/cimg-21360?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:28:40 GMT", + "date" : "Mon, 18 May 2020 11:30:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1541", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a5842ddd-5c96-44a6-bbbe-0b71bb9f2f78", + "x-ms-correlation-request-id" : "cb93159d-cfca-4527-8b76-e13195221d9c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102841Z:a5842ddd-5c96-44a6-bbbe-0b71bb9f2f78", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113039Z:cb93159d-cfca-4527-8b76-e13195221d9c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "03352bfa-8d5e-4a6d-9d22-1e1408c13bd4", - "Body" : "{\r\n \"name\": \"cimg-37420\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/images/cimg-37420\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-os-disk-8e851c3b-fae2-4ab7-8e25-dc4aea00b0d1.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-data-disk-1-87b9fbcd-575f-41f2-aac2-700062a8e990.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-data-disk-2-6d57d234-8a19-4999-994c-688accb00f3b.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/03352bfa-8d5e-4a6d-9d22-1e1408c13bd4?api-version=2019-03-01" + "x-ms-request-id" : "c7dd042f-2b60-4830-a78f-09575e008b96", + "Body" : "{\r\n \"name\": \"cimg-21360\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/images/cimg-21360\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-os-disk-acbcfaae-fc0a-40ad-9cae-2478cb7d7bd6.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-data-disk-1-e790d970-ee33-49d8-9cc4-4c962b253ee0.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-data-disk-2-f14e3f1a-577e-4159-86f1-6fc3a953d263.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/c7dd042f-2b60-4830-a78f-09575e008b96?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/03352bfa-8d5e-4a6d-9d22-1e1408c13bd4?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/c7dd042f-2b60-4830-a78f-09575e008b96?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:29:11 GMT", + "date" : "Mon, 18 May 2020 11:31:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c1d8f735-f8a9-44bb-a202-9a511a2c06cd", + "x-ms-correlation-request-id" : "e7fdd24c-6156-4561-9448-3d39f2fec0b6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102911Z:c1d8f735-f8a9-44bb-a202-9a511a2c06cd", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29964", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113109Z:e7fdd24c-6156-4561-9448-3d39f2fec0b6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "69c2d883-1d83-4bd8-9e07-2fbfef2b0405", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:28:19.1185498+00:00\",\r\n \"endTime\": \"2020-04-29T10:28:29.6972422+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"03352bfa-8d5e-4a6d-9d22-1e1408c13bd4\"\r\n}" + "x-ms-request-id" : "b2052f02-f4b9-4478-9006-3c3fb204b707", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:30:32.3797789+00:00\",\r\n \"endTime\": \"2020-05-18T11:30:42.5988879+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c7dd042f-2b60-4830-a78f-09575e008b96\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/images/cimg-37420?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/images/cimg-21360?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:29:42 GMT", + "date" : "Mon, 18 May 2020 11:31:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1542", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cfdde332-7a54-479f-942a-aeed8cb82457", + "x-ms-correlation-request-id" : "8faad847-eef5-4153-b0aa-fc27a03bb81c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102942Z:cfdde332-7a54-479f-942a-aeed8cb82457", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113140Z:8faad847-eef5-4153-b0aa-fc27a03bb81c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2061df24-e791-4d33-b2ce-44f3962d6dca", - "Body" : "{\r\n \"name\": \"cimg-37420\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/images/cimg-37420\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-os-disk-8e851c3b-fae2-4ab7-8e25-dc4aea00b0d1.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-data-disk-1-87b9fbcd-575f-41f2-aac2-700062a8e990.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-data-disk-2-6d57d234-8a19-4999-994c-688accb00f3b.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" + "x-ms-request-id" : "5e7c4c93-2b64-42fc-93e8-b96820e9dcb7", + "Body" : "{\r\n \"name\": \"cimg-21360\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/images/cimg-21360\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-os-disk-acbcfaae-fc0a-40ad-9cae-2478cb7d7bd6.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-data-disk-1-e790d970-ee33-49d8-9cc4-4c962b253ee0.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-data-disk-2-f14e3f1a-577e-4159-86f1-6fc3a953d263.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet664881d7bf?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet16117003b3?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:29:47 GMT", + "date" : "Mon, 18 May 2020 11:31:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1350", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b34b0a0-7a91-4b11-b88a-6016ccbb8aeb", + "x-ms-correlation-request-id" : "ae697d0a-f57f-43f0-bd3c-87cb76bff8ec", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "030bbfd0-683d-4ae7-89b0-ae4f280d96e3", + "x-ms-arm-service-request-id" : "69dc5b6e-4ec9-43b2-9e5e-ec437eece5d0", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T102948Z:0b34b0a0-7a91-4b11-b88a-6016ccbb8aeb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113146Z:ae697d0a-f57f-43f0-bd3c-87cb76bff8ec", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ee54ea79-7d43-462d-855f-d85e239e873f", - "Body" : "{\r\n \"name\": \"vnet664881d7bf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet664881d7bf\",\r\n \"etag\": \"W/\\\"c23f5951-f26a-4bb0-be85-648a536659cf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7cfa6e45-ab55-4e8b-8ab6-8e6f5b7a5048\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet664881d7bf/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c23f5951-f26a-4bb0-be85-648a536659cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ee54ea79-7d43-462d-855f-d85e239e873f?api-version=2019-06-01" + "x-ms-request-id" : "2ddc597c-3521-4b17-9aef-2d9634b3d7bd", + "Body" : "{\r\n \"name\": \"vnet16117003b3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet16117003b3\",\r\n \"etag\": \"W/\\\"583f4335-ab47-4413-95ba-227979578d1e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8170be90-cedc-410a-9faf-543afb27207c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet16117003b3/subnets/subnet1\",\r\n \"etag\": \"W/\\\"583f4335-ab47-4413-95ba-227979578d1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2ddc597c-3521-4b17-9aef-2d9634b3d7bd?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ee54ea79-7d43-462d-855f-d85e239e873f?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2ddc597c-3521-4b17-9aef-2d9634b3d7bd?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:30:19 GMT", + "date" : "Mon, 18 May 2020 11:32:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a4162cdd-012c-4ab9-9ff8-21d3f8dada74", + "x-ms-correlation-request-id" : "264d7a26-c7f3-40cb-b1d7-d0f3346d7ad1", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b13719b5-b587-4c12-bd1a-fe85406dd21d", + "x-ms-arm-service-request-id" : "06713cbf-5017-4553-87f5-fcd12a137c1e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103019Z:a4162cdd-012c-4ab9-9ff8-21d3f8dada74", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113217Z:264d7a26-c7f3-40cb-b1d7-d0f3346d7ad1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9fd77828-e596-464c-8bc4-524d672f9726", + "x-ms-request-id" : "6445a397-a9fb-43db-84c3-c0febc1f2279", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet664881d7bf?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet16117003b3?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:30:49 GMT", + "date" : "Mon, 18 May 2020 11:32:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1352", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "39437326-b86e-460a-a832-6d08ed806b19", + "x-ms-correlation-request-id" : "75525376-e9ed-4934-940d-b93e4b81d727", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b53e633f-2ba0-4a1f-bbab-5d3eee04b218", + "x-ms-arm-service-request-id" : "d5c150f1-3ed4-4c1e-b329-ee47aa70c3a6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103050Z:39437326-b86e-460a-a832-6d08ed806b19", - "etag" : "W/\"8ad0d105-a290-4116-8deb-8dee6692c8ad\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113248Z:75525376-e9ed-4934-940d-b93e4b81d727", + "etag" : "W/\"40cc0c54-d79b-4fb0-a846-3a1a00c17921\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fdd872fb-7936-4e4f-bb5f-773448738d33", - "Body" : "{\r\n \"name\": \"vnet664881d7bf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet664881d7bf\",\r\n \"etag\": \"W/\\\"8ad0d105-a290-4116-8deb-8dee6692c8ad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7cfa6e45-ab55-4e8b-8ab6-8e6f5b7a5048\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet664881d7bf/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8ad0d105-a290-4116-8deb-8dee6692c8ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "445efd09-81ea-4d1a-aa51-5bfeb5d9029c", + "Body" : "{\r\n \"name\": \"vnet16117003b3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet16117003b3\",\r\n \"etag\": \"W/\\\"40cc0c54-d79b-4fb0-a846-3a1a00c17921\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8170be90-cedc-410a-9faf-543afb27207c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet16117003b3/subnets/subnet1\",\r\n \"etag\": \"W/\\\"40cc0c54-d79b-4fb0-a846-3a1a00c17921\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic6969592b272?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic44943d5cdf6?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:30:55 GMT", + "date" : "Mon, 18 May 2020 11:32:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1643", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2c661316-d7ab-49eb-b5fb-899c5d3546c6", + "x-ms-correlation-request-id" : "eae2b968-0522-41c6-9852-ebc8cdd333b4", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d03aefd8-57ed-423c-b9bb-ed1743c2280c", + "x-ms-arm-service-request-id" : "8aa31955-fe56-4616-a54c-ee8242081014", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103056Z:2c661316-d7ab-49eb-b5fb-899c5d3546c6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113254Z:eae2b968-0522-41c6-9852-ebc8cdd333b4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c6e229d5-61cb-4681-9e2e-683d5254a7e4", - "Body" : "{\r\n \"name\": \"nic6969592b272\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic6969592b272\",\r\n \"etag\": \"W/\\\"4777a3d4-a2ac-4330-b49d-416ff3a7bb90\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba7562e2-9377-4c81-9556-b20da56dc791\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic6969592b272/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4777a3d4-a2ac-4330-b49d-416ff3a7bb90\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet664881d7bf/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ivxpu5cvvofu3cvwrzxvw4sqja.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c6e229d5-61cb-4681-9e2e-683d5254a7e4?api-version=2019-06-01" + "x-ms-request-id" : "2b738a64-093a-46a1-8164-6a996d2f1ac9", + "Body" : "{\r\n \"name\": \"nic44943d5cdf6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic44943d5cdf6\",\r\n \"etag\": \"W/\\\"d251de95-6218-44bb-b47c-172f8943802f\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8d2bafc3-3789-447a-92ce-ca76ebb6d0cb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic44943d5cdf6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d251de95-6218-44bb-b47c-172f8943802f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet16117003b3/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"sc5hbao2zyfedh3pkq3pwjzape.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2b738a64-093a-46a1-8164-6a996d2f1ac9?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c6e229d5-61cb-4681-9e2e-683d5254a7e4?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2b738a64-093a-46a1-8164-6a996d2f1ac9?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:31:26 GMT", + "date" : "Mon, 18 May 2020 11:33:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "81c028fe-ebbd-405f-b5f3-ad88089ea531", + "x-ms-correlation-request-id" : "ace3cdc0-6378-4d32-aaf7-ef53a181b793", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1d1abd85-13a4-4d86-86f0-037a47c486fa", + "x-ms-arm-service-request-id" : "08dcb139-1f39-42b6-8484-c4d35a9eaf7c", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103127Z:81c028fe-ebbd-405f-b5f3-ad88089ea531", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113325Z:ace3cdc0-6378-4d32-aaf7-ef53a181b793", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "19cfbcb7-8331-4c24-acd2-46f691e56f64", + "x-ms-request-id" : "17457043-d37b-4613-8295-8e2b826edf50", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic6969592b272?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic44943d5cdf6?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:31:57 GMT", + "date" : "Mon, 18 May 2020 11:33:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1643", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b5d5fd18-460e-4226-801c-611159381948", + "x-ms-correlation-request-id" : "66258a9d-745f-47e9-ba23-eb0b9fb8502b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "14ad9368-cbcc-4468-a8c6-9547ea9582ad", + "x-ms-arm-service-request-id" : "b326dc87-9a40-419a-a73e-415c58d74803", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103157Z:b5d5fd18-460e-4226-801c-611159381948", - "etag" : "W/\"4777a3d4-a2ac-4330-b49d-416ff3a7bb90\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113355Z:66258a9d-745f-47e9-ba23-eb0b9fb8502b", + "etag" : "W/\"d251de95-6218-44bb-b47c-172f8943802f\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6dda41e4-3bfc-4dbc-8374-2de674fcae13", - "Body" : "{\r\n \"name\": \"nic6969592b272\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic6969592b272\",\r\n \"etag\": \"W/\\\"4777a3d4-a2ac-4330-b49d-416ff3a7bb90\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba7562e2-9377-4c81-9556-b20da56dc791\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic6969592b272/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4777a3d4-a2ac-4330-b49d-416ff3a7bb90\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet664881d7bf/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ivxpu5cvvofu3cvwrzxvw4sqja.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "70d844c4-0e20-45d0-8f66-f4e004539f00", + "Body" : "{\r\n \"name\": \"nic44943d5cdf6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic44943d5cdf6\",\r\n \"etag\": \"W/\\\"d251de95-6218-44bb-b47c-172f8943802f\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8d2bafc3-3789-447a-92ce-ca76ebb6d0cb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic44943d5cdf6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d251de95-6218-44bb-b47c-172f8943802f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet16117003b3/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"sc5hbao2zyfedh3pkq3pwjzape.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-685657?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-368875?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:32:04 GMT", + "date" : "Mon, 18 May 2020 11:34:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2639", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c6f6fdab-51d4-4df6-a278-f8d1056e3303", + "x-ms-correlation-request-id" : "9055d289-3a9f-4334-bbfa-97fc4c4724a4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103204Z:c6f6fdab-51d4-4df6-a278-f8d1056e3303", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1195", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113403Z:9055d289-3a9f-4334-bbfa-97fc4c4724a4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0d5d01ca-41bf-47b3-a801-fc52a132a7c7", - "Body" : "{\r\n \"name\": \"vm-685657\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-685657\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ac2556d5-280e-41d9-b47f-90652418aef0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/images/cimg-37420\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-685657\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic6969592b272\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0d5d01ca-41bf-47b3-a801-fc52a132a7c7?api-version=2019-03-01" + "x-ms-request-id" : "91f5b73c-0cc6-4c16-a34e-376d28a4bf87", + "Body" : "{\r\n \"name\": \"vm-368875\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-368875\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"962011d7-0fe8-4e12-ba62-ad014dac1649\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/images/cimg-21360\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-368875\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic44943d5cdf6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/91f5b73c-0cc6-4c16-a34e-376d28a4bf87?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0d5d01ca-41bf-47b3-a801-fc52a132a7c7?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/91f5b73c-0cc6-4c16-a34e-376d28a4bf87?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:32:34 GMT", + "date" : "Mon, 18 May 2020 11:34:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3f407c5e-e318-456a-a40e-fb0d68209e1c", + "x-ms-correlation-request-id" : "be8db90b-f5b7-43d0-a0ba-8ded89194cc8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103235Z:3f407c5e-e318-456a-a40e-fb0d68209e1c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29963", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113433Z:be8db90b-f5b7-43d0-a0ba-8ded89194cc8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fbaf97d9-d522-4902-8d95-504da446a6d7", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:32:02.7360162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0d5d01ca-41bf-47b3-a801-fc52a132a7c7\"\r\n}" + "x-ms-request-id" : "b5133e94-45ab-448e-b9ef-fc8202bc3ddd", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:34:00.6373813+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"91f5b73c-0cc6-4c16-a34e-376d28a4bf87\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0d5d01ca-41bf-47b3-a801-fc52a132a7c7?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/91f5b73c-0cc6-4c16-a34e-376d28a4bf87?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:33:04 GMT", + "date" : "Mon, 18 May 2020 11:35:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "183", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "47695ed1-2430-4e40-a8db-5d6daae990be", + "x-ms-correlation-request-id" : "6fb66733-9d76-46cf-8747-1593b65c056b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103305Z:47695ed1-2430-4e40-a8db-5d6daae990be", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29964", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113504Z:6fb66733-9d76-46cf-8747-1593b65c056b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8d2e1229-f4b5-4e48-b8cb-82a0114f7e77", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:32:02.7360162+00:00\",\r\n \"endTime\": \"2020-04-29T10:32:48.5501964+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0d5d01ca-41bf-47b3-a801-fc52a132a7c7\"\r\n}" + "x-ms-request-id" : "006e4d1a-e5f8-4e5c-9b48-79e6b3f1380e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:34:00.6373813+00:00\",\r\n \"endTime\": \"2020-05-18T11:34:53.576786+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"91f5b73c-0cc6-4c16-a34e-376d28a4bf87\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-685657?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-368875?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:33:35 GMT", + "date" : "Mon, 18 May 2020 11:35:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3410", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b8319f66-b7b9-44ef-93fc-5eb1ff46c0e7", + "x-ms-correlation-request-id" : "d816987f-ec96-410e-983f-1ffe4f8e9589", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103336Z:b8319f66-b7b9-44ef-93fc-5eb1ff46c0e7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31973", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113534Z:d816987f-ec96-410e-983f-1ffe4f8e9589", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9a9bc29a-0fa6-46a0-b575-eb11dd55d132", - "Body" : "{\r\n \"name\": \"vm-685657\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-685657\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ac2556d5-280e-41d9-b47f-90652418aef0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/images/cimg-37420\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-685657_disk1_b23901d36ad54ef8bd2787c0b8992a09\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-685657_disk1_b23901d36ad54ef8bd2787c0b8992a09\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-685657_disk2_ec51273cb35c4ae38151d3766f6404e5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-685657_disk2_ec51273cb35c4ae38151d3766f6404e5\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-685657_disk3_5d7943e947044ac6990f8890a3a18828\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-685657_disk3_5d7943e947044ac6990f8890a3a18828\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-685657\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic6969592b272\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "5fcb6880-42ea-479e-823c-bcc17af9738a", + "Body" : "{\r\n \"name\": \"vm-368875\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-368875\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"962011d7-0fe8-4e12-ba62-ad014dac1649\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/images/cimg-21360\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-368875_disk1_5fabe6467fb4438aa16fdbedbeb6f81e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-368875_disk1_5fabe6467fb4438aa16fdbedbeb6f81e\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-368875_disk2_a0774980a1fe4c91acb714e257979631\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-368875_disk2_a0774980a1fe4c91acb714e257979631\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-368875_disk3_3041dd095f9a4d3c888c188fc4bda0f4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-368875_disk3_3041dd095f9a4d3c888c188fc4bda0f4\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-368875\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic44943d5cdf6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-327609?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-999348?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:33:37 GMT", + "date" : "Mon, 18 May 2020 11:35:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "0", @@ -2733,1137 +2583,987 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "140e1564-b0c9-49a6-b7bb-687ab66ba378", + "x-ms-correlation-request-id" : "e7c95e04-37ae-4723-a8da-cb4a15752727", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103337Z:140e1564-b0c9-49a6-b7bb-687ab66ba378", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5a0ede91-f03b-4e8a-8568-e3951c040b09?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113535Z:e7c95e04-37ae-4723-a8da-cb4a15752727", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/190c0c2d-1a94-47d4-a1eb-9a495c82b849?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5a0ede91-f03b-4e8a-8568-e3951c040b09", + "x-ms-request-id" : "190c0c2d-1a94-47d4-a1eb-9a495c82b849", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5a0ede91-f03b-4e8a-8568-e3951c040b09?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/190c0c2d-1a94-47d4-a1eb-9a495c82b849?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5a0ede91-f03b-4e8a-8568-e3951c040b09?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/190c0c2d-1a94-47d4-a1eb-9a495c82b849?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:34:07 GMT", + "date" : "Mon, 18 May 2020 11:36:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "36b1c1bc-9271-4696-8bdb-a41ce3845284", + "x-ms-correlation-request-id" : "cf55f907-f8ab-481f-9b0f-0e29c75c85f1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103408Z:36b1c1bc-9271-4696-8bdb-a41ce3845284", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29962", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113606Z:cf55f907-f8ab-481f-9b0f-0e29c75c85f1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7e015d10-3826-4414-9336-834089948ca3", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:33:37.3800918+00:00\",\r\n \"endTime\": \"2020-04-29T10:33:48.1148072+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5a0ede91-f03b-4e8a-8568-e3951c040b09\"\r\n}" + "x-ms-request-id" : "4f015233-8d92-4058-9248-be2f0810ee55", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:35:35.3907905+00:00\",\r\n \"endTime\": \"2020-05-18T11:35:45.9380298+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"190c0c2d-1a94-47d4-a1eb-9a495c82b849\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5a0ede91-f03b-4e8a-8568-e3951c040b09?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/190c0c2d-1a94-47d4-a1eb-9a495c82b849?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:34:37 GMT", + "date" : "Mon, 18 May 2020 11:36:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "90328896-713c-411b-9de0-ab0b2c87e758", + "x-ms-correlation-request-id" : "3f2567ce-afd2-4b90-9d67-65819ccb0b27", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103438Z:90328896-713c-411b-9de0-ab0b2c87e758", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29961", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113636Z:3f2567ce-afd2-4b90-9d67-65819ccb0b27", "cache-control" : "no-cache", - "x-ms-request-id" : "69b6f6ec-8e64-48b6-85df-32b247be7044", + "x-ms-request-id" : "e1cfe082-e7f2-4f9e-936e-e9b9e3799067", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet02225e3fbb?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet98534636ec?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:34:45 GMT", + "date" : "Mon, 18 May 2020 11:36:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1350", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "412f16d4-a069-4cdc-98a2-3237a109793b", + "x-ms-correlation-request-id" : "57026266-153a-4b64-b1c5-760bd0dabc68", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f1ffc334-2dee-4731-a262-269e1e16630c", + "x-ms-arm-service-request-id" : "6684531f-9b6b-439b-a3db-b807b3c91105", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103445Z:412f16d4-a069-4cdc-98a2-3237a109793b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113643Z:57026266-153a-4b64-b1c5-760bd0dabc68", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "deb1a27f-4298-41a7-a26f-c43dbc83bd8c", - "Body" : "{\r\n \"name\": \"vnet02225e3fbb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet02225e3fbb\",\r\n \"etag\": \"W/\\\"827d2449-b685-4163-b050-348c5ed791e4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8e60f544-70f2-4421-a0ac-b00bfcc8d54f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet02225e3fbb/subnets/subnet1\",\r\n \"etag\": \"W/\\\"827d2449-b685-4163-b050-348c5ed791e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/deb1a27f-4298-41a7-a26f-c43dbc83bd8c?api-version=2019-06-01" + "x-ms-request-id" : "6985d7cf-270a-4b3c-8e8a-5f70adc42c8c", + "Body" : "{\r\n \"name\": \"vnet98534636ec\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet98534636ec\",\r\n \"etag\": \"W/\\\"0d391357-46cd-412a-a0e5-21f678347541\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"60cfa9ce-35ef-4740-b7cf-4da7eda3e27e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet98534636ec/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0d391357-46cd-412a-a0e5-21f678347541\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6985d7cf-270a-4b3c-8e8a-5f70adc42c8c?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/deb1a27f-4298-41a7-a26f-c43dbc83bd8c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6985d7cf-270a-4b3c-8e8a-5f70adc42c8c?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:35:16 GMT", + "date" : "Mon, 18 May 2020 11:37:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1e91a8db-764e-417f-9976-56337eddc23b", + "x-ms-correlation-request-id" : "d4c912a1-778e-4018-9036-81e4f953de13", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ee49a837-0e2a-47cb-ac85-1e459a827f87", + "x-ms-arm-service-request-id" : "f3a99f9b-369a-47d4-ad19-8c598895d226", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103516Z:1e91a8db-764e-417f-9976-56337eddc23b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113714Z:d4c912a1-778e-4018-9036-81e4f953de13", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5bc06a09-1de5-49b6-95ae-0dd15d89bf2e", + "x-ms-request-id" : "fd19c05a-a47b-4a33-bd8e-ab1ae8f0b81a", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet02225e3fbb?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet98534636ec?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:35:47 GMT", + "date" : "Mon, 18 May 2020 11:37:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1352", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a82cac71-62fb-4a6c-b754-070461ac3a78", + "x-ms-correlation-request-id" : "7136931b-1049-47eb-a30e-b8e2c3dd2703", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4a901767-4cc9-4205-b1d8-887362244ec8", + "x-ms-arm-service-request-id" : "51ca3d7b-b44b-4822-8a62-663aab6cfc06", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103547Z:a82cac71-62fb-4a6c-b754-070461ac3a78", - "etag" : "W/\"0bcd47a7-6052-489b-950e-1e371ecfbe4b\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113744Z:7136931b-1049-47eb-a30e-b8e2c3dd2703", + "etag" : "W/\"ee4ae5cd-fa4f-4845-9769-ca6d3c2ee933\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c31d5567-ef7b-4616-b30c-ae651b0ebf66", - "Body" : "{\r\n \"name\": \"vnet02225e3fbb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet02225e3fbb\",\r\n \"etag\": \"W/\\\"0bcd47a7-6052-489b-950e-1e371ecfbe4b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e60f544-70f2-4421-a0ac-b00bfcc8d54f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet02225e3fbb/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0bcd47a7-6052-489b-950e-1e371ecfbe4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "af41caeb-2266-4c62-a99b-8f9b3aa6fab3", + "Body" : "{\r\n \"name\": \"vnet98534636ec\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet98534636ec\",\r\n \"etag\": \"W/\\\"ee4ae5cd-fa4f-4845-9769-ca6d3c2ee933\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60cfa9ce-35ef-4740-b7cf-4da7eda3e27e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet98534636ec/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ee4ae5cd-fa4f-4845-9769-ca6d3c2ee933\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic698081fab15?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic16329ec26d5?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:35:52 GMT", + "date" : "Mon, 18 May 2020 11:37:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1643", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4d90d0e5-072e-477a-bab6-7dee6e99fbbb", + "x-ms-correlation-request-id" : "fee03dd8-9fbe-47a3-980c-55efd8882fca", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "64b20b87-e513-4d47-bf06-ea23afa9f19d", + "x-ms-arm-service-request-id" : "1485d3f6-1ac0-427f-8187-76ed7871042e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103553Z:4d90d0e5-072e-477a-bab6-7dee6e99fbbb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113750Z:fee03dd8-9fbe-47a3-980c-55efd8882fca", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1abbe2ee-4cf6-48c4-9950-d077fbf5b538", - "Body" : "{\r\n \"name\": \"nic698081fab15\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic698081fab15\",\r\n \"etag\": \"W/\\\"6bc8788e-620f-4595-873b-1f4605574de1\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6dba7440-9cea-4538-93d2-9664fe629801\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic698081fab15/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6bc8788e-620f-4595-873b-1f4605574de1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet02225e3fbb/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"it0wbdxsoaqujifmwaf5zsgvjh.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1abbe2ee-4cf6-48c4-9950-d077fbf5b538?api-version=2019-06-01" + "x-ms-request-id" : "a93fd753-cf71-426e-b5d7-b385d0eacd85", + "Body" : "{\r\n \"name\": \"nic16329ec26d5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic16329ec26d5\",\r\n \"etag\": \"W/\\\"f872b7fc-1815-480c-bd77-fa798d0f9046\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f5bbc47c-18e4-4230-8cf9-daf9b4ca34cb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic16329ec26d5/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f872b7fc-1815-480c-bd77-fa798d0f9046\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet98534636ec/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z0u24yhpgvaepn4pjwt41i5cpg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a93fd753-cf71-426e-b5d7-b385d0eacd85?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1abbe2ee-4cf6-48c4-9950-d077fbf5b538?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a93fd753-cf71-426e-b5d7-b385d0eacd85?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:36:23 GMT", + "date" : "Mon, 18 May 2020 11:38:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7661c307-c205-4319-9a53-54be4f8ccd22", + "x-ms-correlation-request-id" : "fd011252-b385-4334-aa4a-e741db030e41", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6b6dc0ef-9aa1-40fe-bb04-824faf79c49a", + "x-ms-arm-service-request-id" : "9d0fa179-9198-45ff-831f-962c3913fd64", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103624Z:7661c307-c205-4319-9a53-54be4f8ccd22", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113821Z:fd011252-b385-4334-aa4a-e741db030e41", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c0dae086-07f5-4847-8b38-3f59bfc020e5", + "x-ms-request-id" : "7b4c349c-6629-410f-82af-831ea7f5fe32", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic698081fab15?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic16329ec26d5?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:36:55 GMT", + "date" : "Mon, 18 May 2020 11:38:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1643", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "46888509-1a15-4676-9a5c-ea8b4675c117", + "x-ms-correlation-request-id" : "00a62ded-808d-4c68-80c5-1497bf06e2d6", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "677c604b-929a-4e9d-abf0-dbba60f6e601", + "x-ms-arm-service-request-id" : "59e37bb7-7f15-45a3-a0ae-61ce76c36fd1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103655Z:46888509-1a15-4676-9a5c-ea8b4675c117", - "etag" : "W/\"6bc8788e-620f-4595-873b-1f4605574de1\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113852Z:00a62ded-808d-4c68-80c5-1497bf06e2d6", + "etag" : "W/\"f872b7fc-1815-480c-bd77-fa798d0f9046\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "62b8f567-81dd-40d7-a670-c81f2d9e1767", - "Body" : "{\r\n \"name\": \"nic698081fab15\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic698081fab15\",\r\n \"etag\": \"W/\\\"6bc8788e-620f-4595-873b-1f4605574de1\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6dba7440-9cea-4538-93d2-9664fe629801\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic698081fab15/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6bc8788e-620f-4595-873b-1f4605574de1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet02225e3fbb/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"it0wbdxsoaqujifmwaf5zsgvjh.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "230c42ec-9c9e-4077-9c35-ec69c2d50f7d", + "Body" : "{\r\n \"name\": \"nic16329ec26d5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic16329ec26d5\",\r\n \"etag\": \"W/\\\"f872b7fc-1815-480c-bd77-fa798d0f9046\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f5bbc47c-18e4-4230-8cf9-daf9b4ca34cb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic16329ec26d5/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f872b7fc-1815-480c-bd77-fa798d0f9046\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet98534636ec/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z0u24yhpgvaepn4pjwt41i5cpg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-762867?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-042152?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:37:02 GMT", + "date" : "Mon, 18 May 2020 11:38:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1068", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8eb6caa8-f3dc-4bea-8afc-deac25da722a", + "x-ms-correlation-request-id" : "52a69d88-d3c8-4a5d-a160-34a2c81a99e3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103702Z:8eb6caa8-f3dc-4bea-8afc-deac25da722a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113858Z:52a69d88-d3c8-4a5d-a160-34a2c81a99e3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5ff28453-7d62-42df-8c47-d2493f4319cc", - "Body" : "{\r\n \"name\": \"vm-762867\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-762867\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"131c7f55-4385-401b-9711-aa8123ed054a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-762867-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-os-disk-8e851c3b-fae2-4ab7-8e25-dc4aea00b0d1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic698081fab15\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5ff28453-7d62-42df-8c47-d2493f4319cc?api-version=2019-03-01" + "x-ms-request-id" : "5f08a869-f9f8-4d15-ade3-e8c8b043efc0", + "Body" : "{\r\n \"name\": \"vm-042152\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-042152\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5aa66f21-7493-4bf0-9ad4-91b0e26d3198\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-042152-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-os-disk-acbcfaae-fc0a-40ad-9cae-2478cb7d7bd6.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic16329ec26d5\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5f08a869-f9f8-4d15-ade3-e8c8b043efc0?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5ff28453-7d62-42df-8c47-d2493f4319cc?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5f08a869-f9f8-4d15-ade3-e8c8b043efc0?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:37:32 GMT", + "date" : "Mon, 18 May 2020 11:39:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "203f0885-3599-4ab2-bba8-51a0f555ba0a", + "x-ms-correlation-request-id" : "083765d1-79c7-477f-ad7a-60c5aaf958e0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103732Z:203f0885-3599-4ab2-bba8-51a0f555ba0a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29959", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T113929Z:083765d1-79c7-477f-ad7a-60c5aaf958e0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d78e6366-5841-45ec-a866-4f829779ca91", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:37:01.0123315+00:00\",\r\n \"endTime\": \"2020-04-29T10:37:21.1380879+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5ff28453-7d62-42df-8c47-d2493f4319cc\"\r\n}" + "x-ms-request-id" : "c7fa8150-2b8e-4e12-abd1-21ef541ebd96", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:38:56.7729774+00:00\",\r\n \"endTime\": \"2020-05-18T11:39:24.2740032+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5f08a869-f9f8-4d15-ade3-e8c8b043efc0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-762867?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-042152?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:38:02 GMT", + "date" : "Mon, 18 May 2020 11:39:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1096", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dc15191f-f302-41e5-ba5d-20a2e416e628", + "x-ms-correlation-request-id" : "15553da5-2543-4669-a6bc-440ccb4eb5a1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103803Z:dc15191f-f302-41e5-ba5d-20a2e416e628", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31969", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114000Z:15553da5-2543-4669-a6bc-440ccb4eb5a1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2b2f215c-06f6-4774-b525-69e650333379", - "Body" : "{\r\n \"name\": \"vm-762867\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-762867\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"131c7f55-4385-401b-9711-aa8123ed054a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-762867-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm3276096df084352e.blob.core.windows.net/vhds/vm-327609-os-disk-8e851c3b-fae2-4ab7-8e25-dc4aea00b0d1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic698081fab15\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "1e9d2685-3b9f-4b8f-a995-085f57b53b8a", + "Body" : "{\r\n \"name\": \"vm-042152\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-042152\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5aa66f21-7493-4bf0-9ad4-91b0e26d3198\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-042152-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm999348e6757220bd.blob.core.windows.net/vhds/vm-999348-os-disk-acbcfaae-fc0a-40ad-9cae-2478cb7d7bd6.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic16329ec26d5\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvfda50287?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv39280115?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:38:05 GMT", - "content-length" : "323", + "date" : "Mon, 18 May 2020 11:40:03 GMT", + "content-length" : "317", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1dfb842d-c6a5-44e8-9dfb-fe5dca38e2b4", + "x-ms-correlation-request-id" : "4bf19253-9a6e-431a-8ddc-3a2e1e1478ea", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103806Z:1dfb842d-c6a5-44e8-9dfb-fe5dca38e2b4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114003Z:4bf19253-9a6e-431a-8ddc-3a2e1e1478ea", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1dfb842d-c6a5-44e8-9dfb-fe5dca38e2b4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287\",\"name\":\"rgcomvfda50287\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-04-29T10:38:03.936304300Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "4bf19253-9a6e-431a-8ddc-3a2e1e1478ea", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115\",\"name\":\"rgcomv39280115\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-05-18T11:40:00.545Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet8252543276?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet5966922fcf?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:38:11 GMT", + "date" : "Mon, 18 May 2020 11:40:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1350", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d7f4fdc2-cdc4-4ebd-aad6-3cea171d0c8d", + "x-ms-correlation-request-id" : "71f55327-6a1f-4f67-90c4-dcc6e53d5d4f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "46f5d991-e312-4944-9b7e-815b2a3058f0", + "x-ms-arm-service-request-id" : "178c1bf9-b9c6-4699-a035-78e2d47b3170", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103812Z:d7f4fdc2-cdc4-4ebd-aad6-3cea171d0c8d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114008Z:71f55327-6a1f-4f67-90c4-dcc6e53d5d4f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c1958016-34c4-4723-b564-be5e0272331c", - "Body" : "{\r\n \"name\": \"vnet8252543276\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet8252543276\",\r\n \"etag\": \"W/\\\"ab44b20a-67e0-45ad-8d2d-6478abe69e1f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3d754ed7-de16-4460-b45e-b18658dabd37\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet8252543276/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ab44b20a-67e0-45ad-8d2d-6478abe69e1f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c1958016-34c4-4723-b564-be5e0272331c?api-version=2019-06-01" + "x-ms-request-id" : "3bc2cb80-9779-447b-893e-54a2916759a5", + "Body" : "{\r\n \"name\": \"vnet5966922fcf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet5966922fcf\",\r\n \"etag\": \"W/\\\"d3d3d9a3-cf7a-4352-bfb1-3d2d89c300fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"53634b61-4dfd-464a-94e8-3006d0edf92a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet5966922fcf/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d3d3d9a3-cf7a-4352-bfb1-3d2d89c300fd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3bc2cb80-9779-447b-893e-54a2916759a5?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip92109688?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip579463ff?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:38:12 GMT", + "date" : "Mon, 18 May 2020 11:40:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "776", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8a63d853-667e-4ea8-b59c-d313e33c1179", + "x-ms-correlation-request-id" : "0be4d763-b6c4-480f-8467-73cb21e27af5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "a6ebc258-6ec3-439b-9a3c-5a60b7ba9a02", + "x-ms-arm-service-request-id" : "60ae1783-02ce-4cf0-aa7e-12b04ab65267", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103813Z:8a63d853-667e-4ea8-b59c-d313e33c1179", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114018Z:0be4d763-b6c4-480f-8467-73cb21e27af5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "988aa8c0-e9f9-41ce-ab08-3da669d359be", - "Body" : "{\r\n \"name\": \"pip92109688\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip92109688\",\r\n \"etag\": \"W/\\\"966bf56f-c3df-468b-b21a-591c2d71737a\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"938b9a38-9e2a-4aac-b593-edf912b637cf\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-17a572672003\",\r\n \"fqdn\": \"pip-17a572672003.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/988aa8c0-e9f9-41ce-ab08-3da669d359be?api-version=2019-06-01" + "x-ms-request-id" : "751c8ef6-e77d-4dd2-ac9d-8b3218a0d7a0", + "Body" : "{\r\n \"name\": \"pip579463ff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip579463ff\",\r\n \"etag\": \"W/\\\"45df6546-8489-4658-9ce3-24132848b8f0\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0438e75a-bfc6-47da-82f1-3e66c6b9a3f2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-53f986532915\",\r\n \"fqdn\": \"pip-53f986532915.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/751c8ef6-e77d-4dd2-ac9d-8b3218a0d7a0?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c1958016-34c4-4723-b564-be5e0272331c?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3bc2cb80-9779-447b-893e-54a2916759a5?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:38:42 GMT", + "date" : "Mon, 18 May 2020 11:40:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7c7278a6-80a5-4c2d-93f6-15d3ba89e40d", + "x-ms-correlation-request-id" : "811f9704-a991-4659-9958-d8c7c2917b30", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e1c4c521-4ace-4230-973c-039d9d3b66ef", + "x-ms-arm-service-request-id" : "cfccd39c-1531-40ca-8a4a-9df700fcff16", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103843Z:7c7278a6-80a5-4c2d-93f6-15d3ba89e40d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114040Z:811f9704-a991-4659-9958-d8c7c2917b30", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "75a2f0f0-c515-4a65-896f-9b0112328b3e", + "x-ms-request-id" : "287754e5-5d73-4fb8-9e75-4f395da16cf9", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/988aa8c0-e9f9-41ce-ab08-3da669d359be?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/751c8ef6-e77d-4dd2-ac9d-8b3218a0d7a0?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:38:44 GMT", + "date" : "Mon, 18 May 2020 11:40:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3ea098aa-9d11-41f8-a155-f102e4ee31e7", + "x-ms-correlation-request-id" : "34945d33-2658-4844-be36-a6b354d9d166", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "9510929c-fbcf-40c0-aa60-9e625902ac9a", + "x-ms-arm-service-request-id" : "26a5dd66-7be2-4a09-a03f-2e33aa7b0b92", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103844Z:3ea098aa-9d11-41f8-a155-f102e4ee31e7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114049Z:34945d33-2658-4844-be36-a6b354d9d166", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e1df45a7-4300-4e85-943e-7d1ff3370920", + "x-ms-request-id" : "f73ecda3-5f4f-4645-a405-3844f93fcaae", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet8252543276?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet5966922fcf?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:39:13 GMT", + "date" : "Mon, 18 May 2020 11:41:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1352", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "47c25344-8a08-4901-b3e5-66123ad0581a", + "x-ms-correlation-request-id" : "29a5da25-7a43-44a4-8f1c-72f4057d7cd8", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "51f159d5-a9c3-4d5d-9eff-a8fd7ebc0555", + "x-ms-arm-service-request-id" : "58d4c31e-084c-40e0-8632-190e7280051d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103913Z:47c25344-8a08-4901-b3e5-66123ad0581a", - "etag" : "W/\"1d003f4c-00ad-492f-954e-61f23f103151\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114111Z:29a5da25-7a43-44a4-8f1c-72f4057d7cd8", + "etag" : "W/\"4fb41a58-ad74-4795-a355-38f16a7f9ce1\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7c6e7360-7487-4c6e-a86a-165c73ef4cd2", - "Body" : "{\r\n \"name\": \"vnet8252543276\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet8252543276\",\r\n \"etag\": \"W/\\\"1d003f4c-00ad-492f-954e-61f23f103151\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3d754ed7-de16-4460-b45e-b18658dabd37\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet8252543276/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1d003f4c-00ad-492f-954e-61f23f103151\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "4bad5130-c26b-4f8e-81af-13cf30d0f32b", + "Body" : "{\r\n \"name\": \"vnet5966922fcf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet5966922fcf\",\r\n \"etag\": \"W/\\\"4fb41a58-ad74-4795-a355-38f16a7f9ce1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"53634b61-4dfd-464a-94e8-3006d0edf92a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet5966922fcf/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4fb41a58-ad74-4795-a355-38f16a7f9ce1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip92109688?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip579463ff?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:39:14 GMT", + "date" : "Mon, 18 May 2020 11:41:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "777", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c42b30e2-fbee-4b2f-8fb5-a469ed88a24d", + "x-ms-correlation-request-id" : "bfd28183-02f9-4259-a85b-fff8629bbcba", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6b1f2d0e-3bd9-4614-98f8-36ba65a29b04", + "x-ms-arm-service-request-id" : "ab171858-f069-4e1c-b188-2535417f4b19", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103914Z:c42b30e2-fbee-4b2f-8fb5-a469ed88a24d", - "etag" : "W/\"96a2d2be-e10e-4c87-808b-99e8093ff549\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114120Z:bfd28183-02f9-4259-a85b-fff8629bbcba", + "etag" : "W/\"00412a7d-8e13-40b6-a2d4-8f9912391219\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7692a54f-6a4f-4d1f-9a83-b82081134420", - "Body" : "{\r\n \"name\": \"pip92109688\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip92109688\",\r\n \"etag\": \"W/\\\"96a2d2be-e10e-4c87-808b-99e8093ff549\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"938b9a38-9e2a-4aac-b593-edf912b637cf\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-17a572672003\",\r\n \"fqdn\": \"pip-17a572672003.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "bcecd227-f364-490a-aff2-505b753c7764", + "Body" : "{\r\n \"name\": \"pip579463ff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip579463ff\",\r\n \"etag\": \"W/\\\"00412a7d-8e13-40b6-a2d4-8f9912391219\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0438e75a-bfc6-47da-82f1-3e66c6b9a3f2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-53f986532915\",\r\n \"fqdn\": \"pip-53f986532915.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:39:19 GMT", + "date" : "Mon, 18 May 2020 11:41:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1850", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "11a4079f-6aa4-4edf-8ef6-313ebad020c8", + "x-ms-correlation-request-id" : "098218ec-d3d5-461d-a2de-724a1e672d04", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "396f48ff-59e4-48d0-b98b-ddac63f43337", + "x-ms-arm-service-request-id" : "853883b8-d5a1-4240-8e7a-211084f53e06", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103920Z:11a4079f-6aa4-4edf-8ef6-313ebad020c8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114126Z:098218ec-d3d5-461d-a2de-724a1e672d04", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "091b676b-3e40-4beb-a473-2eaf44d8d857", - "Body" : "{\r\n \"name\": \"nic431787eca41\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41\",\r\n \"etag\": \"W/\\\"c40ee710-6bef-4337-9945-5b13387d9e7f\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"656e7192-cd03-4415-a004-05e4da50de0e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c40ee710-6bef-4337-9945-5b13387d9e7f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip92109688\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet8252543276/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"03hhkpiw1zqejnc4wgdfrwv3gh.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/091b676b-3e40-4beb-a473-2eaf44d8d857?api-version=2019-06-01" + "x-ms-request-id" : "571e4772-0f53-4045-aa1f-5f73a35be8ee", + "Body" : "{\r\n \"name\": \"nic129704c0c85\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85\",\r\n \"etag\": \"W/\\\"95a57bd1-24e3-483b-bf65-2aeeef787b1f\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37136c18-989e-4da7-8285-148f304afa34\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"95a57bd1-24e3-483b-bf65-2aeeef787b1f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip579463ff\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet5966922fcf/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mffwgu53jvfenfhigadnb1pzfc.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/571e4772-0f53-4045-aa1f-5f73a35be8ee?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/091b676b-3e40-4beb-a473-2eaf44d8d857?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/571e4772-0f53-4045-aa1f-5f73a35be8ee?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:39:50 GMT", + "date" : "Mon, 18 May 2020 11:41:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "280414f4-16ad-4f1d-aa86-6141bc5a4d98", + "x-ms-correlation-request-id" : "3e50fd81-ec0e-4d74-8c48-ee5ff3696fd8", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ce05762f-58ee-436a-83a2-c9a5c9417697", + "x-ms-arm-service-request-id" : "56e9e19e-3ab0-4263-9868-c71f3765203d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T103951Z:280414f4-16ad-4f1d-aa86-6141bc5a4d98", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114157Z:3e50fd81-ec0e-4d74-8c48-ee5ff3696fd8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e8fed0a6-e48d-4714-8c20-a223dd6b8953", + "x-ms-request-id" : "d63dc674-7d4d-4dde-aa4b-0152fc32e479", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:40:21 GMT", + "date" : "Mon, 18 May 2020 11:42:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1850", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "38a4a894-df52-4710-b213-ed28a5369498", + "x-ms-correlation-request-id" : "4f5c4ded-2e2b-4c68-a111-a6d61c5c4dc5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "bd8ec8d1-a28d-4dc9-9f6f-92fb0c4f91b8", + "x-ms-arm-service-request-id" : "89b0358b-279f-49b6-a6e2-9f615ed33669", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104021Z:38a4a894-df52-4710-b213-ed28a5369498", - "etag" : "W/\"c40ee710-6bef-4337-9945-5b13387d9e7f\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114228Z:4f5c4ded-2e2b-4c68-a111-a6d61c5c4dc5", + "etag" : "W/\"95a57bd1-24e3-483b-bf65-2aeeef787b1f\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c4320397-4508-4ecf-8571-1e9dca945da7", - "Body" : "{\r\n \"name\": \"nic431787eca41\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41\",\r\n \"etag\": \"W/\\\"c40ee710-6bef-4337-9945-5b13387d9e7f\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"656e7192-cd03-4415-a004-05e4da50de0e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c40ee710-6bef-4337-9945-5b13387d9e7f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip92109688\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet8252543276/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"03hhkpiw1zqejnc4wgdfrwv3gh.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "f5488434-6fb3-4381-989f-abfea97f9fdb", + "Body" : "{\r\n \"name\": \"nic129704c0c85\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85\",\r\n \"etag\": \"W/\\\"95a57bd1-24e3-483b-bf65-2aeeef787b1f\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37136c18-989e-4da7-8285-148f304afa34\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"95a57bd1-24e3-483b-bf65-2aeeef787b1f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip579463ff\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet5966922fcf/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mffwgu53jvfenfhigadnb1pzfc.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:40:27 GMT", + "date" : "Mon, 18 May 2020 11:42:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2025", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6584ffbe-120e-459a-b812-fc0006104215", + "x-ms-correlation-request-id" : "f225bb17-4184-4515-9df9-a228be087e98", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1194", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104027Z:6584ffbe-120e-459a-b812-fc0006104215", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1bcc1e35-f51e-46c9-b47c-37cb0f1f8f6f", - "Body" : "{\r\n \"name\": \"vm-635606\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"bf09ccab-879b-4b64-93ab-b9fdfa57fdd4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-635606\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/1bcc1e35-f51e-46c9-b47c-37cb0f1f8f6f?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/1bcc1e35-f51e-46c9-b47c-37cb0f1f8f6f?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:40:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "296f53a6-f68e-4d5b-8ea8-51912f18e6ac", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104058Z:296f53a6-f68e-4d5b-8ea8-51912f18e6ac", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7dce7c5d-ed39-484a-bd54-2eb137573c0b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:40:26.2226391+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1bcc1e35-f51e-46c9-b47c-37cb0f1f8f6f\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/1bcc1e35-f51e-46c9-b47c-37cb0f1f8f6f?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:41:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9d3f3602-e605-4aae-bb8c-290d67c1bcbb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104128Z:9d3f3602-e605-4aae-bb8c-290d67c1bcbb", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "29460394-816e-498a-82f2-fe8357c568d7", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:40:26.2226391+00:00\",\r\n \"endTime\": \"2020-04-29T10:41:23.5686419+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1bcc1e35-f51e-46c9-b47c-37cb0f1f8f6f\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:41:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2802", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "605db97c-aa3f-43eb-84e1-39c5470f5064", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104159Z:605db97c-aa3f-43eb-84e1-39c5470f5064", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "089abef0-22a4-4d01-8202-d4976fab66af", - "Body" : "{\r\n \"name\": \"vm-635606\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"bf09ccab-879b-4b64-93ab-b9fdfa57fdd4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-635606_disk3_0d9cfb810c2649dba47711a8206ead94\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk3_0d9cfb810c2649dba47711a8206ead94\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-635606\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:41:58 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2096", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "081cbb86-7ad8-4051-a47e-835154302cb4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "52c6dcd9-67d5-4170-b1ee-b3372384d136", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104159Z:081cbb86-7ad8-4051-a47e-835154302cb4", - "etag" : "W/\"6f429543-1d62-4b60-a45e-0b9d6e0daba2\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8d387ac6-1d63-467f-b308-87ba69b2eb7d", - "Body" : "{\r\n \"name\": \"nic431787eca41\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41\",\r\n \"etag\": \"W/\\\"6f429543-1d62-4b60-a45e-0b9d6e0daba2\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"656e7192-cd03-4415-a004-05e4da50de0e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6f429543-1d62-4b60-a45e-0b9d6e0daba2\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip92109688\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet8252543276/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"03hhkpiw1zqejnc4wgdfrwv3gh.jx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-77-E7-1B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip92109688?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:42:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1029", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2dadb4ac-8f35-4af6-ab40-41379893ce1f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7bc7bcff-45cd-4d2c-88c3-5fce45e6b00c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104200Z:2dadb4ac-8f35-4af6-ab40-41379893ce1f", - "etag" : "W/\"29e4090b-0a8c-4fa4-83b3-9e5904b2d1af\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114234Z:f225bb17-4184-4515-9df9-a228be087e98", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ce458a83-64f5-4988-aa5b-f77f8384b317", - "Body" : "{\r\n \"name\": \"pip92109688\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip92109688\",\r\n \"etag\": \"W/\\\"29e4090b-0a8c-4fa4-83b3-9e5904b2d1af\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"938b9a38-9e2a-4aac-b593-edf912b637cf\",\r\n \"ipAddress\": \"13.84.208.216\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-17a572672003\",\r\n \"fqdn\": \"pip-17a572672003.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606/deallocate?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 10:42:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "67cc4a5a-0d17-4cdc-b4b5-13b4ba529e62", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104223Z:67cc4a5a-0d17-4cdc-b4b5-13b4ba529e62", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?monitor=true&api-version=2019-03-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab", - "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?api-version=2019-03-01" + "x-ms-request-id" : "ad8f6676-33f1-4c04-afda-02c44c8bc341", + "Body" : "{\r\n \"name\": \"vm-839612\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"610fe70e-4d6a-4df2-afef-f289082fb011\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-839612\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ad8f6676-33f1-4c04-afda-02c44c8bc341?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ad8f6676-33f1-4c04-afda-02c44c8bc341?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:42:54 GMT", + "date" : "Mon, 18 May 2020 11:43:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "20d69564-a7ed-47d7-a604-0fdcdfd08d15", + "x-ms-correlation-request-id" : "a34e21e7-847a-4539-985f-0f88c8cf7680", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104254Z:20d69564-a7ed-47d7-a604-0fdcdfd08d15", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29968", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114305Z:a34e21e7-847a-4539-985f-0f88c8cf7680", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c3e8c9d3-f00e-4a6b-9f98-06fe19b050f7", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:42:23.7888005+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab\"\r\n}" + "x-ms-request-id" : "5ba93911-fbde-4972-a0f3-f7dfdea8a19b", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:42:33.3902448+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ad8f6676-33f1-4c04-afda-02c44c8bc341\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ad8f6676-33f1-4c04-afda-02c44c8bc341?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:43:24 GMT", + "date" : "Mon, 18 May 2020 11:43:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9ffa3705-0671-44c7-afd2-75cdda46a64b", + "x-ms-correlation-request-id" : "258e4433-f17b-4a8c-a4a4-2bd6d4dcbe38", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104325Z:9ffa3705-0671-44c7-afd2-75cdda46a64b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29967", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114335Z:258e4433-f17b-4a8c-a4a4-2bd6d4dcbe38", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bf5004b2-a9cc-4c23-a45f-9b2731a8f5a4", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:42:23.7888005+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab\"\r\n}" + "x-ms-request-id" : "f5ed9eba-1388-4502-b545-c0ec26bd0ee4", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:42:33.3902448+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ad8f6676-33f1-4c04-afda-02c44c8bc341\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ad8f6676-33f1-4c04-afda-02c44c8bc341?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:43:55 GMT", + "date" : "Mon, 18 May 2020 11:44:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c0465daa-dae9-4239-b338-01bb0eb49504", + "x-ms-correlation-request-id" : "75c1776b-ce20-43ba-9355-2d1e1978ec5b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104355Z:c0465daa-dae9-4239-b338-01bb0eb49504", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29965", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114406Z:75c1776b-ce20-43ba-9355-2d1e1978ec5b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6a2d277b-adb5-443f-8c50-7e2d4d45813e", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:42:23.7888005+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab\"\r\n}" + "x-ms-request-id" : "c3e0c9bd-c666-446f-a2b8-fe74c00f43c8", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:42:33.3902448+00:00\",\r\n \"endTime\": \"2020-05-18T11:43:42.0486446+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ad8f6676-33f1-4c04-afda-02c44c8bc341\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:44:25 GMT", + "date" : "Mon, 18 May 2020 11:44:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "2802", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4e0f4c52-a5b3-4bbe-9780-8995360584ea", + "x-ms-correlation-request-id" : "91de333e-04d4-4633-8824-8f9d2a1d5224", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104426Z:4e0f4c52-a5b3-4bbe-9780-8995360584ea", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31962", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114436Z:91de333e-04d4-4633-8824-8f9d2a1d5224", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d3e61cfe-42c9-40bc-89b8-88b9ea05baa4", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:42:23.7888005+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab\"\r\n}" + "x-ms-request-id" : "a493a81a-176b-4a42-a132-7ebbe8439ee1", + "Body" : "{\r\n \"name\": \"vm-839612\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"610fe70e-4d6a-4df2-afef-f289082fb011\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-839612_disk3_2282349556b64aeea9901436d81f8eb2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk3_2282349556b64aeea9901436d81f8eb2\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-839612\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:44:56 GMT", + "date" : "Mon, 18 May 2020 11:44:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "2096", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b7bcd0c-ea29-4203-a19d-b1e9ccd95947", + "x-ms-correlation-request-id" : "146c6f3c-5ec1-49d1-8502-08a9f114cba9", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "56298cce-77c7-4301-8a64-e5d81d92bcb2", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104456Z:0b7bcd0c-ea29-4203-a19d-b1e9ccd95947", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114437Z:146c6f3c-5ec1-49d1-8502-08a9f114cba9", + "etag" : "W/\"66ed03a6-964e-45fa-8ba3-6d531c516879\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4f5fe2f4-17af-409e-8dc4-5ac59986b34c", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:42:23.7888005+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab\"\r\n}" + "x-ms-request-id" : "3535e761-d379-4416-b8f5-ff4937fd8837", + "Body" : "{\r\n \"name\": \"nic129704c0c85\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85\",\r\n \"etag\": \"W/\\\"66ed03a6-964e-45fa-8ba3-6d531c516879\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37136c18-989e-4da7-8285-148f304afa34\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"66ed03a6-964e-45fa-8ba3-6d531c516879\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip579463ff\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet5966922fcf/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mffwgu53jvfenfhigadnb1pzfc.jx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-5F-57-8A\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip579463ff?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:45:27 GMT", + "date" : "Mon, 18 May 2020 11:44:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "1029", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dff89a91-9d08-46e3-b6d4-1c91140c9511", + "x-ms-correlation-request-id" : "bf6a0f99-0445-483f-834e-6cad462d7a7c", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "dc319db0-ba6a-4458-ad5c-e8ddb05732c1", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104527Z:dff89a91-9d08-46e3-b6d4-1c91140c9511", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114438Z:bf6a0f99-0445-483f-834e-6cad462d7a7c", + "etag" : "W/\"26a9cf84-cd04-4e8f-99fe-32ff85ae4724\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bd91d9de-1154-450b-8c07-4c5e6b9ab1cc", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:42:23.7888005+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab\"\r\n}" + "x-ms-request-id" : "12eb50a2-2309-42c2-b75d-3f3963e23a3f", + "Body" : "{\r\n \"name\": \"pip579463ff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip579463ff\",\r\n \"etag\": \"W/\\\"26a9cf84-cd04-4e8f-99fe-32ff85ae4724\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0438e75a-bfc6-47da-82f1-3e66c6b9a3f2\",\r\n \"ipAddress\": \"13.65.212.205\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-53f986532915\",\r\n \"fqdn\": \"pip-53f986532915.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?api-version=2019-03-01", + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612/deallocate?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:45:57 GMT", + "date" : "Mon, 18 May 2020 11:45:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "70409251-0019-4a21-a6bc-21efc1bbab44", + "x-ms-correlation-request-id" : "47259b9e-50ad-44a8-82f8-d3048b51afd6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104557Z:70409251-0019-4a21-a6bc-21efc1bbab44", - "content-type" : "application/json; charset=utf-8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114501Z:47259b9e-50ad-44a8-82f8-d3048b51afd6", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d494ff1-563a-4490-9cea-7801b9675a22?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "8bb75911-7d4a-4b8e-af1e-da2c0da344ff", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:42:23.7888005+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab\"\r\n}" + "x-ms-request-id" : "9d494ff1-563a-4490-9cea-7801b9675a22", + "Body" : "", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d494ff1-563a-4490-9cea-7801b9675a22?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d494ff1-563a-4490-9cea-7801b9675a22?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:46:27 GMT", + "date" : "Mon, 18 May 2020 11:45:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "db9de7ad-dc64-4c38-9262-edfd88de6edc", + "x-ms-correlation-request-id" : "f90e75fc-4699-4ed1-9b45-a2d43863f0f1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104628Z:db9de7ad-dc64-4c38-9262-edfd88de6edc", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29971", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114532Z:f90e75fc-4699-4ed1-9b45-a2d43863f0f1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bb252e9b-3a20-43aa-9a3a-89eadf22fa7c", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:42:23.7888005+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab\"\r\n}" + "x-ms-request-id" : "a06de9f2-f4c9-430d-9edb-ce792e501ea1", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:45:01.2232206+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9d494ff1-563a-4490-9cea-7801b9675a22\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d494ff1-563a-4490-9cea-7801b9675a22?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:46:57 GMT", + "date" : "Mon, 18 May 2020 11:46:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0ded5b3a-150d-4bc0-abd4-6aae702669f0", + "x-ms-correlation-request-id" : "c591baec-772b-444e-aba8-db971b2f64b7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104658Z:0ded5b3a-150d-4bc0-abd4-6aae702669f0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29969", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114602Z:c591baec-772b-444e-aba8-db971b2f64b7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "71c80db3-87fe-4b84-a6c2-a5ac84c2d840", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:42:23.7888005+00:00\",\r\n \"endTime\": \"2020-04-29T10:46:36.4535481+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab\"\r\n}" + "x-ms-request-id" : "f4e71f5b-f831-463e-a0d8-516b25b9f9e3", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:45:01.2232206+00:00\",\r\n \"endTime\": \"2020-05-18T11:45:52.0843127+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9d494ff1-563a-4490-9cea-7801b9675a22\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eccdc6b0-83e5-4f52-8a5e-824b9cbba0ab?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d494ff1-563a-4490-9cea-7801b9675a22?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:47:28 GMT", + "date" : "Mon, 18 May 2020 11:46:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "73271e31-bb14-4043-ae35-b1b670aa8265", + "x-ms-correlation-request-id" : "4ae8608e-a4ff-4eac-a96b-11172a776829", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104729Z:73271e31-bb14-4043-ae35-b1b670aa8265", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29967", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114633Z:4ae8608e-a4ff-4eac-a96b-11172a776829", "cache-control" : "no-cache", - "x-ms-request-id" : "95072b87-72ae-4af0-af8d-c5b786d6fc57", + "x-ms-request-id" : "6a7aafe7-6e00-4bbb-b9fd-5bba999405fd", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606?$expand=instanceView&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612?$expand=instanceView&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:47:28 GMT", + "date" : "Mon, 18 May 2020 11:46:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "4133", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eeb6f94c-562d-49db-bc8c-4eb147cdb59b", + "x-ms-correlation-request-id" : "b170d8ea-9399-4049-966e-e1aaf708e2e1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104729Z:eeb6f94c-562d-49db-bc8c-4eb147cdb59b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31963", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114633Z:b170d8ea-9399-4049-966e-e1aaf708e2e1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4ae132d9-357c-4604-b57d-8b079da02f70", - "Body" : "{\r\n \"name\": \"vm-635606\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"bf09ccab-879b-4b64-93ab-b9fdfa57fdd4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8\"\r\n },\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-635606_disk3_0d9cfb810c2649dba47711a8206ead94\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk3_0d9cfb810c2649dba47711a8206ead94\"\r\n },\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-635606\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic431787eca41\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T10:46:36.4066673+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T10:46:36.4066673+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm-635606_disk3_0d9cfb810c2649dba47711a8206ead94\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T10:46:36.4066673+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T10:46:36.4223005+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n }\r\n}" + "x-ms-request-id" : "bee62d92-2085-4629-957f-0c5fc51d086b", + "Body" : "{\r\n \"name\": \"vm-839612\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"610fe70e-4d6a-4df2-afef-f289082fb011\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b\"\r\n },\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-839612_disk3_2282349556b64aeea9901436d81f8eb2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk3_2282349556b64aeea9901436d81f8eb2\"\r\n },\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-839612\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic129704c0c85\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T11:45:52.0374349+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T11:45:52.0374349+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm-839612_disk3_2282349556b64aeea9901436d81f8eb2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T11:45:52.0374349+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T11:45:52.0530708+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606/generalize?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612/generalize?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:47:30 GMT", + "date" : "Mon, 18 May 2020 11:46:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "00ceae91-18a8-4034-b68d-96097163d0f2", + "x-ms-correlation-request-id" : "a672d51b-3c9f-4a9f-b199-5e550b243f59", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104730Z:00ceae91-18a8-4034-b68d-96097163d0f2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114634Z:a672d51b-3c9f-4a9f-b199-5e550b243f59", "cache-control" : "no-cache", - "x-ms-request-id" : "2e8bebb3-3795-4029-9480-a620ad219e8e", + "x-ms-request-id" : "2234c07f-013c-4185-a7bc-f70c6dcd137a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:47:30 GMT", + "date" : "Mon, 18 May 2020 11:46:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1272", + "content-length" : "1350", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "89dac117-d4a1-46c7-9be0-da544ef67213", + "x-ms-correlation-request-id" : "e5920a3a-810c-481b-9469-1558f76bb7fc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104730Z:89dac117-d4a1-46c7-9be0-da544ef67213", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39971", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114635Z:e5920a3a-810c-481b-9469-1558f76bb7fc", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e04b749e-9d7e-462f-9ce0-08f831738c4e", - "Body" : "{\r\n \"name\": \"vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/southcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004070\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T10:40:26.6056011+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"6671b421-251b-4220-8e65-93a2bcc21f7c\"\r\n }\r\n}" + "x-ms-request-id" : "5c593bba-fce2-4c40-b750-bcf3f1b62a9b", + "Body" : "{\r\n \"name\": \"vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/southcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T11:42:33.9514592+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"0a3b6d69-0cf4-4bf8-9930-7e2896c7ff08\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:47:30 GMT", + "date" : "Mon, 18 May 2020 11:46:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "945", + "content-length" : "1023", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4d396022-46f0-4939-b7b3-786cb316b656", + "x-ms-correlation-request-id" : "8283b132-bb6c-4e4f-98f2-7ae474d829b1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104731Z:4d396022-46f0-4939-b7b3-786cb316b656", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39970", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114636Z:8283b132-bb6c-4e4f-98f2-7ae474d829b1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9fe432e2-cf40-4c2a-9b17-93d708346d54", - "Body" : "{\r\n \"name\": \"vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T10:40:26.6056011+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"029aa73f-fe31-4fb2-b491-db8ee18a4eb8\"\r\n }\r\n}" + "x-ms-request-id" : "6a8749a4-682a-48a6-b310-d46c71da1ecf", + "Body" : "{\r\n \"name\": \"vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T11:42:33.9357629+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"984edbe1-6fa2-47cc-8e0c-eddf7d21739b\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk3_0d9cfb810c2649dba47711a8206ead94?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk3_2282349556b64aeea9901436d81f8eb2?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:47:31 GMT", + "date" : "Mon, 18 May 2020 11:46:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "945", + "content-length" : "1023", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7c55ff9c-dc61-4b35-859c-1ebe3faa633c", + "x-ms-correlation-request-id" : "5d75563c-ad38-4171-97e8-37b09e2d155c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104731Z:7c55ff9c-dc61-4b35-859c-1ebe3faa633c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39969", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114636Z:5d75563c-ad38-4171-97e8-37b09e2d155c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c334cf3a-f1ba-41f2-b10e-963148fb5bf8", - "Body" : "{\r\n \"name\": \"vm-635606_disk3_0d9cfb810c2649dba47711a8206ead94\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk3_0d9cfb810c2649dba47711a8206ead94\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T10:40:26.6056011+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"0d9cfb81-0c26-49db-a477-11a8206ead94\"\r\n }\r\n}" + "x-ms-request-id" : "89993905-b517-4b04-ac10-5e2ccaf9dbd6", + "Body" : "{\r\n \"name\": \"vm-839612_disk3_2282349556b64aeea9901436d81f8eb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk3_2282349556b64aeea9901436d81f8eb2\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T11:42:33.9514592+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"22823495-56b6-4aee-a990-1436d81f8eb2\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-635606?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-839612?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:47:32 GMT", + "date" : "Mon, 18 May 2020 11:46:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "0", @@ -3872,1995 +3572,1638 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b7b3f2b6-a541-4567-a759-75ca9a1406a6", + "x-ms-correlation-request-id" : "a6164308-d8ef-44ca-a99c-26f01e19eeec", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104732Z:b7b3f2b6-a541-4567-a759-75ca9a1406a6", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f23621d1-f309-44e0-9db6-eb2f9909fb2d?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1196", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114637Z:a6164308-d8ef-44ca-a99c-26f01e19eeec", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6dd95e1c-5c0b-4f88-bab3-1e5bf2f2a695?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f23621d1-f309-44e0-9db6-eb2f9909fb2d", + "x-ms-request-id" : "6dd95e1c-5c0b-4f88-bab3-1e5bf2f2a695", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f23621d1-f309-44e0-9db6-eb2f9909fb2d?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6dd95e1c-5c0b-4f88-bab3-1e5bf2f2a695?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f23621d1-f309-44e0-9db6-eb2f9909fb2d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6dd95e1c-5c0b-4f88-bab3-1e5bf2f2a695?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:48:03 GMT", + "date" : "Mon, 18 May 2020 11:47:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "183", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f0ab7ac3-80b3-436f-996f-e50bafdff5b7", + "x-ms-correlation-request-id" : "142e9955-70ee-41f4-ac10-58676b9175e1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104803Z:f0ab7ac3-80b3-436f-996f-e50bafdff5b7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29965", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114708Z:142e9955-70ee-41f4-ac10-58676b9175e1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "30cecdb8-5e32-408a-b909-41cfa50cad87", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:47:32.7848752+00:00\",\r\n \"endTime\": \"2020-04-29T10:47:43.2383339+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f23621d1-f309-44e0-9db6-eb2f9909fb2d\"\r\n}" + "x-ms-request-id" : "cab08941-8b82-4d7a-8ee1-5c7ab2a152b2", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:46:37.7891765+00:00\",\r\n \"endTime\": \"2020-05-18T11:46:48.195762+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6dd95e1c-5c0b-4f88-bab3-1e5bf2f2a695\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f23621d1-f309-44e0-9db6-eb2f9909fb2d?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6dd95e1c-5c0b-4f88-bab3-1e5bf2f2a695?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:48:33 GMT", + "date" : "Mon, 18 May 2020 11:47:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7d619f27-0f25-4268-a1d3-3bb4e1dbfd71", + "x-ms-correlation-request-id" : "6bd19f54-5b81-41be-969a-733090e140d5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104834Z:7d619f27-0f25-4268-a1d3-3bb4e1dbfd71", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29964", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114739Z:6bd19f54-5b81-41be-969a-733090e140d5", "cache-control" : "no-cache", - "x-ms-request-id" : "cdf7ca62-ee47-4910-820f-9ab02f1d2da2", + "x-ms-request-id" : "cef8c004-1d25-4824-a44a-72c5cb0c8bcc", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/snp-90727?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/snp-57650?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:48:39 GMT", + "date" : "Mon, 18 May 2020 11:47:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "566", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ecb3854a-681f-44c4-873d-cd7a178531d0", + "x-ms-correlation-request-id" : "55cb1545-79e2-42f1-b93a-fa0e3c22302f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104839Z:ecb3854a-681f-44c4-873d-cd7a178531d0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114744Z:55cb1545-79e2-42f1-b93a-fa0e3c22302f", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/34837e76-38cd-4f9e-9d18-d3d06722853f?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/876e5905-171f-4fcb-87a0-a18400191aba?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "34837e76-38cd-4f9e-9d18-d3d06722853f", - "Body" : "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c\",\r\n \"sourceUniqueId\": \"6671b421-251b-4220-8e65-93a2bcc21f7c\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/34837e76-38cd-4f9e-9d18-d3d06722853f?api-version=2019-03-01" + "x-ms-request-id" : "876e5905-171f-4fcb-87a0-a18400191aba", + "Body" : "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08\",\r\n \"sourceUniqueId\": \"0a3b6d69-0cf4-4bf8-9930-7e2896c7ff08\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/876e5905-171f-4fcb-87a0-a18400191aba?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/34837e76-38cd-4f9e-9d18-d3d06722853f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/876e5905-171f-4fcb-87a0-a18400191aba?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:49:09 GMT", + "date" : "Mon, 18 May 2020 11:48:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1066", + "content-length" : "1122", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4acdeb53-d1a6-4bf6-a348-966ba4e49e20", + "x-ms-correlation-request-id" : "a48a554c-5709-4fec-8be1-65c1746c2c1d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104909Z:4acdeb53-d1a6-4bf6-a348-966ba4e49e20", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114815Z:a48a554c-5709-4fec-8be1-65c1746c2c1d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8b6699e6-a974-4d62-a1da-175fb24e3391", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:48:39.1436296+00:00\",\r\n \"endTime\": \"2020-04-29T10:48:39.9561272+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"snp-90727\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/snp-90727\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"southcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c\",\"sourceUniqueId\":\"6671b421-251b-4220-8e65-93a2bcc21f7c\"},\"diskSizeGB\":30,\"incremental\":false,\"timeCreated\":\"2020-04-29T10:48:39.1592533+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":32213303296,\"uniqueId\":\"2b3e691a-340a-42b4-9c11-466790891df4\"}}\r\n },\r\n \"name\": \"34837e76-38cd-4f9e-9d18-d3d06722853f\"\r\n}" + "x-ms-request-id" : "627df650-0f9e-4ac3-8712-8277266b580d", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:47:44.5798968+00:00\",\r\n \"endTime\": \"2020-05-18T11:47:45.5799117+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"snp-57650\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/snp-57650\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"southcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08\",\"sourceUniqueId\":\"0a3b6d69-0cf4-4bf8-9930-7e2896c7ff08\"},\"diskSizeGB\":30,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"timeCreated\":\"2020-05-18T11:47:44.5955265+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":32213303296,\"uniqueId\":\"7e5cd762-a1a1-40f2-9c5a-d399d3d5f321\"}}\r\n },\r\n \"name\": \"876e5905-171f-4fcb-87a0-a18400191aba\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/snp-90727?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/snp-57650?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:49:40 GMT", + "date" : "Mon, 18 May 2020 11:48:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1003", + "content-length" : "1081", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "58f31176-f774-403a-8bf7-3fd2800ee60a", + "x-ms-correlation-request-id" : "348d16bb-932e-409f-8577-68815e1632cb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104940Z:58f31176-f774-403a-8bf7-3fd2800ee60a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39966", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114846Z:348d16bb-932e-409f-8577-68815e1632cb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "825110e0-8c7a-4968-992a-a85b8556c0e1", - "Body" : "{\r\n \"name\": \"snp-90727\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/snp-90727\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_OsDisk_1_6671b421251b42208e6593a2bcc21f7c\",\r\n \"sourceUniqueId\": \"6671b421-251b-4220-8e65-93a2bcc21f7c\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-04-29T10:48:39.1592533+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"2b3e691a-340a-42b4-9c11-466790891df4\"\r\n }\r\n}" + "x-ms-request-id" : "e3436ccc-dfcc-4ff6-8374-9cb1d519064e", + "Body" : "{\r\n \"name\": \"snp-57650\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/snp-57650\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_OsDisk_1_0a3b6d690cf44bf899307e2896c7ff08\",\r\n \"sourceUniqueId\": \"0a3b6d69-0cf4-4bf8-9930-7e2896c7ff08\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-05-18T11:47:44.5955265+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"7e5cd762-a1a1-40f2-9c5a-d399d3d5f321\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-58811?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-92460?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:49:43 GMT", + "date" : "Mon, 18 May 2020 11:48:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "575", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "54dd08de-a0b0-4210-9935-2dc5b20d2d6b", + "x-ms-correlation-request-id" : "b7f708f0-cdad-4720-812f-4a8f5825f8a5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T104944Z:54dd08de-a0b0-4210-9935-2dc5b20d2d6b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114851Z:b7f708f0-cdad-4720-812f-4a8f5825f8a5", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/a5680461-3bab-4862-8edc-e0ae2c543e90?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/8dd185f9-bc06-410c-ae64-5251c3c2d3cb?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a5680461-3bab-4862-8edc-e0ae2c543e90", - "Body" : "{\r\n \"name\": \"dsk-58811\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/snp-90727\",\r\n \"sourceUniqueId\": \"2b3e691a-340a-42b4-9c11-466790891df4\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/a5680461-3bab-4862-8edc-e0ae2c543e90?api-version=2019-03-01" + "x-ms-request-id" : "8dd185f9-bc06-410c-ae64-5251c3c2d3cb", + "Body" : "{\r\n \"name\": \"dsk-92460\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/snp-57650\",\r\n \"sourceUniqueId\": \"7e5cd762-a1a1-40f2-9c5a-d399d3d5f321\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/8dd185f9-bc06-410c-ae64-5251c3c2d3cb?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/a5680461-3bab-4862-8edc-e0ae2c543e90?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/8dd185f9-bc06-410c-ae64-5251c3c2d3cb?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:50:14 GMT", + "date" : "Mon, 18 May 2020 11:49:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1047", + "content-length" : "1101", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3242be9e-064e-4d7c-ac2c-6a36944e3736", + "x-ms-correlation-request-id" : "b138ad76-7294-4bc7-9712-856175d3eb73", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105015Z:3242be9e-064e-4d7c-ac2c-6a36944e3736", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114921Z:b138ad76-7294-4bc7-9712-856175d3eb73", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "155dca09-809b-43f0-aa86-df78f8f54438", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:49:44.7377924+00:00\",\r\n \"endTime\": \"2020-04-29T10:49:45.2534266+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-58811\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-58811\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"southcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/snp-90727\",\"sourceUniqueId\":\"2b3e691a-340a-42b4-9c11-466790891df4\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T10:49:44.7377924+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"5989466e-da5d-41eb-acde-91248e426aae\"}}\r\n },\r\n \"name\": \"a5680461-3bab-4862-8edc-e0ae2c543e90\"\r\n}" + "x-ms-request-id" : "d05e6aca-a230-47ca-a28d-3e42eeac96b9", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:48:51.143097+00:00\",\r\n \"endTime\": \"2020-05-18T11:48:51.6118673+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-92460\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-92460\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"southcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/snp-57650\",\"sourceUniqueId\":\"7e5cd762-a1a1-40f2-9c5a-d399d3d5f321\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T11:48:51.143097+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"a3f85411-c57c-4027-aa1c-78d1827381bb\"}}\r\n },\r\n \"name\": \"8dd185f9-bc06-410c-ae64-5251c3c2d3cb\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-58811?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-92460?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:50:45 GMT", + "date" : "Mon, 18 May 2020 11:49:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "991", + "content-length" : "1068", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e709bd32-fca6-4d7e-b776-65261e2bc359", + "x-ms-correlation-request-id" : "9e1186c7-77fb-4d26-9d94-11cad8bfa997", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105045Z:e709bd32-fca6-4d7e-b776-65261e2bc359", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39963", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114953Z:9e1186c7-77fb-4d26-9d94-11cad8bfa997", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9cd513d4-ded6-490b-b890-c2dfcd495bfa", - "Body" : "{\r\n \"name\": \"dsk-58811\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-58811\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/snp-90727\",\r\n \"sourceUniqueId\": \"2b3e691a-340a-42b4-9c11-466790891df4\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T10:49:44.7377924+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"5989466e-da5d-41eb-acde-91248e426aae\"\r\n }\r\n}" + "x-ms-request-id" : "46529fb0-a613-492f-9a1a-8722fc1834a8", + "Body" : "{\r\n \"name\": \"dsk-92460\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-92460\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/snp-57650\",\r\n \"sourceUniqueId\": \"7e5cd762-a1a1-40f2-9c5a-d399d3d5f321\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T11:48:51.143097+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"a3f85411-c57c-4027-aa1c-78d1827381bb\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/dsk-25842?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/dsk-09084?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:50:49 GMT", + "date" : "Mon, 18 May 2020 11:49:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "508", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "38a673b2-c31a-4ad6-b2b6-5caafb8dc939", + "x-ms-correlation-request-id" : "6b6719eb-25da-4b57-8337-5f80836e80c0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105050Z:38a673b2-c31a-4ad6-b2b6-5caafb8dc939", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T114957Z:6b6719eb-25da-4b57-8337-5f80836e80c0", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/99d2f512-5dc8-4b47-84f8-d6270cd535c2?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/528d332c-4e93-4484-89fc-f6ae9f7f9037?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "99d2f512-5dc8-4b47-84f8-d6270cd535c2", - "Body" : "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8\",\r\n \"sourceUniqueId\": \"029aa73f-fe31-4fb2-b491-db8ee18a4eb8\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/99d2f512-5dc8-4b47-84f8-d6270cd535c2?api-version=2019-03-01" + "x-ms-request-id" : "528d332c-4e93-4484-89fc-f6ae9f7f9037", + "Body" : "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b\",\r\n \"sourceUniqueId\": \"984edbe1-6fa2-47cc-8e0c-eddf7d21739b\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/528d332c-4e93-4484-89fc-f6ae9f7f9037?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/99d2f512-5dc8-4b47-84f8-d6270cd535c2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/528d332c-4e93-4484-89fc-f6ae9f7f9037?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:51:20 GMT", + "date" : "Mon, 18 May 2020 11:50:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1024", + "content-length" : "1080", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d21d6fd0-194d-48a1-8e7f-02c2e246cf67", + "x-ms-correlation-request-id" : "85553516-8038-4a86-af89-86cd8da8383c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105121Z:d21d6fd0-194d-48a1-8e7f-02c2e246cf67", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115027Z:85553516-8038-4a86-af89-86cd8da8383c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f810be85-ee5e-4f1d-97f5-ca28491693b1", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:50:50.2846779+00:00\",\r\n \"endTime\": \"2020-04-29T10:50:50.7378503+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-25842\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/dsk-25842\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"southcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8\",\"sourceUniqueId\":\"029aa73f-fe31-4fb2-b491-db8ee18a4eb8\"},\"diskSizeGB\":100,\"incremental\":false,\"timeCreated\":\"2020-04-29T10:50:50.2846779+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"d57a9e32-02b8-4f39-b40f-d240c0c3f6a0\"}}\r\n },\r\n \"name\": \"99d2f512-5dc8-4b47-84f8-d6270cd535c2\"\r\n}" + "x-ms-request-id" : "13c68c58-5f37-49e6-b338-4ff6b7fe0845", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:49:57.1321913+00:00\",\r\n \"endTime\": \"2020-05-18T11:49:57.5853323+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-09084\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/dsk-09084\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"southcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b\",\"sourceUniqueId\":\"984edbe1-6fa2-47cc-8e0c-eddf7d21739b\"},\"diskSizeGB\":100,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"timeCreated\":\"2020-05-18T11:49:57.1321913+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"57f33494-551f-4d5c-9226-65c730aa36ad\"}}\r\n },\r\n \"name\": \"528d332c-4e93-4484-89fc-f6ae9f7f9037\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/dsk-25842?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/dsk-09084?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:51:52 GMT", + "date" : "Mon, 18 May 2020 11:50:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "947", + "content-length" : "1025", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8a89321b-a23e-4c5c-99fb-b6576e4b74f5", + "x-ms-correlation-request-id" : "26ee50be-e163-47bb-976f-966e8741546a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105152Z:8a89321b-a23e-4c5c-99fb-b6576e4b74f5", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39964", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115058Z:26ee50be-e163-47bb-976f-966e8741546a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4973510f-aa56-43e2-9505-78f3c4093e93", - "Body" : "{\r\n \"name\": \"dsk-25842\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/dsk-25842\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-635606_disk2_029aa73ffe314fb2b491db8ee18a4eb8\",\r\n \"sourceUniqueId\": \"029aa73f-fe31-4fb2-b491-db8ee18a4eb8\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-04-29T10:50:50.2846779+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"d57a9e32-02b8-4f39-b40f-d240c0c3f6a0\"\r\n }\r\n}" + "x-ms-request-id" : "3d51dea6-4947-4cd5-b8f9-ea655d8c40bd", + "Body" : "{\r\n \"name\": \"dsk-09084\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/dsk-09084\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-839612_disk2_984edbe16fa247cc8e0ceddf7d21739b\",\r\n \"sourceUniqueId\": \"984edbe1-6fa2-47cc-8e0c-eddf7d21739b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-05-18T11:49:57.1321913+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"57f33494-551f-4d5c-9226-65c730aa36ad\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-35018?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-59360?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:51:56 GMT", + "date" : "Mon, 18 May 2020 11:51:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "451", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a2d3a60a-b5bd-49e5-bdf2-3dad80b0998f", + "x-ms-correlation-request-id" : "8eddb046-b612-4626-b9c2-da49f8bd001c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105156Z:a2d3a60a-b5bd-49e5-bdf2-3dad80b0998f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115103Z:8eddb046-b612-4626-b9c2-da49f8bd001c", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/242ad77a-c0e6-4162-a554-c99235ffba6b?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/8471fdfc-fc3f-4b0f-881a-9e6af0247697?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "242ad77a-c0e6-4162-a554-c99235ffba6b", - "Body" : "{\r\n \"name\": \"dsk-35018\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/dsk-25842\",\r\n \"sourceUniqueId\": \"d57a9e32-02b8-4f39-b40f-d240c0c3f6a0\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/242ad77a-c0e6-4162-a554-c99235ffba6b?api-version=2019-03-01" + "x-ms-request-id" : "8471fdfc-fc3f-4b0f-881a-9e6af0247697", + "Body" : "{\r\n \"name\": \"dsk-59360\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/dsk-09084\",\r\n \"sourceUniqueId\": \"57f33494-551f-4d5c-9226-65c730aa36ad\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/8471fdfc-fc3f-4b0f-881a-9e6af0247697?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/242ad77a-c0e6-4162-a554-c99235ffba6b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/8471fdfc-fc3f-4b0f-881a-9e6af0247697?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:52:26 GMT", + "date" : "Mon, 18 May 2020 11:51:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1007", + "content-length" : "1064", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a0295c39-99bd-4d2d-8240-8dfc8aa09217", + "x-ms-correlation-request-id" : "6223a26b-d970-47e7-b38e-e9ff38bf85a0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105227Z:a0295c39-99bd-4d2d-8240-8dfc8aa09217", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115133Z:6223a26b-d970-47e7-b38e-e9ff38bf85a0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "94d35c8d-63e6-4875-b586-5570abf74a76", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:51:56.3796333+00:00\",\r\n \"endTime\": \"2020-04-29T10:51:56.801474+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-35018\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-35018\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"southcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/dsk-25842\",\"sourceUniqueId\":\"d57a9e32-02b8-4f39-b40f-d240c0c3f6a0\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T10:51:56.3796333+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"a0af5739-b6ae-4e61-9cb3-b45e86027031\"}}\r\n },\r\n \"name\": \"242ad77a-c0e6-4162-a554-c99235ffba6b\"\r\n}" + "x-ms-request-id" : "fd1460d8-7f78-4068-9d60-ef388ccfaf83", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:51:03.0702082+00:00\",\r\n \"endTime\": \"2020-05-18T11:51:03.4452167+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-59360\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-59360\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"southcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/dsk-09084\",\"sourceUniqueId\":\"57f33494-551f-4d5c-9226-65c730aa36ad\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T11:51:03.0702082+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"82df7274-5f90-4f4a-82f8-767c7125ce83\"}}\r\n },\r\n \"name\": \"8471fdfc-fc3f-4b0f-881a-9e6af0247697\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-35018?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-59360?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:52:57 GMT", + "date" : "Mon, 18 May 2020 11:52:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "938", + "content-length" : "1016", "expires" : "-1", "x-ms-served-by" : "aa1f177c-71a5-46ef-9189-bd00f3b3ad58_132228274481219391", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "346929de-df0c-4ac1-a4c5-1b3757417b70", + "x-ms-correlation-request-id" : "ce97e686-6379-4c66-a14d-c37c367fd069", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105258Z:346929de-df0c-4ac1-a4c5-1b3757417b70", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39961", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115205Z:ce97e686-6379-4c66-a14d-c37c367fd069", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d459b8e0-3886-41d9-8f94-1b1fe15697a0", - "Body" : "{\r\n \"name\": \"dsk-35018\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-35018\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/snapshots/dsk-25842\",\r\n \"sourceUniqueId\": \"d57a9e32-02b8-4f39-b40f-d240c0c3f6a0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T10:51:56.3796333+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"a0af5739-b6ae-4e61-9cb3-b45e86027031\"\r\n }\r\n}" + "x-ms-request-id" : "8dd7f0f1-06a3-4093-b191-71561b339936", + "Body" : "{\r\n \"name\": \"dsk-59360\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-59360\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/snapshots/dsk-09084\",\r\n \"sourceUniqueId\": \"57f33494-551f-4d5c-9226-65c730aa36ad\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T11:51:03.0702082+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"82df7274-5f90-4f4a-82f8-767c7125ce83\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet82766af6af?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet94311d2fed?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:53:05 GMT", + "date" : "Mon, 18 May 2020 11:52:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1350", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "900ee36a-7e6a-4c34-a992-ec768ebfc065", + "x-ms-correlation-request-id" : "38aa74f4-d488-45f0-8b55-0939c5a02f53", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b76ffe31-6b59-4a80-bf45-83ca411abb51", + "x-ms-arm-service-request-id" : "c69ed385-eeff-41ba-88e0-8be1a8105e99", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105305Z:900ee36a-7e6a-4c34-a992-ec768ebfc065", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115211Z:38aa74f4-d488-45f0-8b55-0939c5a02f53", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "de7ea491-85ce-4372-93aa-270c2b3354d1", - "Body" : "{\r\n \"name\": \"vnet82766af6af\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet82766af6af\",\r\n \"etag\": \"W/\\\"22168662-d7cb-431e-aca6-b84f47e4bcef\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"113c7e0b-5192-41e1-b05b-84c2333e880a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet82766af6af/subnets/subnet1\",\r\n \"etag\": \"W/\\\"22168662-d7cb-431e-aca6-b84f47e4bcef\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/de7ea491-85ce-4372-93aa-270c2b3354d1?api-version=2019-06-01" + "x-ms-request-id" : "8f0d67a6-cc46-42d7-9913-af8aa85bedb0", + "Body" : "{\r\n \"name\": \"vnet94311d2fed\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet94311d2fed\",\r\n \"etag\": \"W/\\\"3d8f9a51-1f72-4196-b4fc-17eb20627c94\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f73d0c49-8bc3-4483-aab9-cca30826b109\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet94311d2fed/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3d8f9a51-1f72-4196-b4fc-17eb20627c94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8f0d67a6-cc46-42d7-9913-af8aa85bedb0?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/de7ea491-85ce-4372-93aa-270c2b3354d1?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8f0d67a6-cc46-42d7-9913-af8aa85bedb0?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:53:35 GMT", + "date" : "Mon, 18 May 2020 11:52:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "x-ms-ratelimit-remaining-subscription-reads" : "11953", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "72d7199e-860c-4df3-8a27-0678cb0d9dd3", + "x-ms-correlation-request-id" : "d1afb001-b1ce-4ecb-a21e-01a90c9dc307", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d07c9d54-579d-42c2-bcd8-fb89950bb4eb", + "x-ms-arm-service-request-id" : "b2095cb8-422d-4910-834b-c31e857a10f8", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105336Z:72d7199e-860c-4df3-8a27-0678cb0d9dd3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115242Z:d1afb001-b1ce-4ecb-a21e-01a90c9dc307", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0c934cd7-1a7b-4f36-8d74-d5f58d668009", + "x-ms-request-id" : "26405d4f-714f-45e2-903a-e3728db4ed75", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet82766af6af?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet94311d2fed?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:54:07 GMT", + "date" : "Mon, 18 May 2020 11:53:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1352", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8bdb136c-cc3f-4adb-bea2-b54c6e44add6", + "x-ms-correlation-request-id" : "d968abb3-47bf-46e1-afea-0899b41524db", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4dfbfb80-3236-45b1-b4a3-34d9c80dbe5c", + "x-ms-arm-service-request-id" : "920b43e1-fe46-4581-b03d-631af3b7a250", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105407Z:8bdb136c-cc3f-4adb-bea2-b54c6e44add6", - "etag" : "W/\"1a837d30-6123-4be8-acda-22cd380ee91a\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115313Z:d968abb3-47bf-46e1-afea-0899b41524db", + "etag" : "W/\"05b1f189-66b0-4a05-bac4-c51415c38faa\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d2928f17-98a7-4653-bac0-fc2b422f9402", - "Body" : "{\r\n \"name\": \"vnet82766af6af\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet82766af6af\",\r\n \"etag\": \"W/\\\"1a837d30-6123-4be8-acda-22cd380ee91a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"113c7e0b-5192-41e1-b05b-84c2333e880a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet82766af6af/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1a837d30-6123-4be8-acda-22cd380ee91a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "b69f94cf-5996-44a3-9acb-7143aad52cfd", + "Body" : "{\r\n \"name\": \"vnet94311d2fed\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet94311d2fed\",\r\n \"etag\": \"W/\\\"05b1f189-66b0-4a05-bac4-c51415c38faa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f73d0c49-8bc3-4483-aab9-cca30826b109\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet94311d2fed/subnets/subnet1\",\r\n \"etag\": \"W/\\\"05b1f189-66b0-4a05-bac4-c51415c38faa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic90528156470?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic42300852445?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:54:12 GMT", + "date" : "Mon, 18 May 2020 11:53:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1643", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ddd623f0-7b47-4575-817d-4c89e43fd51d", + "x-ms-correlation-request-id" : "3147576e-7232-44f2-890a-ac1ebb2bde8b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "94a12932-2d82-4bdd-bcb6-cb904e1fc327", + "x-ms-arm-service-request-id" : "b9b4f56d-a2c0-488c-8327-3c93d4d4062b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105412Z:ddd623f0-7b47-4575-817d-4c89e43fd51d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115320Z:3147576e-7232-44f2-890a-ac1ebb2bde8b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7143b3cf-5456-4b5e-a0ed-a5bd32e522e3", - "Body" : "{\r\n \"name\": \"nic90528156470\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic90528156470\",\r\n \"etag\": \"W/\\\"6d403a59-da7d-427b-aad4-7266e1e86506\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"400f9c5c-f295-4d6a-9a96-0a26351758f3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic90528156470/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6d403a59-da7d-427b-aad4-7266e1e86506\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet82766af6af/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"bn5dyemskhqudmc1qtbdgpuibc.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7143b3cf-5456-4b5e-a0ed-a5bd32e522e3?api-version=2019-06-01" + "x-ms-request-id" : "5921eaec-4326-44da-8db8-1e184e0c3a80", + "Body" : "{\r\n \"name\": \"nic42300852445\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic42300852445\",\r\n \"etag\": \"W/\\\"286c0e56-48c0-4123-bd5a-34f24ddd65d1\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddc3bb5f-596a-4a6e-9a20-d5a30620a420\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic42300852445/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"286c0e56-48c0-4123-bd5a-34f24ddd65d1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet94311d2fed/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jegd134drobujkvzzsrqqjvrbb.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/5921eaec-4326-44da-8db8-1e184e0c3a80?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7143b3cf-5456-4b5e-a0ed-a5bd32e522e3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/5921eaec-4326-44da-8db8-1e184e0c3a80?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:54:44 GMT", + "date" : "Mon, 18 May 2020 11:53:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", + "x-ms-ratelimit-remaining-subscription-reads" : "11952", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "83719e7c-adae-4d8d-82ec-53989e1500ec", + "x-ms-correlation-request-id" : "f6c4bdcc-68c8-4232-9b97-5b8b5463a85f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5dcb3414-f0af-4206-b6a5-066403e713e8", + "x-ms-arm-service-request-id" : "e305a07a-8ea7-47b6-a993-80563749a4d0", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105444Z:83719e7c-adae-4d8d-82ec-53989e1500ec", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115351Z:f6c4bdcc-68c8-4232-9b97-5b8b5463a85f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "303fefc6-ea02-4b81-8ad7-12dd10c423b4", + "x-ms-request-id" : "e28db811-e3c8-4bba-94c4-7a269ea84815", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic90528156470?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic42300852445?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:55:14 GMT", + "date" : "Mon, 18 May 2020 11:54:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1643", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "df16f29c-c4cf-408f-bfbd-96da6a783ad7", + "x-ms-correlation-request-id" : "00747254-67f9-4818-800e-f58eb2d73133", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "429e278c-5d08-4389-8fcc-458272c3e5e8", + "x-ms-arm-service-request-id" : "ee2977b1-d594-4548-a2cb-4593e0719604", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105514Z:df16f29c-c4cf-408f-bfbd-96da6a783ad7", - "etag" : "W/\"6d403a59-da7d-427b-aad4-7266e1e86506\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115421Z:00747254-67f9-4818-800e-f58eb2d73133", + "etag" : "W/\"286c0e56-48c0-4123-bd5a-34f24ddd65d1\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "867e3d5e-2ba1-46ff-b754-56b2b3f8fbcb", - "Body" : "{\r\n \"name\": \"nic90528156470\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic90528156470\",\r\n \"etag\": \"W/\\\"6d403a59-da7d-427b-aad4-7266e1e86506\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"400f9c5c-f295-4d6a-9a96-0a26351758f3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic90528156470/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6d403a59-da7d-427b-aad4-7266e1e86506\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet82766af6af/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"bn5dyemskhqudmc1qtbdgpuibc.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "ed6bb90e-c4ab-4eeb-b24b-d1d41875f953", + "Body" : "{\r\n \"name\": \"nic42300852445\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic42300852445\",\r\n \"etag\": \"W/\\\"286c0e56-48c0-4123-bd5a-34f24ddd65d1\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddc3bb5f-596a-4a6e-9a20-d5a30620a420\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic42300852445/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"286c0e56-48c0-4123-bd5a-34f24ddd65d1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet94311d2fed/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jegd134drobujkvzzsrqqjvrbb.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-132831?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-88949e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:55:21 GMT", + "date" : "Mon, 18 May 2020 11:54:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1611", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ae8e0c2a-874d-41b9-b536-8f2cbd89900d", + "x-ms-correlation-request-id" : "dae39ec4-1c88-46af-b8ee-e5e88e4cab79", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105521Z:ae8e0c2a-874d-41b9-b536-8f2cbd89900d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1195", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115430Z:dae39ec4-1c88-46af-b8ee-e5e88e4cab79", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fde32f1f-c1ba-4c9d-b4ed-c272ea3c3d80", - "Body" : "{\r\n \"name\": \"vm-132831\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-132831\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6b5c4e07-d9ea-4cc7-b560-fb7672f15250\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-58811\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-58811\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-35018\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-35018\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic90528156470\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/fde32f1f-c1ba-4c9d-b4ed-c272ea3c3d80?api-version=2019-03-01" + "x-ms-request-id" : "6d45f8a3-f1f2-4775-bbfa-abb0dc1576e5", + "Body" : "{\r\n \"name\": \"vm-88949e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-88949e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"83cae002-d556-4e8d-b6b2-9d25e07eb019\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-92460\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-92460\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-59360\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-59360\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic42300852445\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6d45f8a3-f1f2-4775-bbfa-abb0dc1576e5?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/fde32f1f-c1ba-4c9d-b4ed-c272ea3c3d80?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6d45f8a3-f1f2-4775-bbfa-abb0dc1576e5?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:55:50 GMT", + "date" : "Mon, 18 May 2020 11:55:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "x-ms-ratelimit-remaining-subscription-reads" : "11951", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a324b2c6-1d7a-41d7-b3ce-20a418ccf4b8", + "x-ms-correlation-request-id" : "fe778b46-9360-4df2-9dd8-f35166576558", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105551Z:a324b2c6-1d7a-41d7-b3ce-20a418ccf4b8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29973", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115501Z:fe778b46-9360-4df2-9dd8-f35166576558", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bca0bd1c-1f0b-4fdb-95fe-c4aab60828e2", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:55:19.8002399+00:00\",\r\n \"endTime\": \"2020-04-29T10:55:38.7383707+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fde32f1f-c1ba-4c9d-b4ed-c272ea3c3d80\"\r\n}" + "x-ms-request-id" : "51ef6252-8606-44dc-be47-e030c28c4b6c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:54:27.2122847+00:00\",\r\n \"endTime\": \"2020-05-18T11:54:56.9478026+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6d45f8a3-f1f2-4775-bbfa-abb0dc1576e5\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-132831?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-88949e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:56:21 GMT", + "date" : "Mon, 18 May 2020 11:55:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1612", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e103c997-b975-4a02-9232-c776743b8829", + "x-ms-correlation-request-id" : "adc7d91c-6db7-4845-a592-a6da3b46ea17", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105622Z:e103c997-b975-4a02-9232-c776743b8829", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31967", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115532Z:adc7d91c-6db7-4845-a592-a6da3b46ea17", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "afa974fc-ca31-4aaf-b803-4e1318df4e4b", - "Body" : "{\r\n \"name\": \"vm-132831\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-132831\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6b5c4e07-d9ea-4cc7-b560-fb7672f15250\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-58811\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-58811\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-35018\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/disks/dsk-35018\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic90528156470\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "8ce9b5f2-7b7c-433d-9285-dfa36ed4f2ae", + "Body" : "{\r\n \"name\": \"vm-88949e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-88949e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"83cae002-d556-4e8d-b6b2-9d25e07eb019\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-92460\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-92460\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-59360\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/disks/dsk-59360\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic42300852445\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvfda50287?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv39280115?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:56:24 GMT", - "content-length" : "323", + "date" : "Mon, 18 May 2020 11:55:35 GMT", + "content-length" : "317", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7a5820ef-1adc-4d1a-97c6-6226a4274432", + "x-ms-correlation-request-id" : "752aaeaa-0343-4c52-ac6b-c8f717fe2c92", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105625Z:7a5820ef-1adc-4d1a-97c6-6226a4274432", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115535Z:752aaeaa-0343-4c52-ac6b-c8f717fe2c92", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7a5820ef-1adc-4d1a-97c6-6226a4274432", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287\",\"name\":\"rgcomvfda50287\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-04-29T10:56:22.887404100Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "752aaeaa-0343-4c52-ac6b-c8f717fe2c92", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115\",\"name\":\"rgcomv39280115\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-05-18T11:55:32.567Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Storage/storageAccounts/stgvm850417fb8662598d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Storage/storageAccounts/stgvm7742139067023917?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:56:31 GMT", + "date" : "Mon, 18 May 2020 11:55:40 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "92987f5e-a2db-423c-91d8-347d834acad9", + "x-ms-correlation-request-id" : "7b3cb512-537b-4f26-8a5d-78090806bafe", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105631Z:92987f5e-a2db-423c-91d8-347d834acad9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115541Z:7b3cb512-537b-4f26-8a5d-78090806bafe", "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/c6701816-511f-44c2-a2ee-6d4c6ef59f89?monitor=true&api-version=2019-06-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/0ba261a6-b418-4d30-afec-fbc71175c807?monitor=true&api-version=2019-06-01", "cache-control" : "no-cache", - "x-ms-request-id" : "c6701816-511f-44c2-a2ee-6d4c6ef59f89", + "x-ms-request-id" : "0ba261a6-b418-4d30-afec-fbc71175c807", "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet38977dd898?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip179363aa?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:56:31 GMT", + "date" : "Mon, 18 May 2020 11:55:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "1350", + "content-length" : "774", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4256cb27-dedd-4c36-9c0d-94917fe72f65", + "x-ms-correlation-request-id" : "b353bbdc-d3d0-4049-9c4d-227e9c568817", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "34e4e785-0909-41c0-9476-79fac72bf7d4", + "x-ms-arm-service-request-id" : "23462216-33da-4c7a-a292-bd7f01b135ef", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105632Z:4256cb27-dedd-4c36-9c0d-94917fe72f65", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115541Z:b353bbdc-d3d0-4049-9c4d-227e9c568817", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5af9ef66-2980-4637-8459-47866975da4a", - "Body" : "{\r\n \"name\": \"vnet38977dd898\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet38977dd898\",\r\n \"etag\": \"W/\\\"bfd0abd3-73c4-413e-b86e-404115a5e57a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3b192801-caa5-47a1-bdba-bb145564eea0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet38977dd898/subnets/subnet1\",\r\n \"etag\": \"W/\\\"bfd0abd3-73c4-413e-b86e-404115a5e57a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/5af9ef66-2980-4637-8459-47866975da4a?api-version=2019-06-01" + "x-ms-request-id" : "6c0dc4ca-80aa-4916-9ed5-846eda0aa422", + "Body" : "{\r\n \"name\": \"pip179363aa\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip179363aa\",\r\n \"etag\": \"W/\\\"e6ce77d6-a509-4c10-9b1d-f5d1eaf108c2\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"19335cf7-d4aa-4737-bcc3-50832488c87e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-58751882794\",\r\n \"fqdn\": \"pip-58751882794.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6c0dc4ca-80aa-4916-9ed5-846eda0aa422?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip14630505?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet65069ef30a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:56:32 GMT", + "date" : "Mon, 18 May 2020 11:55:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "774", + "content-length" : "1350", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "392c9883-046c-4566-9bf3-e32da0a719d4", + "x-ms-correlation-request-id" : "7b373f3d-bfb3-4911-bd24-1ee2517857c7", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1778a1de-300d-4d9d-aa7d-4fb093413448", + "x-ms-arm-service-request-id" : "6db4d453-a62d-454b-bc7c-424f1268ebc0", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105632Z:392c9883-046c-4566-9bf3-e32da0a719d4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115541Z:7b373f3d-bfb3-4911-bd24-1ee2517857c7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3381036e-3987-4099-9c53-f898a07f1bab", - "Body" : "{\r\n \"name\": \"pip14630505\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip14630505\",\r\n \"etag\": \"W/\\\"d037a869-3787-40c7-81d8-89deff63774b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e6681686-0c18-487d-866d-4d9fa7146447\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-ba251505b6f\",\r\n \"fqdn\": \"pip-ba251505b6f.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3381036e-3987-4099-9c53-f898a07f1bab?api-version=2019-06-01" + "x-ms-request-id" : "fb2d9316-5ea2-49a0-a31f-a6cafd0b71cc", + "Body" : "{\r\n \"name\": \"vnet65069ef30a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet65069ef30a\",\r\n \"etag\": \"W/\\\"98f9965e-d9f7-4659-8d58-240d6ce3f1af\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"88293ed7-8044-4a1c-945a-3ca8112c8723\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet65069ef30a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"98f9965e-d9f7-4659-8d58-240d6ce3f1af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/fb2d9316-5ea2-49a0-a31f-a6cafd0b71cc?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/c6701816-511f-44c2-a2ee-6d4c6ef59f89?monitor=true&api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/0ba261a6-b418-4d30-afec-fbc71175c807?monitor=true&api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:57:02 GMT", + "date" : "Mon, 18 May 2020 11:56:10 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1246", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d51bf9d1-4828-45f4-b907-e9ca133117e0", + "x-ms-correlation-request-id" : "56c215a4-f415-482b-bf56-28bee650d7a0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105702Z:d51bf9d1-4828-45f4-b907-e9ca133117e0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115611Z:56c215a4-f415-482b-bf56-28bee650d7a0", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "1594bacd-f90a-4a53-9dcd-b37d83deb009", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Storage/storageAccounts/stgvm850417fb8662598d\",\"name\":\"stgvm850417fb8662598d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T10:56:31.4374334Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T10:56:31.4374334Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-29T10:56:31.3593104Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm850417fb8662598d.blob.core.windows.net/\",\"queue\":\"https://stgvm850417fb8662598d.queue.core.windows.net/\",\"table\":\"https://stgvm850417fb8662598d.table.core.windows.net/\",\"file\":\"https://stgvm850417fb8662598d.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "3c237d78-845b-4588-bf1e-96bee7c8e25e", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Storage/storageAccounts/stgvm7742139067023917\",\"name\":\"stgvm7742139067023917\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T11:55:40.4390614Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T11:55:40.4390614Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T11:55:40.3609298Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm7742139067023917.blob.core.windows.net/\",\"queue\":\"https://stgvm7742139067023917.queue.core.windows.net/\",\"table\":\"https://stgvm7742139067023917.table.core.windows.net/\",\"file\":\"https://stgvm7742139067023917.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/5af9ef66-2980-4637-8459-47866975da4a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6c0dc4ca-80aa-4916-9ed5-846eda0aa422?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:57:03 GMT", + "date" : "Mon, 18 May 2020 11:56:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "550efdff-1b5f-4e6a-9b88-f8252c066cf7", + "x-ms-correlation-request-id" : "ce4f56f2-c9c4-4b80-a5ff-e20fdfcae936", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7d5fdf7e-fe18-45b9-973e-34e3d7cbec04", + "x-ms-arm-service-request-id" : "d1c5a0af-51a1-473a-81bf-9f205d832347", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105703Z:550efdff-1b5f-4e6a-9b88-f8252c066cf7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115612Z:ce4f56f2-c9c4-4b80-a5ff-e20fdfcae936", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2045ed08-94a2-4248-9b91-b4736d6deead", + "x-ms-request-id" : "b6f83fac-aced-4c88-92aa-f2dd29559a81", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3381036e-3987-4099-9c53-f898a07f1bab?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/fb2d9316-5ea2-49a0-a31f-a6cafd0b71cc?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:57:03 GMT", + "date" : "Mon, 18 May 2020 11:56:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aa94f92f-cbaa-404c-a639-c482ed8f63c3", + "x-ms-correlation-request-id" : "8891a196-d99f-4fe8-8c42-327a300887a8", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "065419f9-0c13-49a5-b2d4-1841c6ec3ca8", + "x-ms-arm-service-request-id" : "95c8be83-1c47-4b02-990e-0da9f3be8cc7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105703Z:aa94f92f-cbaa-404c-a639-c482ed8f63c3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115613Z:8891a196-d99f-4fe8-8c42-327a300887a8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fbb285ac-aa16-480c-ae0a-99f4e66d557b", + "x-ms-request-id" : "e471446d-4dc6-4dbd-9db5-a3b68cb4ffd0", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Storage/storageAccounts/stgvm850417fb8662598d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Storage/storageAccounts/stgvm7742139067023917?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.storage/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:57:33 GMT", + "date" : "Mon, 18 May 2020 11:56:41 GMT", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "content-length" : "1246", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a3309f31-9348-48c4-a379-270741a12626", + "x-ms-correlation-request-id" : "2fc5f4bc-062e-47db-b8d3-0199835be411", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105733Z:a3309f31-9348-48c4-a379-270741a12626", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115642Z:2fc5f4bc-062e-47db-b8d3-0199835be411", "content-type" : "application/json", "cache-control" : "no-cache", - "x-ms-request-id" : "3dfe9288-0993-4f1d-82bb-a76d4764c36b", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Storage/storageAccounts/stgvm850417fb8662598d\",\"name\":\"stgvm850417fb8662598d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T10:56:31.4374334Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-29T10:56:31.4374334Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-29T10:56:31.3593104Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm850417fb8662598d.blob.core.windows.net/\",\"queue\":\"https://stgvm850417fb8662598d.queue.core.windows.net/\",\"table\":\"https://stgvm850417fb8662598d.table.core.windows.net/\",\"file\":\"https://stgvm850417fb8662598d.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\"}}" + "x-ms-request-id" : "f7f5525c-d5c8-47a3-8ff3-760f81d0129a", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Storage/storageAccounts/stgvm7742139067023917\",\"name\":\"stgvm7742139067023917\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T11:55:40.4390614Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-18T11:55:40.4390614Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-18T11:55:40.3609298Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm7742139067023917.blob.core.windows.net/\",\"queue\":\"https://stgvm7742139067023917.queue.core.windows.net/\",\"table\":\"https://stgvm7742139067023917.table.core.windows.net/\",\"file\":\"https://stgvm7742139067023917.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet38977dd898?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip179363aa?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:57:33 GMT", + "date" : "Mon, 18 May 2020 11:56:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1352", + "content-length" : "775", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", + "x-ms-ratelimit-remaining-subscription-reads" : "11949", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "65cec6c6-af0c-4933-b854-4341427a64a6", + "x-ms-correlation-request-id" : "45be366f-a8db-419d-bcb1-143cdb5ef1e9", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "dad2d9a7-2d4c-40e1-9ccb-00dc5dbf5748", + "x-ms-arm-service-request-id" : "0dcea743-c71d-4091-961c-bf9abebf3345", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105734Z:65cec6c6-af0c-4933-b854-4341427a64a6", - "etag" : "W/\"98a1361d-292c-41cc-843e-e01891c432b5\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115643Z:45be366f-a8db-419d-bcb1-143cdb5ef1e9", + "etag" : "W/\"3a6e4f16-315d-4ff2-bfba-f8c4780416ca\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "57e35adf-e067-42ab-84d4-bbec7d27978d", - "Body" : "{\r\n \"name\": \"vnet38977dd898\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet38977dd898\",\r\n \"etag\": \"W/\\\"98a1361d-292c-41cc-843e-e01891c432b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3b192801-caa5-47a1-bdba-bb145564eea0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet38977dd898/subnets/subnet1\",\r\n \"etag\": \"W/\\\"98a1361d-292c-41cc-843e-e01891c432b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "607d96c0-0315-456f-8afb-4749071d5b59", + "Body" : "{\r\n \"name\": \"pip179363aa\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip179363aa\",\r\n \"etag\": \"W/\\\"3a6e4f16-315d-4ff2-bfba-f8c4780416ca\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"19335cf7-d4aa-4737-bcc3-50832488c87e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-58751882794\",\r\n \"fqdn\": \"pip-58751882794.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip14630505?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet65069ef30a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:57:34 GMT", + "date" : "Mon, 18 May 2020 11:56:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "775", + "content-length" : "1352", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "07853220-8827-4bf9-8a63-df8b1cb0a064", + "x-ms-correlation-request-id" : "bce77967-4763-4baa-8950-01b7b4cfa032", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e37c7681-1a59-47d6-afee-aaeb1741b370", + "x-ms-arm-service-request-id" : "ad271ab8-2e8d-4226-bb75-5bcc32d5298c", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105734Z:07853220-8827-4bf9-8a63-df8b1cb0a064", - "etag" : "W/\"ae2fa35f-b48a-4742-8e9c-c70a6e20a47a\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115643Z:bce77967-4763-4baa-8950-01b7b4cfa032", + "etag" : "W/\"6b3a32a8-1296-4628-b6f7-f5e6e141f4fd\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "54e2c3da-688a-46ea-876b-b36689cf9ca7", - "Body" : "{\r\n \"name\": \"pip14630505\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip14630505\",\r\n \"etag\": \"W/\\\"ae2fa35f-b48a-4742-8e9c-c70a6e20a47a\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e6681686-0c18-487d-866d-4d9fa7146447\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-ba251505b6f\",\r\n \"fqdn\": \"pip-ba251505b6f.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "a428c741-fa9b-4dc7-aa6e-2f1311030c0e", + "Body" : "{\r\n \"name\": \"vnet65069ef30a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet65069ef30a\",\r\n \"etag\": \"W/\\\"6b3a32a8-1296-4628-b6f7-f5e6e141f4fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"88293ed7-8044-4a1c-945a-3ca8112c8723\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet65069ef30a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6b3a32a8-1296-4628-b6f7-f5e6e141f4fd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic566060af488?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic8701361a3d6?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:57:39 GMT", + "date" : "Mon, 18 May 2020 11:56:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1850", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0538c5f4-d6a2-4564-b75a-a3d8139286c7", + "x-ms-correlation-request-id" : "b7b2e7ad-b346-4866-a016-d7e6f63cac79", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "197b88fe-12c2-484c-87d1-37ee1760fafb", + "x-ms-arm-service-request-id" : "d9406935-2f2f-47aa-b693-819c5eeadd76", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105740Z:0538c5f4-d6a2-4564-b75a-a3d8139286c7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115649Z:b7b2e7ad-b346-4866-a016-d7e6f63cac79", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a27e610a-e834-4706-99d2-1ed4225226ff", - "Body" : "{\r\n \"name\": \"nic566060af488\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic566060af488\",\r\n \"etag\": \"W/\\\"6775be3a-467b-40c6-915f-150f0ef825bd\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"74c1e14e-5f49-4b01-b5e6-0ca8598c6d01\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic566060af488/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6775be3a-467b-40c6-915f-150f0ef825bd\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip14630505\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet38977dd898/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"aeubso3fzkquppn0xmkfkzhoua.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a27e610a-e834-4706-99d2-1ed4225226ff?api-version=2019-06-01" + "x-ms-request-id" : "d25b9ca3-daa4-42e2-a77d-5ad769c2cf7d", + "Body" : "{\r\n \"name\": \"nic8701361a3d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic8701361a3d6\",\r\n \"etag\": \"W/\\\"5a86cd1e-d27f-4c68-88fc-1c52907d0970\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"98bc963a-a61c-496b-ba4c-a49717ee9058\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic8701361a3d6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5a86cd1e-d27f-4c68-88fc-1c52907d0970\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip179363aa\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet65069ef30a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"025ctcceqaoevfc0hsubclehed.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d25b9ca3-daa4-42e2-a77d-5ad769c2cf7d?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a27e610a-e834-4706-99d2-1ed4225226ff?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d25b9ca3-daa4-42e2-a77d-5ad769c2cf7d?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:58:10 GMT", + "date" : "Mon, 18 May 2020 11:57:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", + "x-ms-ratelimit-remaining-subscription-reads" : "11948", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6970ce34-4717-4dcf-bf91-18a98674b4a3", + "x-ms-correlation-request-id" : "5f9e0a1b-8ba0-4284-b598-7173d49a9083", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b1bb7c27-1b2e-46c5-b05a-ce9dd1ee3c4b", + "x-ms-arm-service-request-id" : "a46bf9c6-6f8f-4ea4-bb93-1620d719001e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105811Z:6970ce34-4717-4dcf-bf91-18a98674b4a3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115720Z:5f9e0a1b-8ba0-4284-b598-7173d49a9083", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2c3c4526-0d9f-4638-8199-e9a6d21614ec", + "x-ms-request-id" : "7d04eb56-4a04-4dde-ae43-14289dedb248", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic566060af488?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic8701361a3d6?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:58:41 GMT", + "date" : "Mon, 18 May 2020 11:57:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1850", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4fd3a9f6-142d-4cb9-b530-3857c7b4a149", + "x-ms-correlation-request-id" : "620f70cf-35c1-4821-ad76-f78e34729fb5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "cab09596-c413-4336-915f-52efe6b55f3b", + "x-ms-arm-service-request-id" : "728acb97-9ee8-4a80-9860-108e80f8904d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105841Z:4fd3a9f6-142d-4cb9-b530-3857c7b4a149", - "etag" : "W/\"6775be3a-467b-40c6-915f-150f0ef825bd\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115750Z:620f70cf-35c1-4821-ad76-f78e34729fb5", + "etag" : "W/\"5a86cd1e-d27f-4c68-88fc-1c52907d0970\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "654b8fbc-aac9-469e-8957-071fe92e8bec", - "Body" : "{\r\n \"name\": \"nic566060af488\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic566060af488\",\r\n \"etag\": \"W/\\\"6775be3a-467b-40c6-915f-150f0ef825bd\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"74c1e14e-5f49-4b01-b5e6-0ca8598c6d01\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic566060af488/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6775be3a-467b-40c6-915f-150f0ef825bd\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/publicIPAddresses/pip14630505\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/virtualNetworks/vnet38977dd898/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"aeubso3fzkquppn0xmkfkzhoua.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "7dc1e244-6edf-40d8-8757-f245f1ccc970", + "Body" : "{\r\n \"name\": \"nic8701361a3d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic8701361a3d6\",\r\n \"etag\": \"W/\\\"5a86cd1e-d27f-4c68-88fc-1c52907d0970\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"98bc963a-a61c-496b-ba4c-a49717ee9058\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic8701361a3d6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5a86cd1e-d27f-4c68-88fc-1c52907d0970\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/publicIPAddresses/pip179363aa\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/virtualNetworks/vnet65069ef30a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"025ctcceqaoevfc0hsubclehed.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-850417?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-774213?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:58:48 GMT", + "date" : "Mon, 18 May 2020 11:58:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2564", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6bf49879-fcfc-4e5a-8fb4-dfccd5dd35d7", + "x-ms-correlation-request-id" : "171d94f0-25fa-48ec-8672-0905a659412c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105848Z:6bf49879-fcfc-4e5a-8fb4-dfccd5dd35d7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115817Z:171d94f0-25fa-48ec-8672-0905a659412c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "56246da9-29a0-4737-9f9e-083d426d77ac", - "Body" : "{\r\n \"name\": \"vm-850417\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-850417\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9502c472-14ca-4ae5-8a68-e197f4c7090f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-850417-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm850417fb8662598d.blob.core.windows.net/vhds/vm-850417-os-disk-1c64bf08-5785-4891-9727-3783dab4b8df.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-850417-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm850417fb8662598d.blob.core.windows.net/vhds/vm-850417-data-disk-0-505dfe59-631a-42d9-9e20-55bd0837d599.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-850417\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic566060af488\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56246da9-29a0-4737-9f9e-083d426d77ac?api-version=2019-03-01" + "x-ms-request-id" : "26219a83-c729-4cb9-aa9e-1ee902b458f9", + "Body" : "{\r\n \"name\": \"vm-774213\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-774213\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fc20a188-e92c-46f4-80c2-5b8f7c5a7885\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-774213-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm7742139067023917.blob.core.windows.net/vhds/vm-774213-os-disk-8eff29ee-4b11-43ff-b7e0-7c5e4b45a291.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-774213-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm7742139067023917.blob.core.windows.net/vhds/vm-774213-data-disk-0-31039a2a-7b8c-4bf9-b486-8f5413ae0b85.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-774213\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic8701361a3d6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/26219a83-c729-4cb9-aa9e-1ee902b458f9?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56246da9-29a0-4737-9f9e-083d426d77ac?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/26219a83-c729-4cb9-aa9e-1ee902b458f9?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:59:18 GMT", + "date" : "Mon, 18 May 2020 11:58:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", + "x-ms-ratelimit-remaining-subscription-reads" : "11947", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e17cba37-d8f5-46e2-ab4e-352e2dfe715f", + "x-ms-correlation-request-id" : "582cad9c-006e-4fbf-b5aa-a43063d07201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105919Z:e17cba37-d8f5-46e2-ab4e-352e2dfe715f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29972", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115848Z:582cad9c-006e-4fbf-b5aa-a43063d07201", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b9bcde49-f661-43a1-8d1a-58be24ecce2b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:58:46.4479162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56246da9-29a0-4737-9f9e-083d426d77ac\"\r\n}" + "x-ms-request-id" : "7ac06292-a1b4-4b43-8728-7c98cea1aa7e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:58:15.6425268+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26219a83-c729-4cb9-aa9e-1ee902b458f9\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56246da9-29a0-4737-9f9e-083d426d77ac?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/26219a83-c729-4cb9-aa9e-1ee902b458f9?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 10:59:49 GMT", + "date" : "Mon, 18 May 2020 11:59:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "46b6c9d3-a95a-49c6-9098-b9300be13e4b", + "x-ms-correlation-request-id" : "1986dc9e-3cfb-4530-982b-e1cb68c8ec89", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T105949Z:46b6c9d3-a95a-49c6-9098-b9300be13e4b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29970", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115919Z:1986dc9e-3cfb-4530-982b-e1cb68c8ec89", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a75d5f9a-b875-48ff-8dbc-efa067cae269", - "Body" : "{\r\n \"startTime\": \"2020-04-29T10:58:46.4479162+00:00\",\r\n \"endTime\": \"2020-04-29T10:59:35.6999213+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"56246da9-29a0-4737-9f9e-083d426d77ac\"\r\n}" + "x-ms-request-id" : "e51cb678-afd3-45c2-a0dd-415ebaa4214a", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:58:15.6425268+00:00\",\r\n \"endTime\": \"2020-05-18T11:59:13.8789725+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"26219a83-c729-4cb9-aa9e-1ee902b458f9\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-850417?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-774213?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:00:19 GMT", + "date" : "Mon, 18 May 2020 11:59:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2592", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4039398e-bb62-4c28-8c31-b42dfe7ba96e", + "x-ms-correlation-request-id" : "8877b9cc-5052-490d-8b07-ffb7e1aa5616", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110020Z:4039398e-bb62-4c28-8c31-b42dfe7ba96e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31961", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115950Z:8877b9cc-5052-490d-8b07-ffb7e1aa5616", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8fe49fea-3717-4467-b412-2da875200f99", - "Body" : "{\r\n \"name\": \"vm-850417\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-850417\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9502c472-14ca-4ae5-8a68-e197f4c7090f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-850417-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm850417fb8662598d.blob.core.windows.net/vhds/vm-850417-os-disk-1c64bf08-5785-4891-9727-3783dab4b8df.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-850417-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm850417fb8662598d.blob.core.windows.net/vhds/vm-850417-data-disk-0-505dfe59-631a-42d9-9e20-55bd0837d599.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-850417\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic566060af488\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "f8ef7c71-95f8-4d5c-aff7-65cb9e30e3c5", + "Body" : "{\r\n \"name\": \"vm-774213\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-774213\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fc20a188-e92c-46f4-80c2-5b8f7c5a7885\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-774213-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm7742139067023917.blob.core.windows.net/vhds/vm-774213-os-disk-8eff29ee-4b11-43ff-b7e0-7c5e4b45a291.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-774213-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm7742139067023917.blob.core.windows.net/vhds/vm-774213-data-disk-0-31039a2a-7b8c-4bf9-b486-8f5413ae0b85.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-774213\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic8701361a3d6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-850417/deallocate?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-774213/deallocate?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:00:19 GMT", + "date" : "Mon, 18 May 2020 11:59:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "29015912-d764-494e-bb35-c28ad81346bd", + "x-ms-correlation-request-id" : "943a4626-82db-4371-af17-65cb4689952b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110020Z:29015912-d764-494e-bb35-c28ad81346bd", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1196", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T115952Z:943a4626-82db-4371-af17-65cb4689952b", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/11895a49-a1e8-4a37-b046-f617b69a196e?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "9060c645-b11d-4a1b-b85d-378ab4808d26", + "x-ms-request-id" : "11895a49-a1e8-4a37-b046-f617b69a196e", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:00:50 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eb0f3dcb-115b-4d67-b181-1d12981740e6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110051Z:eb0f3dcb-115b-4d67-b181-1d12981740e6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1b4e8958-c55e-440a-bf0a-570f675b26ae", - "Body" : "{\r\n \"startTime\": \"2020-04-29T11:00:20.5460452+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9060c645-b11d-4a1b-b85d-378ab4808d26\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:01:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7b57d022-9764-4d9d-a220-1d6a9a3a4f00", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110121Z:7b57d022-9764-4d9d-a220-1d6a9a3a4f00", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a5f624a8-7421-4c8f-9cdd-b925277d954f", - "Body" : "{\r\n \"startTime\": \"2020-04-29T11:00:20.5460452+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9060c645-b11d-4a1b-b85d-378ab4808d26\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:01:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "44bb6eb2-614f-406a-a466-38758bf7a661", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110152Z:44bb6eb2-614f-406a-a466-38758bf7a661", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "06ccb76a-e49a-4c86-8fc6-04f2bcba5bab", - "Body" : "{\r\n \"startTime\": \"2020-04-29T11:00:20.5460452+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9060c645-b11d-4a1b-b85d-378ab4808d26\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:02:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "48824f20-ede0-4dbe-bf23-0aff1759770f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110222Z:48824f20-ede0-4dbe-bf23-0aff1759770f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "36caf24e-0582-4790-ab6a-d78eceaf97ea", - "Body" : "{\r\n \"startTime\": \"2020-04-29T11:00:20.5460452+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9060c645-b11d-4a1b-b85d-378ab4808d26\"\r\n}" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/11895a49-a1e8-4a37-b046-f617b69a196e?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/11895a49-a1e8-4a37-b046-f617b69a196e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:02:52 GMT", + "date" : "Mon, 18 May 2020 12:00:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2caba3fc-db99-44e5-a2f5-e2042c6cd811", + "x-ms-correlation-request-id" : "99c94535-8c5a-4375-967e-cee44a5b6ce9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110253Z:2caba3fc-db99-44e5-a2f5-e2042c6cd811", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29974", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120023Z:99c94535-8c5a-4375-967e-cee44a5b6ce9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e690e412-fe12-4c63-95d8-cb812aeb43bc", - "Body" : "{\r\n \"startTime\": \"2020-04-29T11:00:20.5460452+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9060c645-b11d-4a1b-b85d-378ab4808d26\"\r\n}" + "x-ms-request-id" : "ff673a85-65ec-4d77-b7cd-e1ecddecb3bb", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:59:51.9271406+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11895a49-a1e8-4a37-b046-f617b69a196e\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/11895a49-a1e8-4a37-b046-f617b69a196e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:03:23 GMT", + "date" : "Mon, 18 May 2020 12:00:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "183", "expires" : "-1", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "01946f3b-ff23-4651-863e-ac33d9aae2a3", + "x-ms-correlation-request-id" : "295954e0-10cc-4fc3-aa1b-1aa0f0ea07bf", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110323Z:01946f3b-ff23-4651-863e-ac33d9aae2a3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29972", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120053Z:295954e0-10cc-4fc3-aa1b-1aa0f0ea07bf", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f86fe078-d450-40c8-86dd-ec088757e89f", - "Body" : "{\r\n \"startTime\": \"2020-04-29T11:00:20.5460452+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9060c645-b11d-4a1b-b85d-378ab4808d26\"\r\n}" + "x-ms-request-id" : "ee874d1e-31b6-4f95-83a1-1f0e57d6090c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T11:59:51.9271406+00:00\",\r\n \"endTime\": \"2020-05-18T12:00:52.710321+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"11895a49-a1e8-4a37-b046-f617b69a196e\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/11895a49-a1e8-4a37-b046-f617b69a196e?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:03:53 GMT", + "date" : "Mon, 18 May 2020 12:01:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", + "x-ms-ratelimit-remaining-subscription-reads" : "11946", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5d75cdae-55dd-48e0-9a2d-d7dea983b4bc", + "x-ms-correlation-request-id" : "f8d6975c-8480-40ab-adf2-47169318198f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110354Z:5d75cdae-55dd-48e0-9a2d-d7dea983b4bc", - "content-type" : "application/json; charset=utf-8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29970", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120124Z:f8d6975c-8480-40ab-adf2-47169318198f", "cache-control" : "no-cache", - "x-ms-request-id" : "4c23619b-a7e7-4f10-afdd-8fd51fd76c3a", - "Body" : "{\r\n \"startTime\": \"2020-04-29T11:00:20.5460452+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9060c645-b11d-4a1b-b85d-378ab4808d26\"\r\n}" + "x-ms-request-id" : "003df972-9d4e-464f-a830-7e8e5748ce27", + "Body" : "" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?api-version=2019-03-01", + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-774213/convertToManagedDisks?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:04:23 GMT", + "date" : "Mon, 18 May 2020 12:01:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8d0ca44b-cc86-4c62-8821-a5b94769e7bc", + "x-ms-correlation-request-id" : "18ab7fe8-4af9-4232-9552-6fafe2c0ec7c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110424Z:8d0ca44b-cc86-4c62-8821-a5b94769e7bc", - "content-type" : "application/json; charset=utf-8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120125Z:18ab7fe8-4af9-4232-9552-6fafe2c0ec7c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/7d9f528e-01e5-40be-a898-6f718ffc9118?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5afad737-a846-4ac0-9075-10d5b8bf052b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T11:00:20.5460452+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9060c645-b11d-4a1b-b85d-378ab4808d26\"\r\n}" + "x-ms-request-id" : "7d9f528e-01e5-40be-a898-6f718ffc9118", + "Body" : "", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/7d9f528e-01e5-40be-a898-6f718ffc9118?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/7d9f528e-01e5-40be-a898-6f718ffc9118?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:04:54 GMT", + "date" : "Mon, 18 May 2020 12:01:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "134", "expires" : "-1", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ff9aa834-16b1-4cc5-915f-b43b57d3e664", + "x-ms-correlation-request-id" : "6755c2b1-1776-4fbc-bcd3-d19641319a7b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110455Z:ff9aa834-16b1-4cc5-915f-b43b57d3e664", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29968", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120156Z:6755c2b1-1776-4fbc-bcd3-d19641319a7b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2cfbda15-3720-4b36-b439-4fcd99426aae", - "Body" : "{\r\n \"startTime\": \"2020-04-29T11:00:20.5460452+00:00\",\r\n \"endTime\": \"2020-04-29T11:04:53.1811926+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9060c645-b11d-4a1b-b85d-378ab4808d26\"\r\n}" + "x-ms-request-id" : "65dde073-ac82-4422-af52-bda072a611c1", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:01:25.1332954+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d9f528e-01e5-40be-a898-6f718ffc9118\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9060c645-b11d-4a1b-b85d-378ab4808d26?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/7d9f528e-01e5-40be-a898-6f718ffc9118?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:05:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "262da766-5d99-4202-a328-b285a315238c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110526Z:262da766-5d99-4202-a328-b285a315238c", - "cache-control" : "no-cache", - "x-ms-request-id" : "2ede0451-2cdf-4b05-9a96-be7d7abd60f0", - "Body" : "" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-850417/convertToManagedDisks?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:05:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4173c31b-9d30-42fe-a675-8196a34455fa", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110527Z:4173c31b-9d30-42fe-a675-8196a34455fa", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/270108d1-14f9-498d-ba54-bb0fb4703366?monitor=true&api-version=2019-03-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "270108d1-14f9-498d-ba54-bb0fb4703366", - "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/270108d1-14f9-498d-ba54-bb0fb4703366?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/270108d1-14f9-498d-ba54-bb0fb4703366?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:05:57 GMT", + "date" : "Mon, 18 May 2020 12:02:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11945", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "24bf4f10-7118-4b75-ad0d-434bd373e2b2", + "x-ms-correlation-request-id" : "97a9bc1d-45aa-4488-9474-b470273999d7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110557Z:24bf4f10-7118-4b75-ad0d-434bd373e2b2", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29966", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120227Z:97a9bc1d-45aa-4488-9474-b470273999d7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "02909bc4-9fb9-4e14-b44d-577455e7f783", - "Body" : "{\r\n \"startTime\": \"2020-04-29T11:05:26.8698996+00:00\",\r\n \"endTime\": \"2020-04-29T11:05:46.8862342+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"270108d1-14f9-498d-ba54-bb0fb4703366\"\r\n}" + "x-ms-request-id" : "2ff08c47-eeba-4cab-b5e7-7ea7ee1eb1d8", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:01:25.1332954+00:00\",\r\n \"endTime\": \"2020-05-18T12:01:59.0719076+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7d9f528e-01e5-40be-a898-6f718ffc9118\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/270108d1-14f9-498d-ba54-bb0fb4703366?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/7d9f528e-01e5-40be-a898-6f718ffc9118?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:06:27 GMT", + "date" : "Mon, 18 May 2020 12:02:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a854a719-f5bd-4556-9338-3046e65224e9", + "x-ms-correlation-request-id" : "741a7682-beaf-4bb5-895b-3ab4cff96517", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110628Z:a854a719-f5bd-4556-9338-3046e65224e9", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29965", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120258Z:741a7682-beaf-4bb5-895b-3ab4cff96517", "cache-control" : "no-cache", - "x-ms-request-id" : "11f26bdd-0a3e-4a1e-8301-0b9d0fc2339d", + "x-ms-request-id" : "0513242e-5b5e-4999-8b5f-743f378aa68f", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-850417?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-774213?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:06:28 GMT", + "date" : "Mon, 18 May 2020 12:02:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "2874", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "db11f0ab-cead-462f-b04b-01d7b5f4b416", + "x-ms-correlation-request-id" : "7c40ab87-8dd1-413e-b631-f588385d702d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110628Z:db11f0ab-cead-462f-b04b-01d7b5f4b416", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31967", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120259Z:7c40ab87-8dd1-413e-b631-f588385d702d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "46a1a218-8e86-48d5-9c2e-7c2a05b5240e", - "Body" : "{\r\n \"name\": \"vm-850417\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Compute/virtualMachines/vm-850417\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9502c472-14ca-4ae5-8a68-e197f4c7090f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-850417-os-disk_f956c294684348bf9696fe23a6b9bbc2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-850417-os-disk_f956c294684348bf9696fe23a6b9bbc2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-850417-data-disk-0_336fb229333742d096b7cd6525148f7c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVFDA50287/providers/Microsoft.Compute/disks/vm-850417-data-disk-0_336fb229333742d096b7cd6525148f7c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-850417\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvfda50287/providers/Microsoft.Network/networkInterfaces/nic566060af488\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "73a62d6e-2f50-487d-99e6-4a532550fa58", + "Body" : "{\r\n \"name\": \"vm-774213\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Compute/virtualMachines/vm-774213\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fc20a188-e92c-46f4-80c2-5b8f7c5a7885\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-774213-os-disk_4c9152fe107b4bf9bf204d9d03f3dff8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-774213-os-disk_4c9152fe107b4bf9bf204d9d03f3dff8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-774213-data-disk-0_70c80291e8c34ff89da65a08f93f6397\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV39280115/providers/Microsoft.Compute/disks/vm-774213-data-disk-0_70c80291e8c34ff89da65a08f93f6397\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-774213\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv39280115/providers/Microsoft.Network/networkInterfaces/nic8701361a3d6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvfda50287?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv39280115?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:06:32 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b40d291-23aa-4844-97d6-30199f20c646", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110633Z:0b40d291-23aa-4844-97d6-30199f20c646", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "0b40d291-23aa-4844-97d6-30199f20c646", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:07:04 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dd060663-c877-4d9a-a9b5-0d8a5e51eb07", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110704Z:dd060663-c877-4d9a-a9b5-0d8a5e51eb07", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "dd060663-c877-4d9a-a9b5-0d8a5e51eb07", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:07:36 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "04567ba7-bede-4536-ac80-c44d47c5e178", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110736Z:04567ba7-bede-4536-ac80-c44d47c5e178", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "04567ba7-bede-4536-ac80-c44d47c5e178", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:08:06 GMT", + "date" : "Mon, 18 May 2020 12:03:03 GMT", "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "74ba6a02-dfe6-4950-a9da-37b835b8e746", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110807Z:74ba6a02-dfe6-4950-a9da-37b835b8e746", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "74ba6a02-dfe6-4950-a9da-37b835b8e746", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:08:37 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4b105c52-2642-4869-98d2-108d6a85076e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110838Z:4b105c52-2642-4869-98d2-108d6a85076e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4b105c52-2642-4869-98d2-108d6a85076e", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:09:09 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "25a2081a-ed72-4e61-9435-cc031de318e2", + "x-ms-correlation-request-id" : "054d3663-455b-4ba9-b2e8-83df60bd1b7f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110909Z:25a2081a-ed72-4e61-9435-cc031de318e2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120304Z:054d3663-455b-4ba9-b2e8-83df60bd1b7f", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "25a2081a-ed72-4e61-9435-cc031de318e2", + "x-ms-request-id" : "054d3663-455b-4ba9-b2e8-83df60bd1b7f", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:09:40 GMT", + "date" : "Mon, 18 May 2020 12:03:34 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2816326e-84db-467d-8edd-2a6d0fd9fae0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T110941Z:2816326e-84db-467d-8edd-2a6d0fd9fae0", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "2816326e-84db-467d-8edd-2a6d0fd9fae0", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:10:12 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "db2acf47-2251-4070-bcb1-9be7424d7e10", + "x-ms-correlation-request-id" : "851e5bc4-aff2-496d-b71f-d037762fbdd3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111012Z:db2acf47-2251-4070-bcb1-9be7424d7e10", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120335Z:851e5bc4-aff2-496d-b71f-d037762fbdd3", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "db2acf47-2251-4070-bcb1-9be7424d7e10", + "x-ms-request-id" : "851e5bc4-aff2-496d-b71f-d037762fbdd3", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:10:43 GMT", + "date" : "Mon, 18 May 2020 12:04:05 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "facaf274-caed-446d-a3a4-cf8378409eee", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111043Z:facaf274-caed-446d-a3a4-cf8378409eee", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "facaf274-caed-446d-a3a4-cf8378409eee", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:11:14 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3b367610-768f-45ee-8a80-86ce1a3ded52", + "x-ms-correlation-request-id" : "01b9b066-6f46-4e50-b673-a662fd3eb34a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111115Z:3b367610-768f-45ee-8a80-86ce1a3ded52", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120406Z:01b9b066-6f46-4e50-b673-a662fd3eb34a", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "3b367610-768f-45ee-8a80-86ce1a3ded52", + "x-ms-request-id" : "01b9b066-6f46-4e50-b673-a662fd3eb34a", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:11:45 GMT", + "date" : "Mon, 18 May 2020 12:04:37 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11944", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "96af4d24-d726-41bf-9eea-76eeecb7502c", + "x-ms-correlation-request-id" : "ef09cd9b-d3ec-4019-867b-176367ce3aaa", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111146Z:96af4d24-d726-41bf-9eea-76eeecb7502c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120437Z:ef09cd9b-d3ec-4019-867b-176367ce3aaa", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "96af4d24-d726-41bf-9eea-76eeecb7502c", + "x-ms-request-id" : "ef09cd9b-d3ec-4019-867b-176367ce3aaa", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:12:17 GMT", + "date" : "Mon, 18 May 2020 12:05:08 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "16ca694d-457e-4f32-97b5-730053e4bc67", + "x-ms-correlation-request-id" : "a4d3aaff-6fb0-4b26-9858-822ab59c74b0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111217Z:16ca694d-457e-4f32-97b5-730053e4bc67", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120509Z:a4d3aaff-6fb0-4b26-9858-822ab59c74b0", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "16ca694d-457e-4f32-97b5-730053e4bc67", + "x-ms-request-id" : "a4d3aaff-6fb0-4b26-9858-822ab59c74b0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:12:48 GMT", + "date" : "Mon, 18 May 2020 12:05:40 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a2407f3a-680c-45ed-9247-1eb8d83a45e2", + "x-ms-correlation-request-id" : "f282177f-5850-44e7-a4f9-cdb077eeae83", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111249Z:a2407f3a-680c-45ed-9247-1eb8d83a45e2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120540Z:f282177f-5850-44e7-a4f9-cdb077eeae83", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a2407f3a-680c-45ed-9247-1eb8d83a45e2", + "x-ms-request-id" : "f282177f-5850-44e7-a4f9-cdb077eeae83", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:13:19 GMT", + "date" : "Mon, 18 May 2020 12:06:11 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11946", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7478b853-ca08-4bd5-a5e0-3132460d46dc", + "x-ms-correlation-request-id" : "34261865-9dc0-4cae-be22-42484bd7900e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111320Z:7478b853-ca08-4bd5-a5e0-3132460d46dc", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120611Z:34261865-9dc0-4cae-be22-42484bd7900e", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "7478b853-ca08-4bd5-a5e0-3132460d46dc", + "x-ms-request-id" : "34261865-9dc0-4cae-be22-42484bd7900e", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:13:51 GMT", + "date" : "Mon, 18 May 2020 12:06:42 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b44b2af-4887-4c50-b8ba-cf1e82545a82", + "x-ms-correlation-request-id" : "de4c1e04-9e3e-4bfe-b170-be80b3a9fb90", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111351Z:0b44b2af-4887-4c50-b8ba-cf1e82545a82", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120643Z:de4c1e04-9e3e-4bfe-b170-be80b3a9fb90", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "0b44b2af-4887-4c50-b8ba-cf1e82545a82", + "x-ms-request-id" : "de4c1e04-9e3e-4bfe-b170-be80b3a9fb90", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:14:22 GMT", + "date" : "Mon, 18 May 2020 12:07:13 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7bd056fc-f129-4ca0-ab8e-900919f5a89a", + "x-ms-correlation-request-id" : "dbc4079c-0283-4f74-a2f1-6458f91c55c9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111422Z:7bd056fc-f129-4ca0-ab8e-900919f5a89a", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120714Z:dbc4079c-0283-4f74-a2f1-6458f91c55c9", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "7bd056fc-f129-4ca0-ab8e-900919f5a89a", + "x-ms-request-id" : "dbc4079c-0283-4f74-a2f1-6458f91c55c9", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:14:53 GMT", + "date" : "Mon, 18 May 2020 12:07:45 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11945", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4ee3ebb5-dd2a-493f-93bd-46a0ef15fe50", + "x-ms-correlation-request-id" : "7712926d-103f-4d79-85fa-6c9b0560ff3d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111454Z:4ee3ebb5-dd2a-493f-93bd-46a0ef15fe50", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120745Z:7712926d-103f-4d79-85fa-6c9b0560ff3d", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "4ee3ebb5-dd2a-493f-93bd-46a0ef15fe50", + "x-ms-request-id" : "7712926d-103f-4d79-85fa-6c9b0560ff3d", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:15:25 GMT", + "date" : "Mon, 18 May 2020 12:08:35 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ed264f24-bc42-400c-b7a6-0f16273b8b1e", + "x-ms-correlation-request-id" : "56990991-669e-426c-a6af-62af75b18c39", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111525Z:ed264f24-bc42-400c-b7a6-0f16273b8b1e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120835Z:56990991-669e-426c-a6af-62af75b18c39", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ed264f24-bc42-400c-b7a6-0f16273b8b1e", + "x-ms-request-id" : "56990991-669e-426c-a6af-62af75b18c39", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:15:56 GMT", + "date" : "Mon, 18 May 2020 12:09:05 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "94e2b9ec-626b-42d8-9d5d-85e81d42bd2b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111556Z:94e2b9ec-626b-42d8-9d5d-85e81d42bd2b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "94e2b9ec-626b-42d8-9d5d-85e81d42bd2b", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:16:27 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5ebde216-4dff-45cf-badb-00283f1d3a4c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111628Z:5ebde216-4dff-45cf-badb-00283f1d3a4c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "5ebde216-4dff-45cf-badb-00283f1d3a4c", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 11:16:59 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2f7a4f18-6019-44d5-b7a0-630287dd5943", + "x-ms-correlation-request-id" : "0c350d53-7c1e-4d80-8842-ba9714f918bc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111659Z:2f7a4f18-6019-44d5-b7a0-630287dd5943", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120906Z:0c350d53-7c1e-4d80-8842-ba9714f918bc", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "2f7a4f18-6019-44d5-b7a0-630287dd5943", + "x-ms-request-id" : "0c350d53-7c1e-4d80-8842-ba9714f918bc", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:17:30 GMT", + "date" : "Mon, 18 May 2020 12:09:36 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11944", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "52ec0b38-93f9-4474-a642-cc360f8edbac", + "x-ms-correlation-request-id" : "23b351ab-88ec-4792-8a0f-77b338d2b4d5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111730Z:52ec0b38-93f9-4474-a642-cc360f8edbac", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T120937Z:23b351ab-88ec-4792-8a0f-77b338d2b4d5", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "52ec0b38-93f9-4474-a642-cc360f8edbac", + "x-ms-request-id" : "23b351ab-88ec-4792-8a0f-77b338d2b4d5", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:18:01 GMT", + "date" : "Mon, 18 May 2020 12:10:08 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "917f2ca5-bd81-47ea-8e90-5f54a7090698", + "x-ms-correlation-request-id" : "1e303964-6173-4aa1-8bc4-39e266e105ae", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111801Z:917f2ca5-bd81-47ea-8e90-5f54a7090698", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121009Z:1e303964-6173-4aa1-8bc4-39e266e105ae", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "917f2ca5-bd81-47ea-8e90-5f54a7090698", + "x-ms-request-id" : "1e303964-6173-4aa1-8bc4-39e266e105ae", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGREE1MDI4Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzOTI4MDExNS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 11:18:32 GMT", + "date" : "Mon, 18 May 2020 12:10:39 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3ddeb1bd-da6c-4907-aef9-575dda7ac41a", + "x-ms-correlation-request-id" : "0fefd37c-8848-430e-8ae5-dcb37fb18fd9", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T111833Z:3ddeb1bd-da6c-4907-aef9-575dda7ac41a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121040Z:0fefd37c-8848-430e-8ae5-dcb37fb18fd9", "cache-control" : "no-cache", - "x-ms-request-id" : "3ddeb1bd-da6c-4907-aef9-575dda7ac41a", + "x-ms-request-id" : "0fefd37c-8848-430e-8ae5-dcb37fb18fd9", "Body" : "" } } ], - "variables" : [ "rgcomvfda50287", "vm-d0009363e98", "pip-bdd74719d52", "nic370777f12e2", "vnet7116832a39", "pip58471db8", "vmss-e8676174cf", "vnet03862390dd5616", "intlb-2342087482", "vmss-vm08270", "dsk-7813336478d", "vm-44432d", "pip-00076281a37", "nic3745007cfe3", "vnet95626cdb16", "pip917150c3", "vm-327609", "pip-394495884247", "nic3444450f0c1", "vnet84278daab2", "pip24297c59", "stgvm-3276096df084352e", "cimg-37420", "vm-685657", "nic6969592b272", "vnet664881d7bf", "vm-762867", "nic698081fab15", "vnet02225e3fbb", "vm-635606", "pip-17a572672003", "nic431787eca41", "vnet8252543276", "pip92109688", "snp-90727", "dsk-58811", "dsk-25842", "dsk-35018", "vm-132831", "nic90528156470", "vnet82766af6af", "vm-850417", "pip-ba251505b6f", "nic566060af488", "vnet38977dd898", "pip14630505", "stgvm-850417fb8662598d" ] + "variables" : [ "rgcomv39280115", "vm-22894422b08", "pip-20085187d42", "nic307722d9955", "vnet35249dee91", "pip96282519", "vmss-f2b527257d", "vnet23e105957d33d2", "intlb-3e696121ee", "vmss-vm42029", "dsk-a7938269f83", "vm-90881e", "pip-bfd985027f3", "nic17133465c74", "vnet43666c171b", "pip26595127", "vm-999348", "pip-8a780921f1c1", "nic725952669ce", "vnet45641df620", "pip87692ca1", "stgvm-999348e6757220bd", "cimg-21360", "vm-368875", "nic44943d5cdf6", "vnet16117003b3", "vm-042152", "nic16329ec26d5", "vnet98534636ec", "vm-839612", "pip-53f986532915", "nic129704c0c85", "vnet5966922fcf", "pip579463ff", "snp-57650", "dsk-92460", "dsk-09084", "dsk-59360", "vm-88949e", "nic42300852445", "vnet94311d2fed", "vm-774213", "pip-58751882794", "nic8701361a3d6", "vnet65069ef30a", "pip179363aa", "stgvm-7742139067023917" ] } \ No newline at end of file diff --git a/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachine.json b/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachine.json index 7feb44d0a4e8..26947eebf8a5 100644 --- a/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachine.json +++ b/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachine.json @@ -1,643 +1,668 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomva3e43543?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv1f439421?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:02 GMT", - "content-length" : "322", + "date" : "Mon, 18 May 2020 12:14:48 GMT", + "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7e33e1a0-789f-40c2-b9c3-8341e23e6600", + "x-ms-correlation-request-id" : "285f794c-2498-464c-bb5c-bd0084efee8c", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090903Z:7e33e1a0-789f-40c2-b9c3-8341e23e6600", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121449Z:285f794c-2498-464c-bb5c-bd0084efee8c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7e33e1a0-789f-40c2-b9c3-8341e23e6600", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543\",\"name\":\"rgcomva3e43543\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-04-29T09:09:00.062789600Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "285f794c-2498-464c-bb5c-bd0084efee8c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421\",\"name\":\"rgcomv1f439421\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T12:14:46.302Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:09 GMT", + "date" : "Mon, 18 May 2020 12:14:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "253", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2730bacb-13b7-4c74-96ac-3ec5b8ce65e3", + "x-ms-correlation-request-id" : "f81833be-8694-4767-b8ba-fa35d54b5c61", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090910Z:2730bacb-13b7-4c74-96ac-3ec5b8ce65e3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121456Z:f81833be-8694-4767-b8ba-fa35d54b5c61", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/38836610-c7f3-4466-ad71-ad5014b79ef0?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/23800bbb-c0c1-46ba-bb37-eff359d41266?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "38836610-c7f3-4466-ad71-ad5014b79ef0", - "Body" : "{\r\n \"name\": \"dsk-9c160798c\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/38836610-c7f3-4466-ad71-ad5014b79ef0?api-version=2019-03-01" + "x-ms-request-id" : "23800bbb-c0c1-46ba-bb37-eff359d41266", + "Body" : "{\r\n \"name\": \"dsk-26e663268\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/23800bbb-c0c1-46ba-bb37-eff359d41266?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/38836610-c7f3-4466-ad71-ad5014b79ef0?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/23800bbb-c0c1-46ba-bb37-eff359d41266?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:40 GMT", + "date" : "Mon, 18 May 2020 12:15:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "807", + "content-length" : "863", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ff915747-9254-44c8-ab9c-9b527ce9ef68", + "x-ms-correlation-request-id" : "a0eb4590-70ce-45d8-a14b-2768d55f9b65", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090941Z:ff915747-9254-44c8-ab9c-9b527ce9ef68", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121527Z:a0eb4590-70ce-45d8-a14b-2768d55f9b65", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a1a4818f-ef2e-40cc-a959-0b69858e5486", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:09:09.7498333+00:00\",\r\n \"endTime\": \"2020-04-29T09:09:09.9217063+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-9c160798c\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:09:09.7654579+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"d5edd9a0-9a07-4ebf-aa29-bc33b79d2b2f\"}}\r\n },\r\n \"name\": \"38836610-c7f3-4466-ad71-ad5014b79ef0\"\r\n}" + "x-ms-request-id" : "1b0de4d5-0a74-4562-8a8a-8cd71e74bb36", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:14:56.4484751+00:00\",\r\n \"endTime\": \"2020-05-18T12:14:56.6202882+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-26e663268\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:14:56.4484751+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"cfb8c58f-e340-47c1-8caf-abd816e89b01\"}}\r\n },\r\n \"name\": \"23800bbb-c0c1-46ba-bb37-eff359d41266\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:11 GMT", + "date" : "Mon, 18 May 2020 12:15:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "719", + "content-length" : "797", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6ce40c87-73a5-4f25-90f1-e0eac4b0d112", + "x-ms-correlation-request-id" : "2ff6f636-1453-40ce-83bc-006735eb36f3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091012Z:6ce40c87-73a5-4f25-90f1-e0eac4b0d112", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121557Z:2ff6f636-1453-40ce-83bc-006735eb36f3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "768d5392-1a76-4711-ab44-b0bc86577a17", - "Body" : "{\r\n \"name\": \"dsk-9c160798c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:09:09.7654579+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"d5edd9a0-9a07-4ebf-aa29-bc33b79d2b2f\"\r\n }\r\n}" + "x-ms-request-id" : "4a944bc0-0f88-45b9-95b6-24485345c9a0", + "Body" : "{\r\n \"name\": \"dsk-26e663268\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:14:56.4484751+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"cfb8c58f-e340-47c1-8caf-abd816e89b01\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomva3e43543?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv1f439421?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:16 GMT", - "content-length" : "322", + "date" : "Mon, 18 May 2020 12:16:00 GMT", + "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3a5faa0d-6da5-403e-9362-3af443525527", + "x-ms-correlation-request-id" : "0ac06138-b788-4953-a846-bf59b07313b1", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091017Z:3a5faa0d-6da5-403e-9362-3af443525527", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121601Z:0ac06138-b788-4953-a846-bf59b07313b1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3a5faa0d-6da5-403e-9362-3af443525527", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543\",\"name\":\"rgcomva3e43543\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-04-29T09:10:14.770476700Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "0ac06138-b788-4953-a846-bf59b07313b1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421\",\"name\":\"rgcomv1f439421\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T12:15:57.965Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:18 GMT", + "date" : "Mon, 18 May 2020 12:16:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "254", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ebf83b8a-12b1-46a7-b440-21e9f35da489", + "x-ms-correlation-request-id" : "751c6279-684a-48f2-8764-60a940e8ce44", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091018Z:ebf83b8a-12b1-46a7-b440-21e9f35da489", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121602Z:751c6279-684a-48f2-8764-60a940e8ce44", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/db74a842-7318-425b-af6b-ffba5e1d98d3?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/56812421-aa87-4001-bb82-4ad937732d9b?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "db74a842-7318-425b-af6b-ffba5e1d98d3", - "Body" : "{\r\n \"name\": \"dsk-5d209805c\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/db74a842-7318-425b-af6b-ffba5e1d98d3?api-version=2019-03-01" + "x-ms-request-id" : "56812421-aa87-4001-bb82-4ad937732d9b", + "Body" : "{\r\n \"name\": \"dsk-714289334\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/56812421-aa87-4001-bb82-4ad937732d9b?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:23 GMT", + "date" : "Mon, 18 May 2020 12:16:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1349", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "15bd4bea-a709-4d16-92e5-792947ac3763", + "x-ms-correlation-request-id" : "502c9de5-c7d2-41d1-a112-a4910e228ba1", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "20aa629c-921c-4db7-ae9e-e1793a17f0d4", + "x-ms-arm-service-request-id" : "49264f94-eb82-4e6f-ad5f-4ed41cd3423d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091023Z:15bd4bea-a709-4d16-92e5-792947ac3763", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121605Z:502c9de5-c7d2-41d1-a112-a4910e228ba1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e69f1e11-a816-49cd-8e4d-aa7f383d3232", - "Body" : "{\r\n \"name\": \"vnet764243230f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f\",\r\n \"etag\": \"W/\\\"f73913f0-45d5-4875-9719-c9a7e28ac4da\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b6d9556f-14fe-4194-8012-cb2ca7f5107e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f73913f0-45d5-4875-9719-c9a7e28ac4da\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e69f1e11-a816-49cd-8e4d-aa7f383d3232?api-version=2019-06-01" + "x-ms-request-id" : "38cc1ab5-6ec4-4393-9717-2ef4cfcd0610", + "Body" : "{\r\n \"name\": \"vnet29779b1e78\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78\",\r\n \"etag\": \"W/\\\"38150884-52cf-467d-b449-ec435faf6142\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c9ffc4eb-5683-4fc4-82b3-5dd773f6e79f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78/subnets/subnet1\",\r\n \"etag\": \"W/\\\"38150884-52cf-467d-b449-ec435faf6142\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/38cc1ab5-6ec4-4393-9717-2ef4cfcd0610?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/db74a842-7318-425b-af6b-ffba5e1d98d3?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/56812421-aa87-4001-bb82-4ad937732d9b?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:49 GMT", + "date" : "Mon, 18 May 2020 12:16:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "809", + "content-length" : "863", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", + "x-ms-ratelimit-remaining-subscription-reads" : "11907", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e0d59c9f-9469-48fe-9820-c17d4c531cd2", + "x-ms-correlation-request-id" : "a2c19f7a-f030-496d-9712-bc965da8a71d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091050Z:e0d59c9f-9469-48fe-9820-c17d4c531cd2", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121633Z:a2c19f7a-f030-496d-9712-bc965da8a71d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d9229d2f-f5ed-4bfb-8861-6b0a4f88ab62", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:10:18.5005869+00:00\",\r\n \"endTime\": \"2020-04-29T09:10:18.6724888+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-5d209805c\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:10:18.5162357+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"af69eb67-fd8f-4b74-86c3-4c627108ed5f\"}}\r\n },\r\n \"name\": \"db74a842-7318-425b-af6b-ffba5e1d98d3\"\r\n}" + "x-ms-request-id" : "1d754dca-2be2-4dd4-9a5a-3608f2b9d568", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:16:02.135654+00:00\",\r\n \"endTime\": \"2020-05-18T12:16:02.3075463+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-714289334\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:16:02.135654+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"1c263450-4093-480b-a66d-bdd2d47de769\"}}\r\n },\r\n \"name\": \"56812421-aa87-4001-bb82-4ad937732d9b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e69f1e11-a816-49cd-8e4d-aa7f383d3232?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/38cc1ab5-6ec4-4393-9717-2ef4cfcd0610?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:54 GMT", + "date" : "Mon, 18 May 2020 12:16:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11798", + "x-ms-ratelimit-remaining-subscription-reads" : "11893", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3b8b8741-21fc-4d22-b8b1-30660bc97623", + "x-ms-correlation-request-id" : "5cd0cedf-4dff-4713-b624-b161ab6b3d13", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "94162db2-cc1b-47f9-ad64-01f236c3e54d", + "x-ms-arm-service-request-id" : "1d8b0da3-002b-4016-a447-c906b4fd8446", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091054Z:3b8b8741-21fc-4d22-b8b1-30660bc97623", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121636Z:5cd0cedf-4dff-4713-b624-b161ab6b3d13", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2cf5d4c0-3433-4638-bd6d-e8ee5066ece1", + "x-ms-request-id" : "887525a4-bcdc-478d-9afa-1cf79e4d6f90", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:21 GMT", + "date" : "Mon, 18 May 2020 12:17:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "721", + "content-length" : "798", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "06d2dac2-893b-4ea8-aec5-a506cd52db09", + "x-ms-correlation-request-id" : "37280ef1-52e6-4286-9367-4f97bdb9b4b6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091121Z:06d2dac2-893b-4ea8-aec5-a506cd52db09", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39981", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121703Z:37280ef1-52e6-4286-9367-4f97bdb9b4b6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b563c28d-863e-4e2d-9b59-dd28e61abc1e", - "Body" : "{\r\n \"name\": \"dsk-5d209805c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:10:18.5162357+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"af69eb67-fd8f-4b74-86c3-4c627108ed5f\"\r\n }\r\n}" + "x-ms-request-id" : "406e61b2-7817-46f1-969e-5834894d96db", + "Body" : "{\r\n \"name\": \"dsk-714289334\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:16:02.135654+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"1c263450-4093-480b-a66d-bdd2d47de769\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:24 GMT", + "date" : "Mon, 18 May 2020 12:17:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1351", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", + "x-ms-ratelimit-remaining-subscription-reads" : "11894", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ba003e49-f710-4ae2-808a-ce7458919b0b", + "x-ms-correlation-request-id" : "d439232c-3653-421c-8397-cec2c3908c30", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "226c2aa4-a1b2-48c8-afed-2ee5c006bba9", + "x-ms-arm-service-request-id" : "78dee263-0bdf-4fcf-ba38-4b4b96bb2b77", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091124Z:ba003e49-f710-4ae2-808a-ce7458919b0b", - "etag" : "W/\"2fa4081f-9868-45e2-a07d-bf005e113266\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121706Z:d439232c-3653-421c-8397-cec2c3908c30", + "etag" : "W/\"3a6ed6e5-226b-4ed4-ad41-000df07b0aa6\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "86244aa5-4993-4dcb-a283-f2c34dbe5725", - "Body" : "{\r\n \"name\": \"vnet764243230f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f\",\r\n \"etag\": \"W/\\\"2fa4081f-9868-45e2-a07d-bf005e113266\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b6d9556f-14fe-4194-8012-cb2ca7f5107e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2fa4081f-9868-45e2-a07d-bf005e113266\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "4a31d9fb-f9b8-4969-bf43-4482b3448acc", + "Body" : "{\r\n \"name\": \"vnet29779b1e78\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78\",\r\n \"etag\": \"W/\\\"3a6ed6e5-226b-4ed4-ad41-000df07b0aa6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c9ffc4eb-5683-4fc4-82b3-5dd773f6e79f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3a6ed6e5-226b-4ed4-ad41-000df07b0aa6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:29 GMT", + "date" : "Mon, 18 May 2020 12:17:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1642", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "18b49ea5-09c9-493e-9a55-42721e6d60a9", + "x-ms-correlation-request-id" : "0f1d8ff1-3702-4a8f-a3e9-a156fa5c711a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f9a6bfec-1543-4d97-8ef6-8f98cbc16e25", + "x-ms-arm-service-request-id" : "6beb278a-5231-4bf8-9618-4899a82bd04d", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091129Z:18b49ea5-09c9-493e-9a55-42721e6d60a9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121713Z:0f1d8ff1-3702-4a8f-a3e9-a156fa5c711a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4c507d86-eda0-4a76-b21e-c060a9030d05", - "Body" : "{\r\n \"name\": \"nic03178b884a7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\r\n \"etag\": \"W/\\\"c04a5731-4657-481c-b62b-1a87d7e746e1\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a6f1ed22-832e-42df-bde2-38c75c9f772f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c04a5731-4657-481c-b62b-1a87d7e746e1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"n3k3tnx4cskedaaszmwkp3iqpg.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4c507d86-eda0-4a76-b21e-c060a9030d05?api-version=2019-06-01" + "x-ms-request-id" : "0d15890e-406a-423c-ba9f-1b1f2f25e5d4", + "Body" : "{\r\n \"name\": \"nic9955944390a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\r\n \"etag\": \"W/\\\"5352cb72-48bf-4982-a31d-18256656910c\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73247680-4f85-4f95-86b7-1af643861d0f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5352cb72-48bf-4982-a31d-18256656910c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3pcp5smdk1ce5avtlxlxh3xhth.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0d15890e-406a-423c-ba9f-1b1f2f25e5d4?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4c507d86-eda0-4a76-b21e-c060a9030d05?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0d15890e-406a-423c-ba9f-1b1f2f25e5d4?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:00 GMT", + "date" : "Mon, 18 May 2020 12:17:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", + "x-ms-ratelimit-remaining-subscription-reads" : "11876", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "629b5a24-f5fb-4073-a0b1-91a6b493e5c9", + "x-ms-correlation-request-id" : "270aa057-923f-4104-baf9-2d9d8a99759f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "cee812a1-3357-4f25-ad14-d2e0fa2c5828", + "x-ms-arm-service-request-id" : "1672b65c-1dd4-49a7-a36a-33690cd715e8", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091200Z:629b5a24-f5fb-4073-a0b1-91a6b493e5c9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121745Z:270aa057-923f-4104-baf9-2d9d8a99759f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "44b74186-ab59-40a2-848d-c40826ae52df", + "x-ms-request-id" : "5a730dc9-73b0-44fb-ac64-a6a503ad8868", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:30 GMT", + "date" : "Mon, 18 May 2020 12:18:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1642", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11749", + "x-ms-ratelimit-remaining-subscription-reads" : "11827", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9d5117d0-5c46-410a-adcd-2c528620e4cf", + "x-ms-correlation-request-id" : "08819ecb-b868-4da0-ba00-9b680dacc56c", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0804ca66-6055-4cbf-a54e-975c40d92daf", + "x-ms-arm-service-request-id" : "b938509c-62bb-4e10-8d5c-5277991e9756", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091231Z:9d5117d0-5c46-410a-adcd-2c528620e4cf", - "etag" : "W/\"c04a5731-4657-481c-b62b-1a87d7e746e1\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121815Z:08819ecb-b868-4da0-ba00-9b680dacc56c", + "etag" : "W/\"5352cb72-48bf-4982-a31d-18256656910c\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ebcfb40f-38ed-461c-8c6b-923eff044853", - "Body" : "{\r\n \"name\": \"nic03178b884a7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\r\n \"etag\": \"W/\\\"c04a5731-4657-481c-b62b-1a87d7e746e1\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a6f1ed22-832e-42df-bde2-38c75c9f772f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c04a5731-4657-481c-b62b-1a87d7e746e1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"n3k3tnx4cskedaaszmwkp3iqpg.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "670b7066-20a8-4df3-8268-8bed92aa3bfd", + "Body" : "{\r\n \"name\": \"nic9955944390a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\r\n \"etag\": \"W/\\\"5352cb72-48bf-4982-a31d-18256656910c\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73247680-4f85-4f95-86b7-1af643861d0f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5352cb72-48bf-4982-a31d-18256656910c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3pcp5smdk1ce5avtlxlxh3xhth.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:38 GMT", + "date" : "Mon, 18 May 2020 12:18:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2700", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "134b6224-f89c-41e0-99b2-8142af5ee7aa", + "x-ms-correlation-request-id" : "4da22c1c-920d-4716-a7a6-f7f9299b9810", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1190", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091238Z:134b6224-f89c-41e0-99b2-8142af5ee7aa", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121822Z:4da22c1c-920d-4716-a7a6-f7f9299b9810", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "7afbfd35-0998-4f5a-bef4-6abeeeff125f", + "Body" : "{\r\n \"name\": \"wvmeac76950fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"94aa0ec1-e5c2-45ff-8a2c-15b1c3f68af1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-714289334\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-26e663268\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7afbfd35-0998-4f5a-bef4-6abeeeff125f?api-version=2019-03-01" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7afbfd35-0998-4f5a-bef4-6abeeeff125f?api-version=2019-03-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + }, + "Response" : { + "date" : "Mon, 18 May 2020 12:18:53 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11850", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "1257a7f8-03d6-49b2-9efd-f2605067ef7d", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29974", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121853Z:1257a7f8-03d6-49b2-9efd-f2605067ef7d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "876dd6ed-05c6-4ba6-a26e-b0844faadd8e", - "Body" : "{\r\n \"name\": \"wvmeae3644989\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"00f5db55-8591-4427-9d0d-e2b3a4f1d204\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-5d209805c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-9c160798c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/876dd6ed-05c6-4ba6-a26e-b0844faadd8e?api-version=2019-03-01" + "x-ms-request-id" : "25709be4-7306-48a9-a186-e5ec72f8e958", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:21.4693162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7afbfd35-0998-4f5a-bef4-6abeeeff125f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/876dd6ed-05c6-4ba6-a26e-b0844faadd8e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7afbfd35-0998-4f5a-bef4-6abeeeff125f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:08 GMT", + "date" : "Mon, 18 May 2020 12:19:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", + "x-ms-ratelimit-remaining-subscription-reads" : "11904", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1b3ad67f-b0a2-41f2-ae44-4b4f080880f4", + "x-ms-correlation-request-id" : "a4ffa96e-58d7-4f72-9af5-6d94e146b8e9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091309Z:1b3ad67f-b0a2-41f2-ae44-4b4f080880f4", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29960", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121924Z:a4ffa96e-58d7-4f72-9af5-6d94e146b8e9", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "072d3cb7-9aab-4002-8bb5-8fa346a43dec", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:12:36.6214756+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"876dd6ed-05c6-4ba6-a26e-b0844faadd8e\"\r\n}" + "x-ms-request-id" : "7945434b-9670-4ea0-8db4-34ff76cc94b0", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:21.4693162+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7afbfd35-0998-4f5a-bef4-6abeeeff125f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/876dd6ed-05c6-4ba6-a26e-b0844faadd8e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7afbfd35-0998-4f5a-bef4-6abeeeff125f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:39 GMT", + "date" : "Mon, 18 May 2020 12:19:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", + "x-ms-ratelimit-remaining-subscription-reads" : "11820", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "47889e9d-d82b-4661-acb4-c714e4a725e7", + "x-ms-correlation-request-id" : "167468a9-8526-409f-aef9-57ebf584cc49", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091339Z:47889e9d-d82b-4661-acb4-c714e4a725e7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29946", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121954Z:167468a9-8526-409f-aef9-57ebf584cc49", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b4e5713d-90b3-40be-a012-a9f61e0e2e71", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:12:36.6214756+00:00\",\r\n \"endTime\": \"2020-04-29T09:13:24.8245894+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"876dd6ed-05c6-4ba6-a26e-b0844faadd8e\"\r\n}" + "x-ms-request-id" : "8489aa07-bcee-40bd-b86c-797437a60c36", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:21.4693162+00:00\",\r\n \"endTime\": \"2020-05-18T12:19:41.5006249+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7afbfd35-0998-4f5a-bef4-6abeeeff125f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:10 GMT", + "date" : "Mon, 18 May 2020 12:20:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3235", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2b14c364-3502-49b1-9644-220c743988dd", + "x-ms-correlation-request-id" : "fed5b805-f4f9-468d-b16a-17756068830a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3972,Microsoft.Compute/LowCostGet30Min;31972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091410Z:2b14c364-3502-49b1-9644-220c743988dd", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3957,Microsoft.Compute/LowCostGet30Min;31957", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122025Z:fed5b805-f4f9-468d-b16a-17756068830a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2343d5b1-9346-4d76-b278-3e5c4853e9d5", - "Body" : "{\r\n \"name\": \"wvmeae3644989\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"00f5db55-8591-4427-9d0d-e2b3a4f1d204\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-5d209805c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-9c160798c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "03f37230-c060-4550-a789-f52f614c9073", + "Body" : "{\r\n \"name\": \"wvmeac76950fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"94aa0ec1-e5c2-45ff-8a2c-15b1c3f68af1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-714289334\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-26e663268\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:15 GMT", + "date" : "Mon, 18 May 2020 12:20:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3289", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4044c47c-73ac-474f-82c3-0ba3d5bfa83a", + "x-ms-correlation-request-id" : "a7981594-73a4-471b-a79a-87951288f5c1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1185", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091415Z:4044c47c-73ac-474f-82c3-0ba3d5bfa83a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1182", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122030Z:a7981594-73a4-471b-a79a-87951288f5c1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "318524b2-8ba2-4267-b314-fdae4747102b", - "Body" : "{\r\n \"name\": \"wvmeae3644989\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"00f5db55-8591-4427-9d0d-e2b3a4f1d204\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-5d209805c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-9c160798c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/318524b2-8ba2-4267-b314-fdae4747102b?api-version=2019-03-01" + "x-ms-request-id" : "7dea733d-3297-4a46-bf47-3370b56653b3", + "Body" : "{\r\n \"name\": \"wvmeac76950fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"94aa0ec1-e5c2-45ff-8a2c-15b1c3f68af1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-714289334\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-26e663268\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7dea733d-3297-4a46-bf47-3370b56653b3?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:45 GMT", + "date" : "Mon, 18 May 2020 12:21:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3290", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11702", + "x-ms-ratelimit-remaining-subscription-reads" : "11733", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9c9095cb-1df8-4935-8285-30705909310b", + "x-ms-correlation-request-id" : "0afce642-4f4e-48ab-9c1f-0e1c20eee799", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3959,Microsoft.Compute/LowCostGet30Min;31959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091445Z:9c9095cb-1df8-4935-8285-30705909310b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3940,Microsoft.Compute/LowCostGet30Min;31936", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122100Z:0afce642-4f4e-48ab-9c1f-0e1c20eee799", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e57b6d2f-0a43-48bf-802c-588a448c6b70", - "Body" : "{\r\n \"name\": \"wvmeae3644989\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"00f5db55-8591-4427-9d0d-e2b3a4f1d204\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-5d209805c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-9c160798c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "e8ff5e92-8a55-4cc0-8013-6781ad66f4f9", + "Body" : "{\r\n \"name\": \"wvmeac76950fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"94aa0ec1-e5c2-45ff-8a2c-15b1c3f68af1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-714289334\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-26e663268\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:19 GMT", + "date" : "Mon, 18 May 2020 12:21:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3558", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "100ee589-17ba-4da5-964f-391091864056", + "x-ms-correlation-request-id" : "d1e36d83-1b9a-45e8-8449-45fa3265576e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;230,Microsoft.Compute/PutVM30Min;1182", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091520Z:100ee589-17ba-4da5-964f-391091864056", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1180", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122135Z:d1e36d83-1b9a-45e8-8449-45fa3265576e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "112f96f7-c666-4a6d-9bbe-3639d2ab76b7", - "Body" : "{\r\n \"name\": \"wvmeae3644989\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"00f5db55-8591-4427-9d0d-e2b3a4f1d204\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-5d209805c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-9c160798c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/112f96f7-c666-4a6d-9bbe-3639d2ab76b7?api-version=2019-03-01" + "x-ms-request-id" : "4dd6e60f-66e4-4e97-96b2-610292146b4d", + "Body" : "{\r\n \"name\": \"wvmeac76950fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"94aa0ec1-e5c2-45ff-8a2c-15b1c3f68af1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-714289334\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-26e663268\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4dd6e60f-66e4-4e97-96b2-610292146b4d?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:50 GMT", + "date" : "Mon, 18 May 2020 12:22:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3825", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", + "x-ms-ratelimit-remaining-subscription-reads" : "11885", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9e39b56d-3bfc-42de-aefe-8b1f3cb7f8ac", + "x-ms-correlation-request-id" : "de5d39c8-d4de-4b05-b15b-b5656048dc41", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3953,Microsoft.Compute/LowCostGet30Min;31946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091550Z:9e39b56d-3bfc-42de-aefe-8b1f3cb7f8ac", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3936,Microsoft.Compute/LowCostGet30Min;31919", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122205Z:de5d39c8-d4de-4b05-b15b-b5656048dc41", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d8320d70-b965-482a-ab6f-049e4dafe931", - "Body" : "{\r\n \"name\": \"wvmeae3644989\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"00f5db55-8591-4427-9d0d-e2b3a4f1d204\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-5d209805c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-9c160798c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "d9212fb4-3fbd-463a-abc3-754655b476ae", + "Body" : "{\r\n \"name\": \"wvmeac76950fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"94aa0ec1-e5c2-45ff-8a2c-15b1c3f68af1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-714289334\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-26e663268\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:25 GMT", + "date" : "Mon, 18 May 2020 12:22:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3823", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "x-ms-ratelimit-remaining-subscription-writes" : "1168", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60eae2e8-7d85-46a5-a396-c3b1b8013253", + "x-ms-correlation-request-id" : "933101cf-707a-4880-b87e-43ea5882adab", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1179", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091625Z:60eae2e8-7d85-46a5-a396-c3b1b8013253", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;230,Microsoft.Compute/PutVM30Min;1176", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122240Z:933101cf-707a-4880-b87e-43ea5882adab", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b455e976-4aaa-4c82-a963-3a77a53e3d3d", - "Body" : "{\r\n \"name\": \"wvmeae3644989\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"00f5db55-8591-4427-9d0d-e2b3a4f1d204\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-5d209805c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-5d209805c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-9c160798c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b455e976-4aaa-4c82-a963-3a77a53e3d3d?api-version=2019-03-01" + "x-ms-request-id" : "c09ef6dc-152f-4dd1-833c-d72fa512ae66", + "Body" : "{\r\n \"name\": \"wvmeac76950fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"94aa0ec1-e5c2-45ff-8a2c-15b1c3f68af1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-714289334\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-714289334\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-26e663268\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c09ef6dc-152f-4dd1-833c-d72fa512ae66?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:55 GMT", + "date" : "Mon, 18 May 2020 12:23:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3366", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", + "x-ms-ratelimit-remaining-subscription-reads" : "11809", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6a6db8ea-3570-491f-93e3-a6e9e6219449", + "x-ms-correlation-request-id" : "be345882-aab0-4048-880e-135d3c5826f7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3962,Microsoft.Compute/LowCostGet30Min;31938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091656Z:6a6db8ea-3570-491f-93e3-a6e9e6219449", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3953,Microsoft.Compute/LowCostGet30Min;31904", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122311Z:be345882-aab0-4048-880e-135d3c5826f7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9a2524e4-49a5-4224-802c-6a476f429923", - "Body" : "{\r\n \"name\": \"wvmeae3644989\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"00f5db55-8591-4427-9d0d-e2b3a4f1d204\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-9c160798c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "787fb11e-6861-4854-955b-de78c834a1a9", + "Body" : "{\r\n \"name\": \"wvmeac76950fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"94aa0ec1-e5c2-45ff-8a2c-15b1c3f68af1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-26e663268\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989/restart?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb/restart?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:27 GMT", + "date" : "Mon, 18 May 2020 12:23:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", @@ -645,1367 +670,950 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a51ac953-bccf-4cff-a402-bd264eb8d1e3", + "x-ms-correlation-request-id" : "c5c22de5-61cd-49f6-a72f-46883350aeab", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091727Z:a51ac953-bccf-4cff-a402-bd264eb8d1e3", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bf8bda48-71c0-44b1-8fe7-aa50420bb80a?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1192", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122341Z:c5c22de5-61cd-49f6-a72f-46883350aeab", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/fdd98155-9f6e-4058-93a5-4df3344f8638?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "bf8bda48-71c0-44b1-8fe7-aa50420bb80a", + "x-ms-request-id" : "fdd98155-9f6e-4058-93a5-4df3344f8638", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bf8bda48-71c0-44b1-8fe7-aa50420bb80a?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/fdd98155-9f6e-4058-93a5-4df3344f8638?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bf8bda48-71c0-44b1-8fe7-aa50420bb80a?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/fdd98155-9f6e-4058-93a5-4df3344f8638?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:58 GMT", + "date" : "Mon, 18 May 2020 12:24:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "183", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11807", + "x-ms-ratelimit-remaining-subscription-reads" : "11758", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1ea384e4-2578-4baa-993c-9d1feb7bf65a", + "x-ms-correlation-request-id" : "b24d4241-3bff-4159-a4b4-7ded0f8da2ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14938,Microsoft.Compute/GetOperation30Min;29891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091758Z:1ea384e4-2578-4baa-993c-9d1feb7bf65a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14925,Microsoft.Compute/GetOperation30Min;29848", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122412Z:b24d4241-3bff-4159-a4b4-7ded0f8da2ac", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8cd623c0-5f41-42fa-b4f6-5a5870d343a1", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:17:27.4976189+00:00\",\r\n \"endTime\": \"2020-04-29T09:17:27.716352+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bf8bda48-71c0-44b1-8fe7-aa50420bb80a\"\r\n}" + "x-ms-request-id" : "90b6eeb0-3f84-44de-b7d6-11e2ba353c52", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:23:41.5637076+00:00\",\r\n \"endTime\": \"2020-05-18T12:23:41.735592+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fdd98155-9f6e-4058-93a5-4df3344f8638\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/bf8bda48-71c0-44b1-8fe7-aa50420bb80a?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/fdd98155-9f6e-4058-93a5-4df3344f8638?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:28 GMT", + "date" : "Mon, 18 May 2020 12:24:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11682", + "x-ms-ratelimit-remaining-subscription-reads" : "11952", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fbc5565c-b103-41e5-ba19-a58a1cfa4b69", + "x-ms-correlation-request-id" : "287dd4b4-1496-4bc9-a9a1-59193ba98c91", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14931,Microsoft.Compute/GetOperation30Min;29878", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091829Z:fbc5565c-b103-41e5-ba19-a58a1cfa4b69", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14914,Microsoft.Compute/GetOperation30Min;29832", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122443Z:287dd4b4-1496-4bc9-a9a1-59193ba98c91", "cache-control" : "no-cache", - "x-ms-request-id" : "654421b2-7f60-406c-9d03-2f2864bbb1f9", + "x-ms-request-id" : "d0c05f39-33d2-4f22-b3f6-ecdad32ecff5", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989?$expand=instanceView&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb?$expand=instanceView&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:29 GMT", + "date" : "Mon, 18 May 2020 12:24:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "5801", + "content-length" : "5800", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11757", + "x-ms-ratelimit-remaining-subscription-reads" : "11862", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f046ab19-1093-4a34-9dc3-e63f3465dba0", + "x-ms-correlation-request-id" : "05afc5e1-af3e-41e7-9845-f7bc115c8221", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091829Z:f046ab19-1093-4a34-9dc3-e63f3465dba0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31890", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122443Z:05afc5e1-af3e-41e7-9845-f7bc115c8221", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "daabcbe0-d3bb-4971-ac46-680c753185ed", - "Body" : "{\r\n \"name\": \"wvmeae3644989\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"00f5db55-8591-4427-9d0d-e2b3a4f1d204\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-9c160798c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.971\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and processing the extensions.\",\r\n \"time\": \"2020-04-29T09:18:28+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T09:12:38.7620994+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dsk-9c160798c\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T09:12:38.7620994+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T09:12:38.7620994+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T09:15:18.6849915+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-04-29T09:17:27.716352+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n }\r\n}" + "x-ms-request-id" : "a80a0376-b839-4067-8c6a-71d0a39055d7", + "Body" : "{\r\n \"name\": \"wvmeac76950fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"94aa0ec1-e5c2-45ff-8a2c-15b1c3f68af1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-26e663268\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.971\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and processing the extensions.\",\r\n \"time\": \"2020-05-18T12:24:43+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T12:18:23.531795+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dsk-26e663268\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T12:18:23.5474291+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T12:18:23.5474291+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T12:21:33.3756947+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2020-05-18T12:23:41.719962+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989/powerOff?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb/powerOff?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:30 GMT", + "date" : "Mon, 18 May 2020 12:24:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a124ce8a-37c4-4826-aaff-667534889503", + "x-ms-correlation-request-id" : "a11d8448-f220-4be3-89dd-81ad714cbbd8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1190", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091830Z:a124ce8a-37c4-4826-aaff-667534889503", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f018b82d-81b2-43d2-8b4d-81599389d792?monitor=true&api-version=2019-03-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122444Z:a11d8448-f220-4be3-89dd-81ad714cbbd8", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6e104424-83fd-4fb3-b4a2-9f4d0203d4c9?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f018b82d-81b2-43d2-8b4d-81599389d792", + "x-ms-request-id" : "6e104424-83fd-4fb3-b4a2-9f4d0203d4c9", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f018b82d-81b2-43d2-8b4d-81599389d792?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6e104424-83fd-4fb3-b4a2-9f4d0203d4c9?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f018b82d-81b2-43d2-8b4d-81599389d792?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6e104424-83fd-4fb3-b4a2-9f4d0203d4c9?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:01 GMT", + "date" : "Mon, 18 May 2020 12:25:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11755", + "x-ms-ratelimit-remaining-subscription-reads" : "11678", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0112d492-1c42-45e0-9ffb-5757b234fb2e", + "x-ms-correlation-request-id" : "f04d44c1-5550-4851-9354-b759344bcf69", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14922,Microsoft.Compute/GetOperation30Min;29857", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091901Z:0112d492-1c42-45e0-9ffb-5757b234fb2e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14911,Microsoft.Compute/GetOperation30Min;29817", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122514Z:f04d44c1-5550-4851-9354-b759344bcf69", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "15162aa4-b5cf-4d7c-a565-6fc6b7269717", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:18:30.8101181+00:00\",\r\n \"endTime\": \"2020-04-29T09:18:41.2632431+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f018b82d-81b2-43d2-8b4d-81599389d792\"\r\n}" + "x-ms-request-id" : "22d65cbc-32a6-4020-b50e-7136a289c538", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:24:44.2202331+00:00\",\r\n \"endTime\": \"2020-05-18T12:24:54.0484151+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6e104424-83fd-4fb3-b4a2-9f4d0203d4c9\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f018b82d-81b2-43d2-8b4d-81599389d792?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6e104424-83fd-4fb3-b4a2-9f4d0203d4c9?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:32 GMT", + "date" : "Mon, 18 May 2020 12:25:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11678", + "x-ms-ratelimit-remaining-subscription-reads" : "11800", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d210371f-9dfc-4f9f-ae63-3d153d37a738", + "x-ms-correlation-request-id" : "72fe4a79-f650-4035-b441-3bf87aebc3a4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14919,Microsoft.Compute/GetOperation30Min;29840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091932Z:d210371f-9dfc-4f9f-ae63-3d153d37a738", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14917,Microsoft.Compute/GetOperation30Min;29806", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122545Z:72fe4a79-f650-4035-b441-3bf87aebc3a4", "cache-control" : "no-cache", - "x-ms-request-id" : "88cfff35-8f93-4dd7-a2ac-fc3de5c50ab1", + "x-ms-request-id" : "9ebdb73a-3d5a-46bb-8f41-78ba3a361947", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:32 GMT", + "date" : "Mon, 18 May 2020 12:25:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1892", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", + "x-ms-ratelimit-remaining-subscription-reads" : "11786", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3fb7f77c-82a9-44bc-8b1a-28c326beee63", + "x-ms-correlation-request-id" : "78a91704-01bb-4695-be18-a8838abae482", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f1b95f05-3508-4a92-aeeb-719dccbb7ced", + "x-ms-arm-service-request-id" : "d5f78005-55f7-4f9e-a56f-bb8a38490360", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091933Z:3fb7f77c-82a9-44bc-8b1a-28c326beee63", - "etag" : "W/\"e0c6cbf4-7d7a-4085-a9a8-a85bb0069c5e\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122545Z:78a91704-01bb-4695-be18-a8838abae482", + "etag" : "W/\"0cef5c1a-959a-4b70-b72f-da9038f09d55\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "954113f6-f8c5-4941-b9ac-662b7ba81a29", - "Body" : "{\r\n \"name\": \"nic03178b884a7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\r\n \"etag\": \"W/\\\"e0c6cbf4-7d7a-4085-a9a8-a85bb0069c5e\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a6f1ed22-832e-42df-bde2-38c75c9f772f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e0c6cbf4-7d7a-4085-a9a8-a85bb0069c5e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"n3k3tnx4cskedaaszmwkp3iqpg.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-FA-35-40\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "88f29d14-d044-4027-bfa7-9effa4cdba42", + "Body" : "{\r\n \"name\": \"nic9955944390a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\r\n \"etag\": \"W/\\\"0cef5c1a-959a-4b70-b72f-da9038f09d55\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73247680-4f85-4f95-86b7-1af643861d0f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0cef5c1a-959a-4b70-b72f-da9038f09d55\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3pcp5smdk1ce5avtlxlxh3xhth.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-FA-C6-46\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:33 GMT", + "date" : "Mon, 18 May 2020 12:25:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1619", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11680", + "x-ms-ratelimit-remaining-subscription-reads" : "11883", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "516a9cdc-9a33-4ad4-a574-35849ac079b7", + "x-ms-correlation-request-id" : "64ff61bc-fbdf-4843-93af-90a3948284d6", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "777c47fa-659d-4d05-bf35-dc591af4fd37", + "x-ms-arm-service-request-id" : "05cea409-bedf-4871-be97-42b2cdd470eb", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091934Z:516a9cdc-9a33-4ad4-a574-35849ac079b7", - "etag" : "W/\"681b5299-a828-4e95-ae35-ca71a6d1a16f\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122546Z:64ff61bc-fbdf-4843-93af-90a3948284d6", + "etag" : "W/\"34ed0612-be03-4a01-8c17-b567715503ee\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9570fc23-ca00-4827-96ed-5b9fc846050f", - "Body" : "{\r\n \"name\": \"vnet764243230f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f\",\r\n \"etag\": \"W/\\\"681b5299-a828-4e95-ae35-ca71a6d1a16f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b6d9556f-14fe-4194-8012-cb2ca7f5107e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"681b5299-a828-4e95-ae35-ca71a6d1a16f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "3b794247-bc62-408e-8a21-a7fa0ff9f9ab", + "Body" : "{\r\n \"name\": \"vnet29779b1e78\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78\",\r\n \"etag\": \"W/\\\"34ed0612-be03-4a01-8c17-b567715503ee\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c9ffc4eb-5683-4fc4-82b3-5dd773f6e79f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78/subnets/subnet1\",\r\n \"etag\": \"W/\\\"34ed0612-be03-4a01-8c17-b567715503ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic43851d4fd7a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic2247528385f?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:40 GMT", + "date" : "Mon, 18 May 2020 12:25:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1642", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1167", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "92e2e3c5-afb5-4267-845f-4c42beb4d440", + "x-ms-correlation-request-id" : "fc21c45a-dcd8-44b5-b2c5-648d88f1f9ca", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7b349134-a114-44ab-83e9-24a10c990178", + "x-ms-arm-service-request-id" : "28ad4ac2-74f2-448b-b2a4-e8c538bdef89", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091941Z:92e2e3c5-afb5-4267-845f-4c42beb4d440", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122552Z:fc21c45a-dcd8-44b5-b2c5-648d88f1f9ca", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "62ada020-8c5b-4de8-8d38-efe3a8bbec87", - "Body" : "{\r\n \"name\": \"nic43851d4fd7a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic43851d4fd7a\",\r\n \"etag\": \"W/\\\"c22e72ed-12e3-4b8f-84ff-36fcca093e65\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"749dccfd-6ef0-4e24-a7f2-5bc3bbe88fb1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic43851d4fd7a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c22e72ed-12e3-4b8f-84ff-36fcca093e65\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"n3k3tnx4cskedaaszmwkp3iqpg.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/62ada020-8c5b-4de8-8d38-efe3a8bbec87?api-version=2019-06-01" + "x-ms-request-id" : "fafe2939-e4c2-44cc-98fc-dfecac2c1e89", + "Body" : "{\r\n \"name\": \"nic2247528385f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic2247528385f\",\r\n \"etag\": \"W/\\\"5b51a280-7147-40c8-bfcd-e68d57d21652\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4e76c1cf-54fd-46c5-b4c7-b11fd833b5eb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic2247528385f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5b51a280-7147-40c8-bfcd-e68d57d21652\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3pcp5smdk1ce5avtlxlxh3xhth.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fafe2939-e4c2-44cc-98fc-dfecac2c1e89?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/62ada020-8c5b-4de8-8d38-efe3a8bbec87?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fafe2939-e4c2-44cc-98fc-dfecac2c1e89?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:11 GMT", + "date" : "Mon, 18 May 2020 12:26:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", + "x-ms-ratelimit-remaining-subscription-reads" : "11705", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4b97da22-bf2a-46a4-a56f-371b63b0c652", + "x-ms-correlation-request-id" : "6891fa33-9903-4a21-9aa4-e1cc5d4d1cbe", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "a8fc1a16-e57b-4b39-8dc6-c20508a967fa", + "x-ms-arm-service-request-id" : "430d93d1-9019-44e2-9b60-26680ac7c409", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092012Z:4b97da22-bf2a-46a4-a56f-371b63b0c652", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122623Z:6891fa33-9903-4a21-9aa4-e1cc5d4d1cbe", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fe18808f-d550-460d-8aa6-dd05315a55b1", + "x-ms-request-id" : "610c38d5-daae-4cf1-92d4-7a51e8850876", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic43851d4fd7a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic2247528385f?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:42 GMT", + "date" : "Mon, 18 May 2020 12:26:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1642", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", + "x-ms-ratelimit-remaining-subscription-reads" : "11751", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5592a83a-9160-420d-b714-ade55ac34925", + "x-ms-correlation-request-id" : "81fd1c9d-6da5-4141-a161-bc9f4422d217", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8213aa5d-950e-4563-8692-de1c4258cfa7", + "x-ms-arm-service-request-id" : "689f9183-7b29-481f-9ac6-dfe424dbcf3e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092043Z:5592a83a-9160-420d-b714-ade55ac34925", - "etag" : "W/\"c22e72ed-12e3-4b8f-84ff-36fcca093e65\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122654Z:81fd1c9d-6da5-4141-a161-bc9f4422d217", + "etag" : "W/\"5b51a280-7147-40c8-bfcd-e68d57d21652\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1cc56cd0-bd61-4fd8-a645-de5c58f2e2dc", - "Body" : "{\r\n \"name\": \"nic43851d4fd7a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic43851d4fd7a\",\r\n \"etag\": \"W/\\\"c22e72ed-12e3-4b8f-84ff-36fcca093e65\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"749dccfd-6ef0-4e24-a7f2-5bc3bbe88fb1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic43851d4fd7a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c22e72ed-12e3-4b8f-84ff-36fcca093e65\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/virtualNetworks/vnet764243230f/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"n3k3tnx4cskedaaszmwkp3iqpg.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "93ecb8ff-719a-4f35-a80b-4690578d0c51", + "Body" : "{\r\n \"name\": \"nic2247528385f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic2247528385f\",\r\n \"etag\": \"W/\\\"5b51a280-7147-40c8-bfcd-e68d57d21652\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4e76c1cf-54fd-46c5-b4c7-b11fd833b5eb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic2247528385f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5b51a280-7147-40c8-bfcd-e68d57d21652\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/virtualNetworks/vnet29779b1e78/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3pcp5smdk1ce5avtlxlxh3xhth.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/lvm7bb6190394?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/lvm23569772b4?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:48 GMT", + "date" : "Mon, 18 May 2020 12:27:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1489", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a3bbb82e-6aa2-45ef-9788-9b5b555e0bce", + "x-ms-correlation-request-id" : "31ddb918-3ba2-422e-9b5f-473257d1d154", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1174", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092049Z:a3bbb82e-6aa2-45ef-9788-9b5b555e0bce", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1169", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122704Z:31ddb918-3ba2-422e-9b5f-473257d1d154", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b58315d5-1723-43f0-afaa-8cfba89b61d4", - "Body" : "{\r\n \"name\": \"lvm7bb6190394\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/lvm7bb6190394\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f3dd15b6-108a-4a64-bac3-36d480db29c3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm7bb6190394\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic43851d4fd7a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b58315d5-1723-43f0-afaa-8cfba89b61d4?api-version=2019-03-01" + "x-ms-request-id" : "493a4485-1f96-40c8-aee5-567784521c00", + "Body" : "{\r\n \"name\": \"lvm23569772b4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/lvm23569772b4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"acbe8771-d880-42ff-bdaa-8da0fc98011c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm23569772b4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic2247528385f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/493a4485-1f96-40c8-aee5-567784521c00?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b58315d5-1723-43f0-afaa-8cfba89b61d4?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/493a4485-1f96-40c8-aee5-567784521c00?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:20 GMT", + "date" : "Mon, 18 May 2020 12:27:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11670", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "acdc7f5a-579e-47fc-bac8-31abce084e2b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14915,Microsoft.Compute/GetOperation30Min;29793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092120Z:acdc7f5a-579e-47fc-bac8-31abce084e2b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bd2f79b4-2431-4335-b215-e3c773399a20", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:20:48.3570243+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b58315d5-1723-43f0-afaa-8cfba89b61d4\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b58315d5-1723-43f0-afaa-8cfba89b61d4?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c2b6ae96-26fe-4b04-8c35-89c3b0160967", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14920,Microsoft.Compute/GetOperation30Min;29780", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092151Z:c2b6ae96-26fe-4b04-8c35-89c3b0160967", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b49838cd-9118-460b-b4dc-b8af677eba75", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:20:48.3570243+00:00\",\r\n \"endTime\": \"2020-04-29T09:21:32.4663895+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b58315d5-1723-43f0-afaa-8cfba89b61d4\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/lvm7bb6190394?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1758", - "expires" : "-1", - "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11748", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f8d17558-a583-4d96-9659-4e7edc8b5af9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3979,Microsoft.Compute/LowCostGet30Min;31905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092222Z:f8d17558-a583-4d96-9659-4e7edc8b5af9", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d1e7b751-7822-4978-b506-d88429ed47fb", - "Body" : "{\r\n \"name\": \"lvm7bb6190394\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/lvm7bb6190394\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f3dd15b6-108a-4a64-bac3-36d480db29c3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm7bb6190394_OsDisk_1_b11b41a8c2324d618cc9e02ae993647b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/lvm7bb6190394_OsDisk_1_b11b41a8c2324d618cc9e02ae993647b\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm7bb6190394\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic43851d4fd7a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "5680", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a59ed917-4aae-4b47-81a5-e53faa3f2d32", + "x-ms-correlation-request-id" : "a7bd4e14-537a-42ca-86e8-49c5a5d001cd", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;699", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092223Z:a59ed917-4aae-4b47-81a5-e53faa3f2d32", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29789", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122734Z:a7bd4e14-537a-42ca-86e8-49c5a5d001cd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e512f9d3-d78b-43b8-a2f2-2570175bf0ba", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"lvm7bb6190394\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/lvm7bb6190394\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f3dd15b6-108a-4a64-bac3-36d480db29c3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm7bb6190394_OsDisk_1_b11b41a8c2324d618cc9e02ae993647b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/lvm7bb6190394_OsDisk_1_b11b41a8c2324d618cc9e02ae993647b\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm7bb6190394\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic43851d4fd7a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"wvmeae3644989\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"00f5db55-8591-4427-9d0d-e2b3a4f1d204\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_OsDisk_1_4b77894aeb8f4d529d448598d46ffa12\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-9c160798c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/disks/dsk-9c160798c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk4_570c0b6165374e0bb2076b0f43ccd8b2\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA3E43543/providers/Microsoft.Compute/disks/wvmeae3644989_disk5_47088f3ff6624fec98d4bf6a4bcbadc7\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeae3644989\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Network/networkInterfaces/nic03178b884a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva3e43543/providers/Microsoft.Compute/virtualMachines/wvmeae3644989?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0d77dd29-0775-48fc-9a42-c5576bd7b643", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1189", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092224Z:0d77dd29-0775-48fc-9a42-c5576bd7b643", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?monitor=true&api-version=2019-03-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "b90dcb87-070d-4a2d-88a5-923b94e3bd23", - "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5fc470d6-2022-43ec-b3cd-ba36eb83146a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14938,Microsoft.Compute/GetOperation30Min;29762", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092254Z:5fc470d6-2022-43ec-b3cd-ba36eb83146a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b46a8e56-92e4-4c34-865e-9194d2054f07", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" + "x-ms-request-id" : "399e2c60-d464-4855-85e1-2471cbadc5b7", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:27:02.2048744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"493a4485-1f96-40c8-aee5-567784521c00\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/493a4485-1f96-40c8-aee5-567784521c00?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:24 GMT", + "date" : "Mon, 18 May 2020 12:28:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11759", + "x-ms-ratelimit-remaining-subscription-reads" : "11880", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "84297c90-2a72-44e8-9dc6-7ca41dc5774c", + "x-ms-correlation-request-id" : "4d5844db-a8ff-4e92-b697-0ec3f57c2b8e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29754", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092325Z:84297c90-2a72-44e8-9dc6-7ca41dc5774c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29786", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122805Z:4d5844db-a8ff-4e92-b697-0ec3f57c2b8e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "31a79adc-38f4-4677-a003-66037ddab6ae", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" + "x-ms-request-id" : "fa511b4e-792b-4192-85c0-f45dd202ad13", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:27:02.2048744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"493a4485-1f96-40c8-aee5-567784521c00\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/493a4485-1f96-40c8-aee5-567784521c00?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:55 GMT", + "date" : "Mon, 18 May 2020 12:28:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "61ffca41-7408-4166-b349-d1890e83809e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14941,Microsoft.Compute/GetOperation30Min;29743", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092355Z:61ffca41-7408-4166-b349-d1890e83809e", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c6228bb6-5cef-487a-9f17-ca1436743ab0", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11742", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "42cd196f-ac20-493f-a987-c46558ab9f8f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29731", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092426Z:42cd196f-ac20-493f-a987-c46558ab9f8f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a0f309c4-1be6-471f-ad95-fc4b27de73b0", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:56 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11654", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6e035878-6667-4fce-bfa3-3ea5fa192d33", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29723", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092457Z:6e035878-6667-4fce-bfa3-3ea5fa192d33", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "83b063bc-6e38-47af-baab-bc8a80c8e236", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11652", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "436d83de-3234-4016-882f-3a2bc5429e7d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29717", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092528Z:436d83de-3234-4016-882f-3a2bc5429e7d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6dab50f5-3ae4-4d70-ab1f-c04ec71d5f33", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11657", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "949893df-599a-4040-bb13-27bf68904fed", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29710", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092559Z:949893df-599a-4040-bb13-27bf68904fed", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "dc87843a-ab38-4b1f-9a44-015968af9632", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7c24224d-5ca0-41da-a22d-d40cd0acb0f9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29704", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092629Z:7c24224d-5ca0-41da-a22d-d40cd0acb0f9", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8b1502fc-5da4-4db9-b7a5-b30ecdc59b01", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d6431882-d0b3-4c6d-9f6f-dd78732b895d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29699", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092700Z:d6431882-d0b3-4c6d-9f6f-dd78732b895d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1f4c5e17-2886-4211-9db8-ece0fd6bc322", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11735", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fcd57410-c4d9-4f1e-81d7-0690b19e1dda", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29698", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092731Z:fcd57410-c4d9-4f1e-81d7-0690b19e1dda", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d8d6134c-802b-4ea9-a206-f0daa0eaafe8", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11750", + "x-ms-ratelimit-remaining-subscription-reads" : "11806", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2561445f-c0fb-49d0-bb2b-e8bab1db9087", + "x-ms-correlation-request-id" : "e97ba1c1-818d-4dff-912a-6ffa0fbab01d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29695", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092801Z:2561445f-c0fb-49d0-bb2b-e8bab1db9087", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29782", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122835Z:e97ba1c1-818d-4dff-912a-6ffa0fbab01d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e3a194b7-9193-4df6-85cc-6de1c3cce691", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" + "x-ms-request-id" : "7c6bdfc5-a824-4d51-b4d5-f13e717a9def", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:27:02.2048744+00:00\",\r\n \"endTime\": \"2020-05-18T12:28:09.2830525+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"493a4485-1f96-40c8-aee5-567784521c00\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/lvm23569772b4?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:31 GMT", + "date" : "Mon, 18 May 2020 12:29:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "1758", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", + "x-ms-ratelimit-remaining-subscription-reads" : "11805", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2888b668-b5a0-40b5-89a5-595a7d96121a", + "x-ms-correlation-request-id" : "7f7fc569-e226-47d0-8ab0-fb1fc021f9ea", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29690", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092832Z:2888b668-b5a0-40b5-89a5-595a7d96121a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3969,Microsoft.Compute/LowCostGet30Min;31847", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122906Z:7f7fc569-e226-47d0-8ab0-fb1fc021f9ea", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "01737979-afbc-4810-96e8-d8d5edee7b55", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" + "x-ms-request-id" : "42e87aab-f1db-483a-974f-9f8e71efa8a3", + "Body" : "{\r\n \"name\": \"lvm23569772b4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/lvm23569772b4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"acbe8771-d880-42ff-bdaa-8da0fc98011c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm23569772b4_OsDisk_1_dfb58552a0cc49ff9dda87927bd3ced4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/lvm23569772b4_OsDisk_1_dfb58552a0cc49ff9dda87927bd3ced4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm23569772b4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic2247528385f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:02 GMT", + "date" : "Mon, 18 May 2020 12:29:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "5680", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11747", + "x-ms-ratelimit-remaining-subscription-reads" : "11804", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "726f38da-50b6-4abd-a5af-39663a3e57af", + "x-ms-correlation-request-id" : "13eeb372-1691-48f5-a94a-a586276b3894", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29686", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092903Z:726f38da-50b6-4abd-a5af-39663a3e57af", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;138,Microsoft.Compute/HighCostGet30Min;697", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122906Z:13eeb372-1691-48f5-a94a-a586276b3894", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "c12db78d-0a2f-4df7-9ac5-e826eb457e3a", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" + "x-ms-request-id" : "b62b9315-2614-481e-8dc8-acfabd199a24", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"lvm23569772b4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/lvm23569772b4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"acbe8771-d880-42ff-bdaa-8da0fc98011c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm23569772b4_OsDisk_1_dfb58552a0cc49ff9dda87927bd3ced4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/lvm23569772b4_OsDisk_1_dfb58552a0cc49ff9dda87927bd3ced4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm23569772b4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic2247528385f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"wvmeac76950fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"94aa0ec1-e5c2-45ff-8a2c-15b1c3f68af1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_OsDisk_1_50d44dc5a7d041a584de49c69c8d72a5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-26e663268\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/disks/dsk-26e663268\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk4_92468e10c04c4bb98167fb103cd7452e\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV1F439421/providers/Microsoft.Compute/disks/wvmeac76950fb_disk5_4a1ca14c03494f4c8d2a6e6671738d2b\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvmeac76950fb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Network/networkInterfaces/nic9955944390a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv1f439421/providers/Microsoft.Compute/virtualMachines/wvmeac76950fb?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:33 GMT", + "date" : "Mon, 18 May 2020 12:29:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "azure-asyncnotification" : "Enabled", + "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11637", - "StatusCode" : "200", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "babcb723-b3c6-4ff3-a11e-e331f84ca7a3", + "x-ms-correlation-request-id" : "f5c7794a-e76b-4e7c-8002-5bf341543353", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29680", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092933Z:babcb723-b3c6-4ff3-a11e-e331f84ca7a3", - "content-type" : "application/json; charset=utf-8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1186", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122907Z:f5c7794a-e76b-4e7c-8002-5bf341543353", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8bbd213f-495c-4386-9543-47f2ae79b07e?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "acbfce2a-0946-4d9b-a23d-d85e259217d2", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" + "x-ms-request-id" : "8bbd213f-495c-4386-9543-47f2ae79b07e", + "Body" : "", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8bbd213f-495c-4386-9543-47f2ae79b07e?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8bbd213f-495c-4386-9543-47f2ae79b07e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:03 GMT", + "date" : "Mon, 18 May 2020 12:29:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "132", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", + "x-ms-ratelimit-remaining-subscription-reads" : "11861", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "20aed8e0-691e-4ba9-95a1-82437b9762b9", + "x-ms-correlation-request-id" : "70433faf-ac51-4f09-ac4d-6eefe5d23d23", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29675", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093004Z:20aed8e0-691e-4ba9-95a1-82437b9762b9", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29768", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122938Z:70433faf-ac51-4f09-ac4d-6eefe5d23d23", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "12149dfd-fb8b-44b4-82a2-f8658b69f687", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" + "x-ms-request-id" : "c4224b7a-2cd2-4ee4-a13b-de7c03ebea07", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:29:07.43935+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8bbd213f-495c-4386-9543-47f2ae79b07e\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8bbd213f-495c-4386-9543-47f2ae79b07e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:34 GMT", + "date" : "Mon, 18 May 2020 12:30:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "132", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11745", + "x-ms-ratelimit-remaining-subscription-reads" : "11802", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d8da5e36-f136-4d0c-a1bb-a9b2afef56f7", + "x-ms-correlation-request-id" : "79333a67-010a-4c20-9e26-f7038b568b90", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29668", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093035Z:d8da5e36-f136-4d0c-a1bb-a9b2afef56f7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29760", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123009Z:79333a67-010a-4c20-9e26-f7038b568b90", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fcde2364-612e-4cef-a7e1-bba71fa0a8ea", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" + "x-ms-request-id" : "b08f16a4-362b-4864-82d6-f37198a60511", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:29:07.43935+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8bbd213f-495c-4386-9543-47f2ae79b07e\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8bbd213f-495c-4386-9543-47f2ae79b07e?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:06 GMT", + "date" : "Mon, 18 May 2020 12:30:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "181", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11633", + "x-ms-ratelimit-remaining-subscription-reads" : "11877", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fb11cf0b-ef9a-4b7e-8e25-dc5ac9250b9d", + "x-ms-correlation-request-id" : "259069a5-3f80-4230-8021-8e3f415ae90e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29659", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093106Z:fb11cf0b-ef9a-4b7e-8e25-dc5ac9250b9d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29755", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123039Z:259069a5-3f80-4230-8021-8e3f415ae90e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "33900f32-5b0a-4083-af5b-469e3ef78a0b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:22:24.1069932+00:00\",\r\n \"endTime\": \"2020-04-29T09:30:59.2672263+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b90dcb87-070d-4a2d-88a5-923b94e3bd23\"\r\n}" + "x-ms-request-id" : "427fddb8-e87a-4030-9e84-957aeeaebc56", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:29:07.43935+00:00\",\r\n \"endTime\": \"2020-05-18T12:30:36.955007+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8bbd213f-495c-4386-9543-47f2ae79b07e\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b90dcb87-070d-4a2d-88a5-923b94e3bd23?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8bbd213f-495c-4386-9543-47f2ae79b07e?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:36 GMT", + "date" : "Mon, 18 May 2020 12:31:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11724", + "x-ms-ratelimit-remaining-subscription-reads" : "11739", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f3d7d952-d0f5-43c5-9508-c904aea4ee95", + "x-ms-correlation-request-id" : "245ea4f2-c6f7-4f81-a1f4-c94411f809ab", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29652", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093136Z:f3d7d952-d0f5-43c5-9508-c904aea4ee95", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29745", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123110Z:245ea4f2-c6f7-4f81-a1f4-c94411f809ab", "cache-control" : "no-cache", - "x-ms-request-id" : "b7f83b99-457e-44a1-84a1-5b35ec6aa817", + "x-ms-request-id" : "ec413dd3-0092-4469-a091-813d1e8443e5", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomva3e43543?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv1f439421?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:41 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "767feb89-8703-4c72-9c67-9c052492ca61", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093141Z:767feb89-8703-4c72-9c67-9c052492ca61", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "767feb89-8703-4c72-9c67-9c052492ca61", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:32:11 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ad17bd38-745c-4285-a975-398f2e4d44eb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093212Z:ad17bd38-745c-4285-a975-398f2e4d44eb", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "ad17bd38-745c-4285-a975-398f2e4d44eb", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:32:43 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11740", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4fab54b9-91ca-43d5-88b0-6b5b55c77692", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093244Z:4fab54b9-91ca-43d5-88b0-6b5b55c77692", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4fab54b9-91ca-43d5-88b0-6b5b55c77692", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:33:15 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3046c3a7-5f19-4fc1-a906-4968eb1ff23e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093315Z:3046c3a7-5f19-4fc1-a906-4968eb1ff23e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "3046c3a7-5f19-4fc1-a906-4968eb1ff23e", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:33:46 GMT", + "date" : "Mon, 18 May 2020 12:31:15 GMT", "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0f1280bb-e6a1-4f9e-befc-4425e24e972a", + "x-ms-correlation-request-id" : "7d5301c4-5a87-4fc5-89e2-8cfc1c6b5cca", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093346Z:0f1280bb-e6a1-4f9e-befc-4425e24e972a", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123115Z:7d5301c4-5a87-4fc5-89e2-8cfc1c6b5cca", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "0f1280bb-e6a1-4f9e-befc-4425e24e972a", + "x-ms-request-id" : "7d5301c4-5a87-4fc5-89e2-8cfc1c6b5cca", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:34:17 GMT", + "date" : "Mon, 18 May 2020 12:31:45 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", + "x-ms-ratelimit-remaining-subscription-reads" : "11798", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f7119a16-646c-49af-a213-bbc136f7cc63", + "x-ms-correlation-request-id" : "45f048a6-8c05-468a-9a60-96f78c0048ea", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093418Z:f7119a16-646c-49af-a213-bbc136f7cc63", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123146Z:45f048a6-8c05-468a-9a60-96f78c0048ea", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f7119a16-646c-49af-a213-bbc136f7cc63", + "x-ms-request-id" : "45f048a6-8c05-468a-9a60-96f78c0048ea", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:34:48 GMT", + "date" : "Mon, 18 May 2020 12:32:17 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11640", + "x-ms-ratelimit-remaining-subscription-reads" : "11785", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "68ebd65d-a422-48da-b2d7-9d688e1ff001", + "x-ms-correlation-request-id" : "b0b0adc3-324b-4e8b-9c0c-540c2a0370ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093449Z:68ebd65d-a422-48da-b2d7-9d688e1ff001", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123217Z:b0b0adc3-324b-4e8b-9c0c-540c2a0370ac", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "68ebd65d-a422-48da-b2d7-9d688e1ff001", + "x-ms-request-id" : "b0b0adc3-324b-4e8b-9c0c-540c2a0370ac", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:35:20 GMT", + "date" : "Mon, 18 May 2020 12:32:48 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", + "x-ms-ratelimit-remaining-subscription-reads" : "11830", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ac0daca-c798-49dc-b93c-f547ecc389f7", + "x-ms-correlation-request-id" : "d6d3b7a8-99e3-4264-96b6-ccbb705abf56", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093520Z:8ac0daca-c798-49dc-b93c-f547ecc389f7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123249Z:d6d3b7a8-99e3-4264-96b6-ccbb705abf56", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "8ac0daca-c798-49dc-b93c-f547ecc389f7", + "x-ms-request-id" : "d6d3b7a8-99e3-4264-96b6-ccbb705abf56", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:35:51 GMT", + "date" : "Mon, 18 May 2020 12:33:20 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", + "x-ms-ratelimit-remaining-subscription-reads" : "11642", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5c7ed11f-a414-4ef3-9b2d-de7c8ada460c", + "x-ms-correlation-request-id" : "6c3f5175-cd29-4138-8bd7-0c6c897063b2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093552Z:5c7ed11f-a414-4ef3-9b2d-de7c8ada460c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123320Z:6c3f5175-cd29-4138-8bd7-0c6c897063b2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "5c7ed11f-a414-4ef3-9b2d-de7c8ada460c", + "x-ms-request-id" : "6c3f5175-cd29-4138-8bd7-0c6c897063b2", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:36:23 GMT", + "date" : "Mon, 18 May 2020 12:33:51 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11639", + "x-ms-ratelimit-remaining-subscription-reads" : "11865", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4914c04a-30b7-44ab-8991-ee6cf99977f1", + "x-ms-correlation-request-id" : "2db07827-e41d-4a41-bc9c-beeb68ebc8f7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093623Z:4914c04a-30b7-44ab-8991-ee6cf99977f1", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123351Z:2db07827-e41d-4a41-bc9c-beeb68ebc8f7", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "4914c04a-30b7-44ab-8991-ee6cf99977f1", + "x-ms-request-id" : "2db07827-e41d-4a41-bc9c-beeb68ebc8f7", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:36:54 GMT", + "date" : "Mon, 18 May 2020 12:34:22 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", + "x-ms-ratelimit-remaining-subscription-reads" : "11729", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "269edb53-5450-4299-9a1d-1b525e7181e2", + "x-ms-correlation-request-id" : "eaa685bb-0729-4bbd-a1af-79a5a334a541", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093654Z:269edb53-5450-4299-9a1d-1b525e7181e2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123423Z:eaa685bb-0729-4bbd-a1af-79a5a334a541", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "269edb53-5450-4299-9a1d-1b525e7181e2", + "x-ms-request-id" : "eaa685bb-0729-4bbd-a1af-79a5a334a541", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:37:25 GMT", + "date" : "Mon, 18 May 2020 12:34:53 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", + "x-ms-ratelimit-remaining-subscription-reads" : "11852", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cbc16067-4baf-42a2-94c3-e5783da763df", + "x-ms-correlation-request-id" : "0aa88dc7-71cb-4f48-b8b1-1affe4b613ee", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093725Z:cbc16067-4baf-42a2-94c3-e5783da763df", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123454Z:0aa88dc7-71cb-4f48-b8b1-1affe4b613ee", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "cbc16067-4baf-42a2-94c3-e5783da763df", + "x-ms-request-id" : "0aa88dc7-71cb-4f48-b8b1-1affe4b613ee", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:37:56 GMT", + "date" : "Mon, 18 May 2020 12:35:24 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11769", + "x-ms-ratelimit-remaining-subscription-reads" : "11776", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac6e5494-928c-4c82-b72b-3103ae8434ac", + "x-ms-correlation-request-id" : "52d1328f-f73e-4cc1-98bc-98d6a07dce20", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093757Z:ac6e5494-928c-4c82-b72b-3103ae8434ac", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123525Z:52d1328f-f73e-4cc1-98bc-98d6a07dce20", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ac6e5494-928c-4c82-b72b-3103ae8434ac", + "x-ms-request-id" : "52d1328f-f73e-4cc1-98bc-98d6a07dce20", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:38:27 GMT", + "date" : "Mon, 18 May 2020 12:35:56 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11715", + "x-ms-ratelimit-remaining-subscription-reads" : "11775", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e6dbe84e-5254-4755-8a84-2eeab5a9200d", + "x-ms-correlation-request-id" : "decf124f-b15c-4768-93d2-5ced9499bebb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093828Z:e6dbe84e-5254-4755-8a84-2eeab5a9200d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123556Z:decf124f-b15c-4768-93d2-5ced9499bebb", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e6dbe84e-5254-4755-8a84-2eeab5a9200d", + "x-ms-request-id" : "decf124f-b15c-4768-93d2-5ced9499bebb", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:38:58 GMT", + "date" : "Mon, 18 May 2020 12:36:26 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11611", + "x-ms-ratelimit-remaining-subscription-reads" : "11726", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7c379326-16d2-4465-94a7-3426680d711d", + "x-ms-correlation-request-id" : "42690d8a-8c63-4dc5-bbab-d3c06484727d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093858Z:7c379326-16d2-4465-94a7-3426680d711d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123627Z:42690d8a-8c63-4dc5-bbab-d3c06484727d", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "7c379326-16d2-4465-94a7-3426680d711d", + "x-ms-request-id" : "42690d8a-8c63-4dc5-bbab-d3c06484727d", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:39:29 GMT", + "date" : "Mon, 18 May 2020 12:36:57 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", + "x-ms-ratelimit-remaining-subscription-reads" : "11849", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "73b34579-b8a1-4fac-9db0-ad7f0d80a2d0", + "x-ms-correlation-request-id" : "84161e5e-eb95-4eb5-984f-fcb743502948", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093930Z:73b34579-b8a1-4fac-9db0-ad7f0d80a2d0", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123658Z:84161e5e-eb95-4eb5-984f-fcb743502948", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "73b34579-b8a1-4fac-9db0-ad7f0d80a2d0", + "x-ms-request-id" : "84161e5e-eb95-4eb5-984f-fcb743502948", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:40:01 GMT", + "date" : "Mon, 18 May 2020 12:37:29 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11635", + "x-ms-ratelimit-remaining-subscription-reads" : "11875", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "126daa7a-b715-49a4-b50e-ae725bff1352", + "x-ms-correlation-request-id" : "1c9323e7-a9cb-4475-928f-73228a26657e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094001Z:126daa7a-b715-49a4-b50e-ae725bff1352", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123729Z:1c9323e7-a9cb-4475-928f-73228a26657e", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "126daa7a-b715-49a4-b50e-ae725bff1352", + "x-ms-request-id" : "1c9323e7-a9cb-4475-928f-73228a26657e", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:40:32 GMT", + "date" : "Mon, 18 May 2020 12:38:01 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11608", + "x-ms-ratelimit-remaining-subscription-reads" : "11771", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "82757e0f-ad30-40f9-914b-db5ee32d9032", + "x-ms-correlation-request-id" : "e8c3bbc7-ef10-4df5-a318-6ef76b651df9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094032Z:82757e0f-ad30-40f9-914b-db5ee32d9032", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123801Z:e8c3bbc7-ef10-4df5-a318-6ef76b651df9", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "82757e0f-ad30-40f9-914b-db5ee32d9032", + "x-ms-request-id" : "e8c3bbc7-ef10-4df5-a318-6ef76b651df9", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:41:02 GMT", + "date" : "Mon, 18 May 2020 12:38:31 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", + "x-ms-ratelimit-remaining-subscription-reads" : "11662", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e46dee21-0bf6-4af0-9e8c-563ed2f874f4", + "x-ms-correlation-request-id" : "b03c790f-e62a-481c-a168-54dc1d1c32f1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094103Z:e46dee21-0bf6-4af0-9e8c-563ed2f874f4", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123831Z:b03c790f-e62a-481c-a168-54dc1d1c32f1", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e46dee21-0bf6-4af0-9e8c-563ed2f874f4", + "x-ms-request-id" : "b03c790f-e62a-481c-a168-54dc1d1c32f1", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBM0U0MzU0My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYxRjQzOTQyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:41:34 GMT", + "date" : "Mon, 18 May 2020 12:39:03 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11734", + "x-ms-ratelimit-remaining-subscription-reads" : "11845", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "47e9483c-8c4b-4907-8f79-82af8ae293d9", + "x-ms-correlation-request-id" : "6a5fc308-5112-4acd-83f4-ba6a8c60a1d8", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T094135Z:47e9483c-8c4b-4907-8f79-82af8ae293d9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123903Z:6a5fc308-5112-4acd-83f4-ba6a8c60a1d8", "cache-control" : "no-cache", - "x-ms-request-id" : "47e9483c-8c4b-4907-8f79-82af8ae293d9", + "x-ms-request-id" : "6a5fc308-5112-4acd-83f4-ba6a8c60a1d8", "Body" : "" } } ], - "variables" : [ "wvmeae3644989", "lvm7bb6190394", "rgcomva3e43543", "dsk-5d209805c", "dsk-9c160798c", "nic03178b884a7", "vnet764243230f", "nic43851d4fd7a" ] + "variables" : [ "wvmeac76950fb", "lvm23569772b4", "rgcomv1f439421", "dsk-714289334", "dsk-26e663268", "nic9955944390a", "vnet29779b1e78", "nic2247528385f" ] } \ No newline at end of file diff --git a/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachineAsync.json b/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachineAsync.json index 997d8ce15d13..839dfbf5c59b 100644 --- a/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachineAsync.json +++ b/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachineAsync.json @@ -1,873 +1,848 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvd4421528?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvb8337425?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:20:48 GMT", - "content-length" : "322", + "date" : "Mon, 18 May 2020 12:14:50 GMT", + "content-length" : "316", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ad60fc53-99f0-427f-bfe2-d3eb2a4fec22", + "x-ms-correlation-request-id" : "ae50f3a5-56cf-4e8d-8987-475bba4f00c6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052048Z:ad60fc53-99f0-427f-bfe2-d3eb2a4fec22", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121450Z:ae50f3a5-56cf-4e8d-8987-475bba4f00c6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ad60fc53-99f0-427f-bfe2-d3eb2a4fec22", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528\",\"name\":\"rgcomvd4421528\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-04-30T05:20:46.375668900Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "ae50f3a5-56cf-4e8d-8987-475bba4f00c6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425\",\"name\":\"rgcomvb8337425\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T12:14:46.693Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-92a51041c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-ef9280906?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:20:52 GMT", + "date" : "Mon, 18 May 2020 12:14:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "253", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e0a37f02-c00d-43ee-a67b-793733706e85", + "x-ms-correlation-request-id" : "2a5424fb-dba0-448e-93b5-fa5c9a93aad9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052052Z:e0a37f02-c00d-43ee-a67b-793733706e85", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121457Z:2a5424fb-dba0-448e-93b5-fa5c9a93aad9", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/356443f1-db5e-4dec-b5a1-e88482b24ec7?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/33e174ae-17b8-486c-b608-0c00b6f2900b?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "356443f1-db5e-4dec-b5a1-e88482b24ec7", - "Body" : "{\r\n \"name\": \"dsk-92a51041c\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/356443f1-db5e-4dec-b5a1-e88482b24ec7?api-version=2019-03-01" + "x-ms-request-id" : "33e174ae-17b8-486c-b608-0c00b6f2900b", + "Body" : "{\r\n \"name\": \"dsk-ef9280906\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/33e174ae-17b8-486c-b608-0c00b6f2900b?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/356443f1-db5e-4dec-b5a1-e88482b24ec7?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/33e174ae-17b8-486c-b608-0c00b6f2900b?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:21:23 GMT", + "date" : "Mon, 18 May 2020 12:15:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "807", + "content-length" : "863", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "35428425-a029-49ba-8c5f-332165fee232", + "x-ms-correlation-request-id" : "90ef7f9f-a53a-48f6-8c68-a1f7047852fe", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399986", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052123Z:35428425-a029-49ba-8c5f-332165fee232", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121527Z:90ef7f9f-a53a-48f6-8c68-a1f7047852fe", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "03a69c39-a59c-43db-b4c8-b642a8564b2f", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:20:52.6343041+00:00\",\r\n \"endTime\": \"2020-04-30T05:20:52.7437023+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-92a51041c\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-92a51041c\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-30T05:20:52.6343041+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"03b32162-1050-47b0-ab25-df271630aaa8\"}}\r\n },\r\n \"name\": \"356443f1-db5e-4dec-b5a1-e88482b24ec7\"\r\n}" + "x-ms-request-id" : "bbae72ec-b674-4a51-8c03-0d266091db4a", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:14:56.8389243+00:00\",\r\n \"endTime\": \"2020-05-18T12:14:57.0107225+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-ef9280906\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-ef9280906\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:14:56.8545381+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"25409f15-a641-4885-bd4e-ff70bb18dc1a\"}}\r\n },\r\n \"name\": \"33e174ae-17b8-486c-b608-0c00b6f2900b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-92a51041c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-ef9280906?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:21:53 GMT", + "date" : "Mon, 18 May 2020 12:15:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "719", + "content-length" : "797", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c0429c25-fa56-400b-8e5b-675fc818e46d", + "x-ms-correlation-request-id" : "fbc9407d-6934-4306-ace7-3287edfb06fe", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39977", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052154Z:c0429c25-fa56-400b-8e5b-675fc818e46d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121558Z:fbc9407d-6934-4306-ace7-3287edfb06fe", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "054727b9-6b1a-4458-a9ec-4fd50b4b193b", - "Body" : "{\r\n \"name\": \"dsk-92a51041c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-92a51041c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-30T05:20:52.6343041+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"03b32162-1050-47b0-ab25-df271630aaa8\"\r\n }\r\n}" + "x-ms-request-id" : "e79ee398-1f59-4c96-b12a-8bbfccd52660", + "Body" : "{\r\n \"name\": \"dsk-ef9280906\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-ef9280906\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:14:56.8545381+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"25409f15-a641-4885-bd4e-ff70bb18dc1a\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvd4421528?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvb8337425?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:21:56 GMT", - "content-length" : "322", + "date" : "Mon, 18 May 2020 12:16:00 GMT", + "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b2ff51ab-4218-4964-aa65-01765f22d14a", + "x-ms-correlation-request-id" : "15c41452-7e4b-4730-82e4-89e149af4ad7", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052157Z:b2ff51ab-4218-4964-aa65-01765f22d14a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121601Z:15c41452-7e4b-4730-82e4-89e149af4ad7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b2ff51ab-4218-4964-aa65-01765f22d14a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528\",\"name\":\"rgcomvd4421528\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-04-30T05:21:55.296861600Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "15c41452-7e4b-4730-82e4-89e149af4ad7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425\",\"name\":\"rgcomvb8337425\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T12:15:59.027Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/virtualNetworks/vnet4235153300?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-afd030880?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:22:01 GMT", + "date" : "Mon, 18 May 2020 12:16:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1349", + "content-length" : "254", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", "retry-after" : "0", - "StatusCode" : "201", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c6a0ed19-b3dc-4039-b7e2-eaf7dcd8d937", + "x-ms-correlation-request-id" : "797dbc30-5133-4cd8-8347-3be872f74639", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b0b6efe6-9213-45b4-a4f7-4e24443fcd9a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052202Z:c6a0ed19-b3dc-4039-b7e2-eaf7dcd8d937", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121602Z:797dbc30-5133-4cd8-8347-3be872f74639", "content-type" : "application/json; charset=utf-8", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5c7f338d-820c-4a5a-b088-44fd3754c788?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ed697fc4-f09d-496b-a027-844269f08063", - "Body" : "{\r\n \"name\": \"vnet4235153300\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/virtualNetworks/vnet4235153300\",\r\n \"etag\": \"W/\\\"874e0590-1c0d-4f12-b4c9-60e0714f45e6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a95a578b-b7c2-486b-bf94-59d9606db6aa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/virtualNetworks/vnet4235153300/subnets/subnet1\",\r\n \"etag\": \"W/\\\"874e0590-1c0d-4f12-b4c9-60e0714f45e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ed697fc4-f09d-496b-a027-844269f08063?api-version=2019-06-01" + "x-ms-request-id" : "5c7f338d-820c-4a5a-b088-44fd3754c788", + "Body" : "{\r\n \"name\": \"dsk-afd030880\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5c7f338d-820c-4a5a-b088-44fd3754c788?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-ca2956391?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/virtualNetworks/vnet011103fdef?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:22:02 GMT", + "date" : "Mon, 18 May 2020 12:16:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "254", + "azure-asyncnotification" : "Enabled", + "content-length" : "1349", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "retry-after" : "0", - "StatusCode" : "202", + "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5c965f0c-9996-4474-b07d-142e43f3b5b7", + "x-ms-correlation-request-id" : "5411fa32-a277-4234-9c2e-8245b4a67718", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "3c305720-83ed-4757-a990-be26b7d8edaf", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052203Z:5c965f0c-9996-4474-b07d-142e43f3b5b7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121610Z:5411fa32-a277-4234-9c2e-8245b4a67718", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/eeba5e63-bb33-47a2-ad93-28284c6ca39d?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "eeba5e63-bb33-47a2-ad93-28284c6ca39d", - "Body" : "{\r\n \"name\": \"dsk-ca2956391\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/eeba5e63-bb33-47a2-ad93-28284c6ca39d?api-version=2019-03-01" + "x-ms-request-id" : "4bc50ed9-9499-4fdf-8fe5-156a672caf46", + "Body" : "{\r\n \"name\": \"vnet011103fdef\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/virtualNetworks/vnet011103fdef\",\r\n \"etag\": \"W/\\\"8efcd124-2111-4ede-9e46-826935c483a8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"711ec852-264f-4bf0-95ae-5debf2bdb929\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/virtualNetworks/vnet011103fdef/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8efcd124-2111-4ede-9e46-826935c483a8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4bc50ed9-9499-4fdf-8fe5-156a672caf46?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ed697fc4-f09d-496b-a027-844269f08063?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/5c7f338d-820c-4a5a-b088-44fd3754c788?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:22:32 GMT", + "date" : "Mon, 18 May 2020 12:16:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", + "content-length" : "865", "expires" : "-1", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "x-ms-ratelimit-remaining-subscription-reads" : "11907", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "782337e5-0cf1-4bb1-b206-8723b4d0bf6f", + "x-ms-correlation-request-id" : "30d28ca7-018d-43f5-8e81-4ee390bc9339", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4dc7cdfc-33e8-4ea6-b9e9-df05b0f2025c", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052233Z:782337e5-0cf1-4bb1-b206-8723b4d0bf6f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399987", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121633Z:30d28ca7-018d-43f5-8e81-4ee390bc9339", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2ecbac13-9b72-46ab-8d5f-844e09a0ed4d", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" + "x-ms-request-id" : "56c353a3-003a-4ffb-ba32-cfa36ba1e653", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:16:02.4794042+00:00\",\r\n \"endTime\": \"2020-05-18T12:16:02.6513025+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-afd030880\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-afd030880\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:16:02.4794042+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"89f62dd1-10da-431c-a12f-6808246f5a10\"}}\r\n },\r\n \"name\": \"5c7f338d-820c-4a5a-b088-44fd3754c788\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/eeba5e63-bb33-47a2-ad93-28284c6ca39d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4bc50ed9-9499-4fdf-8fe5-156a672caf46?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:22:33 GMT", + "date" : "Mon, 18 May 2020 12:16:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "808", + "content-length" : "29", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", + "x-ms-ratelimit-remaining-subscription-reads" : "11934", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b891c57-090e-4997-9146-93680d31e51f", + "x-ms-correlation-request-id" : "b25d0a1b-843f-46c2-8385-7110879c2ce1", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "b5174c86-aaf4-4c00-acd2-627c4ed3fc5e", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399984", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052234Z:0b891c57-090e-4997-9146-93680d31e51f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121641Z:b25d0a1b-843f-46c2-8385-7110879c2ce1", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f5414f08-10f5-4f32-9e0e-c0d805f71a8d", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:22:03.0250144+00:00\",\r\n \"endTime\": \"2020-04-30T05:22:03.134414+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-ca2956391\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-ca2956391\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-30T05:22:03.0250144+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"0bb3253c-6332-449a-9dab-4f0cba49872d\"}}\r\n },\r\n \"name\": \"eeba5e63-bb33-47a2-ad93-28284c6ca39d\"\r\n}" + "x-ms-request-id" : "d28576a7-8a8e-44b6-8566-ef06fefddb35", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/virtualNetworks/vnet4235153300?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-afd030880?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:23:03 GMT", + "date" : "Mon, 18 May 2020 12:17:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1351", + "content-length" : "799", "expires" : "-1", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "x-ms-ratelimit-remaining-subscription-reads" : "11943", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "940affd1-f412-4579-8ff7-76fbde52e372", + "x-ms-correlation-request-id" : "c5eacab4-64d3-428e-89cd-b9b1a4130b6f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "be691d44-fdc8-4db7-b099-57b3f062c6c6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052304Z:940affd1-f412-4579-8ff7-76fbde52e372", - "etag" : "W/\"aa9eafc6-ff74-477d-8862-70e97b47f1f2\"", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39980", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121704Z:c5eacab4-64d3-428e-89cd-b9b1a4130b6f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "53469a1b-5d63-4b88-a2ae-6209ec19f9cd", - "Body" : "{\r\n \"name\": \"vnet4235153300\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/virtualNetworks/vnet4235153300\",\r\n \"etag\": \"W/\\\"aa9eafc6-ff74-477d-8862-70e97b47f1f2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a95a578b-b7c2-486b-bf94-59d9606db6aa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/virtualNetworks/vnet4235153300/subnets/subnet1\",\r\n \"etag\": \"W/\\\"aa9eafc6-ff74-477d-8862-70e97b47f1f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "20c42754-51e6-43a2-8010-99f210dc4460", + "Body" : "{\r\n \"name\": \"dsk-afd030880\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-afd030880\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:16:02.4794042+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"89f62dd1-10da-431c-a12f-6808246f5a10\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-ca2956391?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/virtualNetworks/vnet011103fdef?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:23:04 GMT", + "date" : "Mon, 18 May 2020 12:17:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "721", + "content-length" : "1351", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "x-ms-ratelimit-remaining-subscription-reads" : "11919", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60285148-66b3-4e3d-b91b-ed51a42e14c3", + "x-ms-correlation-request-id" : "df7afcfd-e3c5-4225-b031-b11f323507fa", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "fa778b12-898e-4455-9adf-ff135e22b423", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39974", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052305Z:60285148-66b3-4e3d-b91b-ed51a42e14c3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121711Z:df7afcfd-e3c5-4225-b031-b11f323507fa", + "etag" : "W/\"0bcdc88a-1ecc-43dd-8cf8-7d809891f408\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9d4c8483-7c20-421c-852a-ba497cc4b9a8", - "Body" : "{\r\n \"name\": \"dsk-ca2956391\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-ca2956391\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-30T05:22:03.0250144+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"0bb3253c-6332-449a-9dab-4f0cba49872d\"\r\n }\r\n}" + "x-ms-request-id" : "543647c2-2830-4ef2-93a7-ab9d9aa6a603", + "Body" : "{\r\n \"name\": \"vnet011103fdef\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/virtualNetworks/vnet011103fdef\",\r\n \"etag\": \"W/\\\"0bcdc88a-1ecc-43dd-8cf8-7d809891f408\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"711ec852-264f-4bf0-95ae-5debf2bdb929\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/virtualNetworks/vnet011103fdef/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0bcdc88a-1ecc-43dd-8cf8-7d809891f408\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:23:08 GMT", + "date" : "Mon, 18 May 2020 12:17:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1642", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f76bebb5-10e5-4fcc-ad2e-77bcc9ea223e", + "x-ms-correlation-request-id" : "2e6bf012-c483-422f-bd18-4349be277246", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "24eb18ed-38f9-4baa-887a-834b02f1e080", + "x-ms-arm-service-request-id" : "89c8f827-53f8-4918-a841-5f26e2b84341", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052308Z:f76bebb5-10e5-4fcc-ad2e-77bcc9ea223e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121715Z:2e6bf012-c483-422f-bd18-4349be277246", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "83ea766a-b45a-4b54-ba3a-bd3117ed45d0", - "Body" : "{\r\n \"name\": \"nic61439b06766\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766\",\r\n \"etag\": \"W/\\\"4382ea99-cadb-46d1-b412-806ecf7dc2d9\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c513c19f-a716-455e-a272-a58bd547e700\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4382ea99-cadb-46d1-b412-806ecf7dc2d9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/virtualNetworks/vnet4235153300/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rnlvvkocw3vurp2ulhmwa1nwvc.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/83ea766a-b45a-4b54-ba3a-bd3117ed45d0?api-version=2019-06-01" + "x-ms-request-id" : "350c9552-09ce-4626-8a99-514cc3d3c2a8", + "Body" : "{\r\n \"name\": \"nic2851837479b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b\",\r\n \"etag\": \"W/\\\"968992ed-38dd-4b42-8313-ebd5913eb71e\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"482c293c-81d2-46cb-9935-4739e0854d21\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"968992ed-38dd-4b42-8313-ebd5913eb71e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/virtualNetworks/vnet011103fdef/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kleb22kpe1yexfnolxv5fpnzfb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/350c9552-09ce-4626-8a99-514cc3d3c2a8?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:23:11 GMT", + "date" : "Mon, 18 May 2020 12:17:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1642", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7582f565-af11-4800-9054-fe3f75df1575", + "x-ms-correlation-request-id" : "45c5b13c-1e08-4846-8cec-fdb997afaddf", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5a384d3d-785e-45da-b0fe-728e439038dc", + "x-ms-arm-service-request-id" : "88388d3d-f53a-444f-b35e-047205383bbe", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052312Z:7582f565-af11-4800-9054-fe3f75df1575", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121716Z:45c5b13c-1e08-4846-8cec-fdb997afaddf", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0bbcf9a3-6e2b-4142-96a7-256592d990fa", - "Body" : "{\r\n \"name\": \"nic72560e4462d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d\",\r\n \"etag\": \"W/\\\"1725e9c6-eda7-46da-a3c5-09e852d9ba59\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5eff838b-9427-43a6-975f-2f7436052042\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1725e9c6-eda7-46da-a3c5-09e852d9ba59\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/virtualNetworks/vnet4235153300/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rnlvvkocw3vurp2ulhmwa1nwvc.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0bbcf9a3-6e2b-4142-96a7-256592d990fa?api-version=2019-06-01" + "x-ms-request-id" : "c3d2ec28-67a2-4a5a-ac62-73597e4153a8", + "Body" : "{\r\n \"name\": \"nic95158bbe014\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014\",\r\n \"etag\": \"W/\\\"4c140a98-ed02-46d4-b057-da85f42a5e6a\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"412d096b-b8d0-4f0f-8738-0ef54a60e27b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4c140a98-ed02-46d4-b057-da85f42a5e6a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/virtualNetworks/vnet011103fdef/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kleb22kpe1yexfnolxv5fpnzfb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c3d2ec28-67a2-4a5a-ac62-73597e4153a8?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/83ea766a-b45a-4b54-ba3a-bd3117ed45d0?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/350c9552-09ce-4626-8a99-514cc3d3c2a8?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:23:39 GMT", + "date" : "Mon, 18 May 2020 12:17:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "x-ms-ratelimit-remaining-subscription-reads" : "11819", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9865587f-1fc4-44b8-a2af-c23117688932", + "x-ms-correlation-request-id" : "59526bbd-8e88-4949-be38-c880b7943168", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6b0de230-5ae4-40ed-80f3-fad5eafed269", + "x-ms-arm-service-request-id" : "38c10541-d711-401f-b895-43772f89b85a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052340Z:9865587f-1fc4-44b8-a2af-c23117688932", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121746Z:59526bbd-8e88-4949-be38-c880b7943168", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ba9084df-6357-4c2c-b455-9d050d9fa3e1", + "x-ms-request-id" : "a75eab3b-1c5a-4d97-86ae-e6e198df0580", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0bbcf9a3-6e2b-4142-96a7-256592d990fa?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c3d2ec28-67a2-4a5a-ac62-73597e4153a8?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:23:42 GMT", + "date" : "Mon, 18 May 2020 12:17:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", + "x-ms-ratelimit-remaining-subscription-reads" : "11791", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b9e1c35c-2569-41b2-885d-03022d559128", + "x-ms-correlation-request-id" : "288a3ce4-e253-4370-95ab-f43961bd6991", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "010c4e45-7e5f-4f70-9d81-a217931cbf7e", + "x-ms-arm-service-request-id" : "c4d3cdee-1fc3-448e-aca7-f15aa92f0631", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052343Z:b9e1c35c-2569-41b2-885d-03022d559128", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121748Z:288a3ce4-e253-4370-95ab-f43961bd6991", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f60f120f-66b2-4029-bbee-f96f8267f583", + "x-ms-request-id" : "3a6cd335-3ace-4ef3-b64e-2eb51c279bb8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:24:10 GMT", + "date" : "Mon, 18 May 2020 12:18:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1642", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "x-ms-ratelimit-remaining-subscription-reads" : "11902", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b3f78e3d-c517-4484-8954-1ad3175f5056", + "x-ms-correlation-request-id" : "4dc59a26-7a7c-4172-8046-0f92992d2282", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "bef2a60d-f12b-4632-880b-c96754b1789d", + "x-ms-arm-service-request-id" : "5a7acab6-dd0d-41c5-8b99-8f6970bea63a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052411Z:b3f78e3d-c517-4484-8954-1ad3175f5056", - "etag" : "W/\"4382ea99-cadb-46d1-b412-806ecf7dc2d9\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121817Z:4dc59a26-7a7c-4172-8046-0f92992d2282", + "etag" : "W/\"968992ed-38dd-4b42-8313-ebd5913eb71e\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "83992a3f-366d-4024-99db-d946d24f2f40", - "Body" : "{\r\n \"name\": \"nic61439b06766\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766\",\r\n \"etag\": \"W/\\\"4382ea99-cadb-46d1-b412-806ecf7dc2d9\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c513c19f-a716-455e-a272-a58bd547e700\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4382ea99-cadb-46d1-b412-806ecf7dc2d9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/virtualNetworks/vnet4235153300/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rnlvvkocw3vurp2ulhmwa1nwvc.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "8c894e17-cdcc-4a87-8177-96cb39731de8", + "Body" : "{\r\n \"name\": \"nic2851837479b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b\",\r\n \"etag\": \"W/\\\"968992ed-38dd-4b42-8313-ebd5913eb71e\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"482c293c-81d2-46cb-9935-4739e0854d21\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"968992ed-38dd-4b42-8313-ebd5913eb71e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/virtualNetworks/vnet011103fdef/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kleb22kpe1yexfnolxv5fpnzfb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:24:14 GMT", + "date" : "Mon, 18 May 2020 12:18:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1642", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "x-ms-ratelimit-remaining-subscription-reads" : "11905", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "16ad7ae3-99bf-4670-a858-5bea787e81c4", + "x-ms-correlation-request-id" : "f28b1ead-60f8-4baa-b98e-fc1bf80bbb53", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3f619183-e1d0-4f90-996d-08bdc0fee4d8", + "x-ms-arm-service-request-id" : "05d0f8a4-1934-4da4-a248-60ce77189f22", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052414Z:16ad7ae3-99bf-4670-a858-5bea787e81c4", - "etag" : "W/\"1725e9c6-eda7-46da-a3c5-09e852d9ba59\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121818Z:f28b1ead-60f8-4baa-b98e-fc1bf80bbb53", + "etag" : "W/\"4c140a98-ed02-46d4-b057-da85f42a5e6a\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8ac265b1-aebc-405b-a543-9dcbe9b80bc0", - "Body" : "{\r\n \"name\": \"nic72560e4462d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d\",\r\n \"etag\": \"W/\\\"1725e9c6-eda7-46da-a3c5-09e852d9ba59\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5eff838b-9427-43a6-975f-2f7436052042\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1725e9c6-eda7-46da-a3c5-09e852d9ba59\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/virtualNetworks/vnet4235153300/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rnlvvkocw3vurp2ulhmwa1nwvc.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "8c02b4a2-9a9c-48c8-a73f-9515404bf742", + "Body" : "{\r\n \"name\": \"nic95158bbe014\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014\",\r\n \"etag\": \"W/\\\"4c140a98-ed02-46d4-b057-da85f42a5e6a\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"412d096b-b8d0-4f0f-8738-0ef54a60e27b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4c140a98-ed02-46d4-b057-da85f42a5e6a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/virtualNetworks/vnet011103fdef/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kleb22kpe1yexfnolxv5fpnzfb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/lvma6341867eb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/lvmf481923080?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:24:18 GMT", + "date" : "Mon, 18 May 2020 12:18:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1489", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0073fd49-1d72-4e3f-b839-70a3038f0b9d", + "x-ms-correlation-request-id" : "8ba6772e-cfe6-4f29-bf69-4310dfc1426f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1195", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052418Z:0073fd49-1d72-4e3f-b839-70a3038f0b9d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1191", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121822Z:8ba6772e-cfe6-4f29-bf69-4310dfc1426f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2be47110-0bc7-4c41-b107-a0dc8c9be027", - "Body" : "{\r\n \"name\": \"lvma6341867eb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/lvma6341867eb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f40bf06a-8430-4550-bb41-c5ea8172517f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvma6341867eb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2be47110-0bc7-4c41-b107-a0dc8c9be027?api-version=2019-03-01" + "x-ms-request-id" : "b6427500-f326-4078-9b55-69f1493b6cde", + "Body" : "{\r\n \"name\": \"lvmf481923080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/lvmf481923080\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9bff9fd6-9ddf-4098-add3-b82c5c363540\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvmf481923080\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b6427500-f326-4078-9b55-69f1493b6cde?api-version=2019-03-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/wvm37d17563a6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/wvme2699149c9?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:24:22 GMT", + "date" : "Mon, 18 May 2020 12:18:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "2700", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "29d16299-522a-41da-b2b1-af28853044a8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1194", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052422Z:29d16299-522a-41da-b2b1-af28853044a8", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e17e441b-9ffe-41fa-bf5d-a8778904bb10", - "Body" : "{\r\n \"name\": \"wvm37d17563a6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/wvm37d17563a6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2feaec5b-47c4-49a5-8f1e-efe5c1c5fad1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-ca2956391\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-ca2956391\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-92a51041c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-92a51041c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm37d17563a6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e17e441b-9ffe-41fa-bf5d-a8778904bb10?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2be47110-0bc7-4c41-b107-a0dc8c9be027?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 30 Apr 2020 05:24:49 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a3e058d8-cc94-4803-9eff-12202a54691d", + "x-ms-correlation-request-id" : "ad7a891f-a259-4f61-906f-8244d9c708ce", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29962", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052450Z:a3e058d8-cc94-4803-9eff-12202a54691d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;230,Microsoft.Compute/PutVM30Min;1189", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121823Z:ad7a891f-a259-4f61-906f-8244d9c708ce", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "631e51e3-9828-41b5-902a-970ab6312f73", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:24:17.1576697+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2be47110-0bc7-4c41-b107-a0dc8c9be027\"\r\n}" + "x-ms-request-id" : "c764d380-77c7-4a64-870e-7c8787321720", + "Body" : "{\r\n \"name\": \"wvme2699149c9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/wvme2699149c9\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ce4b9f33-50eb-4d9a-91f6-81f0a8278563\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-afd030880\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-afd030880\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-ef9280906\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-ef9280906\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvme2699149c9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c764d380-77c7-4a64-870e-7c8787321720?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e17e441b-9ffe-41fa-bf5d-a8778904bb10?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b6427500-f326-4078-9b55-69f1493b6cde?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:24:53 GMT", + "date" : "Mon, 18 May 2020 12:18:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", + "x-ms-ratelimit-remaining-subscription-reads" : "11898", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c2045015-44e4-4372-8507-f7c8adf0457d", + "x-ms-correlation-request-id" : "2a03c483-059f-4f90-bcbd-e2a6df05cdc4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29961", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052453Z:c2045015-44e4-4372-8507-f7c8adf0457d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29975", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121853Z:2a03c483-059f-4f90-bcbd-e2a6df05cdc4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "12a75c8a-fd25-42a5-a4e1-d3a99ea155b8", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:24:20.5951902+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e17e441b-9ffe-41fa-bf5d-a8778904bb10\"\r\n}" + "x-ms-request-id" : "02f5b206-278e-463f-b1ca-d1e530833e3f", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:21.3599178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6427500-f326-4078-9b55-69f1493b6cde\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2be47110-0bc7-4c41-b107-a0dc8c9be027?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c764d380-77c7-4a64-870e-7c8787321720?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:25:20 GMT", + "date" : "Mon, 18 May 2020 12:18:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", + "x-ms-ratelimit-remaining-subscription-reads" : "11751", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7603418a-11f4-490a-affe-b4e09b2c5d42", + "x-ms-correlation-request-id" : "62beb2fa-9082-471d-9f47-c97bac0281f5", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052521Z:7603418a-11f4-490a-affe-b4e09b2c5d42", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29973", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121854Z:62beb2fa-9082-471d-9f47-c97bac0281f5", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8de1d3a4-535c-4992-8db6-49f7a323b53c", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:24:17.1576697+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2be47110-0bc7-4c41-b107-a0dc8c9be027\"\r\n}" + "x-ms-request-id" : "369d4259-0737-430e-9982-6053ff8ccc17", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:21.6411994+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c764d380-77c7-4a64-870e-7c8787321720\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e17e441b-9ffe-41fa-bf5d-a8778904bb10?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b6427500-f326-4078-9b55-69f1493b6cde?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:25:23 GMT", + "date" : "Mon, 18 May 2020 12:19:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "x-ms-ratelimit-remaining-subscription-reads" : "11830", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ff6ae6e2-3c9c-4f16-8d9f-7685e097ce9c", + "x-ms-correlation-request-id" : "db327ec0-114d-440c-8259-e11f1b67e49c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29971", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052524Z:ff6ae6e2-3c9c-4f16-8d9f-7685e097ce9c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29961", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121923Z:db327ec0-114d-440c-8259-e11f1b67e49c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "03dfb762-d97b-427d-a2ae-62f4e839d63b", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:24:20.5951902+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e17e441b-9ffe-41fa-bf5d-a8778904bb10\"\r\n}" + "x-ms-request-id" : "5a4f0f4d-a795-4d82-b6d8-f2e65c897219", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:21.3599178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6427500-f326-4078-9b55-69f1493b6cde\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2be47110-0bc7-4c41-b107-a0dc8c9be027?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c764d380-77c7-4a64-870e-7c8787321720?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:25:51 GMT", + "date" : "Mon, 18 May 2020 12:19:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", + "x-ms-ratelimit-remaining-subscription-reads" : "11842", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d1c8cee1-e682-486b-9174-99b407c6229b", + "x-ms-correlation-request-id" : "37f75f10-0f0a-446c-a645-607fb500e918", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29969", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052552Z:d1c8cee1-e682-486b-9174-99b407c6229b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29959", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121924Z:37f75f10-0f0a-446c-a645-607fb500e918", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b2113fe2-551e-43af-ad2e-ef89a9ee34eb", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:24:17.1576697+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2be47110-0bc7-4c41-b107-a0dc8c9be027\"\r\n}" + "x-ms-request-id" : "d040f781-9f95-474b-8758-8aa6eb50e40a", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:21.6411994+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c764d380-77c7-4a64-870e-7c8787321720\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e17e441b-9ffe-41fa-bf5d-a8778904bb10?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b6427500-f326-4078-9b55-69f1493b6cde?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:25:53 GMT", + "date" : "Mon, 18 May 2020 12:19:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "x-ms-ratelimit-remaining-subscription-reads" : "11750", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6d4c1da2-5d7b-44cd-a582-43613c3c328b", + "x-ms-correlation-request-id" : "195cb4d1-130a-4bc4-9046-3625109e38ef", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052554Z:6d4c1da2-5d7b-44cd-a582-43613c3c328b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29947", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121954Z:195cb4d1-130a-4bc4-9046-3625109e38ef", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a6100cb5-6128-4ef3-9754-426a82be8a5d", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:24:20.5951902+00:00\",\r\n \"endTime\": \"2020-04-30T05:25:33.9077251+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e17e441b-9ffe-41fa-bf5d-a8778904bb10\"\r\n}" + "x-ms-request-id" : "e0a1dec0-f23c-459a-a18d-2bced2768906", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:21.3599178+00:00\",\r\n \"endTime\": \"2020-05-18T12:19:24.1412489+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b6427500-f326-4078-9b55-69f1493b6cde\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2be47110-0bc7-4c41-b107-a0dc8c9be027?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c764d380-77c7-4a64-870e-7c8787321720?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:26:22 GMT", + "date" : "Mon, 18 May 2020 12:19:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", + "x-ms-ratelimit-remaining-subscription-reads" : "11749", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "29f6334d-8275-4d3e-8f9b-ffc84426dc69", + "x-ms-correlation-request-id" : "9f39933c-84f2-4c45-9d82-e034fc3e99df", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29966", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052623Z:29f6334d-8275-4d3e-8f9b-ffc84426dc69", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29945", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121954Z:9f39933c-84f2-4c45-9d82-e034fc3e99df", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "60f55565-1cbb-4ec0-a348-0797b262ebd9", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:24:17.1576697+00:00\",\r\n \"endTime\": \"2020-04-30T05:25:54.5035049+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2be47110-0bc7-4c41-b107-a0dc8c9be027\"\r\n}" + "x-ms-request-id" : "6d8d1338-23a9-4f08-a069-666951fdbc51", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:21.6411994+00:00\",\r\n \"endTime\": \"2020-05-18T12:19:32.2037544+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c764d380-77c7-4a64-870e-7c8787321720\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/wvm37d17563a6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/lvmf481923080?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:26:25 GMT", + "date" : "Mon, 18 May 2020 12:20:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3235", + "content-length" : "1758", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11835", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9d1d20f0-7b53-4b9d-a9cf-a053f32ecc57", + "x-ms-correlation-request-id" : "3519ae48-3bdf-45c0-9621-1aff89bb5539", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31986", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052626Z:9d1d20f0-7b53-4b9d-a9cf-a053f32ecc57", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3958,Microsoft.Compute/LowCostGet30Min;31958", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122024Z:3519ae48-3bdf-45c0-9621-1aff89bb5539", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d2cbbee1-6c64-40d2-bdc9-834489f910c4", - "Body" : "{\r\n \"name\": \"wvm37d17563a6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/wvm37d17563a6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2feaec5b-47c4-49a5-8f1e-efe5c1c5fad1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm37d17563a6_OsDisk_1_bbaf4d1ac2f3488f9a68651454498358\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/wvm37d17563a6_OsDisk_1_bbaf4d1ac2f3488f9a68651454498358\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-ca2956391\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-ca2956391\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-92a51041c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-92a51041c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm37d17563a6_disk4_06f438a4d07e48ffa84a6c54d3206f37\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/wvm37d17563a6_disk4_06f438a4d07e48ffa84a6c54d3206f37\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm37d17563a6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "7a29d991-e7f9-41f3-ac56-361388e6d244", + "Body" : "{\r\n \"name\": \"lvmf481923080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/lvmf481923080\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9bff9fd6-9ddf-4098-add3-b82c5c363540\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvmf481923080_OsDisk_1_1b94673a9a8c43cf93a52ac298daf667\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/lvmf481923080_OsDisk_1_1b94673a9a8c43cf93a52ac298daf667\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvmf481923080\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/lvma6341867eb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/wvme2699149c9?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:26:54 GMT", + "date" : "Mon, 18 May 2020 12:20:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1758", + "content-length" : "3235", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", + "x-ms-ratelimit-remaining-subscription-reads" : "11884", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3b76e246-898a-400d-988c-8b463800cbde", + "x-ms-correlation-request-id" : "08086294-1a11-4d25-bf24-d6e15613a775", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31985", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052654Z:3b76e246-898a-400d-988c-8b463800cbde", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3956,Microsoft.Compute/LowCostGet30Min;31956", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122025Z:08086294-1a11-4d25-bf24-d6e15613a775", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "de3047f6-2578-4f9e-8705-e9ffdabb4c28", - "Body" : "{\r\n \"name\": \"lvma6341867eb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/lvma6341867eb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f40bf06a-8430-4550-bb41-c5ea8172517f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvma6341867eb_OsDisk_1_61c5eb7c2b1345ad95116aa7cdb824d8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/lvma6341867eb_OsDisk_1_61c5eb7c2b1345ad95116aa7cdb824d8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvma6341867eb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "57543c51-a0d4-4591-8c5f-5cb9db77bb0b", + "Body" : "{\r\n \"name\": \"wvme2699149c9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/wvme2699149c9\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ce4b9f33-50eb-4d9a-91f6-81f0a8278563\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvme2699149c9_OsDisk_1_80bb13fd94784a3ab9e2c77da0d280fe\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/wvme2699149c9_OsDisk_1_80bb13fd94784a3ab9e2c77da0d280fe\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-afd030880\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-afd030880\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-ef9280906\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-ef9280906\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvme2699149c9_disk4_f3f954b9dc8f457d996119ec330639b8\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/wvme2699149c9_disk4_f3f954b9dc8f457d996119ec330639b8\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvme2699149c9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/lvma6341867eb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/wvme2699149c9?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:26:57 GMT", + "date" : "Mon, 18 May 2020 12:20:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "1821", + "content-length" : "3504", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1170", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1ab9cefb-7948-463b-a398-3b658983bdab", + "x-ms-correlation-request-id" : "95c08583-6d7d-4d91-9137-94d1d8240c4d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052658Z:1ab9cefb-7948-463b-a398-3b658983bdab", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;230,Microsoft.Compute/PutVM30Min;1183", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122028Z:95c08583-6d7d-4d91-9137-94d1d8240c4d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b4909bde-94ed-4f6e-8235-e39ba9d02b6a", - "Body" : "{\r\n \"name\": \"lvma6341867eb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/lvma6341867eb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks-on-linux\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"f40bf06a-8430-4550-bb41-c5ea8172517f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvma6341867eb_OsDisk_1_61c5eb7c2b1345ad95116aa7cdb824d8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/lvma6341867eb_OsDisk_1_61c5eb7c2b1345ad95116aa7cdb824d8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvma6341867eb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b4909bde-94ed-4f6e-8235-e39ba9d02b6a?api-version=2019-03-01" + "x-ms-request-id" : "e64d3611-5643-4f22-b499-a6a6ddf790cc", + "Body" : "{\r\n \"name\": \"wvme2699149c9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/wvme2699149c9\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ce4b9f33-50eb-4d9a-91f6-81f0a8278563\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvme2699149c9_OsDisk_1_80bb13fd94784a3ab9e2c77da0d280fe\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/wvme2699149c9_OsDisk_1_80bb13fd94784a3ab9e2c77da0d280fe\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-afd030880\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-afd030880\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-ef9280906\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-ef9280906\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvme2699149c9_disk4_f3f954b9dc8f457d996119ec330639b8\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/wvme2699149c9_disk4_f3f954b9dc8f457d996119ec330639b8\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvme2699149c9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e64d3611-5643-4f22-b499-a6a6ddf790cc?api-version=2019-03-01" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/wvm37d17563a6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/lvmf481923080?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:27:00 GMT", + "date" : "Mon, 18 May 2020 12:20:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "3504", + "content-length" : "1821", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a43b1a8c-4c79-4b96-8e34-c802a653b58f", + "x-ms-correlation-request-id" : "a8952e7d-b3d5-4954-b860-458196f6f505", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052700Z:a43b1a8c-4c79-4b96-8e34-c802a653b58f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1184", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122030Z:a8952e7d-b3d5-4954-b860-458196f6f505", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "767fa6a1-865d-460b-8672-49532e4fd909", - "Body" : "{\r\n \"name\": \"wvm37d17563a6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/wvm37d17563a6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2feaec5b-47c4-49a5-8f1e-efe5c1c5fad1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm37d17563a6_OsDisk_1_bbaf4d1ac2f3488f9a68651454498358\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/wvm37d17563a6_OsDisk_1_bbaf4d1ac2f3488f9a68651454498358\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-ca2956391\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-ca2956391\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-92a51041c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-92a51041c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm37d17563a6_disk4_06f438a4d07e48ffa84a6c54d3206f37\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/wvm37d17563a6_disk4_06f438a4d07e48ffa84a6c54d3206f37\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm37d17563a6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/767fa6a1-865d-460b-8672-49532e4fd909?api-version=2019-03-01" + "x-ms-request-id" : "a570927d-5f34-4519-a3b8-710b07b710ca", + "Body" : "{\r\n \"name\": \"lvmf481923080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/lvmf481923080\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks-on-linux\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9bff9fd6-9ddf-4098-add3-b82c5c363540\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvmf481923080_OsDisk_1_1b94673a9a8c43cf93a52ac298daf667\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/lvmf481923080_OsDisk_1_1b94673a9a8c43cf93a52ac298daf667\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvmf481923080\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a570927d-5f34-4519-a3b8-710b07b710ca?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/lvma6341867eb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/wvme2699149c9?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:27:28 GMT", + "date" : "Mon, 18 May 2020 12:20:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1822", + "content-length" : "3771", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "x-ms-ratelimit-remaining-subscription-reads" : "11903", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c132f0e8-e761-4bd0-bedb-1ce56b34cb1c", + "x-ms-correlation-request-id" : "470174ee-d5bc-4ff2-a2d5-d1f45dd4f52d", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31980", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052729Z:c132f0e8-e761-4bd0-bedb-1ce56b34cb1c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3937,Microsoft.Compute/LowCostGet30Min;31937", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122059Z:470174ee-d5bc-4ff2-a2d5-d1f45dd4f52d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "711ebde3-030e-4ee3-8e22-93bba87d2b1a", - "Body" : "{\r\n \"name\": \"lvma6341867eb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/lvma6341867eb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks-on-linux\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"f40bf06a-8430-4550-bb41-c5ea8172517f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvma6341867eb_OsDisk_1_61c5eb7c2b1345ad95116aa7cdb824d8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/lvma6341867eb_OsDisk_1_61c5eb7c2b1345ad95116aa7cdb824d8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvma6341867eb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "50c56473-5f3b-4eee-bc36-838dbbb1a64a", + "Body" : "{\r\n \"name\": \"wvme2699149c9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/wvme2699149c9\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ce4b9f33-50eb-4d9a-91f6-81f0a8278563\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvme2699149c9_OsDisk_1_80bb13fd94784a3ab9e2c77da0d280fe\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/wvme2699149c9_OsDisk_1_80bb13fd94784a3ab9e2c77da0d280fe\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-afd030880\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-afd030880\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-ef9280906\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-ef9280906\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvme2699149c9_disk4_f3f954b9dc8f457d996119ec330639b8\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/wvme2699149c9_disk4_f3f954b9dc8f457d996119ec330639b8\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvme2699149c9_disk5_0b45ff629c594fa7bebbe2e46d2ed4e2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/wvme2699149c9_disk5_0b45ff629c594fa7bebbe2e46d2ed4e2\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvme2699149c9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/wvm37d17563a6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/lvmf481923080?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:27:31 GMT", + "date" : "Mon, 18 May 2020 12:20:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3771", + "content-length" : "1822", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "x-ms-ratelimit-remaining-subscription-reads" : "11878", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f19e5d07-c1dc-4403-8762-636685a5b5ab", + "x-ms-correlation-request-id" : "22e68db4-2f4b-40fe-92d7-96c457a813ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31979", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052731Z:f19e5d07-c1dc-4403-8762-636685a5b5ab", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3939,Microsoft.Compute/LowCostGet30Min;31935", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122100Z:22e68db4-2f4b-40fe-92d7-96c457a813ac", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9b5d7ab1-04d6-4f61-b312-e6258c33dc76", - "Body" : "{\r\n \"name\": \"wvm37d17563a6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/wvm37d17563a6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2feaec5b-47c4-49a5-8f1e-efe5c1c5fad1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm37d17563a6_OsDisk_1_bbaf4d1ac2f3488f9a68651454498358\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/wvm37d17563a6_OsDisk_1_bbaf4d1ac2f3488f9a68651454498358\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-ca2956391\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-ca2956391\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-92a51041c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-92a51041c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm37d17563a6_disk4_06f438a4d07e48ffa84a6c54d3206f37\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/wvm37d17563a6_disk4_06f438a4d07e48ffa84a6c54d3206f37\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvm37d17563a6_disk5_d632d3c9f97b4b97a526842567dcfbb2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/wvm37d17563a6_disk5_d632d3c9f97b4b97a526842567dcfbb2\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm37d17563a6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "dbe1f168-c5a4-42f3-aa04-699064cc81ef", + "Body" : "{\r\n \"name\": \"lvmf481923080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/lvmf481923080\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks-on-linux\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9bff9fd6-9ddf-4098-add3-b82c5c363540\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvmf481923080_OsDisk_1_1b94673a9a8c43cf93a52ac298daf667\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/lvmf481923080_OsDisk_1_1b94673a9a8c43cf93a52ac298daf667\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvmf481923080\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:28:02 GMT", + "date" : "Mon, 18 May 2020 12:21:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "6197", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11729", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "37c759a7-42a1-4459-9e32-2a69bdb686e7", + "x-ms-correlation-request-id" : "abe30b4f-02b9-4ca9-ae6f-3e14f1f1f8fb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;698", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052803Z:37c759a7-42a1-4459-9e32-2a69bdb686e7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;699", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122131Z:abe30b4f-02b9-4ca9-ae6f-3e14f1f1f8fb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bd584f72-d4e3-44fc-98e1-f8e3f89c11e2", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"lvma6341867eb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/lvma6341867eb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks-on-linux\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"f40bf06a-8430-4550-bb41-c5ea8172517f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvma6341867eb_OsDisk_1_61c5eb7c2b1345ad95116aa7cdb824d8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/lvma6341867eb_OsDisk_1_61c5eb7c2b1345ad95116aa7cdb824d8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvma6341867eb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic61439b06766\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"wvm37d17563a6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/wvm37d17563a6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2feaec5b-47c4-49a5-8f1e-efe5c1c5fad1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm37d17563a6_OsDisk_1_bbaf4d1ac2f3488f9a68651454498358\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/wvm37d17563a6_OsDisk_1_bbaf4d1ac2f3488f9a68651454498358\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-ca2956391\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-ca2956391\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-92a51041c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/disks/dsk-92a51041c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm37d17563a6_disk4_06f438a4d07e48ffa84a6c54d3206f37\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/wvm37d17563a6_disk4_06f438a4d07e48ffa84a6c54d3206f37\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvm37d17563a6_disk5_d632d3c9f97b4b97a526842567dcfbb2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVD4421528/providers/Microsoft.Compute/disks/wvm37d17563a6_disk5_d632d3c9f97b4b97a526842567dcfbb2\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm37d17563a6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Network/networkInterfaces/nic72560e4462d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" + "x-ms-request-id" : "96902ac8-69b4-478f-8423-6297c77f624d", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"lvmf481923080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/lvmf481923080\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks-on-linux\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9bff9fd6-9ddf-4098-add3-b82c5c363540\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvmf481923080_OsDisk_1_1b94673a9a8c43cf93a52ac298daf667\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/lvmf481923080_OsDisk_1_1b94673a9a8c43cf93a52ac298daf667\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvmf481923080\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic95158bbe014\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"wvme2699149c9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/wvme2699149c9\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ce4b9f33-50eb-4d9a-91f6-81f0a8278563\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvme2699149c9_OsDisk_1_80bb13fd94784a3ab9e2c77da0d280fe\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/wvme2699149c9_OsDisk_1_80bb13fd94784a3ab9e2c77da0d280fe\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-afd030880\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-afd030880\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-ef9280906\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/disks/dsk-ef9280906\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvme2699149c9_disk4_f3f954b9dc8f457d996119ec330639b8\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/wvme2699149c9_disk4_f3f954b9dc8f457d996119ec330639b8\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvme2699149c9_disk5_0b45ff629c594fa7bebbe2e46d2ed4e2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVB8337425/providers/Microsoft.Compute/disks/wvme2699149c9_disk5_0b45ff629c594fa7bebbe2e46d2ed4e2\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvme2699149c9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Network/networkInterfaces/nic2851837479b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/wvm37d17563a6?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/lvmf481923080?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:28:04 GMT", + "date" : "Mon, 18 May 2020 12:21:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "0", @@ -876,656 +851,581 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4a116c2c-b24f-466f-a3b0-aaafdf31b5fd", + "x-ms-correlation-request-id" : "ac8eda65-58e0-494b-b281-9d88409a98a9", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052804Z:4a116c2c-b24f-466f-a3b0-aaafdf31b5fd", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1197", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122133Z:ac8eda65-58e0-494b-b281-9d88409a98a9", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "585eb50c-2dc7-4354-b28d-c976b1bf3367", + "x-ms-request-id" : "12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f?api-version=2019-03-01" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvd4421528/providers/Microsoft.Compute/virtualMachines/lvma6341867eb?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvb8337425/providers/Microsoft.Compute/virtualMachines/wvme2699149c9?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:28:05 GMT", + "date" : "Mon, 18 May 2020 12:21:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "37308a8b-5572-4164-ae1f-a1c995d67c65", + "x-ms-correlation-request-id" : "a070bd6a-81b1-4eec-a2b9-096a8d511368", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1196", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052805Z:37308a8b-5572-4164-ae1f-a1c995d67c65", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;236,Microsoft.Compute/DeleteVM30Min;1196", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122133Z:a070bd6a-81b1-4eec-a2b9-096a8d511368", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e8814460-c44d-4cb1-8c58-5c72347de107?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "7e834cd3-1800-47ab-8014-150792914e92", + "x-ms-request-id" : "e8814460-c44d-4cb1-8c58-5c72347de107", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 30 Apr 2020 05:28:34 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "23c04036-5782-424e-829e-1c5fc606ef3c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29963", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052835Z:23c04036-5782-424e-829e-1c5fc606ef3c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "907a6569-9916-4663-96af-39df67722810", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:04.6735555+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"585eb50c-2dc7-4354-b28d-c976b1bf3367\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 30 Apr 2020 05:28:35 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ec46561e-d126-4cdc-afd9-14e16c06d6c3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29962", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052835Z:ec46561e-d126-4cdc-afd9-14e16c06d6c3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "34d63538-19e6-4da5-801b-52bdc3e3e488", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:05.0954307+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e834cd3-1800-47ab-8014-150792914e92\"\r\n}" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e8814460-c44d-4cb1-8c58-5c72347de107?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e8814460-c44d-4cb1-8c58-5c72347de107?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:29:06 GMT", + "date" : "Mon, 18 May 2020 12:22:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "de260404-c9f5-4960-9a83-9400a5c30781", + "x-ms-correlation-request-id" : "0e7df116-9ea7-4d3c-bb42-0833ebbd3899", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29961", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052906Z:de260404-c9f5-4960-9a83-9400a5c30781", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29916", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122203Z:0e7df116-9ea7-4d3c-bb42-0833ebbd3899", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "12183b8e-e92f-4703-b972-2e3f2e99a8e1", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:05.0954307+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e834cd3-1800-47ab-8014-150792914e92\"\r\n}" + "x-ms-request-id" : "fdf72404-9485-449b-bb1b-9dea1f12a268", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.1257018+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8814460-c44d-4cb1-8c58-5c72347de107\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:29:06 GMT", + "date" : "Mon, 18 May 2020 12:22:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11827", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "439ee647-5392-43b1-b801-074ad561dd8b", + "x-ms-correlation-request-id" : "7d5a198d-f24c-42b2-a7f3-e632f68a4459", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29960", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052906Z:439ee647-5392-43b1-b801-074ad561dd8b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29915", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122203Z:7d5a198d-f24c-42b2-a7f3-e632f68a4459", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7182fa66-a610-4905-8a4d-60e5f635f369", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:04.6735555+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"585eb50c-2dc7-4354-b28d-c976b1bf3367\"\r\n}" + "x-ms-request-id" : "699c2420-5e43-4a21-8239-3d2f263b30f4", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.0006971+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e8814460-c44d-4cb1-8c58-5c72347de107?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:29:37 GMT", + "date" : "Mon, 18 May 2020 12:22:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11825", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "07594a8c-e76c-4fe0-bb1f-fa52d4f71038", + "x-ms-correlation-request-id" : "2d484c87-2abe-4c2f-804f-fcf12837c152", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29959", - "x-ms-routing-request-id" : "JAPANEAST:20200430T052937Z:07594a8c-e76c-4fe0-bb1f-fa52d4f71038", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29905", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122234Z:2d484c87-2abe-4c2f-804f-fcf12837c152", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e5350667-4cd1-4af3-9631-dd86d05bdc08", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:05.0954307+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e834cd3-1800-47ab-8014-150792914e92\"\r\n}" + "x-ms-request-id" : "f5c827f7-b930-4132-b6e0-80dae903cb22", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.1257018+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8814460-c44d-4cb1-8c58-5c72347de107\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:29:37 GMT", + "date" : "Mon, 18 May 2020 12:22:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "x-ms-ratelimit-remaining-subscription-reads" : "11865", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "30f6c240-f1b7-4b74-919d-147b4f8bce89", + "x-ms-correlation-request-id" : "00ce73e5-c1d7-473b-97d0-02002949f668", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29958", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T052938Z:30f6c240-f1b7-4b74-919d-147b4f8bce89", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29904", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122234Z:00ce73e5-c1d7-473b-97d0-02002949f668", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7eac4e22-91e7-4217-a43a-9d30705d5a83", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:04.6735555+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"585eb50c-2dc7-4354-b28d-c976b1bf3367\"\r\n}" + "x-ms-request-id" : "d3acf411-b627-48d4-b9a1-5702f6022874", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.0006971+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e8814460-c44d-4cb1-8c58-5c72347de107?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:30:08 GMT", + "date" : "Mon, 18 May 2020 12:23:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11688", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "26785ebe-2512-4ef6-b4eb-e1760c15b7ef", + "x-ms-correlation-request-id" : "350654f1-59c4-409b-93ec-b5cc2d3f1b2a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053009Z:26785ebe-2512-4ef6-b4eb-e1760c15b7ef", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29888", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122304Z:350654f1-59c4-409b-93ec-b5cc2d3f1b2a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3026e837-31eb-4b0e-a1ee-037aaed64a4b", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:05.0954307+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e834cd3-1800-47ab-8014-150792914e92\"\r\n}" + "x-ms-request-id" : "65718c31-e783-429c-a45b-b41158f297a0", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.1257018+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8814460-c44d-4cb1-8c58-5c72347de107\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:30:09 GMT", + "date" : "Mon, 18 May 2020 12:23:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11883", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "51246202-4ab7-46d9-8f97-67a94d8e8a3e", + "x-ms-correlation-request-id" : "0b17f07f-033d-4eec-a24b-731c32857a5a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29971", - "x-ms-routing-request-id" : "JAPANEAST:20200430T053009Z:51246202-4ab7-46d9-8f97-67a94d8e8a3e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29887", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122304Z:0b17f07f-033d-4eec-a24b-731c32857a5a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fd02bda3-d7ea-4a9d-b82a-2b5c84ec7df9", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:04.6735555+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"585eb50c-2dc7-4354-b28d-c976b1bf3367\"\r\n}" + "x-ms-request-id" : "c003db74-8dba-48df-8ef2-872156662f00", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.0006971+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e8814460-c44d-4cb1-8c58-5c72347de107?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:30:39 GMT", + "date" : "Mon, 18 May 2020 12:23:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", + "x-ms-ratelimit-remaining-subscription-reads" : "11761", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "caaac9c1-442d-4e28-8c5f-787a8acfcd9d", + "x-ms-correlation-request-id" : "b6ed933c-d502-4e1b-be12-349f774f2a43", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29970", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053040Z:caaac9c1-442d-4e28-8c5f-787a8acfcd9d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29869", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122334Z:b6ed933c-d502-4e1b-be12-349f774f2a43", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "87bc2136-b8ff-44c9-bec5-f41b50350543", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:05.0954307+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e834cd3-1800-47ab-8014-150792914e92\"\r\n}" + "x-ms-request-id" : "efa292ec-64b6-43d9-9d9c-737613ad0c9d", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.1257018+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8814460-c44d-4cb1-8c58-5c72347de107\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:30:40 GMT", + "date" : "Mon, 18 May 2020 12:23:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11794", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8f24f7fd-e270-4465-8dbf-e54ee1f2a046", + "x-ms-correlation-request-id" : "98728609-8d0b-4bef-b0e0-5637ed320451", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29969", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053040Z:8f24f7fd-e270-4465-8dbf-e54ee1f2a046", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14938,Microsoft.Compute/GetOperation30Min;29868", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122335Z:98728609-8d0b-4bef-b0e0-5637ed320451", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "96ac1f7f-f16b-4e58-99a9-675488d5c03a", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:04.6735555+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"585eb50c-2dc7-4354-b28d-c976b1bf3367\"\r\n}" + "x-ms-request-id" : "07ebca13-03e7-4dbb-9a3e-098cb74185d7", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.0006971+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e8814460-c44d-4cb1-8c58-5c72347de107?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:31:10 GMT", + "date" : "Mon, 18 May 2020 12:24:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "x-ms-ratelimit-remaining-subscription-reads" : "11684", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a9084376-0eeb-4fac-96f0-922470ca3671", + "x-ms-correlation-request-id" : "4ff8aeb3-e512-4a34-8df7-857b4d46b7eb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "JAPANEAST:20200430T053110Z:a9084376-0eeb-4fac-96f0-922470ca3671", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29853", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122405Z:4ff8aeb3-e512-4a34-8df7-857b4d46b7eb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6f8e113c-2884-4266-b226-7adb915e72b7", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:05.0954307+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e834cd3-1800-47ab-8014-150792914e92\"\r\n}" + "x-ms-request-id" : "dbb502f1-625b-426c-b695-071c80915970", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.1257018+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8814460-c44d-4cb1-8c58-5c72347de107\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:31:11 GMT", + "date" : "Mon, 18 May 2020 12:24:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11716", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6acdba02-39d8-420e-ba0e-f6bf6bc70f03", + "x-ms-correlation-request-id" : "580ac52c-944f-4ea2-9bf5-84641953d9a6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29967", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053112Z:6acdba02-39d8-420e-ba0e-f6bf6bc70f03", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14929,Microsoft.Compute/GetOperation30Min;29852", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122405Z:580ac52c-944f-4ea2-9bf5-84641953d9a6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b3058d53-291c-4e58-9b0a-3d77b3a84bdd", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:04.6735555+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"585eb50c-2dc7-4354-b28d-c976b1bf3367\"\r\n}" + "x-ms-request-id" : "d2f6169d-8a9e-4cf1-a35c-f1d907c86266", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.0006971+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e8814460-c44d-4cb1-8c58-5c72347de107?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:31:41 GMT", + "date" : "Mon, 18 May 2020 12:24:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11895", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3eef5fbd-4c79-49a7-bbc6-c817a1d5ca9e", + "x-ms-correlation-request-id" : "78c152dc-1d6f-4f31-8f08-c1d80d051043", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29966", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053141Z:3eef5fbd-4c79-49a7-bbc6-c817a1d5ca9e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14920,Microsoft.Compute/GetOperation30Min;29838", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122435Z:78c152dc-1d6f-4f31-8f08-c1d80d051043", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "82b7cc63-c677-4fe2-be04-0b71e1513975", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:05.0954307+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e834cd3-1800-47ab-8014-150792914e92\"\r\n}" + "x-ms-request-id" : "625a0b4e-3bf9-410c-b3ff-0f820b933080", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.1257018+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8814460-c44d-4cb1-8c58-5c72347de107\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:31:42 GMT", + "date" : "Mon, 18 May 2020 12:24:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", + "x-ms-ratelimit-remaining-subscription-reads" : "11860", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b2f620bb-1680-4692-b064-cbcfce76b4f3", + "x-ms-correlation-request-id" : "5e75653e-6d58-4e42-888c-8235faf6dec7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29965", - "x-ms-routing-request-id" : "JAPANEAST:20200430T053143Z:b2f620bb-1680-4692-b064-cbcfce76b4f3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14919,Microsoft.Compute/GetOperation30Min;29837", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122436Z:5e75653e-6d58-4e42-888c-8235faf6dec7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cd41cd98-39a7-4670-bc3c-f4350fa8a3b3", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:04.6735555+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"585eb50c-2dc7-4354-b28d-c976b1bf3367\"\r\n}" + "x-ms-request-id" : "dd40d964-6053-4f72-810f-5dbea475ac40", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.0006971+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e8814460-c44d-4cb1-8c58-5c72347de107?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:32:13 GMT", + "date" : "Mon, 18 May 2020 12:25:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11871", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fb8a0799-3385-4217-85f5-a850f00fd40c", + "x-ms-correlation-request-id" : "d583f028-17f2-44ee-b7d5-b9ee8b6babe3", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29962", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053213Z:fb8a0799-3385-4217-85f5-a850f00fd40c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14917,Microsoft.Compute/GetOperation30Min;29823", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122506Z:d583f028-17f2-44ee-b7d5-b9ee8b6babe3", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0f903e14-9e5b-4de9-92fc-395ff3bd7be5", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:05.0954307+00:00\",\r\n \"endTime\": \"2020-04-30T05:32:03.3770615+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7e834cd3-1800-47ab-8014-150792914e92\"\r\n}" + "x-ms-request-id" : "ce9c6245-d2a9-48e4-b61d-9250cfde4adb", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.1257018+00:00\",\r\n \"endTime\": \"2020-05-18T12:24:42.8608466+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e8814460-c44d-4cb1-8c58-5c72347de107\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:32:13 GMT", + "date" : "Mon, 18 May 2020 12:25:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60c65ad9-e56a-41bf-9492-55fa23a9681c", + "x-ms-correlation-request-id" : "ca907186-8568-4213-87d8-ea04da4c4fa0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29961", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053214Z:60c65ad9-e56a-41bf-9492-55fa23a9681c", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14916,Microsoft.Compute/GetOperation30Min;29822", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122506Z:ca907186-8568-4213-87d8-ea04da4c4fa0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "67b8454b-5389-41f0-b6a2-f27676e1334a", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:04.6735555+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"585eb50c-2dc7-4354-b28d-c976b1bf3367\"\r\n}" + "x-ms-request-id" : "4efe4319-4973-4f0b-a1d0-7f6f20eeca92", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:33.0006971+00:00\",\r\n \"endTime\": \"2020-05-18T12:24:42.7358438+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e834cd3-1800-47ab-8014-150792914e92?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e8814460-c44d-4cb1-8c58-5c72347de107?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:32:44 GMT", + "date" : "Mon, 18 May 2020 12:25:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11755", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7cb26d79-f1a3-4d7f-a1f3-69765a6a8000", + "x-ms-correlation-request-id" : "2851bac1-e761-4577-96a8-ae66aaf0c361", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29959", - "x-ms-routing-request-id" : "JAPANEAST:20200430T053244Z:7cb26d79-f1a3-4d7f-a1f3-69765a6a8000", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14922,Microsoft.Compute/GetOperation30Min;29811", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122536Z:2851bac1-e761-4577-96a8-ae66aaf0c361", "cache-control" : "no-cache", - "x-ms-request-id" : "aa8ada64-af5d-48b4-8578-a59a0e2feef9", + "x-ms-request-id" : "d9921a8f-97c2-4d25-ac3f-3b076a5cd606", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Thu, 30 Apr 2020 05:32:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7e5ea7cf-4a3b-4524-ad80-a60db77ce5b5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29958", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053245Z:7e5ea7cf-4a3b-4524-ad80-a60db77ce5b5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a744f041-1ba5-4475-ae70-97dfdf312a1d", - "Body" : "{\r\n \"startTime\": \"2020-04-30T05:28:04.6735555+00:00\",\r\n \"endTime\": \"2020-04-30T05:32:27.7052188+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"585eb50c-2dc7-4354-b28d-c976b1bf3367\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/585eb50c-2dc7-4354-b28d-c976b1bf3367?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/12e8f9ba-a6ce-4d9d-be3c-50afc84e8b5f?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:33:17 GMT", + "date" : "Mon, 18 May 2020 12:25:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11857", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "698d80cb-6213-4a6e-b57b-024914b0b4f0", + "x-ms-correlation-request-id" : "b0d00336-27d8-42c1-bb23-0dab9ba27332", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29957", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053317Z:698d80cb-6213-4a6e-b57b-024914b0b4f0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14921,Microsoft.Compute/GetOperation30Min;29810", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122537Z:b0d00336-27d8-42c1-bb23-0dab9ba27332", "cache-control" : "no-cache", - "x-ms-request-id" : "d8acd046-089b-4f66-b17a-bf019f640486", + "x-ms-request-id" : "9bb42bd3-c398-45da-a9e5-06b94659e688", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvd4421528?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvb8337425?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:33:22 GMT", + "date" : "Mon, 18 May 2020 12:25:41 GMT", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bfbfb976-79f3-4ff2-bf09-e5fd0ea3722e", + "x-ms-correlation-request-id" : "ec165edf-31f4-47e8-84e5-f353727e28ce", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "JAPANEAST:20200430T053322Z:bfbfb976-79f3-4ff2-bf09-e5fd0ea3722e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZENDQyMTUyOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122541Z:ec165edf-31f4-47e8-84e5-f353727e28ce", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCODMzNzQyNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "bfbfb976-79f3-4ff2-bf09-e5fd0ea3722e", + "x-ms-request-id" : "ec165edf-31f4-47e8-84e5-f353727e28ce", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZENDQyMTUyOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCODMzNzQyNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:33:54 GMT", + "date" : "Mon, 18 May 2020 12:26:12 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", + "x-ms-ratelimit-remaining-subscription-reads" : "11706", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f74146ab-4890-438a-9058-e0492568fdf0", + "x-ms-correlation-request-id" : "e241fec9-adc2-4ad5-962c-4971349a8aaf", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053354Z:f74146ab-4890-438a-9058-e0492568fdf0", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZENDQyMTUyOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122613Z:e241fec9-adc2-4ad5-962c-4971349a8aaf", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCODMzNzQyNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "f74146ab-4890-438a-9058-e0492568fdf0", + "x-ms-request-id" : "e241fec9-adc2-4ad5-962c-4971349a8aaf", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZENDQyMTUyOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCODMzNzQyNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:34:25 GMT", + "date" : "Mon, 18 May 2020 12:26:43 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11669", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b765bea8-d7ba-4e09-9eb1-ec35fd604118", + "x-ms-correlation-request-id" : "4f10f5c1-b802-4362-b0a4-674c3fef0811", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053426Z:b765bea8-d7ba-4e09-9eb1-ec35fd604118", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZENDQyMTUyOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122644Z:4f10f5c1-b802-4362-b0a4-674c3fef0811", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCODMzNzQyNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "b765bea8-d7ba-4e09-9eb1-ec35fd604118", + "x-ms-request-id" : "4f10f5c1-b802-4362-b0a4-674c3fef0811", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZENDQyMTUyOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCODMzNzQyNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:34:56 GMT", + "date" : "Mon, 18 May 2020 12:27:14 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "x-ms-ratelimit-remaining-subscription-reads" : "11881", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "64c41446-a170-4f91-9e61-ce6017a4f77b", + "x-ms-correlation-request-id" : "ac08d25d-e74a-4ebe-94c5-2f199c3d30d6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "JAPANEAST:20200430T053457Z:64c41446-a170-4f91-9e61-ce6017a4f77b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZENDQyMTUyOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122714Z:ac08d25d-e74a-4ebe-94c5-2f199c3d30d6", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCODMzNzQyNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "64c41446-a170-4f91-9e61-ce6017a4f77b", + "x-ms-request-id" : "ac08d25d-e74a-4ebe-94c5-2f199c3d30d6", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZENDQyMTUyOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCODMzNzQyNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:35:29 GMT", + "date" : "Mon, 18 May 2020 12:27:45 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11699", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dc9b4b80-21c3-45df-9d58-328e77ad71e6", + "x-ms-correlation-request-id" : "f55bad98-99eb-42f0-b5a1-963dc4a96643", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053529Z:dc9b4b80-21c3-45df-9d58-328e77ad71e6", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZENDQyMTUyOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122746Z:f55bad98-99eb-42f0-b5a1-963dc4a96643", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCODMzNzQyNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "dc9b4b80-21c3-45df-9d58-328e77ad71e6", + "x-ms-request-id" : "f55bad98-99eb-42f0-b5a1-963dc4a96643", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZENDQyMTUyOC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCODMzNzQyNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Thu, 30 Apr 2020 05:36:00 GMT", + "date" : "Mon, 18 May 2020 12:28:16 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", + "x-ms-ratelimit-remaining-subscription-reads" : "11661", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "31d73e7c-6e57-4e28-82f4-a338325cb1db", + "x-ms-correlation-request-id" : "514bf348-73c7-4c0d-8b35-cbf544e78489", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "AUSTRALIAEAST:20200430T053601Z:31d73e7c-6e57-4e28-82f4-a338325cb1db", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122817Z:514bf348-73c7-4c0d-8b35-cbf544e78489", "cache-control" : "no-cache", - "x-ms-request-id" : "31d73e7c-6e57-4e28-82f4-a338325cb1db", + "x-ms-request-id" : "514bf348-73c7-4c0d-8b35-cbf544e78489", "Body" : "" } } ], - "variables" : [ "wvm37d17563a6", "lvma6341867eb", "rgcomvd4421528", "dsk-ca2956391", "dsk-92a51041c", "nic72560e4462d", "vnet4235153300", "nic61439b06766" ] + "variables" : [ "wvme2699149c9", "lvmf481923080", "rgcomvb8337425", "dsk-afd030880", "dsk-ef9280906", "nic2851837479b", "vnet011103fdef", "nic95158bbe014" ] } \ No newline at end of file diff --git a/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachineWithDisk.json b/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachineWithDisk.json index ed0df684a91c..69b3e26d0c99 100644 --- a/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachineWithDisk.json +++ b/sdk/management/samples/src/test/resources/session-records/testManageVirtualMachineWithDisk.json @@ -1,803 +1,803 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvbe902224?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomva5b93756?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:02 GMT", - "content-length" : "319", + "date" : "Mon, 18 May 2020 12:14:48 GMT", + "content-length" : "316", "expires" : "-1", "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8d0ebbca-d990-4768-8fdb-42dfdca34455", + "x-ms-correlation-request-id" : "48da71a9-2fb7-4fda-9a80-6efc20a6bdd2", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090902Z:8d0ebbca-d990-4768-8fdb-42dfdca34455", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121449Z:48da71a9-2fb7-4fda-9a80-6efc20a6bdd2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8d0ebbca-d990-4768-8fdb-42dfdca34455", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224\",\"name\":\"rgcomvbe902224\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-04-29T09:09:00.232078Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "48da71a9-2fb7-4fda-9a80-6efc20a6bdd2", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756\",\"name\":\"rgcomva5b93756\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T12:14:46.249Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a0a81315f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-ba157545a?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:09 GMT", + "date" : "Mon, 18 May 2020 12:14:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "253", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c82301ea-86d5-4756-ac80-d8275a0bc59a", + "x-ms-correlation-request-id" : "e9052c39-ed1a-4f56-b78b-cd41671034f1", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090909Z:c82301ea-86d5-4756-ac80-d8275a0bc59a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121456Z:e9052c39-ed1a-4f56-b78b-cd41671034f1", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/19102ee5-c329-44ca-83cc-82dc517fc60e?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e1487301-e521-46ea-8f39-fcdada218b04?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "19102ee5-c329-44ca-83cc-82dc517fc60e", - "Body" : "{\r\n \"name\": \"dsk-a0a81315f\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/19102ee5-c329-44ca-83cc-82dc517fc60e?api-version=2019-03-01" + "x-ms-request-id" : "e1487301-e521-46ea-8f39-fcdada218b04", + "Body" : "{\r\n \"name\": \"dsk-ba157545a\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e1487301-e521-46ea-8f39-fcdada218b04?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/19102ee5-c329-44ca-83cc-82dc517fc60e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e1487301-e521-46ea-8f39-fcdada218b04?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:39 GMT", + "date" : "Mon, 18 May 2020 12:15:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "807", + "content-length" : "863", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "148544ea-5699-4781-a379-5170e75c4308", + "x-ms-correlation-request-id" : "916d694e-dd36-400e-b5d0-eb5029d9abef", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090940Z:148544ea-5699-4781-a379-5170e75c4308", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121526Z:916d694e-dd36-400e-b5d0-eb5029d9abef", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "91ca8332-4368-40fc-b2e1-4a236e0a0705", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:09:09.2498547+00:00\",\r\n \"endTime\": \"2020-04-29T09:09:09.4217113+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-a0a81315f\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a0a81315f\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:09:09.2498547+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"292f3b09-4582-4b9b-a7ba-51a148c8eab7\"}}\r\n },\r\n \"name\": \"19102ee5-c329-44ca-83cc-82dc517fc60e\"\r\n}" + "x-ms-request-id" : "b8316986-7501-4f45-a981-1e435dee9b01", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:14:55.9016682+00:00\",\r\n \"endTime\": \"2020-05-18T12:14:56.0735492+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-ba157545a\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-ba157545a\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:14:55.9016682+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"8ca7061d-5b38-43fe-a026-443f453889c6\"}}\r\n },\r\n \"name\": \"e1487301-e521-46ea-8f39-fcdada218b04\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a0a81315f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-ba157545a?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:10 GMT", + "date" : "Mon, 18 May 2020 12:15:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "719", + "content-length" : "797", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", + "x-ms-ratelimit-remaining-subscription-reads" : "11933", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3aa5169d-d08c-48ef-abb4-dd692be2e051", + "x-ms-correlation-request-id" : "cf5aaa01-83b2-4402-a37f-4ad6121c149a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091011Z:3aa5169d-d08c-48ef-abb4-dd692be2e051", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121557Z:cf5aaa01-83b2-4402-a37f-4ad6121c149a", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "837121c7-5bf1-4b95-b07b-e40020021387", - "Body" : "{\r\n \"name\": \"dsk-a0a81315f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a0a81315f\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:09:09.2498547+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"292f3b09-4582-4b9b-a7ba-51a148c8eab7\"\r\n }\r\n}" + "x-ms-request-id" : "c1fa6809-e7d9-478c-94ca-a9563499ed61", + "Body" : "{\r\n \"name\": \"dsk-ba157545a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-ba157545a\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:14:55.9016682+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"8ca7061d-5b38-43fe-a026-443f453889c6\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvbe902224?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomva5b93756?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:13 GMT", - "content-length" : "322", + "date" : "Mon, 18 May 2020 12:15:59 GMT", + "content-length" : "316", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e8bb942b-6e31-458d-9eee-b3ddd5314b1d", + "x-ms-correlation-request-id" : "4f304199-cd87-4bd3-9bd3-2fb2b8c01ed4", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091014Z:e8bb942b-6e31-458d-9eee-b3ddd5314b1d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121600Z:4f304199-cd87-4bd3-9bd3-2fb2b8c01ed4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e8bb942b-6e31-458d-9eee-b3ddd5314b1d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224\",\"name\":\"rgcomvbe902224\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-04-29T09:10:11.517250400Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "4f304199-cd87-4bd3-9bd3-2fb2b8c01ed4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756\",\"name\":\"rgcomva5b93756\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-05-18T12:15:57.534Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:17 GMT", + "date" : "Mon, 18 May 2020 12:16:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "254", + "content-length" : "299", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60d5c334-f8ce-4414-a2f8-c75e553fb20a", + "x-ms-correlation-request-id" : "0b2d484b-0dc7-49e0-8521-92abde9ef71a", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091017Z:60d5c334-f8ce-4414-a2f8-c75e553fb20a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121602Z:0b2d484b-0dc7-49e0-8521-92abde9ef71a", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e7622ef7-37d1-498e-9afe-94417c6cd287?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/db51375a-2083-478a-901c-6cb686b6cec8?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e7622ef7-37d1-498e-9afe-94417c6cd287", - "Body" : "{\r\n \"name\": \"dsk-a5a74272e\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e7622ef7-37d1-498e-9afe-94417c6cd287?api-version=2019-03-01" + "x-ms-request-id" : "db51375a-2083-478a-901c-6cb686b6cec8", + "Body" : "{\r\n \"name\": \"dsk-68920103c\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/db51375a-2083-478a-901c-6cb686b6cec8?api-version=2019-07-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/publicIPAddresses/pip13763579?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:17 GMT", + "date" : "Mon, 18 May 2020 12:16:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "299", + "azure-asyncnotification" : "Enabled", + "content-length" : "768", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", "retry-after" : "0", - "StatusCode" : "202", + "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c5b83086-044f-4dc1-88b4-e3e6b692022e", + "x-ms-correlation-request-id" : "1ef9924b-a97f-4b00-b01a-087a0a05bcea", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "f5768c02-eaac-4035-bc50-b865c3067f1c", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091018Z:c5b83086-044f-4dc1-88b4-e3e6b692022e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121606Z:1ef9924b-a97f-4b00-b01a-087a0a05bcea", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/849cc33d-309e-455c-a12b-a87e0ef3286d?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "849cc33d-309e-455c-a12b-a87e0ef3286d", - "Body" : "{\r\n \"name\": \"dsk-f5b235135\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/849cc33d-309e-455c-a12b-a87e0ef3286d?api-version=2019-03-01" + "x-ms-request-id" : "c5bccdb8-ddaf-4504-8942-d0df48c04447", + "Body" : "{\r\n \"name\": \"pip13763579\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/publicIPAddresses/pip13763579\",\r\n \"etag\": \"W/\\\"07603a07-17bc-42b7-a19e-10b0ad8c98ea\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cbf103e7-22d9-4325-a9fb-539ffe0ebac0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip9306716172\",\r\n \"fqdn\": \"pip9306716172.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c5bccdb8-ddaf-4504-8942-d0df48c04447?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/virtualNetworks/vnet7711331cac?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/virtualNetworks/vnet475785d8e3?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:20 GMT", + "date" : "Mon, 18 May 2020 12:16:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1349", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d5b16ec1-6b2a-40fd-a572-3c507732253d", + "x-ms-correlation-request-id" : "9645d419-4a68-4070-88f1-46a28840acfd", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e3229a2c-fd0f-4c6b-9890-b96422c79a10", + "x-ms-arm-service-request-id" : "499f468a-f571-4212-a758-34ec0e267569", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091021Z:d5b16ec1-6b2a-40fd-a572-3c507732253d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121606Z:9645d419-4a68-4070-88f1-46a28840acfd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4d6fe93a-d63f-41e0-a536-b0409143ebbe", - "Body" : "{\r\n \"name\": \"vnet7711331cac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/virtualNetworks/vnet7711331cac\",\r\n \"etag\": \"W/\\\"59781d46-cd13-4350-946b-ddd09b0a9c05\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"16434be9-e9db-4931-80d0-5b1f0ef39fe9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/virtualNetworks/vnet7711331cac/subnets/subnet1\",\r\n \"etag\": \"W/\\\"59781d46-cd13-4350-946b-ddd09b0a9c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4d6fe93a-d63f-41e0-a536-b0409143ebbe?api-version=2019-06-01" + "x-ms-request-id" : "9153b570-1b3e-4095-88cf-8d2b78a8ff33", + "Body" : "{\r\n \"name\": \"vnet475785d8e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/virtualNetworks/vnet475785d8e3\",\r\n \"etag\": \"W/\\\"7125ff47-7bf4-43ac-908a-77b6c0d6e943\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d16dca4d-98c5-445c-99e2-d5968a0ad880\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/virtualNetworks/vnet475785d8e3/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7125ff47-7bf4-43ac-908a-77b6c0d6e943\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/9153b570-1b3e-4095-88cf-8d2b78a8ff33?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/publicIPAddresses/pip20063cc9?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:21 GMT", + "date" : "Mon, 18 May 2020 12:16:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "768", + "content-length" : "254", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", - "StatusCode" : "201", + "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a69b0300-1b9f-45aa-b41c-293b95f09af1", + "x-ms-correlation-request-id" : "6996086e-0acb-4bbd-951b-9fd9b95f1c82", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2a689f0f-206b-4f71-814d-6de68faa92b2", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091021Z:a69b0300-1b9f-45aa-b41c-293b95f09af1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121606Z:6996086e-0acb-4bbd-951b-9fd9b95f1c82", "content-type" : "application/json; charset=utf-8", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/54833d2b-039a-4def-8023-8e3ea8642c41?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "babc01b0-93d4-425b-b464-49ccce67189f", - "Body" : "{\r\n \"name\": \"pip20063cc9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/publicIPAddresses/pip20063cc9\",\r\n \"etag\": \"W/\\\"2daf7fa1-8b53-4b6f-9f6d-b57335c19d9e\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"979633cb-8003-4bcb-8cca-28f58e7cada3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip5c194368eb\",\r\n \"fqdn\": \"pip5c194368eb.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/babc01b0-93d4-425b-b464-49ccce67189f?api-version=2019-06-01" + "x-ms-request-id" : "54833d2b-039a-4def-8023-8e3ea8642c41", + "Body" : "{\r\n \"name\": \"dsk-a9c723459\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/54833d2b-039a-4def-8023-8e3ea8642c41?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/849cc33d-309e-455c-a12b-a87e0ef3286d?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/db51375a-2083-478a-901c-6cb686b6cec8?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:49 GMT", + "date" : "Mon, 18 May 2020 12:16:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "807", + "content-length" : "863", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8b5438c6-e55b-40ff-ab11-fb304d03ecfa", + "x-ms-correlation-request-id" : "1f3b8c7f-5b70-48cb-ade3-a1a0310f65ee", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091050Z:8b5438c6-e55b-40ff-ab11-fb304d03ecfa", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121632Z:1f3b8c7f-5b70-48cb-ade3-a1a0310f65ee", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0e41e599-71fd-4b53-bc57-3be256d9bc55", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:10:18.5162357+00:00\",\r\n \"endTime\": \"2020-04-29T09:10:18.6881408+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-f5b235135\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:10:18.5162357+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"fcba6d0e-76e8-42d2-9e36-81a6233838d5\"}}\r\n },\r\n \"name\": \"849cc33d-309e-455c-a12b-a87e0ef3286d\"\r\n}" + "x-ms-request-id" : "a3fbe0a9-1ad7-4509-ac31-470bd56da0b4", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:16:01.7606675+00:00\",\r\n \"endTime\": \"2020-05-18T12:16:01.9325428+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-68920103c\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":50,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:16:01.7606675+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":53687091200,\"uniqueId\":\"add3fb79-38c2-40f0-9d04-df17277bfc9f\"}}\r\n },\r\n \"name\": \"db51375a-2083-478a-901c-6cb686b6cec8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e7622ef7-37d1-498e-9afe-94417c6cd287?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/9153b570-1b3e-4095-88cf-8d2b78a8ff33?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:50 GMT", + "date" : "Mon, 18 May 2020 12:16:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "808", + "content-length" : "29", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", + "x-ms-ratelimit-remaining-subscription-reads" : "11938", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "482896ff-4cdf-4f4f-a79f-8619103381fd", + "x-ms-correlation-request-id" : "1265e278-dd41-4bf5-8b7b-dbe431b9bad6", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "7d9f25fd-800e-4a63-88b0-6f2c994a4d5b", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091050Z:482896ff-4cdf-4f4f-a79f-8619103381fd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121637Z:1265e278-dd41-4bf5-8b7b-dbe431b9bad6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "59021cd2-32b0-44e5-a7fb-42f9389524ba", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:10:16.9692757+00:00\",\r\n \"endTime\": \"2020-04-29T09:10:17.141158+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-a5a74272e\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:10:16.9692757+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"2316a277-0ce2-4d9c-b003-874acdba4b0f\"}}\r\n },\r\n \"name\": \"e7622ef7-37d1-498e-9afe-94417c6cd287\"\r\n}" + "x-ms-request-id" : "40aec8d7-0674-4079-b1f2-1669da5dda2b", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4d6fe93a-d63f-41e0-a536-b0409143ebbe?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c5bccdb8-ddaf-4504-8942-d0df48c04447?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:52 GMT", + "date" : "Mon, 18 May 2020 12:16:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "09da6b79-0faa-4b7f-aba8-42e237ec50b4", + "x-ms-correlation-request-id" : "938d14de-d350-43b6-974a-58b936a63932", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "59703ed8-768c-4438-8a0e-53ee8fd552a4", + "x-ms-arm-service-request-id" : "6a26126d-da54-454b-9f86-94961549ee0a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091052Z:09da6b79-0faa-4b7f-aba8-42e237ec50b4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121654Z:938d14de-d350-43b6-974a-58b936a63932", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "965ffccf-7498-420a-a1af-2a4a23453305", + "x-ms-request-id" : "46d77c1c-7b2b-4f2e-9db7-63775afff7fc", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/babc01b0-93d4-425b-b464-49ccce67189f?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/54833d2b-039a-4def-8023-8e3ea8642c41?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:52 GMT", + "date" : "Mon, 18 May 2020 12:16:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", + "content-length" : "865", "expires" : "-1", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "24de89d3-2c84-42ed-a972-d0bbd11adf62", + "x-ms-correlation-request-id" : "6d7685de-222b-4186-b17e-3abfb101a8b7", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0b56b640-90f4-4e01-94df-ee01c5ddd323", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091052Z:24de89d3-2c84-42ed-a972-d0bbd11adf62", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399986", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121655Z:6d7685de-222b-4186-b17e-3abfb101a8b7", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "777c73f5-a564-4913-a459-1931267f7af1", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" + "x-ms-request-id" : "6183fffe-d2df-4f4a-9ac3-7ddbec3fa32a", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:16:06.4794277+00:00\",\r\n \"endTime\": \"2020-05-18T12:16:06.6513027+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-a9c723459\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:16:06.4794277+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"2539be4b-d92f-4215-881f-75887ab77158\"}}\r\n },\r\n \"name\": \"54833d2b-039a-4def-8023-8e3ea8642c41\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:21 GMT", + "date" : "Mon, 18 May 2020 12:17:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "721", + "content-length" : "797", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", + "x-ms-ratelimit-remaining-subscription-reads" : "11932", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "312b9225-819a-4933-a2fe-750c48a0ed9a", + "x-ms-correlation-request-id" : "756158d6-2e7b-4151-956c-02ce7fdcf679", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091121Z:312b9225-819a-4933-a2fe-750c48a0ed9a", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39982", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121703Z:756158d6-2e7b-4151-956c-02ce7fdcf679", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ed663e5b-ae57-40d4-9afd-53836c00e0ba", - "Body" : "{\r\n \"name\": \"dsk-a5a74272e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:10:16.9692757+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2316a277-0ce2-4d9c-b003-874acdba4b0f\"\r\n }\r\n}" + "x-ms-request-id" : "3e8537da-b245-4e9a-a8a8-6543458b422c", + "Body" : "{\r\n \"name\": \"dsk-68920103c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:16:01.7606675+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"add3fb79-38c2-40f0-9d04-df17277bfc9f\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/virtualNetworks/vnet475785d8e3?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:21 GMT", + "date" : "Mon, 18 May 2020 12:17:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "719", + "content-length" : "1351", "expires" : "-1", - "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11781", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1eb40860-dea7-4907-baa3-b96d30948cb8", + "x-ms-correlation-request-id" : "d7749282-63ee-4435-878e-1946e84e6d41", "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-arm-service-request-id" : "1ec1d981-b1ae-48ee-8560-566e6a92d8d7", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091121Z:1eb40860-dea7-4907-baa3-b96d30948cb8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121708Z:d7749282-63ee-4435-878e-1946e84e6d41", + "etag" : "W/\"7c27e2a6-a7de-403b-b8cf-875200221083\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "134e24a6-2fd9-4d43-a5d8-03c01d88f2ff", - "Body" : "{\r\n \"name\": \"dsk-f5b235135\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:10:18.5162357+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"fcba6d0e-76e8-42d2-9e36-81a6233838d5\"\r\n }\r\n}" + "x-ms-request-id" : "e7b833e3-cca5-4267-a473-94cbc5570a20", + "Body" : "{\r\n \"name\": \"vnet475785d8e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/virtualNetworks/vnet475785d8e3\",\r\n \"etag\": \"W/\\\"7c27e2a6-a7de-403b-b8cf-875200221083\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d16dca4d-98c5-445c-99e2-d5968a0ad880\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/virtualNetworks/vnet475785d8e3/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7c27e2a6-a7de-403b-b8cf-875200221083\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/virtualNetworks/vnet7711331cac?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/publicIPAddresses/pip13763579?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:22 GMT", + "date" : "Mon, 18 May 2020 12:17:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1351", + "content-length" : "769", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b7561720-d16a-4577-af70-469d29d02868", + "x-ms-correlation-request-id" : "3d8a50f5-8f83-41c0-91a8-1014b1496586", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0c2990e9-72db-47a8-a56a-cea47d1abac4", + "x-ms-arm-service-request-id" : "052af133-36a6-43e5-a3ae-fa1e59f33cdd", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091123Z:b7561720-d16a-4577-af70-469d29d02868", - "etag" : "W/\"d4c3091c-6eb1-41a8-9856-18560e945a8f\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121725Z:3d8a50f5-8f83-41c0-91a8-1014b1496586", + "etag" : "W/\"f8382f6b-abf1-4f2b-bc70-90de3600c7b2\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "4da5f1a7-b7fc-49b5-a629-3dd046af42e5", - "Body" : "{\r\n \"name\": \"vnet7711331cac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/virtualNetworks/vnet7711331cac\",\r\n \"etag\": \"W/\\\"d4c3091c-6eb1-41a8-9856-18560e945a8f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16434be9-e9db-4931-80d0-5b1f0ef39fe9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/virtualNetworks/vnet7711331cac/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d4c3091c-6eb1-41a8-9856-18560e945a8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "d86b6963-1d68-43f0-a50c-c3e885449ae1", + "Body" : "{\r\n \"name\": \"pip13763579\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/publicIPAddresses/pip13763579\",\r\n \"etag\": \"W/\\\"f8382f6b-abf1-4f2b-bc70-90de3600c7b2\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cbf103e7-22d9-4325-a9fb-539ffe0ebac0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip9306716172\",\r\n \"fqdn\": \"pip9306716172.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/publicIPAddresses/pip20063cc9?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:23 GMT", + "date" : "Mon, 18 May 2020 12:17:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "769", + "content-length" : "799", "expires" : "-1", + "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11778", + "x-ms-ratelimit-remaining-subscription-reads" : "11938", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "de120c76-3794-41e9-9496-e55dfdaba0fd", + "x-ms-correlation-request-id" : "003a84a7-7432-4be7-bf95-8ff0a32f832f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3b6282da-d3fe-4b98-918d-e54467d40194", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091123Z:de120c76-3794-41e9-9496-e55dfdaba0fd", - "etag" : "W/\"a7770483-06b1-4fbe-a094-e621ee4462cf\"", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4972,Microsoft.Compute/LowCostGet30Min;39972", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121727Z:003a84a7-7432-4be7-bf95-8ff0a32f832f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "069d152a-eed7-41e2-a7b4-937b777435d7", - "Body" : "{\r\n \"name\": \"pip20063cc9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/publicIPAddresses/pip20063cc9\",\r\n \"etag\": \"W/\\\"a7770483-06b1-4fbe-a094-e621ee4462cf\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"979633cb-8003-4bcb-8cca-28f58e7cada3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip5c194368eb\",\r\n \"fqdn\": \"pip5c194368eb.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "076f5a58-f746-411e-9379-9839bd1728ff", + "Body" : "{\r\n \"name\": \"dsk-a9c723459\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:16:06.4794277+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2539be4b-d92f-4215-881f-75887ab77158\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/networkInterfaces/nic406245b338a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/networkInterfaces/nic46571ae665f?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:29 GMT", + "date" : "Mon, 18 May 2020 12:17:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1849", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7fe309f2-67ec-4a70-9517-a5debc3e8ffc", + "x-ms-correlation-request-id" : "3274d09e-8ab7-4f94-a0b4-7f730fcc1caa", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "54356b73-ae44-4dbe-9e9a-2c32bd45fc91", + "x-ms-arm-service-request-id" : "e0728628-6984-4827-865d-d02e8631d22a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091129Z:7fe309f2-67ec-4a70-9517-a5debc3e8ffc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121728Z:3274d09e-8ab7-4f94-a0b4-7f730fcc1caa", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ac717ad9-5420-4c15-a388-765b581e7add", - "Body" : "{\r\n \"name\": \"nic406245b338a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/networkInterfaces/nic406245b338a\",\r\n \"etag\": \"W/\\\"bf693734-ca11-4336-acdd-3e570a0110b4\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b17e5157-3342-4deb-8ea0-215300b8aab6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/networkInterfaces/nic406245b338a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"bf693734-ca11-4336-acdd-3e570a0110b4\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/publicIPAddresses/pip20063cc9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/virtualNetworks/vnet7711331cac/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3ffugfw13eyutagqlmpq32253b.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ac717ad9-5420-4c15-a388-765b581e7add?api-version=2019-06-01" + "x-ms-request-id" : "e81c6e80-6202-43c6-96a6-a80f4f192f24", + "Body" : "{\r\n \"name\": \"nic46571ae665f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/networkInterfaces/nic46571ae665f\",\r\n \"etag\": \"W/\\\"3332ba83-f8d3-4883-9486-fc50218a0dfa\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b0cca56-f6a4-4ef9-9a48-d2af1e838329\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/networkInterfaces/nic46571ae665f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3332ba83-f8d3-4883-9486-fc50218a0dfa\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/publicIPAddresses/pip13763579\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/virtualNetworks/vnet475785d8e3/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jxfg1uoftboejgpc0wliucwyqa.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e81c6e80-6202-43c6-96a6-a80f4f192f24?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ac717ad9-5420-4c15-a388-765b581e7add?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e81c6e80-6202-43c6-96a6-a80f4f192f24?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:00 GMT", + "date" : "Mon, 18 May 2020 12:17:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", + "x-ms-ratelimit-remaining-subscription-reads" : "11938", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ce1a79fe-0c28-4610-9675-b57a15804520", + "x-ms-correlation-request-id" : "df6b2b44-1659-464c-9886-174780a644c2", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "df095a02-8533-4054-91e1-9d3bba1d0eee", + "x-ms-arm-service-request-id" : "b06c7a40-f18f-4a67-b531-9a28901f197a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091200Z:ce1a79fe-0c28-4610-9675-b57a15804520", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121759Z:df6b2b44-1659-464c-9886-174780a644c2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9f4fdfc5-7fbb-4ba6-bf36-91ebf877d905", + "x-ms-request-id" : "9c1b8c15-3b34-4da5-9389-7550fd6d2bb8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/networkInterfaces/nic406245b338a?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/networkInterfaces/nic46571ae665f?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:30 GMT", + "date" : "Mon, 18 May 2020 12:18:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1849", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11749", + "x-ms-ratelimit-remaining-subscription-reads" : "11763", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "432157d6-eab2-4a90-853a-b80578d4908a", + "x-ms-correlation-request-id" : "7a95ad9b-9863-4426-a113-0a5392897d2d", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "62ad206d-a31b-4d3c-a851-d41662ab5948", + "x-ms-arm-service-request-id" : "032d5c50-1185-45b3-9999-711055b0d3bd", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091231Z:432157d6-eab2-4a90-853a-b80578d4908a", - "etag" : "W/\"bf693734-ca11-4336-acdd-3e570a0110b4\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121830Z:7a95ad9b-9863-4426-a113-0a5392897d2d", + "etag" : "W/\"3332ba83-f8d3-4883-9486-fc50218a0dfa\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "da6ff13d-5547-4cbb-80be-c94bc7ed04e7", - "Body" : "{\r\n \"name\": \"nic406245b338a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/networkInterfaces/nic406245b338a\",\r\n \"etag\": \"W/\\\"bf693734-ca11-4336-acdd-3e570a0110b4\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b17e5157-3342-4deb-8ea0-215300b8aab6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/networkInterfaces/nic406245b338a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"bf693734-ca11-4336-acdd-3e570a0110b4\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/publicIPAddresses/pip20063cc9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/virtualNetworks/vnet7711331cac/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3ffugfw13eyutagqlmpq32253b.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "524fb995-0a75-48b0-9856-9f4617772b7e", + "Body" : "{\r\n \"name\": \"nic46571ae665f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/networkInterfaces/nic46571ae665f\",\r\n \"etag\": \"W/\\\"3332ba83-f8d3-4883-9486-fc50218a0dfa\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b0cca56-f6a4-4ef9-9a48-d2af1e838329\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/networkInterfaces/nic46571ae665f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3332ba83-f8d3-4883-9486-fc50218a0dfa\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/publicIPAddresses/pip13763579\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/virtualNetworks/vnet475785d8e3/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jxfg1uoftboejgpc0wliucwyqa.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:37 GMT", + "date" : "Mon, 18 May 2020 12:18:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "3410", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "96ded851-18c5-40e7-84ad-f0a6620ece17", + "x-ms-correlation-request-id" : "6d06b2b8-2790-46d3-b5aa-5ca886b4314f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1191", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091238Z:96ded851-18c5-40e7-84ad-f0a6620ece17", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1188", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121838Z:6d06b2b8-2790-46d3-b5aa-5ca886b4314f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0b6defed-1c4f-4c8c-b3c0-1cf66a5b8453", - "Body" : "{\r\n \"name\": \"vm12223732812\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"da8e96e4-9c26-4e16-a580-5bcb7156b5e3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a5a74272e\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-f5b235135\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dsk-a0a81315f\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a0a81315f\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm12223732812\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/networkInterfaces/nic406245b338a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/0b6defed-1c4f-4c8c-b3c0-1cf66a5b8453?api-version=2019-03-01" + "x-ms-request-id" : "1d4022a5-37bb-405b-82de-b2d47d3932f8", + "Body" : "{\r\n \"name\": \"vm148570831db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cc904928-fd12-4fb0-84c0-b41c72cca511\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a9c723459\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-68920103c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dsk-ba157545a\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-ba157545a\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm148570831db\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/networkInterfaces/nic46571ae665f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1d4022a5-37bb-405b-82de-b2d47d3932f8?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/0b6defed-1c4f-4c8c-b3c0-1cf66a5b8453?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1d4022a5-37bb-405b-82de-b2d47d3932f8?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:07 GMT", + "date" : "Mon, 18 May 2020 12:19:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", + "content-length" : "133", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", + "x-ms-ratelimit-remaining-subscription-reads" : "11772", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "153080a3-317e-4bf5-b652-e200e8a1f740", + "x-ms-correlation-request-id" : "4630acdf-dc1a-47a0-b87f-e4d363849018", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091308Z:153080a3-317e-4bf5-b652-e200e8a1f740", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29969", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121908Z:4630acdf-dc1a-47a0-b87f-e4d363849018", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "504ffca4-af59-49dd-a1ff-1de2fad05c00", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:12:36.5277283+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0b6defed-1c4f-4c8c-b3c0-1cf66a5b8453\"\r\n}" + "x-ms-request-id" : "14fa63f7-22c4-420d-b391-a49f392aaf1b", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:36.188073+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1d4022a5-37bb-405b-82de-b2d47d3932f8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/0b6defed-1c4f-4c8c-b3c0-1cf66a5b8453?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1d4022a5-37bb-405b-82de-b2d47d3932f8?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:38 GMT", + "date" : "Mon, 18 May 2020 12:19:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "183", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", + "x-ms-ratelimit-remaining-subscription-reads" : "11727", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3105f816-0f9b-40c1-a74e-d987c8f54a26", + "x-ms-correlation-request-id" : "d8e4e977-e1ec-40e9-9a12-56c65dfb28e6", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091339Z:3105f816-0f9b-40c1-a74e-d987c8f54a26", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29953", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121939Z:d8e4e977-e1ec-40e9-9a12-56c65dfb28e6", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "27d71890-b28e-4d30-86d4-a25742ace192", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:12:36.5277283+00:00\",\r\n \"endTime\": \"2020-04-29T09:13:20.7933418+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0b6defed-1c4f-4c8c-b3c0-1cf66a5b8453\"\r\n}" + "x-ms-request-id" : "31369447-dcf6-49db-a5b4-99a8a2933d4c", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:18:36.188073+00:00\",\r\n \"endTime\": \"2020-05-18T12:19:22.9381203+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1d4022a5-37bb-405b-82de-b2d47d3932f8\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:08 GMT", + "date" : "Mon, 18 May 2020 12:20:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "4211", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", + "x-ms-ratelimit-remaining-subscription-reads" : "11746", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f1c676c1-0e12-4639-b5a4-8bef8a0808a1", + "x-ms-correlation-request-id" : "a30035c8-fbc3-4c3d-9818-3a94e66c3210", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091409Z:f1c676c1-0e12-4639-b5a4-8bef8a0808a1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3963,Microsoft.Compute/LowCostGet30Min;31963", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122009Z:a30035c8-fbc3-4c3d-9818-3a94e66c3210", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "963fe9aa-81aa-438f-923e-1965716d4618", - "Body" : "{\r\n \"name\": \"vm12223732812\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"da8e96e4-9c26-4e16-a580-5bcb7156b5e3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a5a74272e\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-f5b235135\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dsk-a0a81315f\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a0a81315f\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"vm12223732812_disk5_e121f671617d4229925b47a6f626b86b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk5_e121f671617d4229925b47a6f626b86b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm12223732812\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/networkInterfaces/nic406245b338a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "8b1cb0aa-e919-48d9-93e0-d77bc28e092d", + "Body" : "{\r\n \"name\": \"vm148570831db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cc904928-fd12-4fb0-84c0-b41c72cca511\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a9c723459\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-68920103c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dsk-ba157545a\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-ba157545a\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"vm148570831db_disk5_92721045bc204526b995daaab3ed2364\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk5_92721045bc204526b995daaab3ed2364\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm148570831db\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/networkInterfaces/nic46571ae665f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:13 GMT", + "date" : "Mon, 18 May 2020 12:20:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "4478", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", "retry-after" : "0", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6c14e220-1e1e-448a-afb2-e17384a232c5", + "x-ms-correlation-request-id" : "14af4ed4-d629-43d7-8a91-ddd9b8daaa50", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1186", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091414Z:6c14e220-1e1e-448a-afb2-e17384a232c5", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1185", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122012Z:14af4ed4-d629-43d7-8a91-ddd9b8daaa50", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "db57388a-fa39-4aca-a7b3-a7d127aea726", - "Body" : "{\r\n \"name\": \"vm12223732812\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"da8e96e4-9c26-4e16-a580-5bcb7156b5e3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a5a74272e\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-f5b235135\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dsk-a0a81315f\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a0a81315f\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"vm12223732812_disk5_e121f671617d4229925b47a6f626b86b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk5_e121f671617d4229925b47a6f626b86b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 5,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm12223732812\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/networkInterfaces/nic406245b338a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/db57388a-fa39-4aca-a7b3-a7d127aea726?api-version=2019-03-01" + "x-ms-request-id" : "3a604f27-d402-4070-b214-c6344ad0823e", + "Body" : "{\r\n \"name\": \"vm148570831db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cc904928-fd12-4fb0-84c0-b41c72cca511\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a9c723459\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-68920103c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dsk-ba157545a\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-ba157545a\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"vm148570831db_disk5_92721045bc204526b995daaab3ed2364\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk5_92721045bc204526b995daaab3ed2364\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 5,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm148570831db\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/networkInterfaces/nic46571ae665f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3a604f27-d402-4070-b214-c6344ad0823e?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:45 GMT", + "date" : "Mon, 18 May 2020 12:20:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "3753", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", + "x-ms-ratelimit-remaining-subscription-reads" : "11832", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5d13e66a-8a85-4acc-9864-c4f281f04bab", + "x-ms-correlation-request-id" : "5a416726-12c1-4f5e-aa36-b9a47a2752ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3960,Microsoft.Compute/LowCostGet30Min;31960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091445Z:5d13e66a-8a85-4acc-9864-c4f281f04bab", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3941,Microsoft.Compute/LowCostGet30Min;31941", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122043Z:5a416726-12c1-4f5e-aa36-b9a47a2752ac", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "88e7bed7-dd5e-4cd9-84e5-0e56c64e78a7", - "Body" : "{\r\n \"name\": \"vm12223732812\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"da8e96e4-9c26-4e16-a580-5bcb7156b5e3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a5a74272e\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-f5b235135\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 5,\r\n \"name\": \"vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm12223732812\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Network/networkInterfaces/nic406245b338a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + "x-ms-request-id" : "6ec16d5c-bb2a-40a5-b68a-7035ab5b6e7c", + "Body" : "{\r\n \"name\": \"vm148570831db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cc904928-fd12-4fb0-84c0-b41c72cca511\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-a9c723459\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-68920103c\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 5,\r\n \"name\": \"vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm148570831db\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Network/networkInterfaces/nic46571ae665f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a0a81315f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-ba157545a?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:15 GMT", + "date" : "Mon, 18 May 2020 12:21:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "719", + "content-length" : "797", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11768", + "x-ms-ratelimit-remaining-subscription-reads" : "11701", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6a66dd41-5c3c-4626-a688-518fcefd976b", + "x-ms-correlation-request-id" : "82bb2c91-ee49-4ef5-b1aa-8eddecc9a63b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091516Z:6a66dd41-5c3c-4626-a688-518fcefd976b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39955", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122113Z:82bb2c91-ee49-4ef5-b1aa-8eddecc9a63b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6197e62e-652d-4e19-b334-4965224cf9c0", - "Body" : "{\r\n \"name\": \"dsk-a0a81315f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a0a81315f\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:09:09.2498547+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"292f3b09-4582-4b9b-a7ba-51a148c8eab7\"\r\n }\r\n}" + "x-ms-request-id" : "08738b7a-67a2-4c48-a349-96a1cace69eb", + "Body" : "{\r\n \"name\": \"dsk-ba157545a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-ba157545a\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:14:55.9016682+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"8ca7061d-5b38-43fe-a026-443f453889c6\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a0a81315f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-ba157545a?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:17 GMT", + "date" : "Mon, 18 May 2020 12:21:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f21c45f2-3a9e-4d85-98d8-624b30682e4c", + "x-ms-correlation-request-id" : "5b26ff56-179f-4e3a-8b13-d93f07e68373", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;999,Microsoft.Compute/DeleteDisks30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091518Z:f21c45f2-3a9e-4d85-98d8-624b30682e4c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e9e11906-6a66-412f-a1c3-f451a857fbda?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;999,Microsoft.Compute/DeleteDisks30Min;7999", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122115Z:5b26ff56-179f-4e3a-8b13-d93f07e68373", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7e083b82-7708-45f4-9a79-aaec5804d896?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e9e11906-6a66-412f-a1c3-f451a857fbda", + "x-ms-request-id" : "7e083b82-7708-45f4-9a79-aaec5804d896", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e9e11906-6a66-412f-a1c3-f451a857fbda?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7e083b82-7708-45f4-9a79-aaec5804d896?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e9e11906-6a66-412f-a1c3-f451a857fbda?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7e083b82-7708-45f4-9a79-aaec5804d896?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:49 GMT", + "date" : "Mon, 18 May 2020 12:21:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", + "content-length" : "184", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", + "x-ms-ratelimit-remaining-subscription-reads" : "11879", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5b76311a-a7b4-4958-b17e-d4df7478b769", + "x-ms-correlation-request-id" : "e87ef69a-93d5-472c-8b28-4cb5d127aceb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091549Z:5b76311a-a7b4-4958-b17e-d4df7478b769", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399979", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122146Z:e87ef69a-93d5-472c-8b28-4cb5d127aceb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a4d698dc-7035-4843-91ea-82ba18ff00bb", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:15:18.458566+00:00\",\r\n \"endTime\": \"2020-04-29T09:15:18.7398154+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e9e11906-6a66-412f-a1c3-f451a857fbda\"\r\n}" + "x-ms-request-id" : "c2020e43-4495-47d0-8e54-70ae93cfa444", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:21:15.4000125+00:00\",\r\n \"endTime\": \"2020-05-18T12:21:15.6032008+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7e083b82-7708-45f4-9a79-aaec5804d896\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e9e11906-6a66-412f-a1c3-f451a857fbda?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/7e083b82-7708-45f4-9a79-aaec5804d896?monitor=true&api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:20 GMT", + "date" : "Mon, 18 May 2020 12:22:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ddcb00be-6b46-47e1-83ce-b9c607d92052", + "x-ms-correlation-request-id" : "3de7addf-24cd-45f9-b6a6-6629cf867ef4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091620Z:ddcb00be-6b46-47e1-83ce-b9c607d92052", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122217Z:3de7addf-24cd-45f9-b6a6-6629cf867ef4", "cache-control" : "no-cache", - "x-ms-request-id" : "d69a9da2-7d15-4c05-9a4c-8fa78628dcbd", + "x-ms-request-id" : "935a0084-3369-467c-9890-33c34b6a5683", "Body" : "" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812/deallocate?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db/deallocate?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:20 GMT", + "date" : "Mon, 18 May 2020 12:22:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", @@ -805,1106 +805,756 @@ "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bf888214-1ccb-4ee7-9a3a-62dddf010fc0", + "x-ms-correlation-request-id" : "a6df81f4-e390-4286-9209-2ef5eb741e99", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;235,Microsoft.Compute/DeleteVM30Min;1195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091621Z:bf888214-1ccb-4ee7-9a3a-62dddf010fc0", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;234,Microsoft.Compute/DeleteVM30Min;1194", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122217Z:a6df81f4-e390-4286-9209-2ef5eb741e99", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29b873a5-320b-40eb-9ffe-5365a4bf548d?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "10982544-7667-4e29-9ecd-3af20a3ff12b", + "x-ms-request-id" : "29b873a5-320b-40eb-9ffe-5365a4bf548d", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:50 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "54b6a612-fd69-4291-91c1-547d8f38b50f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091651Z:54b6a612-fd69-4291-91c1-547d8f38b50f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "75cbc8cb-eacf-4149-88ca-95859aad96b1", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11813", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "326eb2c8-e077-4c55-8310-49f4c21fc405", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091722Z:326eb2c8-e077-4c55-8310-49f4c21fc405", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "68b00658-35be-40e5-bd6f-497270629735", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:52 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d41adc91-6de3-4bcc-ae99-178114f959e9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14940,Microsoft.Compute/GetOperation30Min;29893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091752Z:d41adc91-6de3-4bcc-ae99-178114f959e9", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "13ab721d-1a4c-49d0-bd4e-d43c663a22f0", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7357eaba-a152-467a-aed4-bb731682d775", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14933,Microsoft.Compute/GetOperation30Min;29880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091823Z:7357eaba-a152-467a-aed4-bb731682d775", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c0bedeb5-6336-4683-a9d4-aa1d9e909575", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:53 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a08dcaf3-8890-484d-9501-54ef97ebb9ab", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14922,Microsoft.Compute/GetOperation30Min;29861", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091853Z:a08dcaf3-8890-484d-9501-54ef97ebb9ab", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f2057d45-b0da-4263-abc7-28c0fc1bfd6b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e22475aa-d149-449c-92e1-f531052dce0f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14907,Microsoft.Compute/GetOperation30Min;29842", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091924Z:e22475aa-d149-449c-92e1-f531052dce0f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "043602f3-6780-4f16-8fdb-f816a5007513", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "556de183-c64e-489a-a370-e14e4b477045", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14905,Microsoft.Compute/GetOperation30Min;29826", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091955Z:556de183-c64e-489a-a370-e14e4b477045", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0aedf7b1-55e6-426e-953d-2ba70c67d0a8", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11804", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "97374335-e8c8-45e1-aefa-1b3bd62b2e73", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14908,Microsoft.Compute/GetOperation30Min;29814", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092025Z:97374335-e8c8-45e1-aefa-1b3bd62b2e73", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "27bb0178-d347-40ee-adc8-a9a1a4cd2dbb", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:56 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a4fa1421-aa85-4e34-866c-0ea47d8daea2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14913,Microsoft.Compute/GetOperation30Min;29803", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092056Z:a4fa1421-aa85-4e34-866c-0ea47d8daea2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "dd09234d-a401-452d-94ce-1993e2fdfdb6", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29b873a5-320b-40eb-9ffe-5365a4bf548d?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29b873a5-320b-40eb-9ffe-5365a4bf548d?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:26 GMT", + "date" : "Mon, 18 May 2020 12:22:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11672", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c92bb37d-5c06-4930-b808-1835962e4bbe", + "x-ms-correlation-request-id" : "ca912413-8329-4140-8271-27f65a63899b", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14912,Microsoft.Compute/GetOperation30Min;29790", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092127Z:c92bb37d-5c06-4930-b808-1835962e4bbe", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29896", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122248Z:ca912413-8329-4140-8271-27f65a63899b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "50a1b007-c376-4f16-a655-1b220f0bb1ea", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" + "x-ms-request-id" : "43ec4f06-0ed2-4a22-bbef-11006f4fb21e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:22:17.4070594+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"29b873a5-320b-40eb-9ffe-5365a4bf548d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29b873a5-320b-40eb-9ffe-5365a4bf548d?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:56 GMT", + "date" : "Mon, 18 May 2020 12:23:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11749", + "x-ms-ratelimit-remaining-subscription-reads" : "11722", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "99ec8a60-3dd9-4883-8c77-12b4c459fa23", + "x-ms-correlation-request-id" : "c1d00bd5-a21a-4c2f-8578-17d2ae78d2ec", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14918,Microsoft.Compute/GetOperation30Min;29778", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092157Z:99ec8a60-3dd9-4883-8c77-12b4c459fa23", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14941,Microsoft.Compute/GetOperation30Min;29878", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122318Z:c1d00bd5-a21a-4c2f-8578-17d2ae78d2ec", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9492809a-b0af-4136-877a-48261f211552", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" + "x-ms-request-id" : "47b1c818-08a6-4ded-887e-d5752b785558", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:22:17.4070594+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"29b873a5-320b-40eb-9ffe-5365a4bf548d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29b873a5-320b-40eb-9ffe-5365a4bf548d?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ce344e6-1ac5-419c-b6a5-d3f71c497c6d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14928,Microsoft.Compute/GetOperation30Min;29769", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092228Z:8ce344e6-1ac5-419c-b6a5-d3f71c497c6d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "208e6df4-47d6-4242-b2a9-ce461faa7d84", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:58 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c83029e5-6b78-43d1-a261-7f76ae964c6d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14936,Microsoft.Compute/GetOperation30Min;29760", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092259Z:c83029e5-6b78-43d1-a261-7f76ae964c6d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "85f39966-fee6-45b7-a0ee-9c3917a47378", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11745", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e13ab96f-2381-44ed-8917-15cd1bfd63e6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29751", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092330Z:e13ab96f-2381-44ed-8917-15cd1bfd63e6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ee5844ba-c72e-4afc-87cb-18f4ec1a98d8", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "02391d63-1765-4a86-b35f-4947cf70999a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29740", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092401Z:02391d63-1765-4a86-b35f-4947cf70999a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7b550a2b-39a9-48ee-8a4c-936d4d031a46", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11664", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4c6a3b47-19bd-4a8a-accd-ba655ae46b25", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29727", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092431Z:4c6a3b47-19bd-4a8a-accd-ba655ae46b25", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a316023c-5416-4a67-9e11-bffabec1cb71", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:01 GMT", + "date" : "Mon, 18 May 2020 12:23:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11660", + "x-ms-ratelimit-remaining-subscription-reads" : "11874", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3e39721a-6ea5-4499-a921-785998d66be8", + "x-ms-correlation-request-id" : "e1066305-b97b-4845-a42c-721765b65dad", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29720", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092502Z:3e39721a-6ea5-4499-a921-785998d66be8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14929,Microsoft.Compute/GetOperation30Min;29859", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122348Z:e1066305-b97b-4845-a42c-721765b65dad", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5a297f76-e228-499d-8c41-4158d6193125", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:16:21.0912888+00:00\",\r\n \"endTime\": \"2020-04-29T09:24:44.6848686+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"10982544-7667-4e29-9ecd-3af20a3ff12b\"\r\n}" + "x-ms-request-id" : "6cf5ac25-ca97-4f30-a5b8-84329d29ad1e", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:22:17.4070594+00:00\",\r\n \"endTime\": \"2020-05-18T12:23:44.4074848+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"29b873a5-320b-40eb-9ffe-5365a4bf548d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/10982544-7667-4e29-9ecd-3af20a3ff12b?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29b873a5-320b-40eb-9ffe-5365a4bf548d?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:31 GMT", + "date" : "Mon, 18 May 2020 12:24:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11651", + "x-ms-ratelimit-remaining-subscription-reads" : "11757", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "72074cb0-7c94-4b3c-94f9-4785beed32cd", + "x-ms-correlation-request-id" : "49553735-98e0-4d93-924b-1c2e82d78b13", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29715", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092532Z:72074cb0-7c94-4b3c-94f9-4785beed32cd", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14921,Microsoft.Compute/GetOperation30Min;29844", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122419Z:49553735-98e0-4d93-924b-1c2e82d78b13", "cache-control" : "no-cache", - "x-ms-request-id" : "42dc35e3-b59f-4a2a-81ef-1ed142b2f7a8", + "x-ms-request-id" : "b9f54e5b-382f-4022-bad2-ab9caa20932d", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:32 GMT", + "date" : "Mon, 18 May 2020 12:24:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1282", + "content-length" : "1360", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", + "x-ms-ratelimit-remaining-subscription-reads" : "11864", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0d65f43e-3154-4b23-b2ad-e5e6970eb0b1", + "x-ms-correlation-request-id" : "81c7aa44-5b71-4a3c-b531-1d5dc5c41ea2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39876", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092533Z:0d65f43e-3154-4b23-b2ad-e5e6970eb0b1", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39944", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122419Z:81c7aa44-5b71-4a3c-b531-1d5dc5c41ea2", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d99e2809-65cb-4f76-93b1-5593153304b5", - "Body" : "{\r\n \"name\": \"vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004070\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:12:36.9415014+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"61a4c1dc-09aa-48d5-961b-992d19e9a1e8\"\r\n }\r\n}" + "x-ms-request-id" : "b2ba7688-bb6a-4550-a428-4949b724c560", + "Body" : "{\r\n \"name\": \"vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:18:36.6048918+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"6875c15e-2d92-4a0e-925d-cd93237693b4\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:33 GMT", + "date" : "Mon, 18 May 2020 12:24:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "878", + "content-length" : "956", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "57711bed-1f37-4643-b176-432c2e55c704", + "x-ms-correlation-request-id" : "4c2d081d-8eb9-4337-9cf8-2f313f47fd46", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4978,Microsoft.Compute/LowCostGet30Min;39875", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092534Z:57711bed-1f37-4643-b176-432c2e55c704", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39943", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122420Z:4c2d081d-8eb9-4337-9cf8-2f313f47fd46", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7b6a8edc-345c-4945-af98-77c23acbb428", - "Body" : "{\r\n \"name\": \"dsk-a5a74272e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:10:16.9692757+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2316a277-0ce2-4d9c-b003-874acdba4b0f\"\r\n }\r\n}" + "x-ms-request-id" : "c2018257-5dbb-4d0a-885f-0129630553cf", + "Body" : "{\r\n \"name\": \"dsk-a9c723459\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:16:06.4794277+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2539be4b-d92f-4215-881f-75887ab77158\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:35 GMT", + "date" : "Mon, 18 May 2020 12:24:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "956", + "content-length" : "1034", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11650", + "x-ms-ratelimit-remaining-subscription-reads" : "11819", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bc91d739-4acf-4ef1-9f68-0d1c8e22249e", + "x-ms-correlation-request-id" : "7cee099d-a2df-42a7-b56f-37465d34fedc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39874", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092535Z:bc91d739-4acf-4ef1-9f68-0d1c8e22249e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39942", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122420Z:7cee099d-a2df-42a7-b56f-37465d34fedc", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a0e076aa-d518-47f9-be54-b78f42257b18", - "Body" : "{\r\n \"name\": \"vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:12:36.9415014+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"86a72bcb-8645-423c-857c-9a526890b39c\"\r\n }\r\n}" + "x-ms-request-id" : "5fde73d0-b933-4b79-b44f-1e15713316f1", + "Body" : "{\r\n \"name\": \"vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:18:36.6048918+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"f9d6d8c2-ff9d-49cf-a95e-d811571faf41\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:35 GMT", + "date" : "Mon, 18 May 2020 12:24:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "876", + "content-length" : "954", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", + "x-ms-ratelimit-remaining-subscription-reads" : "11881", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aecc5f0c-3d5a-4dbd-b990-1ab9ce03edef", + "x-ms-correlation-request-id" : "83e79c8b-bf43-489f-9e11-f015f6ead313", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39873", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092536Z:aecc5f0c-3d5a-4dbd-b990-1ab9ce03edef", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39941", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122422Z:83e79c8b-bf43-489f-9e11-f015f6ead313", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "7e63d4f0-af66-4b35-a74c-f0fb5d9bbd5d", - "Body" : "{\r\n \"name\": \"dsk-f5b235135\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:10:18.5162357+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"fcba6d0e-76e8-42d2-9e36-81a6233838d5\"\r\n }\r\n}" + "x-ms-request-id" : "56a0470a-48c2-47d5-829e-2352162bb081", + "Body" : "{\r\n \"name\": \"dsk-68920103c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:16:01.7606675+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"add3fb79-38c2-40f0-9d04-df17277bfc9f\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:36 GMT", + "date" : "Mon, 18 May 2020 12:24:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "956", + "content-length" : "1034", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", + "x-ms-ratelimit-remaining-subscription-reads" : "11681", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "48529600-9fd6-4ea3-bf26-f80011e7e6d0", + "x-ms-correlation-request-id" : "fccb014e-5bb3-4b54-8f7a-1651e21ca641", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39872", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092537Z:48529600-9fd6-4ea3-bf26-f80011e7e6d0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39940", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122422Z:fccb014e-5bb3-4b54-8f7a-1651e21ca641", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fbefaa3d-234f-4321-9967-e07fdf02939c", - "Body" : "{\r\n \"name\": \"vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:14:11.5205903+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"80d78696-c3fd-49d6-9ac8-fbc908556292\"\r\n }\r\n}" + "x-ms-request-id" : "a594e6c7-6d8d-48af-b6e6-db3ba8e376cb", + "Body" : "{\r\n \"name\": \"vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:20:10.9018884+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"787e28d0-5041-4006-bcb7-d0587e8f8219\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:39 GMT", + "date" : "Mon, 18 May 2020 12:24:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "876", + "content-length" : "954", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d9e50deb-3892-481b-a473-5ef744ece56d", + "x-ms-correlation-request-id" : "659082f3-1036-4049-9633-4461871fa429", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092539Z:d9e50deb-3892-481b-a473-5ef744ece56d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122424Z:659082f3-1036-4049-9633-4461871fa429", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/795e9e2d-2877-4354-80d2-e7df84c73ad3?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a7054053-779a-4521-9ee6-bb55bc01e909?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "795e9e2d-2877-4354-80d2-e7df84c73ad3", - "Body" : "{\r\n \"name\": \"vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004070\"\r\n }\r\n },\r\n \"diskSizeGB\": 60,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"osState\": \"Generalized\",\r\n \"faultDomain\": 0\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/795e9e2d-2877-4354-80d2-e7df84c73ad3?api-version=2019-03-01" + "x-ms-request-id" : "a7054053-779a-4521-9ee6-bb55bc01e909", + "Body" : "{\r\n \"name\": \"vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"\r\n }\r\n },\r\n \"diskSizeGB\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"osState\": \"Generalized\",\r\n \"faultDomain\": 0\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a7054053-779a-4521-9ee6-bb55bc01e909?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/795e9e2d-2877-4354-80d2-e7df84c73ad3?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a7054053-779a-4521-9ee6-bb55bc01e909?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:10 GMT", + "date" : "Mon, 18 May 2020 12:24:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1323", + "content-length" : "1379", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11737", + "x-ms-ratelimit-remaining-subscription-reads" : "11680", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "36338e14-2fb8-4711-82f1-e5d6eafb994d", + "x-ms-correlation-request-id" : "222cb04e-c5f2-42b2-afab-e84639c75a9c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092610Z:36338e14-2fb8-4711-82f1-e5d6eafb994d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399965", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122454Z:222cb04e-c5f2-42b2-afab-e84639c75a9c", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1d7a7e68-02ce-45ed-9b89-65a894003f9b", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:25:39.6533903+00:00\",\r\n \"endTime\": \"2020-04-29T09:25:39.8877413+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"managedBy\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"FromImage\",\"imageReference\":{\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004070\"}},\"diskSizeGB\":60,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:12:36.9415014+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Reserved\",\"diskSizeBytes\":64424509440,\"uniqueId\":\"61a4c1dc-09aa-48d5-961b-992d19e9a1e8\"}}\r\n },\r\n \"name\": \"795e9e2d-2877-4354-80d2-e7df84c73ad3\"\r\n}" + "x-ms-request-id" : "1db317be-392a-453a-86fe-26319203486b", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:24:24.0897862+00:00\",\r\n \"endTime\": \"2020-05-18T12:24:24.2929146+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"managedBy\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"FromImage\",\"imageReference\":{\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"}},\"diskSizeGB\":60,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:18:36.6048918+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Reserved\",\"diskSizeBytes\":64424509440,\"uniqueId\":\"6875c15e-2d92-4a0e-925d-cd93237693b4\"}}\r\n },\r\n \"name\": \"a7054053-779a-4521-9ee6-bb55bc01e909\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:41 GMT", + "date" : "Mon, 18 May 2020 12:25:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1282", + "content-length" : "1360", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11648", + "x-ms-ratelimit-remaining-subscription-reads" : "11879", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3b59b95b-1852-4b3b-b471-a13d94e0721d", + "x-ms-correlation-request-id" : "cf18d690-6ba3-4f61-977b-86da2e1bd7fd", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39866", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092641Z:3b59b95b-1852-4b3b-b471-a13d94e0721d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4973,Microsoft.Compute/LowCostGet30Min;39923", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122525Z:cf18d690-6ba3-4f61-977b-86da2e1bd7fd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "dfab31b6-c727-4b5b-a7d4-ca4c215f1c10", - "Body" : "{\r\n \"name\": \"vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_OsDisk_1_61a4c1dc09aa48d5961b992d19e9a1e8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004070\"\r\n }\r\n },\r\n \"diskSizeGB\": 60,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:12:36.9415014+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 64424509440,\r\n \"uniqueId\": \"61a4c1dc-09aa-48d5-961b-992d19e9a1e8\"\r\n }\r\n}" + "x-ms-request-id" : "ee2142da-ee74-4de6-8e88-cf2d58663a17", + "Body" : "{\r\n \"name\": \"vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_OsDisk_1_6875c15e2d924a0e925dcd93237693b4\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"\r\n }\r\n },\r\n \"diskSizeGB\": 60,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:18:36.6048918+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 64424509440,\r\n \"uniqueId\": \"6875c15e-2d92-4a0e-925d-cd93237693b4\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:43 GMT", + "date" : "Mon, 18 May 2020 12:25:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "482", + "content-length" : "560", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6156ec34-3dd0-407c-9b3d-001bc0b9e07d", + "x-ms-correlation-request-id" : "1aaec6c1-b3fd-4bcb-8085-9e8ca9c01582", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092644Z:6156ec34-3dd0-407c-9b3d-001bc0b9e07d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7989", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122526Z:1aaec6c1-b3fd-4bcb-8085-9e8ca9c01582", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/496ea0d5-06e8-464d-ac55-fd015d63977f?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/9276b445-0d6d-4578-8ba4-681f7756c028?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "496ea0d5-06e8-464d-ac55-fd015d63977f", - "Body" : "{\r\n \"name\": \"dsk-a5a74272e\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/496ea0d5-06e8-464d-ac55-fd015d63977f?api-version=2019-03-01" + "x-ms-request-id" : "9276b445-0d6d-4578-8ba4-681f7756c028", + "Body" : "{\r\n \"name\": \"dsk-a9c723459\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/9276b445-0d6d-4578-8ba4-681f7756c028?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/496ea0d5-06e8-464d-ac55-fd015d63977f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/9276b445-0d6d-4578-8ba4-681f7756c028?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:14 GMT", + "date" : "Mon, 18 May 2020 12:25:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "961", + "content-length" : "1017", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", + "x-ms-ratelimit-remaining-subscription-reads" : "11812", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "93556a0b-ff38-42b8-a99a-86b51b795ea0", + "x-ms-correlation-request-id" : "98533753-e7b5-4078-9295-e5efa63b3b60", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092715Z:93556a0b-ff38-42b8-a99a-86b51b795ea0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49976,Microsoft.Compute/GetOperation30Min;399950", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122557Z:98533753-e7b5-4078-9295-e5efa63b3b60", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f1f1f617-5292-460c-9904-86bf02f7b92f", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:26:43.8252875+00:00\",\r\n \"endTime\": \"2020-04-29T09:26:44.0440235+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-a5a74272e\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"managedBy\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":110,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:10:16.9692757+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Reserved\",\"diskSizeBytes\":118111600640,\"uniqueId\":\"2316a277-0ce2-4d9c-b003-874acdba4b0f\"}}\r\n },\r\n \"name\": \"496ea0d5-06e8-464d-ac55-fd015d63977f\"\r\n}" + "x-ms-request-id" : "8ff6c344-1e51-42ae-afc3-576f9e1c2784", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:25:26.5432351+00:00\",\r\n \"endTime\": \"2020-05-18T12:25:26.7463815+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-a9c723459\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"managedBy\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":110,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:16:06.4794277+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Reserved\",\"diskSizeBytes\":118111600640,\"uniqueId\":\"2539be4b-d92f-4215-881f-75887ab77158\"}}\r\n },\r\n \"name\": \"9276b445-0d6d-4578-8ba4-681f7756c028\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:45 GMT", + "date" : "Mon, 18 May 2020 12:26:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "878", + "content-length" : "956", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11643", + "x-ms-ratelimit-remaining-subscription-reads" : "11704", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "601894bd-868a-465a-87f6-f49ae7bb187f", + "x-ms-correlation-request-id" : "ab05a5c5-9b01-473a-8982-af521b8d0622", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39862", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092746Z:601894bd-868a-465a-87f6-f49ae7bb187f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4955,Microsoft.Compute/LowCostGet30Min;39904", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122628Z:ab05a5c5-9b01-473a-8982-af521b8d0622", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3e405007-97ca-4480-8dc1-f7fc22b9c5e0", - "Body" : "{\r\n \"name\": \"dsk-a5a74272e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-a5a74272e\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:10:16.9692757+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 118111600640,\r\n \"uniqueId\": \"2316a277-0ce2-4d9c-b003-874acdba4b0f\"\r\n }\r\n}" + "x-ms-request-id" : "d9b89c19-5c6a-4fc9-bf65-59690a852aa1", + "Body" : "{\r\n \"name\": \"dsk-a9c723459\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-a9c723459\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:16:06.4794277+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 118111600640,\r\n \"uniqueId\": \"2539be4b-d92f-4215-881f-75887ab77158\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:47 GMT", + "date" : "Mon, 18 May 2020 12:26:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "521", + "content-length" : "599", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "x-ms-ratelimit-remaining-subscription-writes" : "1165", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60bb1bc2-3ab8-4173-9425-dc424456a26d", + "x-ms-correlation-request-id" : "ab139c29-8e45-444f-9213-371cf8951dc7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092748Z:60bb1bc2-3ab8-4173-9425-dc424456a26d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7987", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122629Z:ab139c29-8e45-444f-9213-371cf8951dc7", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/6e8824df-f6ae-4560-8ac2-84f58cab629c?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/be53ab12-1110-4d47-ae53-60a3bcca38fb?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "6e8824df-f6ae-4560-8ac2-84f58cab629c", - "Body" : "{\r\n \"name\": \"vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/6e8824df-f6ae-4560-8ac2-84f58cab629c?api-version=2019-03-01" + "x-ms-request-id" : "be53ab12-1110-4d47-ae53-60a3bcca38fb", + "Body" : "{\r\n \"name\": \"vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/be53ab12-1110-4d47-ae53-60a3bcca38fb?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/6e8824df-f6ae-4560-8ac2-84f58cab629c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/be53ab12-1110-4d47-ae53-60a3bcca38fb?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:18 GMT", + "date" : "Mon, 18 May 2020 12:27:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1039", + "content-length" : "1094", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", + "x-ms-ratelimit-remaining-subscription-reads" : "11782", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e3244cc4-d5d5-4e95-ba21-8ff9b0ea1849", + "x-ms-correlation-request-id" : "3b116020-93f0-4a43-893d-6a2a55e2659f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092818Z:e3244cc4-d5d5-4e95-ba21-8ff9b0ea1849", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49969,Microsoft.Compute/GetOperation30Min;399939", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122700Z:3b116020-93f0-4a43-893d-6a2a55e2659f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "82a0fe60-9d27-4a13-9f62-96aef99e5211", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:27:48.1065517+00:00\",\r\n \"endTime\": \"2020-04-29T09:27:48.3096718+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"managedBy\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":110,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:12:36.9415014+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Reserved\",\"diskSizeBytes\":118111600640,\"uniqueId\":\"86a72bcb-8645-423c-857c-9a526890b39c\"}}\r\n },\r\n \"name\": \"6e8824df-f6ae-4560-8ac2-84f58cab629c\"\r\n}" + "x-ms-request-id" : "8bac2881-9a45-408e-8ce5-281030d8c49d", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:26:29.5124315+00:00\",\r\n \"endTime\": \"2020-05-18T12:26:29.715577+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"managedBy\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":110,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:18:36.6048918+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Reserved\",\"diskSizeBytes\":118111600640,\"uniqueId\":\"f9d6d8c2-ff9d-49cf-a95e-d811571faf41\"}}\r\n },\r\n \"name\": \"be53ab12-1110-4d47-ae53-60a3bcca38fb\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:49 GMT", + "date" : "Mon, 18 May 2020 12:27:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "956", + "content-length" : "1034", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11748", + "x-ms-ratelimit-remaining-subscription-reads" : "11853", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "522b2baa-c3f0-437b-8e20-4420ef98af9f", + "x-ms-correlation-request-id" : "ed2ff487-cbbf-490f-b95f-ee73d3a3ef64", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39852", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092849Z:522b2baa-c3f0-437b-8e20-4420ef98af9f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4952,Microsoft.Compute/LowCostGet30Min;39883", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122732Z:ed2ff487-cbbf-490f-b95f-ee73d3a3ef64", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "88e60384-cefa-458b-ac34-94748902cf22", - "Body" : "{\r\n \"name\": \"vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk6_86a72bcb8645423c857c9a526890b39c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:12:36.9415014+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 118111600640,\r\n \"uniqueId\": \"86a72bcb-8645-423c-857c-9a526890b39c\"\r\n }\r\n}" + "x-ms-request-id" : "3785c7e6-3b14-4a1b-8a13-d132a1ff6350", + "Body" : "{\r\n \"name\": \"vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk6_f9d6d8c2ff9d49cfa95ed811571faf41\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:18:36.6048918+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 118111600640,\r\n \"uniqueId\": \"f9d6d8c2-ff9d-49cf-a95e-d811571faf41\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:50 GMT", + "date" : "Mon, 18 May 2020 12:27:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "481", + "content-length" : "559", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c55ad24c-a290-4592-8be6-49a1870a5e09", + "x-ms-correlation-request-id" : "48d16912-c9f9-4721-a248-7dd07b54e253", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092851Z:c55ad24c-a290-4592-8be6-49a1870a5e09", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7985", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122734Z:48d16912-c9f9-4721-a248-7dd07b54e253", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a4312bf2-8261-4222-8082-4854d1167705?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/552f7256-5b39-4a86-906c-f7d64cfb0c99?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a4312bf2-8261-4222-8082-4854d1167705", - "Body" : "{\r\n \"name\": \"dsk-f5b235135\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a4312bf2-8261-4222-8082-4854d1167705?api-version=2019-03-01" + "x-ms-request-id" : "552f7256-5b39-4a86-906c-f7d64cfb0c99", + "Body" : "{\r\n \"name\": \"dsk-68920103c\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/552f7256-5b39-4a86-906c-f7d64cfb0c99?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/a4312bf2-8261-4222-8082-4854d1167705?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/552f7256-5b39-4a86-906c-f7d64cfb0c99?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:21 GMT", + "date" : "Mon, 18 May 2020 12:28:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "959", + "content-length" : "1015", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11730", + "x-ms-ratelimit-remaining-subscription-reads" : "11696", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3c28cd4b-cc0f-404e-964d-a6a33c5591a3", + "x-ms-correlation-request-id" : "d0da2eea-b596-4be9-a3c4-9d8be1126436", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092921Z:3c28cd4b-cc0f-404e-964d-a6a33c5591a3", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49976,Microsoft.Compute/GetOperation30Min;399929", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122804Z:d0da2eea-b596-4be9-a3c4-9d8be1126436", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "872fb201-6621-444a-a244-cb1b56ec7422", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:28:51.3253878+00:00\",\r\n \"endTime\": \"2020-04-29T09:28:51.5284944+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-f5b235135\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"managedBy\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":60,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:10:18.5162357+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Reserved\",\"diskSizeBytes\":64424509440,\"uniqueId\":\"fcba6d0e-76e8-42d2-9e36-81a6233838d5\"}}\r\n },\r\n \"name\": \"a4312bf2-8261-4222-8082-4854d1167705\"\r\n}" + "x-ms-request-id" : "2bc2c978-f6d7-45e2-82cb-04e6cc2d14d4", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:27:33.9343379+00:00\",\r\n \"endTime\": \"2020-05-18T12:27:34.1687126+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"dsk-68920103c\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"managedBy\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":60,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:16:01.7606675+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Reserved\",\"diskSizeBytes\":64424509440,\"uniqueId\":\"add3fb79-38c2-40f0-9d04-df17277bfc9f\"}}\r\n },\r\n \"name\": \"552f7256-5b39-4a86-906c-f7d64cfb0c99\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:52 GMT", + "date" : "Mon, 18 May 2020 12:28:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "876", + "content-length" : "954", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", + "x-ms-ratelimit-remaining-subscription-reads" : "11776", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "38adddf1-2237-462c-9959-30b324181e85", + "x-ms-correlation-request-id" : "404a139a-188d-4e96-be27-16fec77b41ad", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092953Z:38adddf1-2237-462c-9959-30b324181e85", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4946,Microsoft.Compute/LowCostGet30Min;39863", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122835Z:404a139a-188d-4e96-be27-16fec77b41ad", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "faec0f8b-72d6-40d7-9969-cceca1fc65f0", - "Body" : "{\r\n \"name\": \"dsk-f5b235135\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/disks/dsk-f5b235135\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:10:18.5162357+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 64424509440,\r\n \"uniqueId\": \"fcba6d0e-76e8-42d2-9e36-81a6233838d5\"\r\n }\r\n}" + "x-ms-request-id" : "81d464f9-bd74-462a-8e36-d0436e82a584", + "Body" : "{\r\n \"name\": \"dsk-68920103c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/disks/dsk-68920103c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:16:01.7606675+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 64424509440,\r\n \"uniqueId\": \"add3fb79-38c2-40f0-9d04-df17277bfc9f\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:54 GMT", + "date" : "Mon, 18 May 2020 12:28:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "521", + "content-length" : "599", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d9bc376b-62a6-4902-a716-90cd9a26f5f2", + "x-ms-correlation-request-id" : "0403c235-8dcd-4798-9d9d-085f2d8a3ac7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092955Z:d9bc376b-62a6-4902-a716-90cd9a26f5f2", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7983", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122837Z:0403c235-8dcd-4798-9d9d-085f2d8a3ac7", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/39f05dd8-853f-482c-a665-26deff093322?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3956178f-492e-4040-b024-94f144de28ae?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "39f05dd8-853f-482c-a665-26deff093322", - "Body" : "{\r\n \"name\": \"vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 210,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/39f05dd8-853f-482c-a665-26deff093322?api-version=2019-03-01" + "x-ms-request-id" : "3956178f-492e-4040-b024-94f144de28ae", + "Body" : "{\r\n \"name\": \"vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 210,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3956178f-492e-4040-b024-94f144de28ae?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/39f05dd8-853f-482c-a665-26deff093322?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3956178f-492e-4040-b024-94f144de28ae?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:25 GMT", + "date" : "Mon, 18 May 2020 12:29:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1038", + "content-length" : "1095", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", + "x-ms-ratelimit-remaining-subscription-reads" : "11849", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8f07546e-8745-44da-9422-50d6923b5334", + "x-ms-correlation-request-id" : "87e40a2d-19ed-4d0a-9e4b-e44c9f92c844", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093026Z:8f07546e-8745-44da-9422-50d6923b5334", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49978,Microsoft.Compute/GetOperation30Min;399925", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122909Z:87e40a2d-19ed-4d0a-9e4b-e44c9f92c844", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f7f68bcc-2f73-4ea0-a5a0-07d9b58a77ef", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:29:54.981928+00:00\",\r\n \"endTime\": \"2020-04-29T09:29:55.1850299+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"managedBy\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":210,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:14:11.5205903+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Reserved\",\"diskSizeBytes\":225485783040,\"uniqueId\":\"80d78696-c3fd-49d6-9ac8-fbc908556292\"}}\r\n },\r\n \"name\": \"39f05dd8-853f-482c-a665-26deff093322\"\r\n}" + "x-ms-request-id" : "a96ccef4-3080-4f1b-a395-a7b097ab8467", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:28:37.7156528+00:00\",\r\n \"endTime\": \"2020-05-18T12:28:37.9344078+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westcentralus\",\"tags\":{},\"managedBy\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":210,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:20:10.9018884+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Reserved\",\"diskSizeBytes\":225485783040,\"uniqueId\":\"787e28d0-5041-4006-bcb7-d0587e8f8219\"}}\r\n },\r\n \"name\": \"3956178f-492e-4040-b024-94f144de28ae\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:56 GMT", + "date" : "Mon, 18 May 2020 12:29:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "956", + "content-length" : "1034", "expires" : "-1", "x-ms-served-by" : "ac847319-dec9-4ef6-8b03-26c03f4c1e4c_132268262566699609", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", + "x-ms-ratelimit-remaining-subscription-reads" : "11688", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "691b4e6e-1f4c-454b-aa24-e648c1ea9378", + "x-ms-correlation-request-id" : "3ebe8f12-655a-4696-af6f-5dab43255867", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4973,Microsoft.Compute/LowCostGet30Min;39834", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093057Z:691b4e6e-1f4c-454b-aa24-e648c1ea9378", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4951,Microsoft.Compute/LowCostGet30Min;39851", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122939Z:3ebe8f12-655a-4696-af6f-5dab43255867", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1695979a-39b6-481c-bab6-08cfb54cf690", - "Body" : "{\r\n \"name\": \"vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVBE902224/providers/Microsoft.Compute/disks/vm12223732812_disk7_80d78696c3fd49d69ac8fbc908556292\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 210,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:14:11.5205903+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 225485783040,\r\n \"uniqueId\": \"80d78696-c3fd-49d6-9ac8-fbc908556292\"\r\n }\r\n}" + "x-ms-request-id" : "a6320eaf-fe20-496f-a97a-9ca57760c562", + "Body" : "{\r\n \"name\": \"vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMVA5B93756/providers/Microsoft.Compute/disks/vm148570831db_disk7_787e28d050414006bcb7d0587e8f8219\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 210,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:20:10.9018884+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 225485783040,\r\n \"uniqueId\": \"787e28d0-5041-4006-bcb7-d0587e8f8219\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvbe902224/providers/Microsoft.Compute/virtualMachines/vm12223732812/start?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomva5b93756/providers/Microsoft.Compute/virtualMachines/vm148570831db/start?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:57 GMT", + "date" : "Mon, 18 May 2020 12:29:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c0f3ffe0-03fc-4061-b369-f556cb95a658", + "x-ms-correlation-request-id" : "9eb71d80-7df7-4d40-8c10-e682f41378ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1179", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093058Z:c0f3ffe0-03fc-4061-b369-f556cb95a658", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29d0eab5-ad37-461e-ba07-2477519e2489?monitor=true&api-version=2019-03-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1185", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122940Z:9eb71d80-7df7-4d40-8c10-e682f41378ac", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ab17383-d8a9-439f-bb1e-eb886703e3fc?monitor=true&api-version=2019-03-01", "cache-control" : "no-cache", - "x-ms-request-id" : "29d0eab5-ad37-461e-ba07-2477519e2489", + "x-ms-request-id" : "5ab17383-d8a9-439f-bb1e-eb886703e3fc", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29d0eab5-ad37-461e-ba07-2477519e2489?api-version=2019-03-01" + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ab17383-d8a9-439f-bb1e-eb886703e3fc?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29d0eab5-ad37-461e-ba07-2477519e2489?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ab17383-d8a9-439f-bb1e-eb886703e3fc?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:28 GMT", + "date" : "Mon, 18 May 2020 12:30:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", + "x-ms-ratelimit-remaining-subscription-reads" : "11838", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b8b7943a-9fd9-4170-beab-e1309b7fede6", + "x-ms-correlation-request-id" : "e6563197-96d3-4050-b983-9d8ea47cd6cb", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29653", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093129Z:b8b7943a-9fd9-4170-beab-e1309b7fede6", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29759", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123010Z:e6563197-96d3-4050-b983-9d8ea47cd6cb", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "e173ee05-2aeb-4b02-b67a-30fe645856a6", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:30:58.2672061+00:00\",\r\n \"endTime\": \"2020-04-29T09:31:11.3611278+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"29d0eab5-ad37-461e-ba07-2477519e2489\"\r\n}" + "x-ms-request-id" : "14ce349b-e24f-47b4-9c07-7922e80c8133", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:29:40.2049899+00:00\",\r\n \"endTime\": \"2020-05-18T12:30:02.8612447+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5ab17383-d8a9-439f-bb1e-eb886703e3fc\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29d0eab5-ad37-461e-ba07-2477519e2489?monitor=true&api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5ab17383-d8a9-439f-bb1e-eb886703e3fc?monitor=true&api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:32:00 GMT", + "date" : "Mon, 18 May 2020 12:30:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", + "x-ms-ratelimit-remaining-subscription-reads" : "11800", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0a54dff0-7612-40c3-b305-8835b8e06a6e", + "x-ms-correlation-request-id" : "5dbe4645-d989-428a-87e4-eae95be874c2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29647", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093200Z:0a54dff0-7612-40c3-b305-8835b8e06a6e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29754", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123041Z:5dbe4645-d989-428a-87e4-eae95be874c2", "cache-control" : "no-cache", - "x-ms-request-id" : "499e5c17-8cb5-4e4f-a18c-720dc5dea604", + "x-ms-request-id" : "7ea588d3-138e-48d8-b69a-8b6e69342233", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvbe902224?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomva5b93756?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:32:04 GMT", + "date" : "Mon, 18 May 2020 12:30:45 GMT", "content-length" : "0", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14995", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1fa29c32-a12b-4796-8a51-823ec7a078b9", + "x-ms-correlation-request-id" : "7742bf6d-498d-4bf0-a08d-73e574c897a2", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093205Z:1fa29c32-a12b-4796-8a51-823ec7a078b9", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZCRTkwMjIyNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123046Z:7742bf6d-498d-4bf0-a08d-73e574c897a2", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBNUI5Mzc1Ni1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "1fa29c32-a12b-4796-8a51-823ec7a078b9", + "x-ms-request-id" : "7742bf6d-498d-4bf0-a08d-73e574c897a2", "Body" : "" } } ], - "variables" : [ "vm12223732812", "rgcomvbe902224", "pip5c194368eb", "dsk-a0a81315f", "dsk-a5a74272e", "dsk-f5b235135", "nic406245b338a", "vnet7711331cac", "pip20063cc9" ] + "variables" : [ "vm148570831db", "rgcomva5b93756", "pip9306716172", "dsk-ba157545a", "dsk-a9c723459", "dsk-68920103c", "nic46571ae665f", "vnet475785d8e3", "pip13763579" ] } \ No newline at end of file diff --git a/sdk/management/samples/src/test/resources/session-records/testManageZonalVirtualMachine.json b/sdk/management/samples/src/test/resources/session-records/testManageZonalVirtualMachine.json index 2e5cdc9b9c96..ebdf63f42fd1 100644 --- a/sdk/management/samples/src/test/resources/session-records/testManageZonalVirtualMachine.json +++ b/sdk/management/samples/src/test/resources/session-records/testManageZonalVirtualMachine.json @@ -1,274 +1,274 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv90801593?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv63e20349?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:02 GMT", - "content-length" : "316", + "date" : "Mon, 18 May 2020 12:14:50 GMT", + "content-length" : "310", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "retry-after" : "0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ed170c52-b16d-4942-a596-f418558feddf", + "x-ms-correlation-request-id" : "f8321fe8-5653-4bcf-8f71-b6c25722e832", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090903Z:ed170c52-b16d-4942-a596-f418558feddf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121450Z:f8321fe8-5653-4bcf-8f71-b6c25722e832", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "ed170c52-b16d-4942-a596-f418558feddf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593\",\"name\":\"rgcomv90801593\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-04-29T09:09:00.591652300Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "f8321fe8-5653-4bcf-8f71-b6c25722e832", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349\",\"name\":\"rgcomv63e20349\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-05-18T12:14:46.712Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet2243591ce7?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip6833861f?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:11 GMT", + "date" : "Mon, 18 May 2020 12:14:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "1343", + "content-length" : "785", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2c4ece5e-91ac-40f5-b98e-0539b786ab13", + "x-ms-correlation-request-id" : "9a78abfb-c095-47f0-b102-89b3ab1a2d78", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c3632cc0-bac8-473d-9e54-b89eb850547e", + "x-ms-arm-service-request-id" : "1d27de11-d4e9-4ae3-892c-ecc978729308", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090912Z:2c4ece5e-91ac-40f5-b98e-0539b786ab13", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121458Z:9a78abfb-c095-47f0-b102-89b3ab1a2d78", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5e79afee-61e3-41ab-9d1e-87fa13004ab4", - "Body" : "{\r\n \"name\": \"vnet2243591ce7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet2243591ce7\",\r\n \"etag\": \"W/\\\"54c74995-0976-4d2a-b899-0f56b9232709\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f633d9c9-be88-415c-9e11-5fc589303bbd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet2243591ce7/subnets/subnet1\",\r\n \"etag\": \"W/\\\"54c74995-0976-4d2a-b899-0f56b9232709\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/5e79afee-61e3-41ab-9d1e-87fa13004ab4?api-version=2019-06-01" + "x-ms-request-id" : "9739f2cf-6718-492c-8aa2-52bbfe871662", + "Body" : "{\r\n \"name\": \"pip6833861f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip6833861f\",\r\n \"etag\": \"W/\\\"b82f38b0-7cb1-4012-8089-e0b2cb42dd4b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4170f482-70a3-4a83-9f08-b03a367cc53f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip15af053721\",\r\n \"fqdn\": \"pip15af053721.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9739f2cf-6718-492c-8aa2-52bbfe871662?api-version=2019-06-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip47239210?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet292013dd2b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:13 GMT", + "date" : "Mon, 18 May 2020 12:14:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", - "content-length" : "785", + "content-length" : "1343", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b405925b-dad5-4d80-9ede-09428e7538b9", + "x-ms-correlation-request-id" : "e1c7a552-6828-4259-9c80-4a8a3757e19b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "cc95bfed-45cb-4b2c-ba6d-518037cf9082", + "x-ms-arm-service-request-id" : "b51bcc8e-0945-4f30-8627-5520ea6b5bb5", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090914Z:b405925b-dad5-4d80-9ede-09428e7538b9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121459Z:e1c7a552-6828-4259-9c80-4a8a3757e19b", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "f1e22fb3-d482-44f1-a775-a47b453af178", - "Body" : "{\r\n \"name\": \"pip47239210\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip47239210\",\r\n \"etag\": \"W/\\\"a881c010-7bbe-4641-9f46-481544590878\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a061e74c-8dcb-4868-93ee-218be2c00ab6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip188f94488b\",\r\n \"fqdn\": \"pip188f94488b.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/f1e22fb3-d482-44f1-a775-a47b453af178?api-version=2019-06-01" + "x-ms-request-id" : "2f80b7a3-29e1-464d-a5bd-ab2caf538cf1", + "Body" : "{\r\n \"name\": \"vnet292013dd2b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet292013dd2b\",\r\n \"etag\": \"W/\\\"6a20cf3c-8beb-4e42-8796-cecdee9f7163\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d0e8867b-ef65-4620-b20a-c1b78e525dd4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet292013dd2b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6a20cf3c-8beb-4e42-8796-cecdee9f7163\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/2f80b7a3-29e1-464d-a5bd-ab2caf538cf1?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/5e79afee-61e3-41ab-9d1e-87fa13004ab4?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9739f2cf-6718-492c-8aa2-52bbfe871662?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:44 GMT", + "date" : "Mon, 18 May 2020 12:15:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0432ff24-7877-4208-9307-8d2d83f12805", + "x-ms-correlation-request-id" : "097bbf29-4351-4956-a612-7659fe2eca94", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6ceac3a5-aae7-4f7e-ba6d-2094729ec7bf", + "x-ms-arm-service-request-id" : "30a4d60c-cafc-4171-8c44-b3451dd70abb", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090944Z:0432ff24-7877-4208-9307-8d2d83f12805", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121528Z:097bbf29-4351-4956-a612-7659fe2eca94", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5dbf2b6e-2f59-4428-bcbe-ecdb4c0b3575", + "x-ms-request-id" : "aeb8630a-c9c1-48fc-94c5-03b189dbedf2", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/f1e22fb3-d482-44f1-a775-a47b453af178?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/2f80b7a3-29e1-464d-a5bd-ab2caf538cf1?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:09:44 GMT", + "date" : "Mon, 18 May 2020 12:15:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9439e9a4-42c7-4656-9493-c7381db40259", + "x-ms-correlation-request-id" : "f41d54d6-e4db-4ac0-8c5c-8ec6428704d4", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "822256d9-4425-469e-a6ea-66fbc39c33d5", + "x-ms-arm-service-request-id" : "2e9d9ec2-25cd-4789-9dcd-bca89e039859", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T090945Z:9439e9a4-42c7-4656-9493-c7381db40259", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121530Z:f41d54d6-e4db-4ac0-8c5c-8ec6428704d4", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "a2ba9c39-ef0e-4ae8-b813-abe8c4634337", + "x-ms-request-id" : "47f62a41-7d0d-4025-9c18-128670a9584e", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet2243591ce7?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip6833861f?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:15 GMT", + "date" : "Mon, 18 May 2020 12:15:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1345", + "content-length" : "786", "expires" : "-1", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "005d9839-2d85-4009-8b78-bb6ad5f27c3f", + "x-ms-correlation-request-id" : "1c880b40-c36c-49c9-92ad-c3d3622481e2", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e28ef776-2893-4787-8a1c-d54fee3b5457", + "x-ms-arm-service-request-id" : "b1a7e6ba-beca-41c1-8aaa-8ae3af7e1a0a", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091016Z:005d9839-2d85-4009-8b78-bb6ad5f27c3f", - "etag" : "W/\"693cc44b-43d3-40ba-a8d6-96f3dbeab13c\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121559Z:1c880b40-c36c-49c9-92ad-c3d3622481e2", + "etag" : "W/\"2d4bf14e-f0ab-453f-bfe7-cb43177f80a5\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "b01cc33f-c690-4db8-85b6-cc4ae90334af", - "Body" : "{\r\n \"name\": \"vnet2243591ce7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet2243591ce7\",\r\n \"etag\": \"W/\\\"693cc44b-43d3-40ba-a8d6-96f3dbeab13c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f633d9c9-be88-415c-9e11-5fc589303bbd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet2243591ce7/subnets/subnet1\",\r\n \"etag\": \"W/\\\"693cc44b-43d3-40ba-a8d6-96f3dbeab13c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "4aab3348-3740-43c7-a72d-c78d0990cbdf", + "Body" : "{\r\n \"name\": \"pip6833861f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip6833861f\",\r\n \"etag\": \"W/\\\"2d4bf14e-f0ab-453f-bfe7-cb43177f80a5\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4170f482-70a3-4a83-9f08-b03a367cc53f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip15af053721\",\r\n \"fqdn\": \"pip15af053721.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip47239210?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet292013dd2b?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:15 GMT", + "date" : "Mon, 18 May 2020 12:16:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "786", + "content-length" : "1345", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", + "x-ms-ratelimit-remaining-subscription-reads" : "11941", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "db120fa7-3c8a-4ef3-bbd7-ee76cac4e6b8", + "x-ms-correlation-request-id" : "6a711ca5-32f2-44ba-bab3-d95edc777c16", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d0ec8597-31e2-44d9-b020-12839d0a6278", + "x-ms-arm-service-request-id" : "63970a7d-0e37-4de3-aa2a-2fdc15d3feaf", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091016Z:db120fa7-3c8a-4ef3-bbd7-ee76cac4e6b8", - "etag" : "W/\"f351a7f2-4b44-4519-91b4-cde63ec0c4e1\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121601Z:6a711ca5-32f2-44ba-bab3-d95edc777c16", + "etag" : "W/\"5bfc2f23-5638-4342-82a4-b9bf9d9ea5df\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2d7a69fa-0b24-4db7-8218-14621109770f", - "Body" : "{\r\n \"name\": \"pip47239210\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip47239210\",\r\n \"etag\": \"W/\\\"f351a7f2-4b44-4519-91b4-cde63ec0c4e1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a061e74c-8dcb-4868-93ee-218be2c00ab6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip188f94488b\",\r\n \"fqdn\": \"pip188f94488b.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + "x-ms-request-id" : "482b8e8d-4c4f-4a0e-b9e9-606ac22efb4a", + "Body" : "{\r\n \"name\": \"vnet292013dd2b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet292013dd2b\",\r\n \"etag\": \"W/\\\"5bfc2f23-5638-4342-82a4-b9bf9d9ea5df\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d0e8867b-ef65-4620-b20a-c1b78e525dd4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet292013dd2b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5bfc2f23-5638-4342-82a4-b9bf9d9ea5df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic66610848fef?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic07286fee9b9?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:24 GMT", + "date" : "Mon, 18 May 2020 12:16:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1843", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cfc2e905-9be9-408a-85ab-2db869916748", + "x-ms-correlation-request-id" : "318b315b-6bdd-47f1-aa00-89376b44059e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "42353282-c0ae-41dd-af2b-33705694607d", + "x-ms-arm-service-request-id" : "7476e104-2053-4185-9dc4-44024d636230", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091025Z:cfc2e905-9be9-408a-85ab-2db869916748", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121610Z:318b315b-6bdd-47f1-aa00-89376b44059e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "52e31483-c307-4f3c-8513-8dcbec83c568", - "Body" : "{\r\n \"name\": \"nic66610848fef\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic66610848fef\",\r\n \"etag\": \"W/\\\"66f61e75-350c-4524-a639-d15dca2e01e9\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"304f142f-ccf2-4272-9e47-87e9dc304f3c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic66610848fef/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"66f61e75-350c-4524-a639-d15dca2e01e9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip47239210\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet2243591ce7/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zhmth3uixzoedhqrl5cysmb1xf.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/52e31483-c307-4f3c-8513-8dcbec83c568?api-version=2019-06-01" + "x-ms-request-id" : "2b901029-c9bd-4931-a755-d166acef2676", + "Body" : "{\r\n \"name\": \"nic07286fee9b9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic07286fee9b9\",\r\n \"etag\": \"W/\\\"576d956b-a7a3-4b76-b332-b4ac3c0a033c\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"425d1e14-1e42-4720-98a5-62b5c77b65b6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic07286fee9b9/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"576d956b-a7a3-4b76-b332-b4ac3c0a033c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip6833861f\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet292013dd2b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"podorudf32qenmqkyg1y2us30e.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/2b901029-c9bd-4931-a755-d166acef2676?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/52e31483-c307-4f3c-8513-8dcbec83c568?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/2b901029-c9bd-4931-a755-d166acef2676?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:10:56 GMT", + "date" : "Mon, 18 May 2020 12:16:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", + "x-ms-ratelimit-remaining-subscription-reads" : "11947", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e1cbc9e2-c31a-4960-94b8-213c3f8fb123", + "x-ms-correlation-request-id" : "709c9270-cfdc-4e8e-ac8c-49aa3f008c88", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5fbf7417-2e6f-4909-b150-3b3e5fc9a0cc", + "x-ms-arm-service-request-id" : "4eef1953-13d1-42eb-b407-19f47e56cc95", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091056Z:e1cbc9e2-c31a-4960-94b8-213c3f8fb123", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121641Z:709c9270-cfdc-4e8e-ac8c-49aa3f008c88", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d4cf53dc-6593-4bb7-a12a-92d40a903497", + "x-ms-request-id" : "60a7f75c-af2c-48f1-acf0-fbbc9e291914", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic66610848fef?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic07286fee9b9?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:27 GMT", + "date" : "Mon, 18 May 2020 12:17:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1843", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", + "x-ms-ratelimit-remaining-subscription-reads" : "11939", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2bc2d7b0-3bf9-44d4-9391-dfcdebfd73e3", + "x-ms-correlation-request-id" : "990f56ab-40ef-4fec-8d86-0b914327dc5a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2ce980ba-c144-48aa-84a3-8f4a73a2430d", + "x-ms-arm-service-request-id" : "7112e540-1896-49d0-a285-9b58af3280ef", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091127Z:2bc2d7b0-3bf9-44d4-9391-dfcdebfd73e3", - "etag" : "W/\"66f61e75-350c-4524-a639-d15dca2e01e9\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121711Z:990f56ab-40ef-4fec-8d86-0b914327dc5a", + "etag" : "W/\"576d956b-a7a3-4b76-b332-b4ac3c0a033c\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3c8f1da9-0688-4b88-838b-e407bb857238", - "Body" : "{\r\n \"name\": \"nic66610848fef\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic66610848fef\",\r\n \"etag\": \"W/\\\"66f61e75-350c-4524-a639-d15dca2e01e9\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"304f142f-ccf2-4272-9e47-87e9dc304f3c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic66610848fef/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"66f61e75-350c-4524-a639-d15dca2e01e9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip47239210\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet2243591ce7/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zhmth3uixzoedhqrl5cysmb1xf.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "ec8b12b0-5b80-4787-9ed2-8774d5b170b3", + "Body" : "{\r\n \"name\": \"nic07286fee9b9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic07286fee9b9\",\r\n \"etag\": \"W/\\\"576d956b-a7a3-4b76-b332-b4ac3c0a033c\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"425d1e14-1e42-4720-98a5-62b5c77b65b6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic07286fee9b9/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"576d956b-a7a3-4b76-b332-b4ac3c0a033c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip6833861f\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet292013dd2b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"podorudf32qenmqkyg1y2us30e.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/virtualMachines/lvm168b90260f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/virtualMachines/lvm19e933840b?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:11:35 GMT", + "date" : "Mon, 18 May 2020 12:17:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1512", @@ -277,1135 +277,955 @@ "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fc363367-106a-47b4-99fb-12e3b017328e", + "x-ms-correlation-request-id" : "46773b1c-e032-4be2-9922-4bed8ac1cbc8", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091135Z:fc363367-106a-47b4-99fb-12e3b017328e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121718Z:46773b1c-e032-4be2-9922-4bed8ac1cbc8", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "74c6b09c-b39a-4418-b2c9-24551c70f918", - "Body" : "{\r\n \"name\": \"lvm168b90260f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/virtualMachines/lvm168b90260f\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b68713f0-c1b3-41f6-b4ae-d7cd2468ecac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm168b90260f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic66610848fef\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/74c6b09c-b39a-4418-b2c9-24551c70f918?api-version=2019-03-01" + "x-ms-request-id" : "ef198005-c129-4eb2-9659-1cc7e1367d4b", + "Body" : "{\r\n \"name\": \"lvm19e933840b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/virtualMachines/lvm19e933840b\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fc44ab73-2192-4a3a-9bba-c7b0207fb058\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm19e933840b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic07286fee9b9\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/ef198005-c129-4eb2-9659-1cc7e1367d4b?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/74c6b09c-b39a-4418-b2c9-24551c70f918?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/ef198005-c129-4eb2-9659-1cc7e1367d4b?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:05 GMT", + "date" : "Mon, 18 May 2020 12:17:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", + "x-ms-ratelimit-remaining-subscription-reads" : "11787", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2c388846-a39c-43f2-8884-76411e0cd06b", + "x-ms-correlation-request-id" : "d4cf3a38-659d-43d7-8231-6bc135e78509", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091206Z:2c388846-a39c-43f2-8884-76411e0cd06b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121749Z:d4cf3a38-659d-43d7-8231-6bc135e78509", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "bbe3743d-5f93-496a-8343-038838a4fd9f", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:11:33.6040656+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74c6b09c-b39a-4418-b2c9-24551c70f918\"\r\n}" + "x-ms-request-id" : "018c3024-49d0-443d-b257-205bae4dd9f0", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:17:16.8133443+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef198005-c129-4eb2-9659-1cc7e1367d4b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/74c6b09c-b39a-4418-b2c9-24551c70f918?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/ef198005-c129-4eb2-9659-1cc7e1367d4b?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:12:36 GMT", + "date" : "Mon, 18 May 2020 12:18:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", + "x-ms-ratelimit-remaining-subscription-reads" : "11900", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "75a486f8-dfce-4232-b1f0-3031ff0247f6", + "x-ms-correlation-request-id" : "43b3ee81-ee35-4bfb-a3f3-ff740fcf5612", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091236Z:75a486f8-dfce-4232-b1f0-3031ff0247f6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121819Z:43b3ee81-ee35-4bfb-a3f3-ff740fcf5612", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "426e8732-7d0e-4357-a9af-b169110f5cef", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:17:16.8133443+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef198005-c129-4eb2-9659-1cc7e1367d4b\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/ef198005-c129-4eb2-9659-1cc7e1367d4b?api-version=2019-03-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" + }, + "Response" : { + "date" : "Mon, 18 May 2020 12:18:49 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "184", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11841", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "5e2de06c-0829-4f5c-ade4-fc258e954a39", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-content-type-options" : "nosniff", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121850Z:5e2de06c-0829-4f5c-ade4-fc258e954a39", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "009032a3-c9dd-40e2-a8af-478a67879c4c", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:11:33.6040656+00:00\",\r\n \"endTime\": \"2020-04-29T09:12:32.6382734+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"74c6b09c-b39a-4418-b2c9-24551c70f918\"\r\n}" + "x-ms-request-id" : "a37abfb9-15fc-418b-a33e-2ba4f28ab6b9", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:17:16.8133443+00:00\",\r\n \"endTime\": \"2020-05-18T12:18:20.8324751+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ef198005-c129-4eb2-9659-1cc7e1367d4b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/virtualMachines/lvm168b90260f?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/virtualMachines/lvm19e933840b?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:06 GMT", + "date" : "Mon, 18 May 2020 12:19:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1781", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9ab08446-c5f4-4627-898d-d7a3aa930f5e", + "x-ms-correlation-request-id" : "3222f2e8-2ca9-4178-bc26-35fe12aef7ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091307Z:9ab08446-c5f4-4627-898d-d7a3aa930f5e", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121920Z:3222f2e8-2ca9-4178-bc26-35fe12aef7ac", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "19e48635-9dc4-4797-9800-84c418e69e39", - "Body" : "{\r\n \"name\": \"lvm168b90260f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/virtualMachines/lvm168b90260f\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b68713f0-c1b3-41f6-b4ae-d7cd2468ecac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm168b90260f_OsDisk_1_86bf68dd797a430b82145607dd7a313e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV90801593/providers/Microsoft.Compute/disks/lvm168b90260f_OsDisk_1_86bf68dd797a430b82145607dd7a313e\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm168b90260f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic66610848fef\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}" + "x-ms-request-id" : "80fdc290-5a01-4db3-aae3-b37aaae953a5", + "Body" : "{\r\n \"name\": \"lvm19e933840b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/virtualMachines/lvm19e933840b\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fc44ab73-2192-4a3a-9bba-c7b0207fb058\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm19e933840b_OsDisk_1_5e225a3175094683b5dfab519ad66426\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV63E20349/providers/Microsoft.Compute/disks/lvm19e933840b_OsDisk_1_5e225a3175094683b5dfab519ad66426\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm19e933840b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic07286fee9b9\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip2517272327?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip2ea8541298?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:14 GMT", + "date" : "Mon, 18 May 2020 12:19:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "660", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5f328092-df03-4125-ba1c-814bf425259a", + "x-ms-correlation-request-id" : "d79f3b65-5d63-4af2-8a34-10b15a191776", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2a7efa9c-d0f0-4d42-8942-8539c5ab8fe6", + "x-ms-arm-service-request-id" : "1296f5a8-2f6d-4a82-a7a6-be6c9f2f1b86", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091315Z:5f328092-df03-4125-ba1c-814bf425259a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T121931Z:d79f3b65-5d63-4af2-8a34-10b15a191776", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "3f2fe273-18fb-4e76-946a-93a9e0f5e6e3", - "Body" : "{\r\n \"name\": \"pip2517272327\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip2517272327\",\r\n \"etag\": \"W/\\\"d08fc961-d733-4b56-9ff8-5fa6ed2acd41\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"972129a6-d2fa-4dd4-a4cc-1798b989834b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3f2fe273-18fb-4e76-946a-93a9e0f5e6e3?api-version=2019-06-01" + "x-ms-request-id" : "7a8ceb70-d47d-4b20-9cad-2372d53292c3", + "Body" : "{\r\n \"name\": \"pip2ea8541298\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip2ea8541298\",\r\n \"etag\": \"W/\\\"4950cab7-ad28-426f-81d3-720ad3a5ecda\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"81b772de-9b1f-41e2-8d66-3ef22d88aaa1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/7a8ceb70-d47d-4b20-9cad-2372d53292c3?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3f2fe273-18fb-4e76-946a-93a9e0f5e6e3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/7a8ceb70-d47d-4b20-9cad-2372d53292c3?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:13:46 GMT", + "date" : "Mon, 18 May 2020 12:20:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", + "x-ms-ratelimit-remaining-subscription-reads" : "11892", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fc1138e3-9702-4d36-ac67-cecfea17b175", + "x-ms-correlation-request-id" : "8215d523-58b8-4107-a76f-804b8dcacd3d", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "79ae02b7-f722-44b1-97d7-7ae68556f7b3", + "x-ms-arm-service-request-id" : "8fdb17d4-a4d8-47dc-b845-b2adf3c1ec74", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091346Z:fc1138e3-9702-4d36-ac67-cecfea17b175", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122002Z:8215d523-58b8-4107-a76f-804b8dcacd3d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "df5c991f-c605-4a24-9f80-cb36a66d9d5b", + "x-ms-request-id" : "ddbce9a9-6c76-4b18-8546-8ae3ed6adddb", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip2517272327?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip2ea8541298?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:16 GMT", + "date" : "Mon, 18 May 2020 12:20:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "695", + "content-length" : "696", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11790", + "x-ms-ratelimit-remaining-subscription-reads" : "11704", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3891a9fa-7a9a-4153-a749-6c1a35b1caad", + "x-ms-correlation-request-id" : "0b721ecb-3a23-4a3c-ac0e-2a3cba29c8d1", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "fb73de4f-b441-4ea6-8891-9750df49416e", + "x-ms-arm-service-request-id" : "b072bba9-1dc4-40cf-8818-70b6600e0da9", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091416Z:3891a9fa-7a9a-4153-a749-6c1a35b1caad", - "etag" : "W/\"657ddb10-f226-43ca-8224-a4a1141a2a51\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122033Z:0b721ecb-3a23-4a3c-ac0e-2a3cba29c8d1", + "etag" : "W/\"a2ab9c43-ecaf-46b5-aba4-034ec744203a\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1495d795-9bf4-45a6-b25c-016ea089544e", - "Body" : "{\r\n \"name\": \"pip2517272327\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip2517272327\",\r\n \"etag\": \"W/\\\"657ddb10-f226-43ca-8224-a4a1141a2a51\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"972129a6-d2fa-4dd4-a4cc-1798b989834b\",\r\n \"ipAddress\": \"20.186.88.29\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}" + "x-ms-request-id" : "2f193736-b721-4724-b96c-3f6a5d7d11de", + "Body" : "{\r\n \"name\": \"pip2ea8541298\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip2ea8541298\",\r\n \"etag\": \"W/\\\"a2ab9c43-ecaf-46b5-aba4-034ec744203a\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"81b772de-9b1f-41e2-8d66-3ef22d88aaa1\",\r\n \"ipAddress\": \"20.186.90.103\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/disks/ds1b338678d2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/disks/ds8f37517227?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:21 GMT", + "date" : "Mon, 18 May 2020 12:20:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "276", "expires" : "-1", - "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132299835082106774", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132307948826283056", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", "retry-after" : "0", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a6d3e3f6-bc69-42e6-8dc8-78e3faf13f9c", + "x-ms-correlation-request-id" : "11ade100-6aea-4c16-ade1-3a326acbad91", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091421Z:a6d3e3f6-bc69-42e6-8dc8-78e3faf13f9c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122036Z:11ade100-6aea-4c16-ade1-3a326acbad91", "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/48f077f5-70c8-4f5d-b293-b7b3e54ae298?monitor=true&api-version=2019-03-01", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/dcb6b488-fc67-4e49-af21-0982ef9e9cc6?monitor=true&api-version=2019-07-01", "cache-control" : "no-cache", - "x-ms-request-id" : "48f077f5-70c8-4f5d-b293-b7b3e54ae298", - "Body" : "{\r\n \"name\": \"ds1b338678d2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/48f077f5-70c8-4f5d-b293-b7b3e54ae298?api-version=2019-03-01" + "x-ms-request-id" : "dcb6b488-fc67-4e49-af21-0982ef9e9cc6", + "Body" : "{\r\n \"name\": \"ds8f37517227\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/dcb6b488-fc67-4e49-af21-0982ef9e9cc6?api-version=2019-07-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/48f077f5-70c8-4f5d-b293-b7b3e54ae298?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/dcb6b488-fc67-4e49-af21-0982ef9e9cc6?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:14:52 GMT", + "date" : "Mon, 18 May 2020 12:21:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "815", + "content-length" : "871", "expires" : "-1", - "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132299835082106774", + "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132307948826283056", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", + "x-ms-ratelimit-remaining-subscription-reads" : "11830", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a189eae5-4bea-4548-92cb-f59860d37fe8", + "x-ms-correlation-request-id" : "56447c08-c3b6-476c-a151-966bf39eb68f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091452Z:a189eae5-4bea-4548-92cb-f59860d37fe8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122107Z:56447c08-c3b6-476c-a151-966bf39eb68f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "5f58f4c6-c7e8-4985-baea-c26b9cb1cd84", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:14:21.6901345+00:00\",\r\n \"endTime\": \"2020-04-29T09:14:21.8307559+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ds1b338678d2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/disks/ds1b338678d2\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus2\",\"tags\":{},\"zones\":[\"1\"],\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"timeCreated\":\"2020-04-29T09:14:21.6901345+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"eb1f1cf9-c076-43fb-8c4c-fd0ccb0f7f70\"}}\r\n },\r\n \"name\": \"48f077f5-70c8-4f5d-b293-b7b3e54ae298\"\r\n}" + "x-ms-request-id" : "019f9eb1-018a-4443-a41c-78fca4415618", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:20:36.0585764+00:00\",\r\n \"endTime\": \"2020-05-18T12:20:36.1523162+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"name\":\"ds8f37517227\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/disks/ds8f37517227\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus2\",\"tags\":{},\"zones\":[\"1\"],\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":100,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2020-05-18T12:20:36.0585764+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":107374182400,\"uniqueId\":\"86c41afc-0a5b-4181-9ed6-a576a72f0bec\"}}\r\n },\r\n \"name\": \"dcb6b488-fc67-4e49-af21-0982ef9e9cc6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/disks/ds1b338678d2?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/disks/ds8f37517227?api-version=2019-07-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:22 GMT", + "date" : "Mon, 18 May 2020 12:21:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "742", + "content-length" : "820", "expires" : "-1", - "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132299835082106774", + "x-ms-served-by" : "c39126ab-a999-4fe6-83b1-5690b131d1b1_132307948826283056", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", + "x-ms-ratelimit-remaining-subscription-reads" : "11817", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3dee3a43-87d5-442e-a8e5-f79fbdc1c828", + "x-ms-correlation-request-id" : "f30d5d42-a59f-4835-bd4a-eee0384c5dbd", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091523Z:3dee3a43-87d5-442e-a8e5-f79fbdc1c828", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122138Z:f30d5d42-a59f-4835-bd4a-eee0384c5dbd", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "fc92de57-a85e-4ed1-aa0f-add5bdff580e", - "Body" : "{\r\n \"name\": \"ds1b338678d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/disks/ds1b338678d2\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2020-04-29T09:14:21.6901345+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"eb1f1cf9-c076-43fb-8c4c-fd0ccb0f7f70\"\r\n }\r\n}" + "x-ms-request-id" : "af1d1501-35a6-42a2-ab22-a5346bed6b45", + "Body" : "{\r\n \"name\": \"ds8f37517227\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/disks/ds8f37517227\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-05-18T12:20:36.0585764+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"86c41afc-0a5b-4181-9ed6-a576a72f0bec\"\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv90801593?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv63e20349?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:25 GMT", - "content-length" : "316", + "date" : "Mon, 18 May 2020 12:21:41 GMT", + "content-length" : "310", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", "retry-after" : "0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "87150439-ed82-4aff-8d54-6a1150463799", + "x-ms-correlation-request-id" : "665bf84a-c325-4653-9eeb-a559ca58f1fe", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091525Z:87150439-ed82-4aff-8d54-6a1150463799", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122141Z:665bf84a-c325-4653-9eeb-a559ca58f1fe", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "87150439-ed82-4aff-8d54-6a1150463799", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593\",\"name\":\"rgcomv90801593\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-04-29T09:15:23.457026600Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" + "x-ms-request-id" : "665bf84a-c325-4653-9eeb-a559ca58f1fe", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349\",\"name\":\"rgcomv63e20349\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-05-18T12:21:38.518Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet9049487af5?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet746891eb19?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:15:32 GMT", + "date" : "Mon, 18 May 2020 12:21:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1343", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b044f9c2-668c-4578-bf1b-f5a72e77021b", + "x-ms-correlation-request-id" : "e4e446a1-d215-47f0-85f7-b239f6567f5f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "be93ee04-130e-4a58-a66b-6a952c1c1da2", + "x-ms-arm-service-request-id" : "c4984202-0aba-4e62-a457-15d4cd0a5815", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091532Z:b044f9c2-668c-4578-bf1b-f5a72e77021b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122150Z:e4e446a1-d215-47f0-85f7-b239f6567f5f", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9515c2ad-a49e-4bc5-a7a8-2b261e5482ee", - "Body" : "{\r\n \"name\": \"vnet9049487af5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet9049487af5\",\r\n \"etag\": \"W/\\\"65fdd549-492f-4927-91a7-759fc4294582\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1c81228a-78de-4769-9968-39b510eae3f5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet9049487af5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"65fdd549-492f-4927-91a7-759fc4294582\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9515c2ad-a49e-4bc5-a7a8-2b261e5482ee?api-version=2019-06-01" + "x-ms-request-id" : "a08d9461-d312-4717-b9f1-0fcd84ec7cbb", + "Body" : "{\r\n \"name\": \"vnet746891eb19\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet746891eb19\",\r\n \"etag\": \"W/\\\"d111c2ca-b766-43c0-8632-9d6699c55d8f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"09a9f9e6-460b-4e96-9b94-a0749954bce4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet746891eb19/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d111c2ca-b766-43c0-8632-9d6699c55d8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/a08d9461-d312-4717-b9f1-0fcd84ec7cbb?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9515c2ad-a49e-4bc5-a7a8-2b261e5482ee?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/a08d9461-d312-4717-b9f1-0fcd84ec7cbb?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:03 GMT", + "date" : "Mon, 18 May 2020 12:22:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11812", + "x-ms-ratelimit-remaining-subscription-reads" : "11869", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "93ae8d3d-2daf-4895-bbea-b279f37cbccf", + "x-ms-correlation-request-id" : "94875e1b-cc28-42c7-a697-baf875551c2e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e20f4b65-b243-4fc0-8ae2-f8e60b1917d0", + "x-ms-arm-service-request-id" : "be252b0e-4545-4ae8-b898-298bf2dd9a4b", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091603Z:93ae8d3d-2daf-4895-bbea-b279f37cbccf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122221Z:94875e1b-cc28-42c7-a697-baf875551c2e", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "1b035c32-e18b-466f-bd98-41e78d34dffd", + "x-ms-request-id" : "39961adf-bb73-4162-949f-32886bd56eb3", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet9049487af5?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet746891eb19?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:34 GMT", + "date" : "Mon, 18 May 2020 12:22:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1345", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11781", + "x-ms-ratelimit-remaining-subscription-reads" : "11765", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "348d5de5-ad65-48d8-8c7b-aa6619e2f4c6", + "x-ms-correlation-request-id" : "32352c1f-9cc4-41be-9bbc-ed6c3215d197", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e9917820-244c-4dd5-9b0f-1dab70cb1af1", + "x-ms-arm-service-request-id" : "cfa1395c-3ecb-4c72-bfe8-6306aae7e933", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091634Z:348d5de5-ad65-48d8-8c7b-aa6619e2f4c6", - "etag" : "W/\"7ea16317-ceba-44ba-83c0-01eb1f76c836\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122251Z:32352c1f-9cc4-41be-9bbc-ed6c3215d197", + "etag" : "W/\"c51a14ec-6f66-4ba1-9487-9566d2b809a0\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "d4c90225-e893-45f1-a81d-ca475ea415d6", - "Body" : "{\r\n \"name\": \"vnet9049487af5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet9049487af5\",\r\n \"etag\": \"W/\\\"7ea16317-ceba-44ba-83c0-01eb1f76c836\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c81228a-78de-4769-9968-39b510eae3f5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet9049487af5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7ea16317-ceba-44ba-83c0-01eb1f76c836\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + "x-ms-request-id" : "79f3e6aa-caae-4430-a2f9-688c587eae55", + "Body" : "{\r\n \"name\": \"vnet746891eb19\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet746891eb19\",\r\n \"etag\": \"W/\\\"c51a14ec-6f66-4ba1-9487-9566d2b809a0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"09a9f9e6-460b-4e96-9b94-a0749954bce4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet746891eb19/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c51a14ec-6f66-4ba1-9487-9566d2b809a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic85341381ad3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic31672a54683?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.network/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:16:41 GMT", + "date" : "Mon, 18 May 2020 12:22:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1845", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5965a7d2-80e3-4c86-9dad-3dce7a19fcc7", + "x-ms-correlation-request-id" : "35c05ea7-6feb-4a59-b667-b0dc5ae6975d", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "98169210-3b00-4cfc-ad1b-800cd1126edf", + "x-ms-arm-service-request-id" : "0f681f18-b5d3-4e35-831c-e12adfc3a8b2", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091641Z:5965a7d2-80e3-4c86-9dad-3dce7a19fcc7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122258Z:35c05ea7-6feb-4a59-b667-b0dc5ae6975d", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "807a2846-ec34-4f13-a87c-c3d8ebbf38da", - "Body" : "{\r\n \"name\": \"nic85341381ad3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic85341381ad3\",\r\n \"etag\": \"W/\\\"85f91b74-061b-4ebc-b8ec-f3bd36456b54\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bc6621aa-d2eb-4baf-ae97-61a0f9168190\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic85341381ad3/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"85f91b74-061b-4ebc-b8ec-f3bd36456b54\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip2517272327\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet9049487af5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ririchg4pbuupglihg0rb0xd4f.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/807a2846-ec34-4f13-a87c-c3d8ebbf38da?api-version=2019-06-01" + "x-ms-request-id" : "94205451-0c6a-492e-9b17-3f4f7733945d", + "Body" : "{\r\n \"name\": \"nic31672a54683\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic31672a54683\",\r\n \"etag\": \"W/\\\"795ef449-32d6-4c6f-b921-afe42e64653e\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1626f131-eb90-4760-97fd-aac5ed254f6c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic31672a54683/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"795ef449-32d6-4c6f-b921-afe42e64653e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip2ea8541298\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet746891eb19/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"2120scili0le3g2uub0jsvf22e.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/94205451-0c6a-492e-9b17-3f4f7733945d?api-version=2019-06-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/807a2846-ec34-4f13-a87c-c3d8ebbf38da?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/94205451-0c6a-492e-9b17-3f4f7733945d?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:12 GMT", + "date" : "Mon, 18 May 2020 12:23:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "29", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11778", + "x-ms-ratelimit-remaining-subscription-reads" : "11822", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c4016176-9c9a-4742-8a26-cdd8e2a766d7", + "x-ms-correlation-request-id" : "4256f45b-9006-4e4f-8dbc-f01a4a17b9ae", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "bc06c428-ad9e-4847-b284-d33413f9421c", + "x-ms-arm-service-request-id" : "72816da0-2966-4be4-b8ff-592d5f4157e6", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091712Z:c4016176-9c9a-4742-8a26-cdd8e2a766d7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122329Z:4256f45b-9006-4e4f-8dbc-f01a4a17b9ae", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "8cd8df34-b715-47f0-b52c-7b35b3923af1", + "x-ms-request-id" : "75d1d2d4-f2eb-485b-a432-270115f86f8e", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic85341381ad3?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic31672a54683?api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:44 GMT", + "date" : "Mon, 18 May 2020 12:23:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "1845", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11777", + "x-ms-ratelimit-remaining-subscription-reads" : "11793", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d1ee4934-76fe-4ab6-8c09-d9381f9d5be6", + "x-ms-correlation-request-id" : "6bf125d2-648c-47a9-bbef-b83eab79d511", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f272f28e-eec5-4ad8-99aa-98933919c4c3", + "x-ms-arm-service-request-id" : "0b1536d7-a69d-4dfb-953c-0bcae93c24f4", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091744Z:d1ee4934-76fe-4ab6-8c09-d9381f9d5be6", - "etag" : "W/\"85f91b74-061b-4ebc-b8ec-f3bd36456b54\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122400Z:6bf125d2-648c-47a9-bbef-b83eab79d511", + "etag" : "W/\"795ef449-32d6-4c6f-b921-afe42e64653e\"", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "eb1b880b-c797-4cb3-a7da-55df3f80a4ed", - "Body" : "{\r\n \"name\": \"nic85341381ad3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic85341381ad3\",\r\n \"etag\": \"W/\\\"85f91b74-061b-4ebc-b8ec-f3bd36456b54\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bc6621aa-d2eb-4baf-ae97-61a0f9168190\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic85341381ad3/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"85f91b74-061b-4ebc-b8ec-f3bd36456b54\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/publicIPAddresses/pip2517272327\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/virtualNetworks/vnet9049487af5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ririchg4pbuupglihg0rb0xd4f.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + "x-ms-request-id" : "8462fd06-16cb-4a65-850d-eb6b9aa18c2c", + "Body" : "{\r\n \"name\": \"nic31672a54683\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic31672a54683\",\r\n \"etag\": \"W/\\\"795ef449-32d6-4c6f-b921-afe42e64653e\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1626f131-eb90-4760-97fd-aac5ed254f6c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic31672a54683/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"795ef449-32d6-4c6f-b921-afe42e64653e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/publicIPAddresses/pip2ea8541298\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/virtualNetworks/vnet746891eb19/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"2120scili0le3g2uub0jsvf22e.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/virtualMachines/lvm2061241233?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/virtualMachines/lvm23d4107585?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (11.0.6; Windows 10 10.0)", + "User-Agent" : "azsdk-java-com.azure.management.compute/2.0.0 (1.8.0_221; Windows 10 10.0)", "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:17:51 GMT", + "date" : "Mon, 18 May 2020 12:24:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "azure-asyncnotification" : "Enabled", "content-length" : "1976", "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", "retry-after" : "0", "StatusCode" : "201", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d2f7ee7f-cd95-4ebf-bec2-73b57ed71de5", + "x-ms-correlation-request-id" : "33ac4746-71da-4a36-adfa-2513c23a99c0", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091751Z:d2f7ee7f-cd95-4ebf-bec2-73b57ed71de5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122407Z:33ac4746-71da-4a36-adfa-2513c23a99c0", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "9d8a8565-2953-4447-b62f-11c630fdfae4", - "Body" : "{\r\n \"name\": \"lvm2061241233\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/virtualMachines/lvm2061241233\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7dc8db28-c06f-4c49-9d4a-faef808b9785\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds1b338678d2\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/disks/ds1b338678d2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm2061241233\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic85341381ad3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/9d8a8565-2953-4447-b62f-11c630fdfae4?api-version=2019-03-01" + "x-ms-request-id" : "71d92cf2-72bb-4ca5-a32e-0f764c35a685", + "Body" : "{\r\n \"name\": \"lvm23d4107585\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/virtualMachines/lvm23d4107585\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"dd7e72d4-25b1-4637-8a20-ad3acce65a50\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds8f37517227\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/disks/ds8f37517227\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm23d4107585\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic31672a54683\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/71d92cf2-72bb-4ca5-a32e-0f764c35a685?api-version=2019-03-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/9d8a8565-2953-4447-b62f-11c630fdfae4?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/71d92cf2-72bb-4ca5-a32e-0f764c35a685?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:22 GMT", + "date" : "Mon, 18 May 2020 12:24:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", + "x-ms-ratelimit-remaining-subscription-reads" : "11714", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6c00ee56-4949-4ff7-b274-281bde509dbf", + "x-ms-correlation-request-id" : "1c4f771e-212b-4c21-a518-16311fae2475", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091822Z:6c00ee56-4949-4ff7-b274-281bde509dbf", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29953", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122437Z:1c4f771e-212b-4c21-a518-16311fae2475", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "cfc8b921-8586-44e4-948d-21e6bde3b454", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:17:50.2626172+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9d8a8565-2953-4447-b62f-11c630fdfae4\"\r\n}" + "x-ms-request-id" : "fa8beb0e-b2f8-4672-97fb-67feb69ea657", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:24:05.1311339+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"71d92cf2-72bb-4ca5-a32e-0f764c35a685\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/9d8a8565-2953-4447-b62f-11c630fdfae4?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/71d92cf2-72bb-4ca5-a32e-0f764c35a685?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:18:53 GMT", + "date" : "Mon, 18 May 2020 12:25:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", + "content-length" : "134", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", + "x-ms-ratelimit-remaining-subscription-reads" : "11710", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "04df7730-b806-456b-a2d0-bd1f631de44f", + "x-ms-correlation-request-id" : "90e13bf9-ad24-465b-be67-cca24fad6064", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091853Z:04df7730-b806-456b-a2d0-bd1f631de44f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29945", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122508Z:90e13bf9-ad24-465b-be67-cca24fad6064", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "322c90e8-13fa-4fcb-96e3-cd350e92a3c5", - "Body" : "{\r\n \"startTime\": \"2020-04-29T09:17:50.2626172+00:00\",\r\n \"endTime\": \"2020-04-29T09:18:47.9995894+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9d8a8565-2953-4447-b62f-11c630fdfae4\"\r\n}" + "x-ms-request-id" : "be261a3a-308d-4031-b6d3-f729d9ed3646", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:24:05.1311339+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"71d92cf2-72bb-4ca5-a32e-0f764c35a685\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/virtualMachines/lvm2061241233?api-version=2019-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/71d92cf2-72bb-4ca5-a32e-0f764c35a685?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:24 GMT", + "date" : "Mon, 18 May 2020 12:25:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2245", + "content-length" : "184", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11754", + "x-ms-ratelimit-remaining-subscription-reads" : "11814", "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "464ca6ca-fab9-44ed-9bda-7c28cfe5e782", + "x-ms-correlation-request-id" : "2fbdd0dc-6d79-442f-8bc1-4c582b74a6fe", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091924Z:464ca6ca-fab9-44ed-9bda-7c28cfe5e782", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29939", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122538Z:2fbdd0dc-6d79-442f-8bc1-4c582b74a6fe", "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "0c2da89a-9f32-42a9-8c65-03743b7605d0", - "Body" : "{\r\n \"name\": \"lvm2061241233\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/virtualMachines/lvm2061241233\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7dc8db28-c06f-4c49-9d4a-faef808b9785\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm2061241233_OsDisk_1_e7d3be25d0d24fb8bcf05961c087b77b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV90801593/providers/Microsoft.Compute/disks/lvm2061241233_OsDisk_1_e7d3be25d0d24fb8bcf05961c087b77b\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds1b338678d2\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Compute/disks/ds1b338678d2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm2061241233\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv90801593/providers/Microsoft.Network/networkInterfaces/nic85341381ad3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv90801593?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (11.0.6; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:29 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "242f33af-c736-42dd-8df0-a9c772e8e1a9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T091929Z:242f33af-c736-42dd-8df0-a9c772e8e1a9", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "242f33af-c736-42dd-8df0-a9c772e8e1a9", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:19:59 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11803", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4da0c40c-21a0-4b65-a6e4-ff8454cdcdcd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092000Z:4da0c40c-21a0-4b65-a6e4-ff8454cdcdcd", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4da0c40c-21a0-4b65-a6e4-ff8454cdcdcd", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:20:31 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11678", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0a8daa3a-5d9f-4407-9dee-bca2d29904e7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092031Z:0a8daa3a-5d9f-4407-9dee-bca2d29904e7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "0a8daa3a-5d9f-4407-9dee-bca2d29904e7", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:03 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a2f47ba4-deff-44f9-af16-cd12791c685b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092103Z:a2f47ba4-deff-44f9-af16-cd12791c685b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "a2f47ba4-deff-44f9-af16-cd12791c685b", - "Body" : "" + "x-ms-request-id" : "7a319990-3edd-4dca-9c61-04cdd8988345", + "Body" : "{\r\n \"startTime\": \"2020-05-18T12:24:05.1311339+00:00\",\r\n \"endTime\": \"2020-05-18T12:25:09.1498697+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"71d92cf2-72bb-4ca5-a32e-0f764c35a685\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/virtualMachines/lvm23d4107585?api-version=2019-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:21:34 GMT", - "content-length" : "0", + "date" : "Mon, 18 May 2020 12:26:09 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "2245", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "202", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "StatusCode" : "200", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2638cc7e-f46d-4a3f-87f9-df90dac75e0a", + "x-ms-correlation-request-id" : "f72b93aa-54af-4ed6-b7a4-2869bba22173", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092134Z:2638cc7e-f46d-4a3f-87f9-df90dac75e0a", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122609Z:f72b93aa-54af-4ed6-b7a4-2869bba22173", + "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "2638cc7e-f46d-4a3f-87f9-df90dac75e0a", - "Body" : "" + "x-ms-request-id" : "853a0a0f-6891-4935-95d8-bdeca1dd8e26", + "Body" : "{\r\n \"name\": \"lvm23d4107585\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/virtualMachines/lvm23d4107585\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"dd7e72d4-25b1-4637-8a20-ad3acce65a50\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm23d4107585_OsDisk_1_184d36729dce4095a4d2b1d56d57745d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMV63E20349/providers/Microsoft.Compute/disks/lvm23d4107585_OsDisk_1_184d36729dce4095a4d2b1d56d57745d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds8f37517227\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Compute/disks/ds8f37517227\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm23d4107585\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv63e20349/providers/Microsoft.Network/networkInterfaces/nic31672a54683\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv63e20349?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management.resources/2.0.0 (1.8.0_221; Windows 10 10.0)", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:05 GMT", + "date" : "Mon, 18 May 2020 12:26:13 GMT", "content-length" : "0", "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aeefe6da-4955-42a3-8fa4-cd6c1cc028e2", + "x-ms-correlation-request-id" : "762b5a13-4e60-433f-9845-bd14593dfa2e", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092206Z:aeefe6da-4955-42a3-8fa4-cd6c1cc028e2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122613Z:762b5a13-4e60-433f-9845-bd14593dfa2e", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "aeefe6da-4955-42a3-8fa4-cd6c1cc028e2", + "x-ms-request-id" : "762b5a13-4e60-433f-9845-bd14593dfa2e", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:22:36 GMT", + "date" : "Mon, 18 May 2020 12:26:44 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11669", + "x-ms-ratelimit-remaining-subscription-reads" : "11703", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "23c5d47d-8627-4ba3-82ae-41b264af9d92", + "x-ms-correlation-request-id" : "6205c7de-abca-4e04-abf1-4ae67cfab121", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092237Z:23c5d47d-8627-4ba3-82ae-41b264af9d92", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122644Z:6205c7de-abca-4e04-abf1-4ae67cfab121", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "23c5d47d-8627-4ba3-82ae-41b264af9d92", + "x-ms-request-id" : "6205c7de-abca-4e04-abf1-4ae67cfab121", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:08 GMT", + "date" : "Mon, 18 May 2020 12:27:15 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", + "x-ms-ratelimit-remaining-subscription-reads" : "11795", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fa28fa0d-cc7d-407a-ab11-5fcdd2cba706", + "x-ms-correlation-request-id" : "06e968c8-1287-4077-9cb8-673cc04df9fc", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092308Z:fa28fa0d-cc7d-407a-ab11-5fcdd2cba706", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122715Z:06e968c8-1287-4077-9cb8-673cc04df9fc", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "fa28fa0d-cc7d-407a-ab11-5fcdd2cba706", + "x-ms-request-id" : "06e968c8-1287-4077-9cb8-673cc04df9fc", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:23:39 GMT", + "date" : "Mon, 18 May 2020 12:27:46 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", + "x-ms-ratelimit-remaining-subscription-reads" : "11850", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3bac30e6-7da9-4727-820a-41123748ca64", + "x-ms-correlation-request-id" : "a64fb908-4e91-47ad-bf67-b6c798574db4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092340Z:3bac30e6-7da9-4727-820a-41123748ca64", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122746Z:a64fb908-4e91-47ad-bf67-b6c798574db4", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "3bac30e6-7da9-4727-820a-41123748ca64", + "x-ms-request-id" : "a64fb908-4e91-47ad-bf67-b6c798574db4", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:10 GMT", + "date" : "Mon, 18 May 2020 12:28:16 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", + "x-ms-ratelimit-remaining-subscription-reads" : "11661", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2e2412f5-47a0-4dcd-b44a-f5747f83260b", + "x-ms-correlation-request-id" : "64d4d2f1-8e67-4d71-bccf-a965b0394e74", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092410Z:2e2412f5-47a0-4dcd-b44a-f5747f83260b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122817Z:64d4d2f1-8e67-4d71-bccf-a965b0394e74", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "2e2412f5-47a0-4dcd-b44a-f5747f83260b", + "x-ms-request-id" : "64d4d2f1-8e67-4d71-bccf-a965b0394e74", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:24:41 GMT", + "date" : "Mon, 18 May 2020 12:28:48 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11663", + "x-ms-ratelimit-remaining-subscription-reads" : "11745", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ccadf466-2c0b-4837-aaaa-27534159e10b", + "x-ms-correlation-request-id" : "1823a334-f889-4bed-972e-d040540a531c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092442Z:ccadf466-2c0b-4837-aaaa-27534159e10b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122849Z:1823a334-f889-4bed-972e-d040540a531c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "ccadf466-2c0b-4837-aaaa-27534159e10b", + "x-ms-request-id" : "1823a334-f889-4bed-972e-d040540a531c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:12 GMT", + "date" : "Mon, 18 May 2020 12:29:19 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", + "x-ms-ratelimit-remaining-subscription-reads" : "11658", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "41482706-228b-4ac6-a632-a531522f85cc", + "x-ms-correlation-request-id" : "7dfe2b11-475e-4694-b0c5-5536252691ff", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092513Z:41482706-228b-4ac6-a632-a531522f85cc", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122920Z:7dfe2b11-475e-4694-b0c5-5536252691ff", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "41482706-228b-4ac6-a632-a531522f85cc", + "x-ms-request-id" : "7dfe2b11-475e-4694-b0c5-5536252691ff", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:25:44 GMT", + "date" : "Mon, 18 May 2020 12:29:51 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11757", + "x-ms-ratelimit-remaining-subscription-reads" : "11848", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e403110e-0fc4-407d-9b6b-bd62f84beff2", + "x-ms-correlation-request-id" : "e725dd74-cf84-4d3b-bc9b-264bbfeab28f", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092544Z:e403110e-0fc4-407d-9b6b-bd62f84beff2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T122951Z:e725dd74-cf84-4d3b-bc9b-264bbfeab28f", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "e403110e-0fc4-407d-9b6b-bd62f84beff2", + "x-ms-request-id" : "e725dd74-cf84-4d3b-bc9b-264bbfeab28f", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:15 GMT", + "date" : "Mon, 18 May 2020 12:30:22 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", + "x-ms-ratelimit-remaining-subscription-reads" : "11653", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8e0359f4-e3b5-4479-a4da-37f0651ecb07", + "x-ms-correlation-request-id" : "c1753177-137e-4724-bd12-4248c33f3248", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092616Z:8e0359f4-e3b5-4479-a4da-37f0651ecb07", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123023Z:c1753177-137e-4724-bd12-4248c33f3248", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "8e0359f4-e3b5-4479-a4da-37f0651ecb07", + "x-ms-request-id" : "c1753177-137e-4724-bd12-4248c33f3248", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:26:46 GMT", + "date" : "Mon, 18 May 2020 12:30:54 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", + "x-ms-ratelimit-remaining-subscription-reads" : "11768", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6737dfc0-80e8-47a9-b510-d625bc83b66d", + "x-ms-correlation-request-id" : "447f0f7a-66ee-408f-a6e8-60f2b4f6fdb4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092646Z:6737dfc0-80e8-47a9-b510-d625bc83b66d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123054Z:447f0f7a-66ee-408f-a6e8-60f2b4f6fdb4", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "6737dfc0-80e8-47a9-b510-d625bc83b66d", + "x-ms-request-id" : "447f0f7a-66ee-408f-a6e8-60f2b4f6fdb4", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:17 GMT", + "date" : "Mon, 18 May 2020 12:31:25 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11782", + "x-ms-ratelimit-remaining-subscription-reads" : "11766", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8193fe1f-913a-42e1-8c0a-621198d964fb", + "x-ms-correlation-request-id" : "311d3eeb-b6f2-46c4-8d58-4dcf72eb59d7", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092718Z:8193fe1f-913a-42e1-8c0a-621198d964fb", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123125Z:311d3eeb-b6f2-46c4-8d58-4dcf72eb59d7", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "8193fe1f-913a-42e1-8c0a-621198d964fb", + "x-ms-request-id" : "311d3eeb-b6f2-46c4-8d58-4dcf72eb59d7", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:27:48 GMT", + "date" : "Mon, 18 May 2020 12:31:55 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11734", + "x-ms-ratelimit-remaining-subscription-reads" : "11737", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "79f8e7df-ed76-4ebb-a535-dc66c594ba75", + "x-ms-correlation-request-id" : "697ba7b4-a472-46ce-969e-07f785c5e067", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092749Z:79f8e7df-ed76-4ebb-a535-dc66c594ba75", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123156Z:697ba7b4-a472-46ce-969e-07f785c5e067", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "79f8e7df-ed76-4ebb-a535-dc66c594ba75", + "x-ms-request-id" : "697ba7b4-a472-46ce-969e-07f785c5e067", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:20 GMT", + "date" : "Mon, 18 May 2020 12:32:27 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", + "x-ms-ratelimit-remaining-subscription-reads" : "11683", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d788042e-2839-4e2a-9a62-c31a728def69", + "x-ms-correlation-request-id" : "5dd7723a-d9b1-424c-bdff-88702908c868", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092820Z:d788042e-2839-4e2a-9a62-c31a728def69", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123228Z:5dd7723a-d9b1-424c-bdff-88702908c868", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "d788042e-2839-4e2a-9a62-c31a728def69", + "x-ms-request-id" : "5dd7723a-d9b1-424c-bdff-88702908c868", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:28:51 GMT", + "date" : "Mon, 18 May 2020 12:32:59 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", + "x-ms-ratelimit-remaining-subscription-reads" : "11880", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bf0fa73b-284b-4ce9-86f3-72f2bb719b9a", + "x-ms-correlation-request-id" : "46a33dcf-6ee0-4f1e-9e35-1bbbd94aa2d4", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092852Z:bf0fa73b-284b-4ce9-86f3-72f2bb719b9a", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123259Z:46a33dcf-6ee0-4f1e-9e35-1bbbd94aa2d4", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "bf0fa73b-284b-4ce9-86f3-72f2bb719b9a", + "x-ms-request-id" : "46a33dcf-6ee0-4f1e-9e35-1bbbd94aa2d4", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:22 GMT", + "date" : "Mon, 18 May 2020 12:33:30 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", + "x-ms-ratelimit-remaining-subscription-reads" : "11678", "StatusCode" : "202", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a408a129-eeb6-42e1-ba6a-80fa40fedb38", + "x-ms-correlation-request-id" : "edbae4f0-8393-40f5-9997-3051ec679e2c", "strict-transport-security" : "max-age=31536000; includeSubDomains", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092923Z:a408a129-eeb6-42e1-ba6a-80fa40fedb38", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123330Z:edbae4f0-8393-40f5-9997-3051ec679e2c", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "cache-control" : "no-cache", - "x-ms-request-id" : "a408a129-eeb6-42e1-ba6a-80fa40fedb38", + "x-ms-request-id" : "edbae4f0-8393-40f5-9997-3051ec679e2c", "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2M0UyMDM0OS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" + "User-Agent" : "azsdk-java-com.azure.management/null (1.8.0_221; Windows 10 10.0)" }, "Response" : { - "date" : "Wed, 29 Apr 2020 09:29:54 GMT", + "date" : "Mon, 18 May 2020 12:34:00 GMT", "content-length" : "0", "expires" : "-1", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6d9f4922-f3b9-4e4c-a58e-de95e232078b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T092955Z:6d9f4922-f3b9-4e4c-a58e-de95e232078b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "6d9f4922-f3b9-4e4c-a58e-de95e232078b", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:25 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ac38679-dc4a-4cd9-af1a-217d23b71a10", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093026Z:8ac38679-dc4a-4cd9-af1a-217d23b71a10", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "8ac38679-dc4a-4cd9-af1a-217d23b71a10", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:30:57 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0e424f02-37af-4cfd-ad7f-7e328948f517", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093058Z:0e424f02-37af-4cfd-ad7f-7e328948f517", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "0e424f02-37af-4cfd-ad7f-7e328948f517", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:29 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "486337ee-43ad-4e76-8849-7e509fd1eafc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093129Z:486337ee-43ad-4e76-8849-7e509fd1eafc", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "486337ee-43ad-4e76-8849-7e509fd1eafc", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:31:59 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2854fc52-edc3-4aa7-be95-a5ebb812c5e2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093200Z:2854fc52-edc3-4aa7-be95-a5ebb812c5e2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "2854fc52-edc3-4aa7-be95-a5ebb812c5e2", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY5MDgwMTU5My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.management/null (11.0.6; Windows 10 10.0)" - }, - "Response" : { - "date" : "Wed, 29 Apr 2020 09:32:31 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11741", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7885188f-be39-41fd-ba3a-5d93c33ecf55", + "x-ms-correlation-request-id" : "ce69a511-9c7f-4b5f-9a30-446a8ca68e0e", "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200429T093231Z:7885188f-be39-41fd-ba3a-5d93c33ecf55", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200518T123401Z:ce69a511-9c7f-4b5f-9a30-446a8ca68e0e", "cache-control" : "no-cache", - "x-ms-request-id" : "7885188f-be39-41fd-ba3a-5d93c33ecf55", + "x-ms-request-id" : "ce69a511-9c7f-4b5f-9a30-446a8ca68e0e", "Body" : "" } } ], - "variables" : [ "rgcomv90801593", "lvm168b90260f", "lvm2061241233", "pip188f94488b", "pip2517272327", "ds1b338678d2", "nic66610848fef", "vnet2243591ce7", "pip47239210", "nic85341381ad3", "vnet9049487af5" ] + "variables" : [ "rgcomv63e20349", "lvm19e933840b", "lvm23d4107585", "pip15af053721", "pip2ea8541298", "ds8f37517227", "nic07286fee9b9", "vnet292013dd2b", "pip6833861f", "nic31672a54683", "vnet746891eb19" ] } \ No newline at end of file