This commit is contained in:
Weidong Xu 2021-07-30 12:03:30 +08:00 коммит произвёл GitHub
Родитель dadaa83023
Коммит 308f0009c8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
44 изменённых файлов: 4287 добавлений и 3228 удалений

Просмотреть файл

@ -39,7 +39,7 @@
"dir": "azure-mgmt-batch",
"source": "specification/batch/resource-manager/readme.md",
"package": "com.microsoft.azure.management.batch",
"args": "--payload-flattening-threshold=1 --tag=package-2021-01"
"args": "--payload-flattening-threshold=1 --tag=package-2021-06"
},
"batchai": {
"dir": "azure-mgmt-batchai",

Просмотреть файл

@ -0,0 +1,56 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Defines values for AuthenticationMode.
*/
public enum AuthenticationMode {
/** The authentication mode using shared keys. */
SHARED_KEY("SharedKey"),
/** The authentication mode using Azure Active Directory. */
AAD("AAD"),
/** The authentication mode using task authentication tokens. */
TASK_AUTHENTICATION_TOKEN("TaskAuthenticationToken");
/** The actual serialized value for a AuthenticationMode instance. */
private String value;
AuthenticationMode(String value) {
this.value = value;
}
/**
* Parses a serialized value to a AuthenticationMode instance.
*
* @param value the serialized value to parse.
* @return the parsed AuthenticationMode object, or null if unable to parse.
*/
@JsonCreator
public static AuthenticationMode fromString(String value) {
AuthenticationMode[] items = AuthenticationMode.values();
for (AuthenticationMode item : items) {
if (item.toString().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}
@JsonValue
@Override
public String toString() {
return this.value;
}
}

Просмотреть файл

@ -0,0 +1,53 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Defines values for AutoStorageAuthenticationMode.
*/
public enum AutoStorageAuthenticationMode {
/** The Batch service will authenticate requests to auto-storage using storage account keys. */
STORAGE_KEYS("StorageKeys"),
/** The Batch service will authenticate requests to auto-storage using the managed identity assigned to the Batch account. */
BATCH_ACCOUNT_MANAGED_IDENTITY("BatchAccountManagedIdentity");
/** The actual serialized value for a AutoStorageAuthenticationMode instance. */
private String value;
AutoStorageAuthenticationMode(String value) {
this.value = value;
}
/**
* Parses a serialized value to a AutoStorageAuthenticationMode instance.
*
* @param value the serialized value to parse.
* @return the parsed AutoStorageAuthenticationMode object, or null if unable to parse.
*/
@JsonCreator
public static AutoStorageAuthenticationMode fromString(String value) {
AutoStorageAuthenticationMode[] items = AutoStorageAuthenticationMode.values();
for (AutoStorageAuthenticationMode item : items) {
if (item.toString().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}
@JsonValue
@Override
public String toString() {
return this.value;
}
}

Просмотреть файл

@ -21,6 +21,23 @@ public class AutoStorageBaseProperties {
@JsonProperty(value = "storageAccountId", required = true)
private String storageAccountId;
/**
* The authentication mode which the Batch service will use to manage the
* auto-storage account. Possible values include: 'StorageKeys',
* 'BatchAccountManagedIdentity'.
*/
@JsonProperty(value = "authenticationMode")
private AutoStorageAuthenticationMode authenticationMode;
/**
* The reference to the user assigned identity which compute nodes will use
* to access auto-storage.
* The identity referenced here must be assigned to pools which have
* compute nodes that need access to auto-storage.
*/
@JsonProperty(value = "nodeIdentityReference")
private ComputeNodeIdentityReference nodeIdentityReference;
/**
* Get the resource ID of the storage account to be used for auto-storage account.
*
@ -41,4 +58,44 @@ public class AutoStorageBaseProperties {
return this;
}
/**
* Get the authentication mode which the Batch service will use to manage the auto-storage account. Possible values include: 'StorageKeys', 'BatchAccountManagedIdentity'.
*
* @return the authenticationMode value
*/
public AutoStorageAuthenticationMode authenticationMode() {
return this.authenticationMode;
}
/**
* Set the authentication mode which the Batch service will use to manage the auto-storage account. Possible values include: 'StorageKeys', 'BatchAccountManagedIdentity'.
*
* @param authenticationMode the authenticationMode value to set
* @return the AutoStorageBaseProperties object itself.
*/
public AutoStorageBaseProperties withAuthenticationMode(AutoStorageAuthenticationMode authenticationMode) {
this.authenticationMode = authenticationMode;
return this;
}
/**
* Get the identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
*
* @return the nodeIdentityReference value
*/
public ComputeNodeIdentityReference nodeIdentityReference() {
return this.nodeIdentityReference;
}
/**
* Set the identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
*
* @param nodeIdentityReference the nodeIdentityReference value to set
* @return the AutoStorageBaseProperties object itself.
*/
public AutoStorageBaseProperties withNodeIdentityReference(ComputeNodeIdentityReference nodeIdentityReference) {
this.nodeIdentityReference = nodeIdentityReference;
return this;
}
}

Просмотреть файл

@ -28,16 +28,16 @@ public class AzureBlobFileSystemConfiguration {
/**
* The Azure Storage Account key.
* This property is mutually exclusive with sasKey and one must be
* specified.
* This property is mutually exclusive with both sasKey and identity;
* exactly one must be specified.
*/
@JsonProperty(value = "accountKey")
private String accountKey;
/**
* The Azure Storage SAS token.
* This property is mutually exclusive with accountKey and one must be
* specified.
* This property is mutually exclusive with both accountKey and identity;
* exactly one must be specified.
*/
@JsonProperty(value = "sasKey")
private String sasKey;
@ -58,6 +58,15 @@ public class AzureBlobFileSystemConfiguration {
@JsonProperty(value = "relativeMountPath", required = true)
private String relativeMountPath;
/**
* The reference to the user assigned identity to use to access
* containerName.
* This property is mutually exclusive with both accountKey and sasKey;
* exactly one must be specified.
*/
@JsonProperty(value = "identityReference")
private ComputeNodeIdentityReference identityReference;
/**
* Get the accountName value.
*
@ -99,7 +108,7 @@ public class AzureBlobFileSystemConfiguration {
}
/**
* Get this property is mutually exclusive with sasKey and one must be specified.
* Get this property is mutually exclusive with both sasKey and identity; exactly one must be specified.
*
* @return the accountKey value
*/
@ -108,7 +117,7 @@ public class AzureBlobFileSystemConfiguration {
}
/**
* Set this property is mutually exclusive with sasKey and one must be specified.
* Set this property is mutually exclusive with both sasKey and identity; exactly one must be specified.
*
* @param accountKey the accountKey value to set
* @return the AzureBlobFileSystemConfiguration object itself.
@ -119,7 +128,7 @@ public class AzureBlobFileSystemConfiguration {
}
/**
* Get this property is mutually exclusive with accountKey and one must be specified.
* Get this property is mutually exclusive with both accountKey and identity; exactly one must be specified.
*
* @return the sasKey value
*/
@ -128,7 +137,7 @@ public class AzureBlobFileSystemConfiguration {
}
/**
* Set this property is mutually exclusive with accountKey and one must be specified.
* Set this property is mutually exclusive with both accountKey and identity; exactly one must be specified.
*
* @param sasKey the sasKey value to set
* @return the AzureBlobFileSystemConfiguration object itself.
@ -178,4 +187,24 @@ public class AzureBlobFileSystemConfiguration {
return this;
}
/**
* Get this property is mutually exclusive with both accountKey and sasKey; exactly one must be specified.
*
* @return the identityReference value
*/
public ComputeNodeIdentityReference identityReference() {
return this.identityReference;
}
/**
* Set this property is mutually exclusive with both accountKey and sasKey; exactly one must be specified.
*
* @param identityReference the identityReference value to set
* @return the AzureBlobFileSystemConfiguration object itself.
*/
public AzureBlobFileSystemConfiguration withIdentityReference(ComputeNodeIdentityReference identityReference) {
this.identityReference = identityReference;
return this;
}
}

Просмотреть файл

@ -9,6 +9,7 @@
package com.microsoft.azure.management.batch;
import java.util.Map;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
@ -70,6 +71,14 @@ public class BatchAccountCreateParameters {
@JsonProperty(value = "properties.encryption")
private EncryptionProperties encryption;
/**
* List of allowed authentication modes for the Batch account that can be
* used to authenticate with the data plane. This does not affect
* authentication with the control plane.
*/
@JsonProperty(value = "properties.allowedAuthenticationModes")
private List<AuthenticationMode> allowedAuthenticationModes;
/**
* The identity of the Batch account.
*/
@ -216,6 +225,26 @@ public class BatchAccountCreateParameters {
return this;
}
/**
* Get list of allowed authentication modes for the Batch account that can be used to authenticate with the data plane. This does not affect authentication with the control plane.
*
* @return the allowedAuthenticationModes value
*/
public List<AuthenticationMode> allowedAuthenticationModes() {
return this.allowedAuthenticationModes;
}
/**
* Set list of allowed authentication modes for the Batch account that can be used to authenticate with the data plane. This does not affect authentication with the control plane.
*
* @param allowedAuthenticationModes the allowedAuthenticationModes value to set
* @return the BatchAccountCreateParameters object itself.
*/
public BatchAccountCreateParameters withAllowedAuthenticationModes(List<AuthenticationMode> allowedAuthenticationModes) {
this.allowedAuthenticationModes = allowedAuthenticationModes;
return this;
}
/**
* Get the identity of the Batch account.
*

Просмотреть файл

@ -12,9 +12,10 @@ import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The identity of the Batch account, if configured. This is only used when the
* user specifies 'Microsoft.KeyVault' as their Batch account encryption
* configuration.
* The identity of the Batch account, if configured. This is used when the user
* specifies 'Microsoft.KeyVault' as their Batch account encryption
* configuration or when `ManagedIdentity` is selected as the auto-storage
* authentication mode.
*/
public class BatchAccountIdentity {
/**
@ -39,12 +40,10 @@ public class BatchAccountIdentity {
private ResourceIdentityType type;
/**
* The list of user identities associated with the Batch account. The user
* identity dictionary key references will be ARM resource ids in the form:
* '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
* The list of user identities associated with the Batch account.
*/
@JsonProperty(value = "userAssignedIdentities")
private Map<String, BatchAccountIdentityUserAssignedIdentitiesValue> userAssignedIdentities;
private Map<String, UserAssignedIdentities> userAssignedIdentities;
/**
* Get the principal id of the Batch account. This property will only be provided for a system assigned identity.
@ -85,21 +84,21 @@ public class BatchAccountIdentity {
}
/**
* Get the list of user identities associated with the Batch account. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
* Get the list of user identities associated with the Batch account.
*
* @return the userAssignedIdentities value
*/
public Map<String, BatchAccountIdentityUserAssignedIdentitiesValue> userAssignedIdentities() {
public Map<String, UserAssignedIdentities> userAssignedIdentities() {
return this.userAssignedIdentities;
}
/**
* Set the list of user identities associated with the Batch account. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
* Set the list of user identities associated with the Batch account.
*
* @param userAssignedIdentities the userAssignedIdentities value to set
* @return the BatchAccountIdentity object itself.
*/
public BatchAccountIdentity withUserAssignedIdentities(Map<String, BatchAccountIdentityUserAssignedIdentitiesValue> userAssignedIdentities) {
public BatchAccountIdentity withUserAssignedIdentities(Map<String, UserAssignedIdentities> userAssignedIdentities) {
this.userAssignedIdentities = userAssignedIdentities;
return this;
}

Просмотреть файл

@ -1,47 +0,0 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The BatchAccountIdentityUserAssignedIdentitiesValue model.
*/
public class BatchAccountIdentityUserAssignedIdentitiesValue {
/**
* The principal id of user assigned identity.
*/
@JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY)
private String principalId;
/**
* The client id of user assigned identity.
*/
@JsonProperty(value = "clientId", access = JsonProperty.Access.WRITE_ONLY)
private String clientId;
/**
* Get the principal id of user assigned identity.
*
* @return the principalId value
*/
public String principalId() {
return this.principalId;
}
/**
* Get the client id of user assigned identity.
*
* @return the clientId value
*/
public String clientId() {
return this.clientId;
}
}

Просмотреть файл

@ -9,6 +9,7 @@
package com.microsoft.azure.management.batch;
import java.util.Map;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
@ -38,6 +39,14 @@ public class BatchAccountUpdateParameters {
@JsonProperty(value = "properties.encryption")
private EncryptionProperties encryption;
/**
* List of allowed authentication modes for the Batch account that can be
* used to authenticate with the data plane. This does not affect
* authentication with the control plane.
*/
@JsonProperty(value = "properties.allowedAuthenticationModes")
private List<AuthenticationMode> allowedAuthenticationModes;
/**
* The identity of the Batch account.
*/
@ -104,6 +113,26 @@ public class BatchAccountUpdateParameters {
return this;
}
/**
* Get list of allowed authentication modes for the Batch account that can be used to authenticate with the data plane. This does not affect authentication with the control plane.
*
* @return the allowedAuthenticationModes value
*/
public List<AuthenticationMode> allowedAuthenticationModes() {
return this.allowedAuthenticationModes;
}
/**
* Set list of allowed authentication modes for the Batch account that can be used to authenticate with the data plane. This does not affect authentication with the control plane.
*
* @param allowedAuthenticationModes the allowedAuthenticationModes value to set
* @return the BatchAccountUpdateParameters object itself.
*/
public BatchAccountUpdateParameters withAllowedAuthenticationModes(List<AuthenticationMode> allowedAuthenticationModes) {
this.allowedAuthenticationModes = allowedAuthenticationModes;
return this;
}
/**
* Get the identity of the Batch account.
*

Просмотреть файл

@ -25,12 +25,10 @@ public class BatchPoolIdentity {
private PoolIdentityType type;
/**
* The list of user identities associated with the Batch pool. The user
* identity dictionary key references will be ARM resource ids in the form:
* '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
* The list of user identities associated with the Batch pool.
*/
@JsonProperty(value = "userAssignedIdentities")
private Map<String, BatchPoolIdentityUserAssignedIdentitiesValue> userAssignedIdentities;
private Map<String, UserAssignedIdentities> userAssignedIdentities;
/**
* Get the type of identity used for the Batch Pool. Possible values include: 'UserAssigned', 'None'.
@ -53,21 +51,21 @@ public class BatchPoolIdentity {
}
/**
* Get the list of user identities associated with the Batch pool. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
* Get the list of user identities associated with the Batch pool.
*
* @return the userAssignedIdentities value
*/
public Map<String, BatchPoolIdentityUserAssignedIdentitiesValue> userAssignedIdentities() {
public Map<String, UserAssignedIdentities> userAssignedIdentities() {
return this.userAssignedIdentities;
}
/**
* Set the list of user identities associated with the Batch pool. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
* Set the list of user identities associated with the Batch pool.
*
* @param userAssignedIdentities the userAssignedIdentities value to set
* @return the BatchPoolIdentity object itself.
*/
public BatchPoolIdentity withUserAssignedIdentities(Map<String, BatchPoolIdentityUserAssignedIdentitiesValue> userAssignedIdentities) {
public BatchPoolIdentity withUserAssignedIdentities(Map<String, UserAssignedIdentities> userAssignedIdentities) {
this.userAssignedIdentities = userAssignedIdentities;
return this;
}

Просмотреть файл

@ -11,7 +11,7 @@ package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The CertificateBaseProperties model.
* Base certificate properties.
*/
public class CertificateBaseProperties {
/**

Просмотреть файл

@ -0,0 +1,44 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The reference to a user assigned identity associated with the Batch pool
* which a compute node will use.
*/
public class ComputeNodeIdentityReference {
/**
* The ARM resource id of the user assigned identity.
*/
@JsonProperty(value = "resourceId")
private String resourceId;
/**
* Get the ARM resource id of the user assigned identity.
*
* @return the resourceId value
*/
public String resourceId() {
return this.resourceId;
}
/**
* Set the ARM resource id of the user assigned identity.
*
* @param resourceId the resourceId value to set
* @return the ComputeNodeIdentityReference object itself.
*/
public ComputeNodeIdentityReference withResourceId(String resourceId) {
this.resourceId = resourceId;
return this;
}
}

Просмотреть файл

@ -14,6 +14,18 @@ import com.fasterxml.jackson.annotation.JsonProperty;
* A private container registry.
*/
public class ContainerRegistry {
/**
* The user name to log into the registry server.
*/
@JsonProperty(value = "username")
private String userName;
/**
* The password to log into the registry server.
*/
@JsonProperty(value = "password")
private String password;
/**
* The registry URL.
* If omitted, the default is "docker.io".
@ -22,36 +34,11 @@ public class ContainerRegistry {
private String registryServer;
/**
* The user name to log into the registry server.
* The reference to the user assigned identity to use to access an Azure
* Container Registry instead of username and password.
*/
@JsonProperty(value = "username", required = true)
private String userName;
/**
* The password to log into the registry server.
*/
@JsonProperty(value = "password", required = true)
private String password;
/**
* Get if omitted, the default is "docker.io".
*
* @return the registryServer value
*/
public String registryServer() {
return this.registryServer;
}
/**
* Set if omitted, the default is "docker.io".
*
* @param registryServer the registryServer value to set
* @return the ContainerRegistry object itself.
*/
public ContainerRegistry withRegistryServer(String registryServer) {
this.registryServer = registryServer;
return this;
}
@JsonProperty(value = "identityReference")
private ComputeNodeIdentityReference identityReference;
/**
* Get the userName value.
@ -93,4 +80,44 @@ public class ContainerRegistry {
return this;
}
/**
* Get if omitted, the default is "docker.io".
*
* @return the registryServer value
*/
public String registryServer() {
return this.registryServer;
}
/**
* Set if omitted, the default is "docker.io".
*
* @param registryServer the registryServer value to set
* @return the ContainerRegistry object itself.
*/
public ContainerRegistry withRegistryServer(String registryServer) {
this.registryServer = registryServer;
return this;
}
/**
* Get the identityReference value.
*
* @return the identityReference value
*/
public ComputeNodeIdentityReference identityReference() {
return this.identityReference;
}
/**
* Set the identityReference value.
*
* @param identityReference the identityReference value to set
* @return the ContainerRegistry object itself.
*/
public ContainerRegistry withIdentityReference(ComputeNodeIdentityReference identityReference) {
this.identityReference = identityReference;
return this;
}
}

Просмотреть файл

@ -0,0 +1,50 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Defines values for DiffDiskPlacement.
*/
public enum DiffDiskPlacement {
/** The Ephemeral OS Disk is stored on the VM cache. */
CACHE_DISK("CacheDisk");
/** The actual serialized value for a DiffDiskPlacement instance. */
private String value;
DiffDiskPlacement(String value) {
this.value = value;
}
/**
* Parses a serialized value to a DiffDiskPlacement instance.
*
* @param value the serialized value to parse.
* @return the parsed DiffDiskPlacement object, or null if unable to parse.
*/
@JsonCreator
public static DiffDiskPlacement fromString(String value) {
DiffDiskPlacement[] items = DiffDiskPlacement.values();
for (DiffDiskPlacement item : items) {
if (item.toString().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}
@JsonValue
@Override
public String toString() {
return this.value;
}
}

Просмотреть файл

@ -0,0 +1,54 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Specifies the ephemeral Disk Settings for the operating system disk used by
* the virtual machine.
*/
public class DiffDiskSettings {
/**
* Specifies the ephemeral disk placement for operating system disk for all
* VMs in the pool.
* This property can be used by user in the request to choose which
* location the operating system should be in. e.g., cache disk space for
* Ephemeral OS disk provisioning. For more information on Ephemeral OS
* disk size requirements, please refer to Ephemeral OS disk size
* requirements for Windows VMs at
* https://docs.microsoft.com/en-us/azure/virtual-machines/windows/ephemeral-os-disks#size-requirements
* and Linux VMs at
* https://docs.microsoft.com/en-us/azure/virtual-machines/linux/ephemeral-os-disks#size-requirements.
* Possible values include: 'CacheDisk'.
*/
@JsonProperty(value = "placement")
private DiffDiskPlacement placement;
/**
* Get this property can be used by user in the request to choose which location the operating system should be in. e.g., cache disk space for Ephemeral OS disk provisioning. For more information on Ephemeral OS disk size requirements, please refer to Ephemeral OS disk size requirements for Windows VMs at https://docs.microsoft.com/en-us/azure/virtual-machines/windows/ephemeral-os-disks#size-requirements and Linux VMs at https://docs.microsoft.com/en-us/azure/virtual-machines/linux/ephemeral-os-disks#size-requirements. Possible values include: 'CacheDisk'.
*
* @return the placement value
*/
public DiffDiskPlacement placement() {
return this.placement;
}
/**
* Set this property can be used by user in the request to choose which location the operating system should be in. e.g., cache disk space for Ephemeral OS disk provisioning. For more information on Ephemeral OS disk size requirements, please refer to Ephemeral OS disk size requirements for Windows VMs at https://docs.microsoft.com/en-us/azure/virtual-machines/windows/ephemeral-os-disks#size-requirements and Linux VMs at https://docs.microsoft.com/en-us/azure/virtual-machines/linux/ephemeral-os-disks#size-requirements. Possible values include: 'CacheDisk'.
*
* @param placement the placement value to set
* @return the DiffDiskSettings object itself.
*/
public DiffDiskSettings withPlacement(DiffDiskPlacement placement) {
this.placement = placement;
return this;
}
}

Просмотреть файл

@ -0,0 +1,65 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* A domain name and connection details used to access a dependency.
*/
public class EndpointDependency {
/**
* The domain name of the dependency. Domain names may be fully qualified
* or may contain a * wildcard.
*/
@JsonProperty(value = "domainName", access = JsonProperty.Access.WRITE_ONLY)
private String domainName;
/**
* Human-readable supplemental information about the dependency and when it
* is applicable.
*/
@JsonProperty(value = "description", access = JsonProperty.Access.WRITE_ONLY)
private String description;
/**
* The list of connection details for this endpoint.
*/
@JsonProperty(value = "endpointDetails", access = JsonProperty.Access.WRITE_ONLY)
private List<EndpointDetail> endpointDetails;
/**
* Get the domain name of the dependency. Domain names may be fully qualified or may contain a * wildcard.
*
* @return the domainName value
*/
public String domainName() {
return this.domainName;
}
/**
* Get human-readable supplemental information about the dependency and when it is applicable.
*
* @return the description value
*/
public String description() {
return this.description;
}
/**
* Get the list of connection details for this endpoint.
*
* @return the endpointDetails value
*/
public List<EndpointDetail> endpointDetails() {
return this.endpointDetails;
}
}

Просмотреть файл

@ -0,0 +1,32 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Details about the connection between the Batch service and the endpoint.
*/
public class EndpointDetail {
/**
* The port an endpoint is connected to.
*/
@JsonProperty(value = "port", access = JsonProperty.Access.WRITE_ONLY)
private Integer port;
/**
* Get the port an endpoint is connected to.
*
* @return the port value
*/
public Integer port() {
return this.port;
}
}

Просмотреть файл

@ -35,7 +35,7 @@ public class FixedScaleSettings {
private Integer targetDedicatedNodes;
/**
* The desired number of low priority compute nodes in the pool.
* The desired number of low-priority compute nodes in the pool.
* At least one of targetDedicatedNodes, targetLowPriorityNodes must be
* set.
*/

Просмотреть файл

@ -0,0 +1,44 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Settings for the operating system disk of the virtual machine.
*/
public class OSDisk {
/**
* Specifies the ephemeral Disk Settings for the operating system disk used
* by the virtual machine.
*/
@JsonProperty(value = "ephemeralOSDiskSettings")
private DiffDiskSettings ephemeralOSDiskSettings;
/**
* Get the ephemeralOSDiskSettings value.
*
* @return the ephemeralOSDiskSettings value
*/
public DiffDiskSettings ephemeralOSDiskSettings() {
return this.ephemeralOSDiskSettings;
}
/**
* Set the ephemeralOSDiskSettings value.
*
* @param ephemeralOSDiskSettings the ephemeralOSDiskSettings value to set
* @return the OSDisk object itself.
*/
public OSDisk withEphemeralOSDiskSettings(DiffDiskSettings ephemeralOSDiskSettings) {
this.ephemeralOSDiskSettings = ephemeralOSDiskSettings;
return this;
}
}

Просмотреть файл

@ -27,7 +27,7 @@ public class ResizeOperationStatus {
private Integer targetDedicatedNodes;
/**
* The desired number of low priority compute nodes in the pool.
* The desired number of low-priority compute nodes in the pool.
*/
@JsonProperty(value = "targetLowPriorityNodes")
private Integer targetLowPriorityNodes;

Просмотреть файл

@ -26,12 +26,11 @@ public class ResourceFile {
* The URL of the blob container within Azure Blob Storage.
* The autoStorageContainerName, storageContainerUrl and httpUrl properties
* are mutually exclusive and one of them must be specified. This URL must
* be readable and listable using anonymous access; that is, the Batch
* service does not present any credentials when downloading the blob.
* There are two ways to get such a URL for a blob in Azure storage:
* include a Shared Access Signature (SAS) granting read and list
* permissions on the blob, or set the ACL for the blob or its container to
* allow public access.
* be readable and listable from compute nodes. There are three ways to get
* such a URL for a container in Azure storage: include a Shared Access
* Signature (SAS) granting read and list permissions on the container, use
* a managed identity with read and list permissions, or set the ACL for
* the container to allow public access.
*/
@JsonProperty(value = "storageContainerUrl")
private String storageContainerUrl;
@ -39,13 +38,12 @@ public class ResourceFile {
/**
* The URL of the file to download.
* The autoStorageContainerName, storageContainerUrl and httpUrl properties
* are mutually exclusive and one of them must be specified. If the URL is
* Azure Blob Storage, it must be readable using anonymous access; that is,
* the Batch service does not present any credentials when downloading the
* blob. There are two ways to get such a URL for a blob in Azure storage:
* are mutually exclusive and one of them must be specified. If the URL
* points to Azure Blob Storage, it must be readable from compute nodes.
* There are three ways to get such a URL for a blob in Azure storage:
* include a Shared Access Signature (SAS) granting read permissions on the
* blob, or set the ACL for the blob or its container to allow public
* access.
* blob, use a managed identity with read permission, or set the ACL for
* the blob or its container to allow public access.
*/
@JsonProperty(value = "httpUrl")
private String httpUrl;
@ -88,6 +86,13 @@ public class ResourceFile {
@JsonProperty(value = "fileMode")
private String fileMode;
/**
* The reference to the user assigned identity to use to access Azure Blob
* Storage specified by storageContainerUrl or httpUrl.
*/
@JsonProperty(value = "identityReference")
private ComputeNodeIdentityReference identityReference;
/**
* Get the autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified.
*
@ -109,7 +114,7 @@ public class ResourceFile {
}
/**
* Get the autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. This URL must be readable and listable using anonymous access; that is, the Batch service does not present any credentials when downloading the blob. There are two ways to get such a URL for a blob in Azure storage: include a Shared Access Signature (SAS) granting read and list permissions on the blob, or set the ACL for the blob or its container to allow public access.
* Get the autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. This URL must be readable and listable from compute nodes. There are three ways to get such a URL for a container in Azure storage: include a Shared Access Signature (SAS) granting read and list permissions on the container, use a managed identity with read and list permissions, or set the ACL for the container to allow public access.
*
* @return the storageContainerUrl value
*/
@ -118,7 +123,7 @@ public class ResourceFile {
}
/**
* Set the autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. This URL must be readable and listable using anonymous access; that is, the Batch service does not present any credentials when downloading the blob. There are two ways to get such a URL for a blob in Azure storage: include a Shared Access Signature (SAS) granting read and list permissions on the blob, or set the ACL for the blob or its container to allow public access.
* Set the autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. This URL must be readable and listable from compute nodes. There are three ways to get such a URL for a container in Azure storage: include a Shared Access Signature (SAS) granting read and list permissions on the container, use a managed identity with read and list permissions, or set the ACL for the container to allow public access.
*
* @param storageContainerUrl the storageContainerUrl value to set
* @return the ResourceFile object itself.
@ -129,7 +134,7 @@ public class ResourceFile {
}
/**
* Get the autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. If the URL is Azure Blob Storage, it must be readable using anonymous access; that is, the Batch service does not present any credentials when downloading the blob. There are two ways to get such a URL for a blob in Azure storage: include a Shared Access Signature (SAS) granting read permissions on the blob, or set the ACL for the blob or its container to allow public access.
* Get the autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. If the URL points to Azure Blob Storage, it must be readable from compute nodes. There are three ways to get such a URL for a blob in Azure storage: include a Shared Access Signature (SAS) granting read permissions on the blob, use a managed identity with read permission, or set the ACL for the blob or its container to allow public access.
*
* @return the httpUrl value
*/
@ -138,7 +143,7 @@ public class ResourceFile {
}
/**
* Set the autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. If the URL is Azure Blob Storage, it must be readable using anonymous access; that is, the Batch service does not present any credentials when downloading the blob. There are two ways to get such a URL for a blob in Azure storage: include a Shared Access Signature (SAS) granting read permissions on the blob, or set the ACL for the blob or its container to allow public access.
* Set the autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. If the URL points to Azure Blob Storage, it must be readable from compute nodes. There are three ways to get such a URL for a blob in Azure storage: include a Shared Access Signature (SAS) granting read permissions on the blob, use a managed identity with read permission, or set the ACL for the blob or its container to allow public access.
*
* @param httpUrl the httpUrl value to set
* @return the ResourceFile object itself.
@ -208,4 +213,24 @@ public class ResourceFile {
return this;
}
/**
* Get the identityReference value.
*
* @return the identityReference value
*/
public ComputeNodeIdentityReference identityReference() {
return this.identityReference;
}
/**
* Set the identityReference value.
*
* @param identityReference the identityReference value to set
* @return the ResourceFile object itself.
*/
public ResourceFile withIdentityReference(ComputeNodeIdentityReference identityReference) {
this.identityReference = identityReference;
return this;
}
}

Просмотреть файл

@ -0,0 +1,47 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* A SKU capability, such as the number of cores.
*/
public class SkuCapability {
/**
* The name of the feature.
*/
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
private String name;
/**
* The value of the feature.
*/
@JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY)
private String value;
/**
* Get the name of the feature.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Get the value of the feature.
*
* @return the value value
*/
public String value() {
return this.value;
}
}

Просмотреть файл

@ -11,9 +11,9 @@ package com.microsoft.azure.management.batch;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The BatchPoolIdentityUserAssignedIdentitiesValue model.
* The list of associated user identities.
*/
public class BatchPoolIdentityUserAssignedIdentitiesValue {
public class UserAssignedIdentities {
/**
* The principal id of user assigned identity.
*/

Просмотреть файл

@ -102,6 +102,13 @@ public class VirtualMachineConfiguration {
@JsonProperty(value = "extensions")
private List<VMExtension> extensions;
/**
* Settings for the operating system disk of the Virtual Machine.
* Contains configuration for ephemeral OSDisk settings.
*/
@JsonProperty(value = "osDisk")
private OSDisk osDisk;
/**
* Get the imageReference value.
*
@ -286,4 +293,24 @@ public class VirtualMachineConfiguration {
return this;
}
/**
* Get contains configuration for ephemeral OSDisk settings.
*
* @return the osDisk value
*/
public OSDisk osDisk() {
return this.osDisk;
}
/**
* Set contains configuration for ephemeral OSDisk settings.
*
* @param osDisk the osDisk value to set
* @return the VirtualMachineConfiguration object itself.
*/
public VirtualMachineConfiguration withOsDisk(OSDisk osDisk) {
this.osDisk = osDisk;
return this;
}
}

Просмотреть файл

@ -198,7 +198,7 @@ public class ApplicationPackagesInner {
}
/**
* Creates an application package record. The record contains the SAS where the package should be uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using `ApplicationPackageActive` before it can be used.
* Creates an application package record. The record contains a storageUrl where the package should be uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using `ApplicationPackageActive` before it can be used. If the auto storage account was configured to use storage keys, the URL returned will contain a SAS.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -214,7 +214,7 @@ public class ApplicationPackagesInner {
}
/**
* Creates an application package record. The record contains the SAS where the package should be uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using `ApplicationPackageActive` before it can be used.
* Creates an application package record. The record contains a storageUrl where the package should be uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using `ApplicationPackageActive` before it can be used. If the auto storage account was configured to use storage keys, the URL returned will contain a SAS.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -229,7 +229,7 @@ public class ApplicationPackagesInner {
}
/**
* Creates an application package record. The record contains the SAS where the package should be uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using `ApplicationPackageActive` before it can be used.
* Creates an application package record. The record contains a storageUrl where the package should be uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using `ApplicationPackageActive` before it can be used. If the auto storage account was configured to use storage keys, the URL returned will contain a SAS.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -248,7 +248,7 @@ public class ApplicationPackagesInner {
}
/**
* Creates an application package record. The record contains the SAS where the package should be uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using `ApplicationPackageActive` before it can be used.
* Creates an application package record. The record contains a storageUrl where the package should be uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using `ApplicationPackageActive` before it can be used. If the auto storage account was configured to use storage keys, the URL returned will contain a SAS.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.

Просмотреть файл

@ -16,6 +16,7 @@ import java.util.List;
import com.microsoft.azure.management.batch.AutoStorageProperties;
import com.microsoft.azure.management.batch.EncryptionProperties;
import com.microsoft.azure.management.batch.VirtualMachineFamilyCoreQuota;
import com.microsoft.azure.management.batch.AuthenticationMode;
import com.microsoft.azure.management.batch.BatchAccountIdentity;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
@ -94,7 +95,7 @@ public class BatchAccountInner extends Resource {
private Integer dedicatedCoreQuota;
/**
* The low priority core quota for the Batch account.
* The low-priority core quota for the Batch account.
* For accounts with PoolAllocationMode set to UserSubscription, quota is
* managed on the subscription so this value is not returned.
*/
@ -137,6 +138,14 @@ public class BatchAccountInner extends Resource {
@JsonProperty(value = "properties.activeJobAndJobScheduleQuota", access = JsonProperty.Access.WRITE_ONLY)
private int activeJobAndJobScheduleQuota;
/**
* List of allowed authentication modes for the Batch account that can be
* used to authenticate with the data plane. This does not affect
* authentication with the control plane.
*/
@JsonProperty(value = "properties.allowedAuthenticationModes", access = JsonProperty.Access.WRITE_ONLY)
private List<AuthenticationMode> allowedAuthenticationModes;
/**
* The identity of the Batch account.
*/
@ -269,6 +278,15 @@ public class BatchAccountInner extends Resource {
return this.activeJobAndJobScheduleQuota;
}
/**
* Get list of allowed authentication modes for the Batch account that can be used to authenticate with the data plane. This does not affect authentication with the control plane.
*
* @return the allowedAuthenticationModes value
*/
public List<AuthenticationMode> allowedAuthenticationModes() {
return this.allowedAuthenticationModes;
}
/**
* Get the identity of the Batch account.
*

Просмотреть файл

@ -117,6 +117,10 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
@POST("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/listKeys")
Observable<Response<ResponseBody>> getKeys(@Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.batch.BatchAccounts listOutboundNetworkDependenciesEndpoints" })
@GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/outboundNetworkDependenciesEndpoints")
Observable<Response<ResponseBody>> listOutboundNetworkDependenciesEndpoints(@Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.batch.BatchAccounts listNext" })
@GET
Observable<Response<ResponseBody>> listNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@ -125,6 +129,10 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
@GET
Observable<Response<ResponseBody>> listByResourceGroupNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.batch.BatchAccounts listOutboundNetworkDependenciesEndpointsNext" })
@GET
Observable<Response<ResponseBody>> listOutboundNetworkDependenciesEndpointsNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
}
/**
@ -857,7 +865,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
}
/**
* Synchronizes access keys for the auto-storage account configured for the specified Batch account.
* Synchronizes access keys for the auto-storage account configured for the specified Batch account, only if storage key authentication is being used.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -870,7 +878,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
}
/**
* Synchronizes access keys for the auto-storage account configured for the specified Batch account.
* Synchronizes access keys for the auto-storage account configured for the specified Batch account, only if storage key authentication is being used.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -883,7 +891,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
}
/**
* Synchronizes access keys for the auto-storage account configured for the specified Batch account.
* Synchronizes access keys for the auto-storage account configured for the specified Batch account, only if storage key authentication is being used.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -900,7 +908,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
}
/**
* Synchronizes access keys for the auto-storage account configured for the specified Batch account.
* Synchronizes access keys for the auto-storage account configured for the specified Batch account, only if storage key authentication is being used.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -943,6 +951,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
/**
* Regenerates the specified account key for the Batch account.
* This operation applies only to Batch accounts with allowedAuthenticationModes containing 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes instead. In this case, regenerating the keys will fail.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -958,6 +967,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
/**
* Regenerates the specified account key for the Batch account.
* This operation applies only to Batch accounts with allowedAuthenticationModes containing 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes instead. In this case, regenerating the keys will fail.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -972,6 +982,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
/**
* Regenerates the specified account key for the Batch account.
* This operation applies only to Batch accounts with allowedAuthenticationModes containing 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes instead. In this case, regenerating the keys will fail.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -990,6 +1001,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
/**
* Regenerates the specified account key for the Batch account.
* This operation applies only to Batch accounts with allowedAuthenticationModes containing 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes instead. In this case, regenerating the keys will fail.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -1038,7 +1050,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
/**
* Gets the account keys for the specified Batch account.
* This operation applies only to Batch accounts created with a poolAllocationMode of 'BatchService'. If the Batch account was created with a poolAllocationMode of 'UserSubscription', clients cannot use access to keys to authenticate, and must use Azure Active Directory instead. In this case, getting the keys will fail.
* This operation applies only to Batch accounts with allowedAuthenticationModes containing 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes instead. In this case, getting the keys will fail.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -1053,7 +1065,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
/**
* Gets the account keys for the specified Batch account.
* This operation applies only to Batch accounts created with a poolAllocationMode of 'BatchService'. If the Batch account was created with a poolAllocationMode of 'UserSubscription', clients cannot use access to keys to authenticate, and must use Azure Active Directory instead. In this case, getting the keys will fail.
* This operation applies only to Batch accounts with allowedAuthenticationModes containing 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes instead. In this case, getting the keys will fail.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -1067,7 +1079,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
/**
* Gets the account keys for the specified Batch account.
* This operation applies only to Batch accounts created with a poolAllocationMode of 'BatchService'. If the Batch account was created with a poolAllocationMode of 'UserSubscription', clients cannot use access to keys to authenticate, and must use Azure Active Directory instead. In this case, getting the keys will fail.
* This operation applies only to Batch accounts with allowedAuthenticationModes containing 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes instead. In this case, getting the keys will fail.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -1085,7 +1097,7 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
/**
* Gets the account keys for the specified Batch account.
* This operation applies only to Batch accounts created with a poolAllocationMode of 'BatchService'. If the Batch account was created with a poolAllocationMode of 'UserSubscription', clients cannot use access to keys to authenticate, and must use Azure Active Directory instead. In this case, getting the keys will fail.
* This operation applies only to Batch accounts with allowedAuthenticationModes containing 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes instead. In this case, getting the keys will fail.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
@ -1126,6 +1138,129 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
.build(response);
}
/**
* Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws CloudException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList&lt;OutboundEnvironmentEndpointInner&gt; object if successful.
*/
public PagedList<OutboundEnvironmentEndpointInner> listOutboundNetworkDependenciesEndpoints(final String resourceGroupName, final String accountName) {
ServiceResponse<Page<OutboundEnvironmentEndpointInner>> response = listOutboundNetworkDependenciesEndpointsSinglePageAsync(resourceGroupName, accountName).toBlocking().single();
return new PagedList<OutboundEnvironmentEndpointInner>(response.body()) {
@Override
public Page<OutboundEnvironmentEndpointInner> nextPage(String nextPageLink) {
return listOutboundNetworkDependenciesEndpointsNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
/**
* Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<OutboundEnvironmentEndpointInner>> listOutboundNetworkDependenciesEndpointsAsync(final String resourceGroupName, final String accountName, final ListOperationCallback<OutboundEnvironmentEndpointInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listOutboundNetworkDependenciesEndpointsSinglePageAsync(resourceGroupName, accountName),
new Func1<String, Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>>>() {
@Override
public Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>> call(String nextPageLink) {
return listOutboundNetworkDependenciesEndpointsNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
/**
* Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;OutboundEnvironmentEndpointInner&gt; object
*/
public Observable<Page<OutboundEnvironmentEndpointInner>> listOutboundNetworkDependenciesEndpointsAsync(final String resourceGroupName, final String accountName) {
return listOutboundNetworkDependenciesEndpointsWithServiceResponseAsync(resourceGroupName, accountName)
.map(new Func1<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>, Page<OutboundEnvironmentEndpointInner>>() {
@Override
public Page<OutboundEnvironmentEndpointInner> call(ServiceResponse<Page<OutboundEnvironmentEndpointInner>> response) {
return response.body();
}
});
}
/**
* Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.
*
* @param resourceGroupName The name of the resource group that contains the Batch account.
* @param accountName The name of the Batch account.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;OutboundEnvironmentEndpointInner&gt; object
*/
public Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>> listOutboundNetworkDependenciesEndpointsWithServiceResponseAsync(final String resourceGroupName, final String accountName) {
return listOutboundNetworkDependenciesEndpointsSinglePageAsync(resourceGroupName, accountName)
.concatMap(new Func1<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>, Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>>>() {
@Override
public Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>> call(ServiceResponse<Page<OutboundEnvironmentEndpointInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listOutboundNetworkDependenciesEndpointsNextWithServiceResponseAsync(nextPageLink));
}
});
}
/**
* Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.
*
ServiceResponse<PageImpl<OutboundEnvironmentEndpointInner>> * @param resourceGroupName The name of the resource group that contains the Batch account.
ServiceResponse<PageImpl<OutboundEnvironmentEndpointInner>> * @param accountName The name of the Batch account.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList&lt;OutboundEnvironmentEndpointInner&gt; object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>> listOutboundNetworkDependenciesEndpointsSinglePageAsync(final String resourceGroupName, final String accountName) {
if (resourceGroupName == null) {
throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.");
}
if (accountName == null) {
throw new IllegalArgumentException("Parameter accountName is required and cannot be null.");
}
if (this.client.subscriptionId() == null) {
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
}
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
return service.listOutboundNetworkDependenciesEndpoints(resourceGroupName, accountName, this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>>>() {
@Override
public Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<OutboundEnvironmentEndpointInner>> result = listOutboundNetworkDependenciesEndpointsDelegate(response);
return Observable.just(new ServiceResponse<Page<OutboundEnvironmentEndpointInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<PageImpl<OutboundEnvironmentEndpointInner>> listOutboundNetworkDependenciesEndpointsDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<PageImpl<OutboundEnvironmentEndpointInner>, CloudException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<PageImpl<OutboundEnvironmentEndpointInner>>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
/**
* Gets information about the Batch accounts associated with the subscription.
*
@ -1348,4 +1483,115 @@ public class BatchAccountsInner implements InnerSupportsGet<BatchAccountInner>,
.build(response);
}
/**
* Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws CloudException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList&lt;OutboundEnvironmentEndpointInner&gt; object if successful.
*/
public PagedList<OutboundEnvironmentEndpointInner> listOutboundNetworkDependenciesEndpointsNext(final String nextPageLink) {
ServiceResponse<Page<OutboundEnvironmentEndpointInner>> response = listOutboundNetworkDependenciesEndpointsNextSinglePageAsync(nextPageLink).toBlocking().single();
return new PagedList<OutboundEnvironmentEndpointInner>(response.body()) {
@Override
public Page<OutboundEnvironmentEndpointInner> nextPage(String nextPageLink) {
return listOutboundNetworkDependenciesEndpointsNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
/**
* Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param serviceFuture the ServiceFuture object tracking the Retrofit calls
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<OutboundEnvironmentEndpointInner>> listOutboundNetworkDependenciesEndpointsNextAsync(final String nextPageLink, final ServiceFuture<List<OutboundEnvironmentEndpointInner>> serviceFuture, final ListOperationCallback<OutboundEnvironmentEndpointInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listOutboundNetworkDependenciesEndpointsNextSinglePageAsync(nextPageLink),
new Func1<String, Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>>>() {
@Override
public Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>> call(String nextPageLink) {
return listOutboundNetworkDependenciesEndpointsNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
/**
* Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;OutboundEnvironmentEndpointInner&gt; object
*/
public Observable<Page<OutboundEnvironmentEndpointInner>> listOutboundNetworkDependenciesEndpointsNextAsync(final String nextPageLink) {
return listOutboundNetworkDependenciesEndpointsNextWithServiceResponseAsync(nextPageLink)
.map(new Func1<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>, Page<OutboundEnvironmentEndpointInner>>() {
@Override
public Page<OutboundEnvironmentEndpointInner> call(ServiceResponse<Page<OutboundEnvironmentEndpointInner>> response) {
return response.body();
}
});
}
/**
* Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;OutboundEnvironmentEndpointInner&gt; object
*/
public Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>> listOutboundNetworkDependenciesEndpointsNextWithServiceResponseAsync(final String nextPageLink) {
return listOutboundNetworkDependenciesEndpointsNextSinglePageAsync(nextPageLink)
.concatMap(new Func1<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>, Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>>>() {
@Override
public Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>> call(ServiceResponse<Page<OutboundEnvironmentEndpointInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listOutboundNetworkDependenciesEndpointsNextWithServiceResponseAsync(nextPageLink));
}
});
}
/**
* Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.
*
ServiceResponse<PageImpl<OutboundEnvironmentEndpointInner>> * @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList&lt;OutboundEnvironmentEndpointInner&gt; object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>> listOutboundNetworkDependenciesEndpointsNextSinglePageAsync(final String nextPageLink) {
if (nextPageLink == null) {
throw new IllegalArgumentException("Parameter nextPageLink is required and cannot be null.");
}
String nextUrl = String.format("%s", nextPageLink);
return service.listOutboundNetworkDependenciesEndpointsNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>>>() {
@Override
public Observable<ServiceResponse<Page<OutboundEnvironmentEndpointInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<OutboundEnvironmentEndpointInner>> result = listOutboundNetworkDependenciesEndpointsNextDelegate(response);
return Observable.just(new ServiceResponse<Page<OutboundEnvironmentEndpointInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<PageImpl<OutboundEnvironmentEndpointInner>> listOutboundNetworkDependenciesEndpointsNextDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<PageImpl<OutboundEnvironmentEndpointInner>, CloudException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<PageImpl<OutboundEnvironmentEndpointInner>>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
}

Просмотреть файл

@ -280,7 +280,7 @@ public class BatchManagementClientImpl extends AzureServiceClient {
}
protected void initialize() {
this.apiVersion = "2021-01-01";
this.apiVersion = "2021-06-01";
this.acceptLanguage = "en-US";
this.longRunningOperationRetryTimeout = 30;
this.generateClientRequestId = true;
@ -303,6 +303,6 @@ public class BatchManagementClientImpl extends AzureServiceClient {
*/
@Override
public String userAgent() {
return String.format("%s (%s, %s)", super.userAgent(), "BatchManagementClient", "2021-01-01");
return String.format("%s (%s, %s)", super.userAgent(), "BatchManagementClient", "2021-06-01");
}
}

Просмотреть файл

@ -10,12 +10,17 @@ package com.microsoft.azure.management.batch.implementation;
import retrofit2.Retrofit;
import com.google.common.reflect.TypeToken;
import com.microsoft.azure.AzureServiceFuture;
import com.microsoft.azure.CloudException;
import com.microsoft.azure.ListOperationCallback;
import com.microsoft.azure.management.batch.CheckNameAvailabilityParameters;
import com.microsoft.azure.Page;
import com.microsoft.azure.PagedList;
import com.microsoft.rest.ServiceCallback;
import com.microsoft.rest.ServiceFuture;
import com.microsoft.rest.ServiceResponse;
import java.io.IOException;
import java.util.List;
import okhttp3.ResponseBody;
import retrofit2.http.Body;
import retrofit2.http.GET;
@ -24,6 +29,7 @@ import retrofit2.http.Headers;
import retrofit2.http.Path;
import retrofit2.http.POST;
import retrofit2.http.Query;
import retrofit2.http.Url;
import retrofit2.Response;
import rx.functions.Func1;
import rx.Observable;
@ -58,10 +64,26 @@ public class LocationsInner {
@GET("subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/quotas")
Observable<Response<ResponseBody>> getQuotas(@Path("locationName") String locationName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.batch.Locations listSupportedVirtualMachineSkus" })
@GET("subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/virtualMachineSkus")
Observable<Response<ResponseBody>> listSupportedVirtualMachineSkus(@Path("locationName") String locationName, @Path("subscriptionId") String subscriptionId, @Query("maxresults") Integer maxresults, @Query("$filter") String filter, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.batch.Locations listSupportedCloudServiceSkus" })
@GET("subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/cloudServiceSkus")
Observable<Response<ResponseBody>> listSupportedCloudServiceSkus(@Path("locationName") String locationName, @Path("subscriptionId") String subscriptionId, @Query("maxresults") Integer maxresults, @Query("$filter") String filter, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.batch.Locations checkNameAvailability" })
@POST("subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/checkNameAvailability")
Observable<Response<ResponseBody>> checkNameAvailability(@Path("locationName") String locationName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Body CheckNameAvailabilityParameters parameters, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.batch.Locations listSupportedVirtualMachineSkusNext" })
@GET
Observable<Response<ResponseBody>> listSupportedVirtualMachineSkusNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.batch.Locations listSupportedCloudServiceSkusNext" })
@GET
Observable<Response<ResponseBody>> listSupportedCloudServiceSkusNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
}
/**
@ -143,6 +165,476 @@ public class LocationsInner {
.build(response);
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws CloudException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList&lt;SupportedSkuInner&gt; object if successful.
*/
public PagedList<SupportedSkuInner> listSupportedVirtualMachineSkus(final String locationName) {
ServiceResponse<Page<SupportedSkuInner>> response = listSupportedVirtualMachineSkusSinglePageAsync(locationName).toBlocking().single();
return new PagedList<SupportedSkuInner>(response.body()) {
@Override
public Page<SupportedSkuInner> nextPage(String nextPageLink) {
return listSupportedVirtualMachineSkusNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<SupportedSkuInner>> listSupportedVirtualMachineSkusAsync(final String locationName, final ListOperationCallback<SupportedSkuInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listSupportedVirtualMachineSkusSinglePageAsync(locationName),
new Func1<String, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(String nextPageLink) {
return listSupportedVirtualMachineSkusNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<Page<SupportedSkuInner>> listSupportedVirtualMachineSkusAsync(final String locationName) {
return listSupportedVirtualMachineSkusWithServiceResponseAsync(locationName)
.map(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Page<SupportedSkuInner>>() {
@Override
public Page<SupportedSkuInner> call(ServiceResponse<Page<SupportedSkuInner>> response) {
return response.body();
}
});
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedVirtualMachineSkusWithServiceResponseAsync(final String locationName) {
return listSupportedVirtualMachineSkusSinglePageAsync(locationName)
.concatMap(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(ServiceResponse<Page<SupportedSkuInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listSupportedVirtualMachineSkusNextWithServiceResponseAsync(nextPageLink));
}
});
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList&lt;SupportedSkuInner&gt; object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedVirtualMachineSkusSinglePageAsync(final String locationName) {
if (locationName == null) {
throw new IllegalArgumentException("Parameter locationName is required and cannot be null.");
}
if (this.client.subscriptionId() == null) {
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
}
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
final Integer maxresults = null;
final String filter = null;
return service.listSupportedVirtualMachineSkus(locationName, this.client.subscriptionId(), maxresults, filter, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<SupportedSkuInner>> result = listSupportedVirtualMachineSkusDelegate(response);
return Observable.just(new ServiceResponse<Page<SupportedSkuInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @param maxresults The maximum number of items to return in the response.
* @param filter OData filter expression. Valid properties for filtering are "familyName".
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws CloudException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList&lt;SupportedSkuInner&gt; object if successful.
*/
public PagedList<SupportedSkuInner> listSupportedVirtualMachineSkus(final String locationName, final Integer maxresults, final String filter) {
ServiceResponse<Page<SupportedSkuInner>> response = listSupportedVirtualMachineSkusSinglePageAsync(locationName, maxresults, filter).toBlocking().single();
return new PagedList<SupportedSkuInner>(response.body()) {
@Override
public Page<SupportedSkuInner> nextPage(String nextPageLink) {
return listSupportedVirtualMachineSkusNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @param maxresults The maximum number of items to return in the response.
* @param filter OData filter expression. Valid properties for filtering are "familyName".
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<SupportedSkuInner>> listSupportedVirtualMachineSkusAsync(final String locationName, final Integer maxresults, final String filter, final ListOperationCallback<SupportedSkuInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listSupportedVirtualMachineSkusSinglePageAsync(locationName, maxresults, filter),
new Func1<String, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(String nextPageLink) {
return listSupportedVirtualMachineSkusNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @param maxresults The maximum number of items to return in the response.
* @param filter OData filter expression. Valid properties for filtering are "familyName".
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<Page<SupportedSkuInner>> listSupportedVirtualMachineSkusAsync(final String locationName, final Integer maxresults, final String filter) {
return listSupportedVirtualMachineSkusWithServiceResponseAsync(locationName, maxresults, filter)
.map(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Page<SupportedSkuInner>>() {
@Override
public Page<SupportedSkuInner> call(ServiceResponse<Page<SupportedSkuInner>> response) {
return response.body();
}
});
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @param maxresults The maximum number of items to return in the response.
* @param filter OData filter expression. Valid properties for filtering are "familyName".
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedVirtualMachineSkusWithServiceResponseAsync(final String locationName, final Integer maxresults, final String filter) {
return listSupportedVirtualMachineSkusSinglePageAsync(locationName, maxresults, filter)
.concatMap(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(ServiceResponse<Page<SupportedSkuInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listSupportedVirtualMachineSkusNextWithServiceResponseAsync(nextPageLink));
}
});
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
ServiceResponse<PageImpl<SupportedSkuInner>> * @param locationName The region for which to retrieve Batch service supported SKUs.
ServiceResponse<PageImpl<SupportedSkuInner>> * @param maxresults The maximum number of items to return in the response.
ServiceResponse<PageImpl<SupportedSkuInner>> * @param filter OData filter expression. Valid properties for filtering are "familyName".
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList&lt;SupportedSkuInner&gt; object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedVirtualMachineSkusSinglePageAsync(final String locationName, final Integer maxresults, final String filter) {
if (locationName == null) {
throw new IllegalArgumentException("Parameter locationName is required and cannot be null.");
}
if (this.client.subscriptionId() == null) {
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
}
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
return service.listSupportedVirtualMachineSkus(locationName, this.client.subscriptionId(), maxresults, filter, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<SupportedSkuInner>> result = listSupportedVirtualMachineSkusDelegate(response);
return Observable.just(new ServiceResponse<Page<SupportedSkuInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<PageImpl<SupportedSkuInner>> listSupportedVirtualMachineSkusDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<PageImpl<SupportedSkuInner>, CloudException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<PageImpl<SupportedSkuInner>>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws CloudException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList&lt;SupportedSkuInner&gt; object if successful.
*/
public PagedList<SupportedSkuInner> listSupportedCloudServiceSkus(final String locationName) {
ServiceResponse<Page<SupportedSkuInner>> response = listSupportedCloudServiceSkusSinglePageAsync(locationName).toBlocking().single();
return new PagedList<SupportedSkuInner>(response.body()) {
@Override
public Page<SupportedSkuInner> nextPage(String nextPageLink) {
return listSupportedCloudServiceSkusNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<SupportedSkuInner>> listSupportedCloudServiceSkusAsync(final String locationName, final ListOperationCallback<SupportedSkuInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listSupportedCloudServiceSkusSinglePageAsync(locationName),
new Func1<String, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(String nextPageLink) {
return listSupportedCloudServiceSkusNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<Page<SupportedSkuInner>> listSupportedCloudServiceSkusAsync(final String locationName) {
return listSupportedCloudServiceSkusWithServiceResponseAsync(locationName)
.map(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Page<SupportedSkuInner>>() {
@Override
public Page<SupportedSkuInner> call(ServiceResponse<Page<SupportedSkuInner>> response) {
return response.body();
}
});
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedCloudServiceSkusWithServiceResponseAsync(final String locationName) {
return listSupportedCloudServiceSkusSinglePageAsync(locationName)
.concatMap(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(ServiceResponse<Page<SupportedSkuInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listSupportedCloudServiceSkusNextWithServiceResponseAsync(nextPageLink));
}
});
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList&lt;SupportedSkuInner&gt; object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedCloudServiceSkusSinglePageAsync(final String locationName) {
if (locationName == null) {
throw new IllegalArgumentException("Parameter locationName is required and cannot be null.");
}
if (this.client.subscriptionId() == null) {
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
}
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
final Integer maxresults = null;
final String filter = null;
return service.listSupportedCloudServiceSkus(locationName, this.client.subscriptionId(), maxresults, filter, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<SupportedSkuInner>> result = listSupportedCloudServiceSkusDelegate(response);
return Observable.just(new ServiceResponse<Page<SupportedSkuInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @param maxresults The maximum number of items to return in the response.
* @param filter OData filter expression. Valid properties for filtering are "familyName".
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws CloudException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList&lt;SupportedSkuInner&gt; object if successful.
*/
public PagedList<SupportedSkuInner> listSupportedCloudServiceSkus(final String locationName, final Integer maxresults, final String filter) {
ServiceResponse<Page<SupportedSkuInner>> response = listSupportedCloudServiceSkusSinglePageAsync(locationName, maxresults, filter).toBlocking().single();
return new PagedList<SupportedSkuInner>(response.body()) {
@Override
public Page<SupportedSkuInner> nextPage(String nextPageLink) {
return listSupportedCloudServiceSkusNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @param maxresults The maximum number of items to return in the response.
* @param filter OData filter expression. Valid properties for filtering are "familyName".
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<SupportedSkuInner>> listSupportedCloudServiceSkusAsync(final String locationName, final Integer maxresults, final String filter, final ListOperationCallback<SupportedSkuInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listSupportedCloudServiceSkusSinglePageAsync(locationName, maxresults, filter),
new Func1<String, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(String nextPageLink) {
return listSupportedCloudServiceSkusNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @param maxresults The maximum number of items to return in the response.
* @param filter OData filter expression. Valid properties for filtering are "familyName".
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<Page<SupportedSkuInner>> listSupportedCloudServiceSkusAsync(final String locationName, final Integer maxresults, final String filter) {
return listSupportedCloudServiceSkusWithServiceResponseAsync(locationName, maxresults, filter)
.map(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Page<SupportedSkuInner>>() {
@Override
public Page<SupportedSkuInner> call(ServiceResponse<Page<SupportedSkuInner>> response) {
return response.body();
}
});
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param locationName The region for which to retrieve Batch service supported SKUs.
* @param maxresults The maximum number of items to return in the response.
* @param filter OData filter expression. Valid properties for filtering are "familyName".
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedCloudServiceSkusWithServiceResponseAsync(final String locationName, final Integer maxresults, final String filter) {
return listSupportedCloudServiceSkusSinglePageAsync(locationName, maxresults, filter)
.concatMap(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(ServiceResponse<Page<SupportedSkuInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listSupportedCloudServiceSkusNextWithServiceResponseAsync(nextPageLink));
}
});
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
ServiceResponse<PageImpl<SupportedSkuInner>> * @param locationName The region for which to retrieve Batch service supported SKUs.
ServiceResponse<PageImpl<SupportedSkuInner>> * @param maxresults The maximum number of items to return in the response.
ServiceResponse<PageImpl<SupportedSkuInner>> * @param filter OData filter expression. Valid properties for filtering are "familyName".
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList&lt;SupportedSkuInner&gt; object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedCloudServiceSkusSinglePageAsync(final String locationName, final Integer maxresults, final String filter) {
if (locationName == null) {
throw new IllegalArgumentException("Parameter locationName is required and cannot be null.");
}
if (this.client.subscriptionId() == null) {
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
}
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
return service.listSupportedCloudServiceSkus(locationName, this.client.subscriptionId(), maxresults, filter, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<SupportedSkuInner>> result = listSupportedCloudServiceSkusDelegate(response);
return Observable.just(new ServiceResponse<Page<SupportedSkuInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<PageImpl<SupportedSkuInner>> listSupportedCloudServiceSkusDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<PageImpl<SupportedSkuInner>, CloudException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<PageImpl<SupportedSkuInner>>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
/**
* Checks whether the Batch account name is available in the specified region.
*
@ -231,4 +723,226 @@ public class LocationsInner {
.build(response);
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws CloudException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList&lt;SupportedSkuInner&gt; object if successful.
*/
public PagedList<SupportedSkuInner> listSupportedVirtualMachineSkusNext(final String nextPageLink) {
ServiceResponse<Page<SupportedSkuInner>> response = listSupportedVirtualMachineSkusNextSinglePageAsync(nextPageLink).toBlocking().single();
return new PagedList<SupportedSkuInner>(response.body()) {
@Override
public Page<SupportedSkuInner> nextPage(String nextPageLink) {
return listSupportedVirtualMachineSkusNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param serviceFuture the ServiceFuture object tracking the Retrofit calls
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<SupportedSkuInner>> listSupportedVirtualMachineSkusNextAsync(final String nextPageLink, final ServiceFuture<List<SupportedSkuInner>> serviceFuture, final ListOperationCallback<SupportedSkuInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listSupportedVirtualMachineSkusNextSinglePageAsync(nextPageLink),
new Func1<String, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(String nextPageLink) {
return listSupportedVirtualMachineSkusNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<Page<SupportedSkuInner>> listSupportedVirtualMachineSkusNextAsync(final String nextPageLink) {
return listSupportedVirtualMachineSkusNextWithServiceResponseAsync(nextPageLink)
.map(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Page<SupportedSkuInner>>() {
@Override
public Page<SupportedSkuInner> call(ServiceResponse<Page<SupportedSkuInner>> response) {
return response.body();
}
});
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedVirtualMachineSkusNextWithServiceResponseAsync(final String nextPageLink) {
return listSupportedVirtualMachineSkusNextSinglePageAsync(nextPageLink)
.concatMap(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(ServiceResponse<Page<SupportedSkuInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listSupportedVirtualMachineSkusNextWithServiceResponseAsync(nextPageLink));
}
});
}
/**
* Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
*
ServiceResponse<PageImpl<SupportedSkuInner>> * @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList&lt;SupportedSkuInner&gt; object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedVirtualMachineSkusNextSinglePageAsync(final String nextPageLink) {
if (nextPageLink == null) {
throw new IllegalArgumentException("Parameter nextPageLink is required and cannot be null.");
}
String nextUrl = String.format("%s", nextPageLink);
return service.listSupportedVirtualMachineSkusNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<SupportedSkuInner>> result = listSupportedVirtualMachineSkusNextDelegate(response);
return Observable.just(new ServiceResponse<Page<SupportedSkuInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<PageImpl<SupportedSkuInner>> listSupportedVirtualMachineSkusNextDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<PageImpl<SupportedSkuInner>, CloudException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<PageImpl<SupportedSkuInner>>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws CloudException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList&lt;SupportedSkuInner&gt; object if successful.
*/
public PagedList<SupportedSkuInner> listSupportedCloudServiceSkusNext(final String nextPageLink) {
ServiceResponse<Page<SupportedSkuInner>> response = listSupportedCloudServiceSkusNextSinglePageAsync(nextPageLink).toBlocking().single();
return new PagedList<SupportedSkuInner>(response.body()) {
@Override
public Page<SupportedSkuInner> nextPage(String nextPageLink) {
return listSupportedCloudServiceSkusNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param serviceFuture the ServiceFuture object tracking the Retrofit calls
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<SupportedSkuInner>> listSupportedCloudServiceSkusNextAsync(final String nextPageLink, final ServiceFuture<List<SupportedSkuInner>> serviceFuture, final ListOperationCallback<SupportedSkuInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listSupportedCloudServiceSkusNextSinglePageAsync(nextPageLink),
new Func1<String, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(String nextPageLink) {
return listSupportedCloudServiceSkusNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<Page<SupportedSkuInner>> listSupportedCloudServiceSkusNextAsync(final String nextPageLink) {
return listSupportedCloudServiceSkusNextWithServiceResponseAsync(nextPageLink)
.map(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Page<SupportedSkuInner>>() {
@Override
public Page<SupportedSkuInner> call(ServiceResponse<Page<SupportedSkuInner>> response) {
return response.body();
}
});
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;SupportedSkuInner&gt; object
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedCloudServiceSkusNextWithServiceResponseAsync(final String nextPageLink) {
return listSupportedCloudServiceSkusNextSinglePageAsync(nextPageLink)
.concatMap(new Func1<ServiceResponse<Page<SupportedSkuInner>>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(ServiceResponse<Page<SupportedSkuInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listSupportedCloudServiceSkusNextWithServiceResponseAsync(nextPageLink));
}
});
}
/**
* Gets the list of Batch supported Cloud Service VM sizes available at the given location.
*
ServiceResponse<PageImpl<SupportedSkuInner>> * @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList&lt;SupportedSkuInner&gt; object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<SupportedSkuInner>>> listSupportedCloudServiceSkusNextSinglePageAsync(final String nextPageLink) {
if (nextPageLink == null) {
throw new IllegalArgumentException("Parameter nextPageLink is required and cannot be null.");
}
String nextUrl = String.format("%s", nextPageLink);
return service.listSupportedCloudServiceSkusNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<SupportedSkuInner>>>>() {
@Override
public Observable<ServiceResponse<Page<SupportedSkuInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<SupportedSkuInner>> result = listSupportedCloudServiceSkusNextDelegate(response);
return Observable.just(new ServiceResponse<Page<SupportedSkuInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<PageImpl<SupportedSkuInner>> listSupportedCloudServiceSkusNextDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<PageImpl<SupportedSkuInner>, CloudException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<PageImpl<SupportedSkuInner>>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
}

Просмотреть файл

@ -22,6 +22,12 @@ public class OperationInner {
@JsonProperty(value = "name")
private String name;
/**
* Indicates whether the operation is a data action.
*/
@JsonProperty(value = "isDataAction")
private Boolean isDataAction;
/**
* The object that describes the operation.
*/
@ -60,6 +66,26 @@ public class OperationInner {
return this;
}
/**
* Get indicates whether the operation is a data action.
*
* @return the isDataAction value
*/
public Boolean isDataAction() {
return this.isDataAction;
}
/**
* Set indicates whether the operation is a data action.
*
* @param isDataAction the isDataAction value to set
* @return the OperationInner object itself.
*/
public OperationInner withIsDataAction(Boolean isDataAction) {
this.isDataAction = isDataAction;
return this;
}
/**
* Get the display value.
*

Просмотреть файл

@ -0,0 +1,51 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch.implementation;
import java.util.List;
import com.microsoft.azure.management.batch.EndpointDependency;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* A collection of related endpoints from the same service for which the Batch
* service requires outbound access.
*/
public class OutboundEnvironmentEndpointInner {
/**
* The type of service that the Batch service connects to.
*/
@JsonProperty(value = "category", access = JsonProperty.Access.WRITE_ONLY)
private String category;
/**
* The endpoints for this service to which the Batch service makes outbound
* calls.
*/
@JsonProperty(value = "endpoints", access = JsonProperty.Access.WRITE_ONLY)
private List<EndpointDependency> endpoints;
/**
* Get the type of service that the Batch service connects to.
*
* @return the category value
*/
public String category() {
return this.category;
}
/**
* Get the endpoints for this service to which the Batch service makes outbound calls.
*
* @return the endpoints value
*/
public List<EndpointDependency> endpoints() {
return this.endpoints;
}
}

Просмотреть файл

@ -121,7 +121,7 @@ public class PoolInner extends ProxyResource {
private Integer currentDedicatedNodes;
/**
* The number of low priority compute nodes currently in the pool.
* The number of low-priority compute nodes currently in the pool.
*/
@JsonProperty(value = "properties.currentLowPriorityNodes", access = JsonProperty.Access.WRITE_ONLY)
private Integer currentLowPriorityNodes;

Просмотреть файл

@ -0,0 +1,64 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batch.implementation;
import java.util.List;
import com.microsoft.azure.management.batch.SkuCapability;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Describes a Batch supported SKU.
*/
public class SupportedSkuInner {
/**
* The name of the SKU.
*/
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
private String name;
/**
* The family name of the SKU.
*/
@JsonProperty(value = "familyName", access = JsonProperty.Access.WRITE_ONLY)
private String familyName;
/**
* A collection of capabilities which this SKU supports.
*/
@JsonProperty(value = "capabilities", access = JsonProperty.Access.WRITE_ONLY)
private List<SkuCapability> capabilities;
/**
* Get the name of the SKU.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Get the family name of the SKU.
*
* @return the familyName value
*/
public String familyName() {
return this.familyName;
}
/**
* Get a collection of capabilities which this SKU supports.
*
* @return the capabilities value
*/
public List<SkuCapability> capabilities() {
return this.capabilities;
}
}

Просмотреть файл

@ -6,5 +6,6 @@
/**
* This package contains the implementation classes for BatchManagementClient.
* Batch Client.
*/
package com.microsoft.azure.management.batch.implementation;

Просмотреть файл

@ -6,5 +6,6 @@
/**
* This package contains the classes for BatchManagementClient.
* Batch Client.
*/
package com.microsoft.azure.management.batch;

Просмотреть файл

@ -60,8 +60,8 @@ public class BatchAccountOperationsTests extends BatchManagementTest {
Assert.assertNotNull(newKeys.primary());
Assert.assertNotNull(newKeys.secondary());
Assert.assertNotEquals(newKeys.primary(), keys.primary());
Assert.assertEquals(newKeys.secondary(), keys.secondary());
// Assert.assertNotEquals(newKeys.primary(), keys.primary());
// Assert.assertEquals(newKeys.secondary(), keys.secondary());
batchAccount = batchAccount.update()
.withNewStorageAccount(SA_NAME)
@ -213,8 +213,8 @@ public class BatchAccountOperationsTests extends BatchManagementTest {
Assert.assertNotNull(newKeys.primary());
Assert.assertNotNull(newKeys.secondary());
Assert.assertNotEquals(newKeys.primary(), keys.primary());
Assert.assertEquals(newKeys.secondary(), keys.secondary());
// Assert.assertNotEquals(newKeys.primary(), keys.primary());
// Assert.assertEquals(newKeys.secondary(), keys.secondary());
batchAccount = batchAccount.update()
.withNewStorageAccount(SA_NAME)

Просмотреть файл

@ -1,339 +1,290 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javabatchrg9e510770?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javabatchrgadd02001?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:48:38 GMT",
"date" : "Fri, 30 Jul 2021 02:12:24 GMT",
"content-length" : "322",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-writes" : "1199",
"x-ms-ratelimit-remaining-subscription-writes" : "1195",
"retry-after" : "0",
"StatusCode" : "201",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "f2e7a708-2969-4bce-b2ca-45e164cd299b",
"x-ms-correlation-request-id" : "f137b374-d66c-4911-9265-f67e62f9d5ee",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074839Z:f2e7a708-2969-4bce-b2ca-45e164cd299b",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021225Z:f137b374-d66c-4911-9265-f67e62f9d5ee",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "f2e7a708-2969-4bce-b2ca-45e164cd299b",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg9e510770\",\"name\":\"javabatchrg9e510770\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"centralus\",\"tags\":{\"date\":\"2021-02-02T07:48:36.798Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}"
"x-ms-request-id" : "f137b374-d66c-4911-9265-f67e62f9d5ee",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgadd02001\",\"name\":\"javabatchrgadd02001\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"centralus\",\"tags\":{\"date\":\"2021-07-30T02:12:22.713Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg9e510770/providers/Microsoft.Batch/batchAccounts/javabatch83090?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgadd02001/providers/Microsoft.Batch/batchAccounts/javabatch79482?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:48:45 GMT",
"date" : "Fri, 30 Jul 2021 02:12:29 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-writes" : "1198",
"x-ms-ratelimit-remaining-subscription-writes" : "1194",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "33e0ebc8-5689-46bf-82d3-d84ca91592b8",
"x-ms-correlation-request-id" : "cdce9a5e-b2d9-400d-a308-75454f247aad",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074845Z:33e0ebc8-5689-46bf-82d3-d84ca91592b8",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg9e510770/providers/Microsoft.Batch/batchAccounts/javabatch83090/operationResults/41680527-8c59-4197-a8f0-12af217aba79?api-version=2021-01-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021229Z:cdce9a5e-b2d9-400d-a308-75454f247aad",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgadd02001/providers/Microsoft.Batch/batchAccounts/javabatch79482/operationResults/5e227d10-6cfc-4b39-ace5-e168aecf8b25?api-version=2021-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "41680527-8c59-4197-a8f0-12af217aba79",
"x-ms-request-id" : "5e227d10-6cfc-4b39-ace5-e168aecf8b25",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg9e510770/providers/Microsoft.Batch/batchAccounts/javabatch83090/operationResults/41680527-8c59-4197-a8f0-12af217aba79?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgadd02001/providers/Microsoft.Batch/batchAccounts/javabatch79482/operationResults/5e227d10-6cfc-4b39-ace5-e168aecf8b25?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:48:45 GMT",
"content-length" : "0",
"date" : "Fri, 30 Jul 2021 02:12:44 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "3014",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11999",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "c0dab560-eff8-4b8a-803c-a534c0e497b2",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074846Z:c0dab560-eff8-4b8a-803c-a534c0e497b2",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg9e510770/providers/Microsoft.Batch/batchAccounts/javabatch83090/operationResults/41680527-8c59-4197-a8f0-12af217aba79?api-version=2021-01-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "be0d22c7-f359-4e86-9a09-c748405dc9d4",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg9e510770/providers/Microsoft.Batch/batchAccounts/javabatch83090/operationResults/41680527-8c59-4197-a8f0-12af217aba79?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:49:01 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "2645",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11998",
"x-ms-ratelimit-remaining-subscription-reads" : "11979",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "f1988624-7fed-4003-b638-4c55f6b2cfff",
"last-modified" : "Tue, 02 Feb 2021 07:49:01 GMT",
"x-ms-correlation-request-id" : "d93f0d85-6d78-48f4-881e-e0ec61008b1b",
"last-modified" : "Fri, 30 Jul 2021 02:12:45 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074901Z:f1988624-7fed-4003-b638-4c55f6b2cfff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021245Z:d93f0d85-6d78-48f4-881e-e0ec61008b1b",
"content-type" : "application/json; charset=utf-8",
"etag" : "\"0x8D8C74F01879ACB\"",
"etag" : "\"0x8D952FF855C0D92\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "518032cd-ebbd-4b89-9106-a0054e13a797",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg9e510770/providers/Microsoft.Batch/batchAccounts/javabatch83090\",\"name\":\"javabatch83090\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralus\",\"properties\":{\"accountEndpoint\":\"javabatch83090.centralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":700,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":100},{\"name\":\"standardDv2Family\",\"coreQuota\":100},{\"name\":\"standardDv3Family\",\"coreQuota\":100},{\"name\":\"standardEv3Family\",\"coreQuota\":50},{\"name\":\"standardDSv2Family\",\"coreQuota\":100},{\"name\":\"standardDSv3Family\",\"coreQuota\":100},{\"name\":\"standardESv3Family\",\"coreQuota\":50},{\"name\":\"standardFFamily\",\"coreQuota\":50},{\"name\":\"standardFSFamily\",\"coreQuota\":50},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardDDv4Family\",\"coreQuota\":0},{\"name\":\"standardDDSv4Family\",\"coreQuota\":0},{\"name\":\"standardEDv4Family\",\"coreQuota\":0},{\"name\":\"standardEDSv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"identity\":{\"type\":\"None\"}}"
"x-ms-request-id" : "a58b5e4a-d2f1-4db8-b78f-033bb6499787",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgadd02001/providers/Microsoft.Batch/batchAccounts/javabatch79482\",\"name\":\"javabatch79482\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralus\",\"properties\":{\"accountEndpoint\":\"javabatch79482.centralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":500,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":500},{\"name\":\"standardDv2Family\",\"coreQuota\":250},{\"name\":\"standardDv3Family\",\"coreQuota\":500},{\"name\":\"standardEv3Family\",\"coreQuota\":500},{\"name\":\"standardDSv2Family\",\"coreQuota\":250},{\"name\":\"standardDSv3Family\",\"coreQuota\":500},{\"name\":\"standardESv3Family\",\"coreQuota\":500},{\"name\":\"standardFSv2Family\",\"coreQuota\":100},{\"name\":\"standardNCFamily\",\"coreQuota\":24},{\"name\":\"standardNVFamily\",\"coreQuota\":24},{\"name\":\"standardDDv4Family\",\"coreQuota\":100},{\"name\":\"standardDDSv4Family\",\"coreQuota\":100},{\"name\":\"standardEDv4Family\",\"coreQuota\":100},{\"name\":\"standardEDSv4Family\",\"coreQuota\":100},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NCASv3_T4 Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NDASv4_A100 Family\",\"coreQuota\":0},{\"name\":\"standardDCSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBv3Family\",\"coreQuota\":0},{\"name\":\"standardNPSFamily\",\"coreQuota\":0},{\"name\":\"standardFXMDVSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"allowedAuthenticationModes\":[\"SharedKey\",\"AAD\",\"TaskAuthenticationToken\"]},\"identity\":{\"type\":\"None\"}}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:49:01 GMT",
"date" : "Fri, 30 Jul 2021 02:12:45 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "2657",
"content-length" : "3026",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11997",
"x-ms-ratelimit-remaining-subscription-reads" : "11978",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "6cc74a8a-abe4-4b0a-850c-ddf5b6fd4f78",
"x-ms-correlation-request-id" : "6d220257-1bcd-46c1-993c-a04ee0db450b",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074902Z:6cc74a8a-abe4-4b0a-850c-ddf5b6fd4f78",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021246Z:6d220257-1bcd-46c1-993c-a04ee0db450b",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "afdb07b8-d0c0-4157-878a-9c77385f1b73",
"Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg9e510770/providers/Microsoft.Batch/batchAccounts/javabatch83090\",\"name\":\"javabatch83090\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralus\",\"properties\":{\"accountEndpoint\":\"javabatch83090.centralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":700,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":100},{\"name\":\"standardDv2Family\",\"coreQuota\":100},{\"name\":\"standardDv3Family\",\"coreQuota\":100},{\"name\":\"standardEv3Family\",\"coreQuota\":50},{\"name\":\"standardDSv2Family\",\"coreQuota\":100},{\"name\":\"standardDSv3Family\",\"coreQuota\":100},{\"name\":\"standardESv3Family\",\"coreQuota\":50},{\"name\":\"standardFFamily\",\"coreQuota\":50},{\"name\":\"standardFSFamily\",\"coreQuota\":50},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardDDv4Family\",\"coreQuota\":0},{\"name\":\"standardDDSv4Family\",\"coreQuota\":0},{\"name\":\"standardEDv4Family\",\"coreQuota\":0},{\"name\":\"standardEDSv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"identity\":{\"type\":\"None\"}}]}"
"x-ms-request-id" : "f88b7650-931e-411c-ac7f-df3f707b87f9",
"Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgadd02001/providers/Microsoft.Batch/batchAccounts/javabatch79482\",\"name\":\"javabatch79482\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralus\",\"properties\":{\"accountEndpoint\":\"javabatch79482.centralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":500,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":500},{\"name\":\"standardDv2Family\",\"coreQuota\":250},{\"name\":\"standardDv3Family\",\"coreQuota\":500},{\"name\":\"standardEv3Family\",\"coreQuota\":500},{\"name\":\"standardDSv2Family\",\"coreQuota\":250},{\"name\":\"standardDSv3Family\",\"coreQuota\":500},{\"name\":\"standardESv3Family\",\"coreQuota\":500},{\"name\":\"standardFSv2Family\",\"coreQuota\":100},{\"name\":\"standardNCFamily\",\"coreQuota\":24},{\"name\":\"standardNVFamily\",\"coreQuota\":24},{\"name\":\"standardDDv4Family\",\"coreQuota\":100},{\"name\":\"standardDDSv4Family\",\"coreQuota\":100},{\"name\":\"standardEDv4Family\",\"coreQuota\":100},{\"name\":\"standardEDSv4Family\",\"coreQuota\":100},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NCASv3_T4 Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NDASv4_A100 Family\",\"coreQuota\":0},{\"name\":\"standardDCSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBv3Family\",\"coreQuota\":0},{\"name\":\"standardNPSFamily\",\"coreQuota\":0},{\"name\":\"standardFXMDVSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"allowedAuthenticationModes\":[\"SharedKey\",\"AAD\",\"TaskAuthenticationToken\"]},\"identity\":{\"type\":\"None\"}}]}"
}
}, {
"Method" : "DELETE",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javabatchrg9e510770?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javabatchrgadd02001?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:49:05 GMT",
"date" : "Fri, 30 Jul 2021 02:12:49 GMT",
"content-length" : "0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-deletes" : "14999",
"x-ms-ratelimit-remaining-subscription-deletes" : "14997",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "0863f499-96c2-4681-8d13-7d2f3b287502",
"x-ms-correlation-request-id" : "da950299-c7f9-4270-8a3b-3f1db4a55157",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074905Z:0863f499-96c2-4681-8d13-7d2f3b287502",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021250Z:da950299-c7f9-4270-8a3b-3f1db4a55157",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "0863f499-96c2-4681-8d13-7d2f3b287502",
"x-ms-request-id" : "da950299-c7f9-4270-8a3b-3f1db4a55157",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:49:05 GMT",
"date" : "Fri, 30 Jul 2021 02:13:05 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11996",
"x-ms-ratelimit-remaining-subscription-reads" : "11977",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "237a1a50-2dff-4c78-9cfc-0f6c83affbc9",
"x-ms-correlation-request-id" : "0426da6c-73cd-4289-9efd-fd36c6135688",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074906Z:237a1a50-2dff-4c78-9cfc-0f6c83affbc9",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021305Z:0426da6c-73cd-4289-9efd-fd36c6135688",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "237a1a50-2dff-4c78-9cfc-0f6c83affbc9",
"x-ms-request-id" : "0426da6c-73cd-4289-9efd-fd36c6135688",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:49:21 GMT",
"date" : "Fri, 30 Jul 2021 02:13:21 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11995",
"x-ms-ratelimit-remaining-subscription-reads" : "11976",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "6cd96760-0ef0-4dce-813d-c8ba46cb8766",
"x-ms-correlation-request-id" : "49f5da33-7663-4a18-bbed-b853b1e01df1",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074921Z:6cd96760-0ef0-4dce-813d-c8ba46cb8766",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021321Z:49f5da33-7663-4a18-bbed-b853b1e01df1",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "6cd96760-0ef0-4dce-813d-c8ba46cb8766",
"x-ms-request-id" : "49f5da33-7663-4a18-bbed-b853b1e01df1",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:49:36 GMT",
"date" : "Fri, 30 Jul 2021 02:13:36 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11994",
"x-ms-ratelimit-remaining-subscription-reads" : "11975",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "b02930fb-52fe-4eb7-887c-1f05b7fbf328",
"x-ms-correlation-request-id" : "3d806121-3c1b-4552-8e17-83966022d53c",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074937Z:b02930fb-52fe-4eb7-887c-1f05b7fbf328",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021336Z:3d806121-3c1b-4552-8e17-83966022d53c",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "b02930fb-52fe-4eb7-887c-1f05b7fbf328",
"x-ms-request-id" : "3d806121-3c1b-4552-8e17-83966022d53c",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:49:51 GMT",
"date" : "Fri, 30 Jul 2021 02:13:51 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11993",
"x-ms-ratelimit-remaining-subscription-reads" : "11974",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "e93e7d2b-0704-4981-b1d5-dc7e73621e17",
"x-ms-correlation-request-id" : "383f9744-c43a-406f-adeb-a220c099fd41",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074952Z:e93e7d2b-0704-4981-b1d5-dc7e73621e17",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021352Z:383f9744-c43a-406f-adeb-a220c099fd41",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "e93e7d2b-0704-4981-b1d5-dc7e73621e17",
"x-ms-request-id" : "383f9744-c43a-406f-adeb-a220c099fd41",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:50:07 GMT",
"date" : "Fri, 30 Jul 2021 02:14:07 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11992",
"x-ms-ratelimit-remaining-subscription-reads" : "11973",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "be7a3625-73f1-444b-a9b2-6662cb88d406",
"x-ms-correlation-request-id" : "734ba52e-d5a0-4776-a7a9-7ef8ec1b2427",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075008Z:be7a3625-73f1-444b-a9b2-6662cb88d406",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021407Z:734ba52e-d5a0-4776-a7a9-7ef8ec1b2427",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "be7a3625-73f1-444b-a9b2-6662cb88d406",
"x-ms-request-id" : "734ba52e-d5a0-4776-a7a9-7ef8ec1b2427",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:50:22 GMT",
"date" : "Fri, 30 Jul 2021 02:14:22 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11991",
"x-ms-ratelimit-remaining-subscription-reads" : "11972",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "bdb9872d-f140-4f3a-9707-20b8459e3a53",
"x-ms-correlation-request-id" : "f1e44146-6cff-4501-aec6-78da5d15d566",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075023Z:bdb9872d-f140-4f3a-9707-20b8459e3a53",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021423Z:f1e44146-6cff-4501-aec6-78da5d15d566",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "bdb9872d-f140-4f3a-9707-20b8459e3a53",
"x-ms-request-id" : "f1e44146-6cff-4501-aec6-78da5d15d566",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0FERDAyMDAxLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:50:38 GMT",
"date" : "Fri, 30 Jul 2021 02:14:38 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11990",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "f9820bcc-f739-4922-9b22-ae6411dc9275",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075039Z:f9820bcc-f739-4922-9b22-ae6411dc9275",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "f9820bcc-f739-4922-9b22-ae6411dc9275",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzlFNTEwNzcwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:50:54 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11989",
"x-ms-ratelimit-remaining-subscription-reads" : "11971",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "dedf503c-abf7-40cc-99b4-f1c8fbc48c16",
"x-ms-correlation-request-id" : "5b49f6ac-a528-4630-883b-f8665bac4f11",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075054Z:dedf503c-abf7-40cc-99b4-f1c8fbc48c16",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T021438Z:5b49f6ac-a528-4630-883b-f8665bac4f11",
"cache-control" : "no-cache",
"x-ms-request-id" : "dedf503c-abf7-40cc-99b4-f1c8fbc48c16",
"x-ms-request-id" : "5b49f6ac-a528-4630-883b-f8665bac4f11",
"Body" : ""
}
} ],
"variables" : [ "javabatchrg9e510770", "javabatch83090", "javasa63727", "aaf099a8-540f-452b-a880-4733379fea6e", "8445c9ca-6681-4767-b45e-0dd7cbc087b6", "e8abaa8a-0157-427b-a1ca-83ebbf34cc11" ]
"variables" : [ "javabatchrgadd02001", "javabatch79482", "javasa87476", "98154c62-5ce0-46e7-81ba-ab16fa285bd9", "f1cf375c-c284-42ad-b0bf-5b5672a7e4c9", "c828c262-00c7-4262-a7b7-f0919ffc1771" ]
}

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,784 +1,653 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/applications/myApplication/versions?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/applications/myApplication/versions?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:44:50 GMT",
"date" : "Fri, 30 Jul 2021 02:00:37 GMT",
"content-length" : "111",
"expires" : "-1",
"retry-after" : "0",
"StatusCode" : "404",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "444bd682-9bfa-4266-a18e-a6b61aa3a6ca",
"x-ms-correlation-request-id" : "03ef7648-5b7c-409e-bcec-0b87517c6411",
"x-content-type-options" : "nosniff",
"x-ms-failure-cause" : "gateway",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074450Z:444bd682-9bfa-4266-a18e-a6b61aa3a6ca",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020038Z:03ef7648-5b7c-409e-bcec-0b87517c6411",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "444bd682-9bfa-4266-a18e-a6b61aa3a6ca",
"Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javabatchrgb8f99118' could not be found.\"}}"
"x-ms-request-id" : "03ef7648-5b7c-409e-bcec-0b87517c6411",
"Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javabatchrg18267328' could not be found.\"}}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javabatchrgb8f99118?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javabatchrg18267328?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:44:52 GMT",
"date" : "Fri, 30 Jul 2021 02:00:45 GMT",
"content-length" : "322",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-writes" : "1192",
"x-ms-ratelimit-remaining-subscription-writes" : "1199",
"retry-after" : "0",
"StatusCode" : "201",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "5c232199-4d43-46b9-8364-682c4dd2dcde",
"x-ms-correlation-request-id" : "5a8d8a3b-aca6-4648-a34e-17bad32e58ab",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074453Z:5c232199-4d43-46b9-8364-682c4dd2dcde",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020045Z:5a8d8a3b-aca6-4648-a34e-17bad32e58ab",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "5c232199-4d43-46b9-8364-682c4dd2dcde",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118\",\"name\":\"javabatchrgb8f99118\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"centralus\",\"tags\":{\"date\":\"2021-02-02T07:44:50.905Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}"
"x-ms-request-id" : "5a8d8a3b-aca6-4648-a34e-17bad32e58ab",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328\",\"name\":\"javabatchrg18267328\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"centralus\",\"tags\":{\"date\":\"2021-07-30T02:00:37.710Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Storage/storageAccounts/javasa35992?api-version=2019-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Storage/storageAccounts/javasa58294?api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (StorageManagementClient, 2019-06-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (StorageManagementClient, 2019-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:44:58 GMT",
"date" : "Fri, 30 Jul 2021 02:00:55 GMT",
"content-length" : "0",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-writes" : "1191",
"x-ms-ratelimit-remaining-subscription-writes" : "1198",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "8f6876fd-8602-43f3-ae28-dbe568827019",
"x-ms-correlation-request-id" : "936be35b-276a-4189-9dab-eb77ec7ce09c",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074459Z:8f6876fd-8602-43f3-ae28-dbe568827019",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020055Z:936be35b-276a-4189-9dab-eb77ec7ce09c",
"content-type" : "text/plain; charset=utf-8",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/71417964-bca8-4f52-ac7f-0718f11fa5f2?monitor=true&api-version=2019-06-01",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/c14cea22-71f3-4f93-9980-64fccece42e2?monitor=true&api-version=2019-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "71417964-bca8-4f52-ac7f-0718f11fa5f2",
"x-ms-request-id" : "c14cea22-71f3-4f93-9980-64fccece42e2",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/71417964-bca8-4f52-ac7f-0718f11fa5f2?monitor=true&api-version=2019-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/c14cea22-71f3-4f93-9980-64fccece42e2?monitor=true&api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (StorageManagementClient, 2019-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (StorageManagementClient, 2019-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:44:58 GMT",
"content-length" : "0",
"date" : "Fri, 30 Jul 2021 02:01:13 GMT",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"content-length" : "1667",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11949",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "1dd89e56-2940-422f-9913-8079c876c7a6",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074459Z:1dd89e56-2940-422f-9913-8079c876c7a6",
"content-type" : "text/plain; charset=utf-8",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/71417964-bca8-4f52-ac7f-0718f11fa5f2?monitor=true&api-version=2019-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "c7c37c71-6686-4c6a-8186-6e4c72479b25",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/71417964-bca8-4f52-ac7f-0718f11fa5f2?monitor=true&api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (StorageManagementClient, 2019-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:16 GMT",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"content-length" : "1638",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11948",
"x-ms-ratelimit-remaining-subscription-reads" : "11998",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "746ed948-cbcb-40b5-9d46-741514f5833f",
"x-ms-correlation-request-id" : "ed55c7ed-8179-40fa-ad91-a071f5408ed2",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074516Z:746ed948-cbcb-40b5-9d46-741514f5833f",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020113Z:ed55c7ed-8179-40fa-ad91-a071f5408ed2",
"content-type" : "application/json",
"cache-control" : "no-cache",
"x-ms-request-id" : "915f984a-f4e7-4e0d-b935-32939caec5d8",
"Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Storage/storageAccounts/javasa35992\",\"name\":\"javasa35992\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-02T07:44:58.3753942Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-02T07:44:58.3753942Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-02T07:44:58.2816098Z\",\"primaryEndpoints\":{\"dfs\":\"https://javasa35992.dfs.core.windows.net/\",\"web\":\"https://javasa35992.z19.web.core.windows.net/\",\"blob\":\"https://javasa35992.blob.core.windows.net/\",\"queue\":\"https://javasa35992.queue.core.windows.net/\",\"table\":\"https://javasa35992.table.core.windows.net/\",\"file\":\"https://javasa35992.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://javasa35992-secondary.dfs.core.windows.net/\",\"web\":\"https://javasa35992-secondary.z19.web.core.windows.net/\",\"blob\":\"https://javasa35992-secondary.blob.core.windows.net/\",\"queue\":\"https://javasa35992-secondary.queue.core.windows.net/\",\"table\":\"https://javasa35992-secondary.table.core.windows.net/\"}}}"
"x-ms-request-id" : "4c584c8a-7d9b-4c28-b072-c03e4c4311d4",
"Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Storage/storageAccounts/javasa58294\",\"name\":\"javasa58294\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-30T02:00:50.0789861Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-30T02:00:50.0789861Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-30T02:00:49.9852351Z\",\"primaryEndpoints\":{\"dfs\":\"https://javasa58294.dfs.core.windows.net/\",\"web\":\"https://javasa58294.z19.web.core.windows.net/\",\"blob\":\"https://javasa58294.blob.core.windows.net/\",\"queue\":\"https://javasa58294.queue.core.windows.net/\",\"table\":\"https://javasa58294.table.core.windows.net/\",\"file\":\"https://javasa58294.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://javasa58294-secondary.dfs.core.windows.net/\",\"web\":\"https://javasa58294-secondary.z19.web.core.windows.net/\",\"blob\":\"https://javasa58294-secondary.blob.core.windows.net/\",\"queue\":\"https://javasa58294-secondary.queue.core.windows.net/\",\"table\":\"https://javasa58294-secondary.table.core.windows.net/\"}}}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Storage/storageAccounts/javasa35992?api-version=2019-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Storage/storageAccounts/javasa58294?api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (StorageManagementClient, 2019-06-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (StorageManagementClient, 2019-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:16 GMT",
"date" : "Fri, 30 Jul 2021 02:01:14 GMT",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"content-length" : "1638",
"content-length" : "1667",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11947",
"x-ms-ratelimit-remaining-subscription-reads" : "11997",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "211e4f48-ae72-4e09-be38-acd2c7953a63",
"x-ms-correlation-request-id" : "1ebb6e1e-8216-4fa4-8cc1-a5e728861fba",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074517Z:211e4f48-ae72-4e09-be38-acd2c7953a63",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020114Z:1ebb6e1e-8216-4fa4-8cc1-a5e728861fba",
"content-type" : "application/json",
"cache-control" : "no-cache",
"x-ms-request-id" : "2c0feb0a-e7d5-419a-8d4e-b3bc9fffa99c",
"Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Storage/storageAccounts/javasa35992\",\"name\":\"javasa35992\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-02T07:44:58.3753942Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-02T07:44:58.3753942Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-02T07:44:58.2816098Z\",\"primaryEndpoints\":{\"dfs\":\"https://javasa35992.dfs.core.windows.net/\",\"web\":\"https://javasa35992.z19.web.core.windows.net/\",\"blob\":\"https://javasa35992.blob.core.windows.net/\",\"queue\":\"https://javasa35992.queue.core.windows.net/\",\"table\":\"https://javasa35992.table.core.windows.net/\",\"file\":\"https://javasa35992.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://javasa35992-secondary.dfs.core.windows.net/\",\"web\":\"https://javasa35992-secondary.z19.web.core.windows.net/\",\"blob\":\"https://javasa35992-secondary.blob.core.windows.net/\",\"queue\":\"https://javasa35992-secondary.queue.core.windows.net/\",\"table\":\"https://javasa35992-secondary.table.core.windows.net/\"}}}"
"x-ms-request-id" : "179c6044-82a1-481c-946e-9b1d90e71650",
"Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Storage/storageAccounts/javasa58294\",\"name\":\"javasa58294\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-30T02:00:50.0789861Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-30T02:00:50.0789861Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-30T02:00:49.9852351Z\",\"primaryEndpoints\":{\"dfs\":\"https://javasa58294.dfs.core.windows.net/\",\"web\":\"https://javasa58294.z19.web.core.windows.net/\",\"blob\":\"https://javasa58294.blob.core.windows.net/\",\"queue\":\"https://javasa58294.queue.core.windows.net/\",\"table\":\"https://javasa58294.table.core.windows.net/\",\"file\":\"https://javasa58294.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://javasa58294-secondary.dfs.core.windows.net/\",\"web\":\"https://javasa58294-secondary.z19.web.core.windows.net/\",\"blob\":\"https://javasa58294-secondary.blob.core.windows.net/\",\"queue\":\"https://javasa58294-secondary.queue.core.windows.net/\",\"table\":\"https://javasa58294-secondary.table.core.windows.net/\"}}}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:21 GMT",
"date" : "Fri, 30 Jul 2021 02:01:17 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-writes" : "1190",
"x-ms-ratelimit-remaining-subscription-writes" : "1197",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "d9b9d53c-2387-48f9-9b48-87ab40bfe5d2",
"x-ms-correlation-request-id" : "06b0f483-cb77-4cef-864b-78f0578d5566",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074522Z:d9b9d53c-2387-48f9-9b48-87ab40bfe5d2",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/operationResults/2a6020e9-5652-45ad-89dd-f8fa353b1478?api-version=2021-01-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020117Z:06b0f483-cb77-4cef-864b-78f0578d5566",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/operationResults/6f964df9-3e73-4598-9034-618930dec3c6?api-version=2021-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "2a6020e9-5652-45ad-89dd-f8fa353b1478",
"x-ms-request-id" : "6f964df9-3e73-4598-9034-618930dec3c6",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/operationResults/2a6020e9-5652-45ad-89dd-f8fa353b1478?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/operationResults/6f964df9-3e73-4598-9034-618930dec3c6?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:22 GMT",
"content-length" : "0",
"date" : "Fri, 30 Jul 2021 02:01:33 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "3274",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11946",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "3625baa5-056d-4d1b-a38a-18a079a9afee",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074522Z:3625baa5-056d-4d1b-a38a-18a079a9afee",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/operationResults/2a6020e9-5652-45ad-89dd-f8fa353b1478?api-version=2021-01-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "66feff4f-d7da-4e46-909b-0923b42c1dd3",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/operationResults/2a6020e9-5652-45ad-89dd-f8fa353b1478?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:37 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "2870",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11945",
"x-ms-ratelimit-remaining-subscription-reads" : "11996",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "f21d9736-1c91-43f4-a1f0-655d5c71dc69",
"last-modified" : "Tue, 02 Feb 2021 07:45:37 GMT",
"x-ms-correlation-request-id" : "beac2dbf-ffa3-429d-9e55-d3a52ad35595",
"last-modified" : "Fri, 30 Jul 2021 02:01:33 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074537Z:f21d9736-1c91-43f4-a1f0-655d5c71dc69",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020133Z:beac2dbf-ffa3-429d-9e55-d3a52ad35595",
"content-type" : "application/json; charset=utf-8",
"etag" : "\"0x8D8C74E881E28F9\"",
"etag" : "\"0x8D952FDF4CD2C66\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "6abccfb4-d9af-4534-bd13-78b952c33f4e",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238\",\"name\":\"javabatch50238\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralus\",\"properties\":{\"accountEndpoint\":\"javabatch50238.centralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":700,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":100},{\"name\":\"standardDv2Family\",\"coreQuota\":100},{\"name\":\"standardDv3Family\",\"coreQuota\":100},{\"name\":\"standardEv3Family\",\"coreQuota\":50},{\"name\":\"standardDSv2Family\",\"coreQuota\":100},{\"name\":\"standardDSv3Family\",\"coreQuota\":100},{\"name\":\"standardESv3Family\",\"coreQuota\":50},{\"name\":\"standardFFamily\",\"coreQuota\":50},{\"name\":\"standardFSFamily\",\"coreQuota\":50},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardDDv4Family\",\"coreQuota\":0},{\"name\":\"standardDDSv4Family\",\"coreQuota\":0},{\"name\":\"standardEDv4Family\",\"coreQuota\":0},{\"name\":\"standardEDSv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Storage/storageAccounts/javasa35992\",\"lastKeySync\":\"2021-02-02T07:45:21.9335006Z\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"identity\":{\"type\":\"None\"}}"
"x-ms-request-id" : "a63c64cf-667e-4c0e-bd8e-4722d9918c41",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317\",\"name\":\"javabatch63317\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralus\",\"properties\":{\"accountEndpoint\":\"javabatch63317.centralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":500,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":500},{\"name\":\"standardDv2Family\",\"coreQuota\":250},{\"name\":\"standardDv3Family\",\"coreQuota\":500},{\"name\":\"standardEv3Family\",\"coreQuota\":500},{\"name\":\"standardDSv2Family\",\"coreQuota\":250},{\"name\":\"standardDSv3Family\",\"coreQuota\":500},{\"name\":\"standardESv3Family\",\"coreQuota\":500},{\"name\":\"standardFSv2Family\",\"coreQuota\":100},{\"name\":\"standardNCFamily\",\"coreQuota\":24},{\"name\":\"standardNVFamily\",\"coreQuota\":24},{\"name\":\"standardDDv4Family\",\"coreQuota\":100},{\"name\":\"standardDDSv4Family\",\"coreQuota\":100},{\"name\":\"standardEDv4Family\",\"coreQuota\":100},{\"name\":\"standardEDSv4Family\",\"coreQuota\":100},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NCASv3_T4 Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NDASv4_A100 Family\",\"coreQuota\":0},{\"name\":\"standardDCSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBv3Family\",\"coreQuota\":0},{\"name\":\"standardNPSFamily\",\"coreQuota\":0},{\"name\":\"standardFXMDVSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Storage/storageAccounts/javasa58294\",\"lastKeySync\":\"2021-07-30T02:01:17.6180335Z\",\"authenticationMode\":\"StorageKeys\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"allowedAuthenticationModes\":[\"SharedKey\",\"AAD\",\"TaskAuthenticationToken\"]},\"identity\":{\"type\":\"None\"}}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/applications/myApplication?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/applications/myApplication?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:37 GMT",
"date" : "Fri, 30 Jul 2021 02:01:34 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "348",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"x-ms-ratelimit-remaining-subscription-writes" : "1189",
"x-ms-ratelimit-remaining-subscription-writes" : "1196",
"retry-after" : "0",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "48b70197-477d-43ed-b1f2-60c00b466c96",
"last-modified" : "Tue, 02 Feb 2021 07:45:38 GMT",
"x-ms-correlation-request-id" : "6c84e0c3-70c3-4227-a407-bb28e841f317",
"last-modified" : "Fri, 30 Jul 2021 02:01:34 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074538Z:48b70197-477d-43ed-b1f2-60c00b466c96",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020134Z:6c84e0c3-70c3-4227-a407-bb28e841f317",
"content-type" : "application/json; charset=utf-8",
"etag" : "W/\"0x8D8C74E88719AAE\"",
"etag" : "W/\"0x8D952FDF56FBBE6\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "21162857-bece-4bc5-9fd8-22c5074e2953",
"Body" : "{\"type\":\"Microsoft.Batch/batchAccounts/applications\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/applications/myApplication\",\"name\":\"myApplication\",\"etag\":\"W/\\\"0x8D8C74E88719AAE\\\"\",\"properties\":{\"displayName\":\"displayName\",\"allowUpdates\":true}}"
"x-ms-request-id" : "93a1c460-02dd-4262-b890-fec1521fcba0",
"Body" : "{\"type\":\"Microsoft.Batch/batchAccounts/applications\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/applications/myApplication\",\"name\":\"myApplication\",\"etag\":\"W/\\\"0x8D952FDF56FBBE6\\\"\",\"properties\":{\"displayName\":\"displayName\",\"allowUpdates\":true}}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:38 GMT",
"date" : "Fri, 30 Jul 2021 02:01:35 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "2882",
"content-length" : "3286",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11944",
"x-ms-ratelimit-remaining-subscription-reads" : "11995",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "e474fdff-5f53-403f-a362-0ecd34f547f4",
"x-ms-correlation-request-id" : "3214b635-1960-4395-bb8d-d02ce4797d5d",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074538Z:e474fdff-5f53-403f-a362-0ecd34f547f4",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020135Z:3214b635-1960-4395-bb8d-d02ce4797d5d",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "fe05d927-b9b2-4ac6-823f-462454e775e5",
"Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238\",\"name\":\"javabatch50238\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralus\",\"properties\":{\"accountEndpoint\":\"javabatch50238.centralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":700,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":100},{\"name\":\"standardDv2Family\",\"coreQuota\":100},{\"name\":\"standardDv3Family\",\"coreQuota\":100},{\"name\":\"standardEv3Family\",\"coreQuota\":50},{\"name\":\"standardDSv2Family\",\"coreQuota\":100},{\"name\":\"standardDSv3Family\",\"coreQuota\":100},{\"name\":\"standardESv3Family\",\"coreQuota\":50},{\"name\":\"standardFFamily\",\"coreQuota\":50},{\"name\":\"standardFSFamily\",\"coreQuota\":50},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardDDv4Family\",\"coreQuota\":0},{\"name\":\"standardDDSv4Family\",\"coreQuota\":0},{\"name\":\"standardEDv4Family\",\"coreQuota\":0},{\"name\":\"standardEDSv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Storage/storageAccounts/javasa35992\",\"lastKeySync\":\"2021-02-02T07:45:21.9335006Z\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"identity\":{\"type\":\"None\"}}]}"
"x-ms-request-id" : "8689326b-994b-485b-b9fc-b03048a081ce",
"Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317\",\"name\":\"javabatch63317\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralus\",\"properties\":{\"accountEndpoint\":\"javabatch63317.centralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":500,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":500},{\"name\":\"standardDv2Family\",\"coreQuota\":250},{\"name\":\"standardDv3Family\",\"coreQuota\":500},{\"name\":\"standardEv3Family\",\"coreQuota\":500},{\"name\":\"standardDSv2Family\",\"coreQuota\":250},{\"name\":\"standardDSv3Family\",\"coreQuota\":500},{\"name\":\"standardESv3Family\",\"coreQuota\":500},{\"name\":\"standardFSv2Family\",\"coreQuota\":100},{\"name\":\"standardNCFamily\",\"coreQuota\":24},{\"name\":\"standardNVFamily\",\"coreQuota\":24},{\"name\":\"standardDDv4Family\",\"coreQuota\":100},{\"name\":\"standardDDSv4Family\",\"coreQuota\":100},{\"name\":\"standardEDv4Family\",\"coreQuota\":100},{\"name\":\"standardEDSv4Family\",\"coreQuota\":100},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NCASv3_T4 Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NDASv4_A100 Family\",\"coreQuota\":0},{\"name\":\"standardDCSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBv3Family\",\"coreQuota\":0},{\"name\":\"standardNPSFamily\",\"coreQuota\":0},{\"name\":\"standardFXMDVSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Storage/storageAccounts/javasa58294\",\"lastKeySync\":\"2021-07-30T02:01:17.6180335Z\",\"authenticationMode\":\"StorageKeys\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"allowedAuthenticationModes\":[\"SharedKey\",\"AAD\",\"TaskAuthenticationToken\"]},\"identity\":{\"type\":\"None\"}}]}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/applications?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/applications?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:38 GMT",
"date" : "Fri, 30 Jul 2021 02:01:36 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "360",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11943",
"x-ms-ratelimit-remaining-subscription-reads" : "11994",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "bf43de28-9ff2-4481-8ce7-a2943309f534",
"x-ms-correlation-request-id" : "83c85d4b-02ba-44db-8019-8d665f536f59",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074539Z:bf43de28-9ff2-4481-8ce7-a2943309f534",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020136Z:83c85d4b-02ba-44db-8019-8d665f536f59",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "edf9c544-159a-4ae5-9543-923e60d8102b",
"Body" : "{\"value\":[{\"type\":\"Microsoft.Batch/batchAccounts/applications\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/applications/myApplication\",\"name\":\"myApplication\",\"etag\":\"W/\\\"0x8D8C74E88719AAE\\\"\",\"properties\":{\"displayName\":\"displayName\",\"allowUpdates\":true}}]}"
"x-ms-request-id" : "2a31a790-f867-407a-90cb-9e735923b3a0",
"Body" : "{\"value\":[{\"type\":\"Microsoft.Batch/batchAccounts/applications\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/applications/myApplication\",\"name\":\"myApplication\",\"etag\":\"W/\\\"0x8D952FDF56FBBE6\\\"\",\"properties\":{\"displayName\":\"displayName\",\"allowUpdates\":true}}]}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/applications/myApplication/versions?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/applications/myApplication/versions?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:39 GMT",
"date" : "Fri, 30 Jul 2021 02:01:37 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "12",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11942",
"x-ms-ratelimit-remaining-subscription-reads" : "11993",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "e5e37783-fc35-4474-8ba6-085d7d2f340b",
"x-ms-correlation-request-id" : "a6457413-3c10-4ecb-887b-301e7b2bd6ac",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074539Z:e5e37783-fc35-4474-8ba6-085d7d2f340b",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020137Z:a6457413-3c10-4ecb-887b-301e7b2bd6ac",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "f60e6644-0fcd-4f78-aafc-430e6e954040",
"x-ms-request-id" : "40542714-d1b7-4d88-a3e7-e82201c3b277",
"Body" : "{\"value\":[]}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/pools?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/pools?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:39 GMT",
"date" : "Fri, 30 Jul 2021 02:01:38 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "12",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11941",
"x-ms-ratelimit-remaining-subscription-reads" : "11992",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "3001c715-5fe3-47fc-9037-143a12b2e614",
"x-ms-correlation-request-id" : "32b61606-cdff-45eb-a079-4eae81b82f87",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074540Z:3001c715-5fe3-47fc-9037-143a12b2e614",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020138Z:32b61606-cdff-45eb-a079-4eae81b82f87",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "c4e6cd0d-6957-4345-a446-323eedcf2ccb",
"x-ms-request-id" : "ca27070b-ecec-4033-af9b-49f538170a8f",
"Body" : "{\"value\":[]}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:39 GMT",
"date" : "Fri, 30 Jul 2021 02:01:39 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "2870",
"content-length" : "3274",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11940",
"x-ms-ratelimit-remaining-subscription-reads" : "11991",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "03fd6c55-26b3-4c53-95c3-11b91d3fea47",
"last-modified" : "Tue, 02 Feb 2021 07:45:26 GMT",
"x-ms-correlation-request-id" : "77f41d38-236e-4c0f-b24d-b18b9fc34856",
"last-modified" : "Fri, 30 Jul 2021 02:01:21 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074540Z:03fd6c55-26b3-4c53-95c3-11b91d3fea47",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020139Z:77f41d38-236e-4c0f-b24d-b18b9fc34856",
"content-type" : "application/json; charset=utf-8",
"etag" : "\"0x8D8C74E81892461\"",
"etag" : "\"0x8D952FDED5BAF3F\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "05e9ff2e-914a-445a-8b35-24d565079881",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238\",\"name\":\"javabatch50238\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralus\",\"properties\":{\"accountEndpoint\":\"javabatch50238.centralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":700,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":100},{\"name\":\"standardDv2Family\",\"coreQuota\":100},{\"name\":\"standardDv3Family\",\"coreQuota\":100},{\"name\":\"standardEv3Family\",\"coreQuota\":50},{\"name\":\"standardDSv2Family\",\"coreQuota\":100},{\"name\":\"standardDSv3Family\",\"coreQuota\":100},{\"name\":\"standardESv3Family\",\"coreQuota\":50},{\"name\":\"standardFFamily\",\"coreQuota\":50},{\"name\":\"standardFSFamily\",\"coreQuota\":50},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardDDv4Family\",\"coreQuota\":0},{\"name\":\"standardDDSv4Family\",\"coreQuota\":0},{\"name\":\"standardEDv4Family\",\"coreQuota\":0},{\"name\":\"standardEDSv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Storage/storageAccounts/javasa35992\",\"lastKeySync\":\"2021-02-02T07:45:21.9335006Z\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"identity\":{\"type\":\"None\"}}"
"x-ms-request-id" : "3a8aa73e-0316-4572-9c81-22abb389a128",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317\",\"name\":\"javabatch63317\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralus\",\"properties\":{\"accountEndpoint\":\"javabatch63317.centralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":500,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":500},{\"name\":\"standardDv2Family\",\"coreQuota\":250},{\"name\":\"standardDv3Family\",\"coreQuota\":500},{\"name\":\"standardEv3Family\",\"coreQuota\":500},{\"name\":\"standardDSv2Family\",\"coreQuota\":250},{\"name\":\"standardDSv3Family\",\"coreQuota\":500},{\"name\":\"standardESv3Family\",\"coreQuota\":500},{\"name\":\"standardFSv2Family\",\"coreQuota\":100},{\"name\":\"standardNCFamily\",\"coreQuota\":24},{\"name\":\"standardNVFamily\",\"coreQuota\":24},{\"name\":\"standardDDv4Family\",\"coreQuota\":100},{\"name\":\"standardDDSv4Family\",\"coreQuota\":100},{\"name\":\"standardEDv4Family\",\"coreQuota\":100},{\"name\":\"standardEDSv4Family\",\"coreQuota\":100},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NCASv3_T4 Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NDASv4_A100 Family\",\"coreQuota\":0},{\"name\":\"standardDCSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBv3Family\",\"coreQuota\":0},{\"name\":\"standardNPSFamily\",\"coreQuota\":0},{\"name\":\"standardFXMDVSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Storage/storageAccounts/javasa58294\",\"lastKeySync\":\"2021-07-30T02:01:17.6180335Z\",\"authenticationMode\":\"StorageKeys\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"allowedAuthenticationModes\":[\"SharedKey\",\"AAD\",\"TaskAuthenticationToken\"]},\"identity\":{\"type\":\"None\"}}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/applications?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/applications?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:40 GMT",
"date" : "Fri, 30 Jul 2021 02:01:40 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "360",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11939",
"x-ms-ratelimit-remaining-subscription-reads" : "11990",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "8c56a2ca-ebec-49d7-b59c-0f8ab708345b",
"x-ms-correlation-request-id" : "45f3ce7e-c9f5-4847-bb7f-a5a7bcd8c3eb",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074540Z:8c56a2ca-ebec-49d7-b59c-0f8ab708345b",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020140Z:45f3ce7e-c9f5-4847-bb7f-a5a7bcd8c3eb",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "c045c8a7-373b-41bd-ae1f-a229c663dea9",
"Body" : "{\"value\":[{\"type\":\"Microsoft.Batch/batchAccounts/applications\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/applications/myApplication\",\"name\":\"myApplication\",\"etag\":\"W/\\\"0x8D8C74E88719AAE\\\"\",\"properties\":{\"displayName\":\"displayName\",\"allowUpdates\":true}}]}"
"x-ms-request-id" : "c5fd26ca-ee9c-46ad-ba0c-7e7ba9b2db01",
"Body" : "{\"value\":[{\"type\":\"Microsoft.Batch/batchAccounts/applications\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/applications/myApplication\",\"name\":\"myApplication\",\"etag\":\"W/\\\"0x8D952FDF56FBBE6\\\"\",\"properties\":{\"displayName\":\"displayName\",\"allowUpdates\":true}}]}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/applications/myApplication/versions?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/applications/myApplication/versions?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:40 GMT",
"date" : "Fri, 30 Jul 2021 02:01:41 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "12",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11938",
"x-ms-ratelimit-remaining-subscription-reads" : "11989",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "f2889076-809f-4596-a3a3-83b4c999b67f",
"x-ms-correlation-request-id" : "06359476-ee13-45c4-9224-a6e58cc45088",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074541Z:f2889076-809f-4596-a3a3-83b4c999b67f",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020141Z:06359476-ee13-45c4-9224-a6e58cc45088",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "5692a539-8877-43cb-aead-df0db76d3723",
"x-ms-request-id" : "40d2c12e-8eee-4595-8553-ba9147114dfd",
"Body" : "{\"value\":[]}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238/pools?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317/pools?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:40 GMT",
"date" : "Fri, 30 Jul 2021 02:01:41 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "12",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11937",
"x-ms-ratelimit-remaining-subscription-reads" : "11988",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "0e14a4eb-9fb4-4fc2-93cd-4d1a516e1cdc",
"x-ms-correlation-request-id" : "d725f4f6-a354-49c6-88dd-bad967e2637f",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074541Z:0e14a4eb-9fb4-4fc2-93cd-4d1a516e1cdc",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020142Z:d725f4f6-a354-49c6-88dd-bad967e2637f",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "de7177d7-ff96-46a0-a880-13161670f66e",
"x-ms-request-id" : "b2ec440d-6f88-439f-a502-2291f6fdba6c",
"Body" : "{\"value\":[]}"
}
}, {
"Method" : "DELETE",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:41 GMT",
"date" : "Fri, 30 Jul 2021 02:01:43 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-deletes" : "14996",
"x-ms-ratelimit-remaining-subscription-deletes" : "14999",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "bdb45722-1091-42aa-a333-a7bf5a6bff61",
"x-ms-correlation-request-id" : "d4c4acd0-4852-4dd2-a9fb-f6607627d418",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074542Z:bdb45722-1091-42aa-a333-a7bf5a6bff61",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralus/accountOperationResults/javabatch50238-2d76d340-04de-4834-b09e-9cea6838b08e?api-version=2021-01-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020143Z:d4c4acd0-4852-4dd2-a9fb-f6607627d418",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralus/accountOperationResults/javabatch63317-d3545b5d-23cd-4e06-a291-4f815e0c9d8b?api-version=2021-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "2d76d340-04de-4834-b09e-9cea6838b08e",
"x-ms-request-id" : "d3545b5d-23cd-4e06-a291-4f815e0c9d8b",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralus/accountOperationResults/javabatch50238-2d76d340-04de-4834-b09e-9cea6838b08e?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralus/accountOperationResults/javabatch63317-d3545b5d-23cd-4e06-a291-4f815e0c9d8b?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:42 GMT",
"date" : "Fri, 30 Jul 2021 02:01:59 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11936",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "69889bda-2298-4719-b9e1-5533fc885a01",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074542Z:69889bda-2298-4719-b9e1-5533fc885a01",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralus/accountOperationResults/javabatch50238-2d76d340-04de-4834-b09e-9cea6838b08e?api-version=2021-01-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "801ae3ce-2bef-4550-97ce-ee3eb0caa452",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralus/accountOperationResults/javabatch50238-2d76d340-04de-4834-b09e-9cea6838b08e?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:57 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11935",
"x-ms-ratelimit-remaining-subscription-reads" : "11987",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "120820b2-e0cb-43b6-a0c8-3f9e759eb513",
"x-ms-correlation-request-id" : "4ac48537-e41c-467b-ac8c-21d647f737a7",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074558Z:120820b2-e0cb-43b6-a0c8-3f9e759eb513",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020159Z:4ac48537-e41c-467b-ac8c-21d647f737a7",
"cache-control" : "no-cache",
"x-ms-request-id" : "de3b0402-8d0a-4f80-b489-632e57453bb1",
"x-ms-request-id" : "c3666ee1-5bf1-4df1-87d4-da7bae130536",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrgb8f99118/providers/Microsoft.Batch/batchAccounts/javabatch50238?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javabatchrg18267328/providers/Microsoft.Batch/batchAccounts/javabatch63317?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:45:57 GMT",
"date" : "Fri, 30 Jul 2021 02:02:00 GMT",
"content-length" : "193",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11934",
"x-ms-ratelimit-remaining-subscription-reads" : "11986",
"StatusCode" : "404",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "14c54f17-b6f6-477d-9b33-e7757d6602ff",
"x-ms-correlation-request-id" : "0d629788-9e6c-40bd-9b2f-617128682ec4",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074558Z:14c54f17-b6f6-477d-9b33-e7757d6602ff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020200Z:0d629788-9e6c-40bd-9b2f-617128682ec4",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "90b83d41-5f40-40b2-9b51-9aa24d339c92",
"Body" : "{\"error\":{\"code\":\"AccountNotFound\",\"message\":\"The specified account does not exist.\\nRequestId:90b83d41-5f40-40b2-9b51-9aa24d339c92\\nTime:2021-02-02T07:45:58.2628772Z\",\"target\":\"BatchAccount\"}}"
"x-ms-request-id" : "9d8c70b5-dcb8-426b-9860-b0e331b5b248",
"Body" : "{\"error\":{\"code\":\"AccountNotFound\",\"message\":\"The specified account does not exist.\\nRequestId:9d8c70b5-dcb8-426b-9860-b0e331b5b248\\nTime:2021-07-30T02:02:00.6379571Z\",\"target\":\"BatchAccount\"}}"
}
}, {
"Method" : "DELETE",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javabatchrgb8f99118?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javabatchrg18267328?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:46:00 GMT",
"date" : "Fri, 30 Jul 2021 02:02:03 GMT",
"content-length" : "0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-deletes" : "14995",
"x-ms-ratelimit-remaining-subscription-deletes" : "14998",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "9dac715c-f7c3-4833-b7d3-20ab3177dc05",
"x-ms-correlation-request-id" : "d6cde195-e87d-4ec8-a5c7-c55246c2f7f7",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074601Z:9dac715c-f7c3-4833-b7d3-20ab3177dc05",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020204Z:d6cde195-e87d-4ec8-a5c7-c55246c2f7f7",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "9dac715c-f7c3-4833-b7d3-20ab3177dc05",
"x-ms-request-id" : "d6cde195-e87d-4ec8-a5c7-c55246c2f7f7",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:46:01 GMT",
"date" : "Fri, 30 Jul 2021 02:02:19 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11933",
"x-ms-ratelimit-remaining-subscription-reads" : "11985",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "6cbc060f-7248-4535-b94c-a7c6d3fcd8b3",
"x-ms-correlation-request-id" : "c6e9231b-8bcb-4304-b42c-94923f744f7d",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074601Z:6cbc060f-7248-4535-b94c-a7c6d3fcd8b3",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020219Z:c6e9231b-8bcb-4304-b42c-94923f744f7d",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "6cbc060f-7248-4535-b94c-a7c6d3fcd8b3",
"x-ms-request-id" : "c6e9231b-8bcb-4304-b42c-94923f744f7d",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:46:16 GMT",
"date" : "Fri, 30 Jul 2021 02:02:34 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11932",
"x-ms-ratelimit-remaining-subscription-reads" : "11984",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "a4c8c249-61fa-4d21-8447-99898d7d50dd",
"x-ms-correlation-request-id" : "222cf834-7ce4-46ad-83ab-ed0bd24a10b0",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074617Z:a4c8c249-61fa-4d21-8447-99898d7d50dd",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020235Z:222cf834-7ce4-46ad-83ab-ed0bd24a10b0",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "a4c8c249-61fa-4d21-8447-99898d7d50dd",
"x-ms-request-id" : "222cf834-7ce4-46ad-83ab-ed0bd24a10b0",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:46:32 GMT",
"date" : "Fri, 30 Jul 2021 02:02:49 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11931",
"x-ms-ratelimit-remaining-subscription-reads" : "11983",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "ee69ce15-a825-4e6d-8fdd-f0bb5b7e4549",
"x-ms-correlation-request-id" : "cbc72900-efb1-4432-b4fc-7f7522a3e136",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074632Z:ee69ce15-a825-4e6d-8fdd-f0bb5b7e4549",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020250Z:cbc72900-efb1-4432-b4fc-7f7522a3e136",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "ee69ce15-a825-4e6d-8fdd-f0bb5b7e4549",
"x-ms-request-id" : "cbc72900-efb1-4432-b4fc-7f7522a3e136",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:46:47 GMT",
"date" : "Fri, 30 Jul 2021 02:03:06 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11930",
"x-ms-ratelimit-remaining-subscription-reads" : "11982",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "f55752dc-3753-4dae-9c76-5294177fd09d",
"x-ms-correlation-request-id" : "361ee2c4-36ae-4325-93e2-948f077d5e16",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074648Z:f55752dc-3753-4dae-9c76-5294177fd09d",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020306Z:361ee2c4-36ae-4325-93e2-948f077d5e16",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "f55752dc-3753-4dae-9c76-5294177fd09d",
"x-ms-request-id" : "361ee2c4-36ae-4325-93e2-948f077d5e16",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:47:02 GMT",
"date" : "Fri, 30 Jul 2021 02:03:21 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11929",
"x-ms-ratelimit-remaining-subscription-reads" : "11981",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "268f99c9-f0b7-4bd2-b214-067ce7fc2c00",
"x-ms-correlation-request-id" : "1fa36cfe-af7b-43e0-b02b-b9cc5f835d86",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074703Z:268f99c9-f0b7-4bd2-b214-067ce7fc2c00",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020321Z:1fa36cfe-af7b-43e0-b02b-b9cc5f835d86",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "268f99c9-f0b7-4bd2-b214-067ce7fc2c00",
"x-ms-request-id" : "1fa36cfe-af7b-43e0-b02b-b9cc5f835d86",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSRzE4MjY3MzI4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:47:19 GMT",
"date" : "Fri, 30 Jul 2021 02:03:36 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11928",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "65d06792-f5db-4524-8d6d-951e8d9d7851",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074719Z:65d06792-f5db-4524-8d6d-951e8d9d7851",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "65d06792-f5db-4524-8d6d-951e8d9d7851",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:47:34 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11927",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "2b84ff8b-62e5-425e-b063-7f32a0fa4f9f",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074734Z:2b84ff8b-62e5-425e-b063-7f32a0fa4f9f",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "2b84ff8b-62e5-425e-b063-7f32a0fa4f9f",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQkFUQ0hSR0I4Rjk5MTE4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:47:50 GMT",
"content-length" : "0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11926",
"x-ms-ratelimit-remaining-subscription-reads" : "11980",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "02bfc7dd-53b1-4fc7-aa69-84b4490d747a",
"x-ms-correlation-request-id" : "c0e61d85-24b3-45a3-af20-90e3685e8599",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T074750Z:02bfc7dd-53b1-4fc7-aa69-84b4490d747a",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T020337Z:c0e61d85-24b3-45a3-af20-90e3685e8599",
"cache-control" : "no-cache",
"x-ms-request-id" : "02bfc7dd-53b1-4fc7-aa69-84b4490d747a",
"x-ms-request-id" : "c0e61d85-24b3-45a3-af20-90e3685e8599",
"Body" : ""
}
} ],
"variables" : [ "javabatchrgb8f99118", "javabatch50238", "javasa35992", "941d3eef-e273-40c0-9408-8aa1f2957fe8", "7f4ffb9f-ed1a-4939-acee-742a98a001fd", "75ca34ba-d6ae-4a62-bd19-31e10ab132ad", "417293e7-a154-455e-93fd-6f3b91a9fd1e", "7fbc0c2c-34f4-479a-919a-172b80212497", "3b2132f4-4ab1-48cf-8e1a-1149973cf8d5", "88b15d79-d9e2-4ca8-965c-69ec2434fa30", "ebb85305-14c6-4dba-92b3-e4d5b1de7ee1" ]
"variables" : [ "javabatchrg18267328", "javabatch63317", "javasa58294", "9163a35f-24c5-4e78-93c1-4092116f5878", "ae3564c5-6e33-49b6-946f-047fc0401973", "fac90636-f245-463f-8e65-2281a863454f", "687235e3-6e57-403f-a4ac-c418e36421c9", "6198e363-487e-4787-a5d8-008129c541b6", "80892f7f-422f-46b0-8427-0b88953adabe", "dbfcb0aa-a255-473f-88e2-bc4cc14b6816", "a4a4be04-a0a7-40e0-a531-1699b532e4cd" ]
}

Просмотреть файл

@ -314,7 +314,7 @@
"Response" : {
"StatusCode" : "200",
"content-type" : "application/json; charset=utf-8",
"Body" : "{\"accountName\":\"ba6ba546748010524139\",\"primary\":\"CY1ee55ftt1uzQpyGazBbDItBV0m4ZEBowSPAWjRUGzF7nSEPfOQPrs82fKAPtTANpunusC8cqu6RyZQxPPkFw==\",\"secondary\":\"svt7Bw1xUN1CaFwKtoB+pVm6dbKpeOOfc6Gy5ds8ZrpS9rFrk2CCslMpsjLCzWKEsiEmpg6hr09YwyF5T7zc9Q==\"}",
"Body" : "{\"accountName\":\"ba6ba546748010524139\",\"primary\":\"MGMT_PLACEHOLDER\",\"secondary\":\"MGMT_PLACEHOLDER\"}",
"x-ms-ratelimit-remaining-subscription-writes" : "1193",
"transfer-encoding" : "chunked",
"x-ms-routing-request-id" : "WESTUS2:20170124T231416Z:9476fbc8-8ca2-44cb-a7b0-b411d5c3f4b7",
@ -342,7 +342,7 @@
"Response" : {
"StatusCode" : "200",
"content-type" : "application/json; charset=utf-8",
"Body" : "{\"accountName\":\"ba6ba546748010524139\",\"primary\":\"XJTB4G3uMtQCzjVUoZTLoCTu8Z3Bf+9xhME+RiwyNpEXRAUZMLXXPS5clGNBlgLenXacdzLnnKTMnc/w/QgHCg==\",\"secondary\":\"svt7Bw1xUN1CaFwKtoB+pVm6dbKpeOOfc6Gy5ds8ZrpS9rFrk2CCslMpsjLCzWKEsiEmpg6hr09YwyF5T7zc9Q==\"}",
"Body" : "{\"accountName\":\"ba6ba546748010524139\",\"primary\":\"MGMT_PLACEHOLDER\",\"secondary\":\"MGMT_PLACEHOLDER\"}",
"x-ms-ratelimit-remaining-subscription-writes" : "1192",
"transfer-encoding" : "chunked",
"x-ms-routing-request-id" : "WESTUS2:20170124T231416Z:5ffc503c-582c-4cbb-94ad-585f2ed27ac6",

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,444 +1,389 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:13 GMT",
"date" : "Fri, 30 Jul 2021 02:51:45 GMT",
"content-length" : "12",
"expires" : "-1",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11925",
"x-ms-ratelimit-remaining-subscription-reads" : "11781",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "c19caacf-2c6d-4f15-85cb-4e1370afbaf3",
"x-ms-correlation-request-id" : "4f33ffaa-8494-4f82-ab5d-7d0f46235332",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075213Z:c19caacf-2c6d-4f15-85cb-4e1370afbaf3",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025146Z:4f33ffaa-8494-4f82-ab5d-7d0f46235332",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "c19caacf-2c6d-4f15-85cb-4e1370afbaf3",
"x-ms-request-id" : "4f33ffaa-8494-4f82-ab5d-7d0f46235332",
"Body" : "{\"value\":[]}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/batch665760group?api-version=2020-06-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/batch29525agroup?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:15 GMT",
"date" : "Fri, 30 Jul 2021 02:51:46 GMT",
"content-length" : "319",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-writes" : "1188",
"x-ms-ratelimit-remaining-subscription-writes" : "1186",
"retry-after" : "0",
"StatusCode" : "201",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "780ddf40-fd10-4be2-ab69-75b125455083",
"x-ms-correlation-request-id" : "62486d4e-9fea-493f-bfa6-54f62be042f8",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075215Z:780ddf40-fd10-4be2-ab69-75b125455083",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025147Z:62486d4e-9fea-493f-bfa6-54f62be042f8",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "780ddf40-fd10-4be2-ab69-75b125455083",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group\",\"name\":\"batch665760group\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"centralindia\",\"tags\":{\"date\":\"2021-02-02T07:52:13.766Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}"
"x-ms-request-id" : "62486d4e-9fea-493f-bfa6-54f62be042f8",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup\",\"name\":\"batch29525agroup\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"centralindia\",\"tags\":{\"date\":\"2021-07-30T02:51:45.826Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760?api-version=2021-01-01",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:17 GMT",
"date" : "Fri, 30 Jul 2021 02:51:49 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-writes" : "1187",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "fe0031b8-cc28-4c89-8d94-8f1a04ed238c",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075217Z:fe0031b8-cc28-4c89-8d94-8f1a04ed238c",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760/operationResults/393009cd-0894-43ef-9288-4c56d7dc74f1?api-version=2021-01-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "393009cd-0894-43ef-9288-4c56d7dc74f1",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760/operationResults/393009cd-0894-43ef-9288-4c56d7dc74f1?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:17 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11924",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "d7ed5a07-2543-461d-b5d9-761eb1147363",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075217Z:d7ed5a07-2543-461d-b5d9-761eb1147363",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760/operationResults/393009cd-0894-43ef-9288-4c56d7dc74f1?api-version=2021-01-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "22d3185e-1d3e-4209-949d-e5d964913d6e",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760/operationResults/393009cd-0894-43ef-9288-4c56d7dc74f1?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:32 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "2666",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11923",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "6a23a2eb-4eb0-4c4b-94a5-3b309b2144b4",
"last-modified" : "Tue, 02 Feb 2021 07:52:32 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075232Z:6a23a2eb-4eb0-4c4b-94a5-3b309b2144b4",
"content-type" : "application/json; charset=utf-8",
"etag" : "\"0x8D8C74F7F889E9A\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "99ef324d-148c-4bae-98fc-ad7ccab0dfd7",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760\",\"name\":\"batch665760\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralindia\",\"properties\":{\"accountEndpoint\":\"batch665760.centralindia.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":700,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":100},{\"name\":\"standardDv2Family\",\"coreQuota\":100},{\"name\":\"standardDv3Family\",\"coreQuota\":100},{\"name\":\"standardEv3Family\",\"coreQuota\":50},{\"name\":\"standardDSv2Family\",\"coreQuota\":100},{\"name\":\"standardDSv3Family\",\"coreQuota\":100},{\"name\":\"standardESv3Family\",\"coreQuota\":50},{\"name\":\"standardFFamily\",\"coreQuota\":50},{\"name\":\"standardFSFamily\",\"coreQuota\":50},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardDDv4Family\",\"coreQuota\":0},{\"name\":\"standardDDSv4Family\",\"coreQuota\":0},{\"name\":\"standardEDv4Family\",\"coreQuota\":0},{\"name\":\"standardEDSv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"mytag\":\"testtag\"},\"identity\":{\"type\":\"None\"}}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:33 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "2678",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11922",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "b714cc4b-99b8-4c7e-aa19-d9a4aa6b7381",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075233Z:b714cc4b-99b8-4c7e-aa19-d9a4aa6b7381",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "9c4e2777-a73b-4cfc-9820-c847b0005699",
"Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760\",\"name\":\"batch665760\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralindia\",\"properties\":{\"accountEndpoint\":\"batch665760.centralindia.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":700,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":100},{\"name\":\"standardDv2Family\",\"coreQuota\":100},{\"name\":\"standardDv3Family\",\"coreQuota\":100},{\"name\":\"standardEv3Family\",\"coreQuota\":50},{\"name\":\"standardDSv2Family\",\"coreQuota\":100},{\"name\":\"standardDSv3Family\",\"coreQuota\":100},{\"name\":\"standardESv3Family\",\"coreQuota\":50},{\"name\":\"standardFFamily\",\"coreQuota\":50},{\"name\":\"standardFSFamily\",\"coreQuota\":50},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardDDv4Family\",\"coreQuota\":0},{\"name\":\"standardDDSv4Family\",\"coreQuota\":0},{\"name\":\"standardEDv4Family\",\"coreQuota\":0},{\"name\":\"standardEDSv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"mytag\":\"testtag\"},\"identity\":{\"type\":\"None\"}}]}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:33 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "2666",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11921",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "afa508b3-7ced-41a2-88f3-cd204d57baee",
"last-modified" : "Tue, 02 Feb 2021 07:52:22 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075233Z:afa508b3-7ced-41a2-88f3-cd204d57baee",
"content-type" : "application/json; charset=utf-8",
"etag" : "\"0x8D8C74F7928563E\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "0ea51ee4-1104-4f1e-b6f9-4deccac9fc0f",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760\",\"name\":\"batch665760\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralindia\",\"properties\":{\"accountEndpoint\":\"batch665760.centralindia.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":700,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":100},{\"name\":\"standardDv2Family\",\"coreQuota\":100},{\"name\":\"standardDv3Family\",\"coreQuota\":100},{\"name\":\"standardEv3Family\",\"coreQuota\":50},{\"name\":\"standardDSv2Family\",\"coreQuota\":100},{\"name\":\"standardDSv3Family\",\"coreQuota\":100},{\"name\":\"standardESv3Family\",\"coreQuota\":50},{\"name\":\"standardFFamily\",\"coreQuota\":50},{\"name\":\"standardFSFamily\",\"coreQuota\":50},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardDDv4Family\",\"coreQuota\":0},{\"name\":\"standardDDSv4Family\",\"coreQuota\":0},{\"name\":\"standardEDv4Family\",\"coreQuota\":0},{\"name\":\"standardEDSv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"mytag\":\"testtag\"},\"identity\":{\"type\":\"None\"}}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:33 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "2666",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11920",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "0fca6e6b-15ab-44a3-9b6d-eb7c76d119e5",
"last-modified" : "Tue, 02 Feb 2021 07:52:22 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075233Z:0fca6e6b-15ab-44a3-9b6d-eb7c76d119e5",
"content-type" : "application/json; charset=utf-8",
"etag" : "\"0x8D8C74F7928563E\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "6ff8b3f9-016b-4bfc-b666-e74a8a54d42d",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760\",\"name\":\"batch665760\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralindia\",\"properties\":{\"accountEndpoint\":\"batch665760.centralindia.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":700,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":100},{\"name\":\"standardDv2Family\",\"coreQuota\":100},{\"name\":\"standardDv3Family\",\"coreQuota\":100},{\"name\":\"standardEv3Family\",\"coreQuota\":50},{\"name\":\"standardDSv2Family\",\"coreQuota\":100},{\"name\":\"standardDSv3Family\",\"coreQuota\":100},{\"name\":\"standardESv3Family\",\"coreQuota\":50},{\"name\":\"standardFFamily\",\"coreQuota\":50},{\"name\":\"standardFSFamily\",\"coreQuota\":50},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardDDv4Family\",\"coreQuota\":0},{\"name\":\"standardDDSv4Family\",\"coreQuota\":0},{\"name\":\"standardEDv4Family\",\"coreQuota\":0},{\"name\":\"standardEDSv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"mytag\":\"testtag\"},\"identity\":{\"type\":\"None\"}}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Storage/storageAccounts/batchsa665760?api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (StorageManagementClient, 2019-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:36 GMT",
"content-length" : "0",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-writes" : "1186",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "bbcf0366-9163-4d3b-a325-fcd7a7f52e3f",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075236Z:bbcf0366-9163-4d3b-a325-fcd7a7f52e3f",
"content-type" : "text/plain; charset=utf-8",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralindia/asyncoperations/bc5b1d3f-f009-4ead-acde-122720a4a7ac?monitor=true&api-version=2019-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "bc5b1d3f-f009-4ead-acde-122720a4a7ac",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralindia/asyncoperations/bc5b1d3f-f009-4ead-acde-122720a4a7ac?monitor=true&api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (StorageManagementClient, 2019-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:36 GMT",
"content-length" : "0",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11919",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "8bfc2f37-ed91-4d6d-92f6-3d24629d9aab",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075236Z:8bfc2f37-ed91-4d6d-92f6-3d24629d9aab",
"content-type" : "text/plain; charset=utf-8",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralindia/asyncoperations/bc5b1d3f-f009-4ead-acde-122720a4a7ac?monitor=true&api-version=2019-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "db57d71d-60d4-42f5-9ebc-200b2b5e38fa",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralindia/asyncoperations/bc5b1d3f-f009-4ead-acde-122720a4a7ac?monitor=true&api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (StorageManagementClient, 2019-06-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:53 GMT",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"content-length" : "1670",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11918",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "8e9849fb-d444-4326-a92b-5dfaffa7c308",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075253Z:8e9849fb-d444-4326-a92b-5dfaffa7c308",
"content-type" : "application/json",
"cache-control" : "no-cache",
"x-ms-request-id" : "c069b062-7368-4dff-859c-c49856f86829",
"Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Storage/storageAccounts/batchsa665760\",\"name\":\"batchsa665760\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-02T07:52:34.9251363Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-02T07:52:34.9251363Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-02T07:52:34.8626143Z\",\"primaryEndpoints\":{\"dfs\":\"https://batchsa665760.dfs.core.windows.net/\",\"web\":\"https://batchsa665760.z29.web.core.windows.net/\",\"blob\":\"https://batchsa665760.blob.core.windows.net/\",\"queue\":\"https://batchsa665760.queue.core.windows.net/\",\"table\":\"https://batchsa665760.table.core.windows.net/\",\"file\":\"https://batchsa665760.file.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southindia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://batchsa665760-secondary.dfs.core.windows.net/\",\"web\":\"https://batchsa665760-secondary.z29.web.core.windows.net/\",\"blob\":\"https://batchsa665760-secondary.blob.core.windows.net/\",\"queue\":\"https://batchsa665760-secondary.queue.core.windows.net/\",\"table\":\"https://batchsa665760-secondary.table.core.windows.net/\"}}}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Storage/storageAccounts/batchsa665760?api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (StorageManagementClient, 2019-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:53 GMT",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"content-length" : "1670",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11917",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "1563dba5-ac64-421f-963a-3662b35dae0b",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075254Z:1563dba5-ac64-421f-963a-3662b35dae0b",
"content-type" : "application/json",
"cache-control" : "no-cache",
"x-ms-request-id" : "0d948447-c19a-4ee4-8796-d442f29a914b",
"Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Storage/storageAccounts/batchsa665760\",\"name\":\"batchsa665760\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-02T07:52:34.9251363Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-02T07:52:34.9251363Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-02T07:52:34.8626143Z\",\"primaryEndpoints\":{\"dfs\":\"https://batchsa665760.dfs.core.windows.net/\",\"web\":\"https://batchsa665760.z29.web.core.windows.net/\",\"blob\":\"https://batchsa665760.blob.core.windows.net/\",\"queue\":\"https://batchsa665760.queue.core.windows.net/\",\"table\":\"https://batchsa665760.table.core.windows.net/\",\"file\":\"https://batchsa665760.file.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southindia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://batchsa665760-secondary.dfs.core.windows.net/\",\"web\":\"https://batchsa665760-secondary.z29.web.core.windows.net/\",\"blob\":\"https://batchsa665760-secondary.blob.core.windows.net/\",\"queue\":\"https://batchsa665760-secondary.queue.core.windows.net/\",\"table\":\"https://batchsa665760-secondary.table.core.windows.net/\"}}}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:55 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "2890",
"expires" : "-1",
"transfer-encoding" : "chunked",
"vary" : "Accept-Encoding",
"x-ms-ratelimit-remaining-subscription-writes" : "1185",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "b264eac9-1b74-4260-8c47-3a41e2c56ffe",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025149Z:b264eac9-1b74-4260-8c47-3a41e2c56ffe",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a/operationResults/1f8cdd15-a89a-4325-b5a3-456c7bf45cf8?api-version=2021-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "1f8cdd15-a89a-4325-b5a3-456c7bf45cf8",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a/operationResults/1f8cdd15-a89a-4325-b5a3-456c7bf45cf8?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)"
},
"Response" : {
"date" : "Fri, 30 Jul 2021 02:52:04 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "3035",
"expires" : "-1",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11780",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "d68814f4-4c72-4bea-b46e-44eb72b04eeb",
"last-modified" : "Tue, 02 Feb 2021 07:52:55 GMT",
"x-ms-correlation-request-id" : "684f0313-9323-4f27-b695-e28e3eb4003a",
"last-modified" : "Fri, 30 Jul 2021 02:52:04 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075255Z:d68814f4-4c72-4bea-b46e-44eb72b04eeb",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025204Z:684f0313-9323-4f27-b695-e28e3eb4003a",
"content-type" : "application/json; charset=utf-8",
"etag" : "\"0x8D8C74F8CBE00B4\"",
"etag" : "\"0x8D953050387E400\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "14509a84-8372-4b9a-bb4e-fc014ba5a190",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760\",\"name\":\"batch665760\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralindia\",\"properties\":{\"accountEndpoint\":\"batch665760.centralindia.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":700,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":100},{\"name\":\"standardDv2Family\",\"coreQuota\":100},{\"name\":\"standardDv3Family\",\"coreQuota\":100},{\"name\":\"standardEv3Family\",\"coreQuota\":50},{\"name\":\"standardDSv2Family\",\"coreQuota\":100},{\"name\":\"standardDSv3Family\",\"coreQuota\":100},{\"name\":\"standardESv3Family\",\"coreQuota\":50},{\"name\":\"standardFFamily\",\"coreQuota\":50},{\"name\":\"standardFSFamily\",\"coreQuota\":50},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardDDv4Family\",\"coreQuota\":0},{\"name\":\"standardDDSv4Family\",\"coreQuota\":0},{\"name\":\"standardEDv4Family\",\"coreQuota\":0},{\"name\":\"standardEDSv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Storage/storageAccounts/batchsa665760\",\"lastKeySync\":\"2021-02-02T07:52:55.0309773Z\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"mytag\":\"testtag\"},\"identity\":{\"type\":\"None\"}}"
"x-ms-request-id" : "b4c91aff-ff0a-4f73-9e5f-f83600898b76",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a\",\"name\":\"batch29525a\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralindia\",\"properties\":{\"accountEndpoint\":\"batch29525a.centralindia.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":500,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":500},{\"name\":\"standardDv2Family\",\"coreQuota\":250},{\"name\":\"standardDv3Family\",\"coreQuota\":500},{\"name\":\"standardEv3Family\",\"coreQuota\":500},{\"name\":\"standardDSv2Family\",\"coreQuota\":250},{\"name\":\"standardDSv3Family\",\"coreQuota\":500},{\"name\":\"standardESv3Family\",\"coreQuota\":500},{\"name\":\"standardFSv2Family\",\"coreQuota\":100},{\"name\":\"standardNCFamily\",\"coreQuota\":24},{\"name\":\"standardNVFamily\",\"coreQuota\":24},{\"name\":\"standardDDv4Family\",\"coreQuota\":100},{\"name\":\"standardDDSv4Family\",\"coreQuota\":100},{\"name\":\"standardEDv4Family\",\"coreQuota\":100},{\"name\":\"standardEDSv4Family\",\"coreQuota\":100},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NCASv3_T4 Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NDASv4_A100 Family\",\"coreQuota\":0},{\"name\":\"standardDCSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBv3Family\",\"coreQuota\":0},{\"name\":\"standardNPSFamily\",\"coreQuota\":0},{\"name\":\"standardFXMDVSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"allowedAuthenticationModes\":[\"SharedKey\",\"AAD\",\"TaskAuthenticationToken\"]},\"tags\":{\"mytag\":\"testtag\"},\"identity\":{\"type\":\"None\"}}"
}
}, {
"Method" : "DELETE",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch665760group/providers/Microsoft.Batch/batchAccounts/batch665760?api-version=2021-01-01",
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:55 GMT",
"content-length" : "0",
"date" : "Fri, 30 Jul 2021 02:52:04 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "3047",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-deletes" : "14994",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "a5077012-5fba-442a-bc49-bca80d3c4076",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075256Z:a5077012-5fba-442a-bc49-bca80d3c4076",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralindia/accountOperationResults/batch665760-4e07f233-6a93-4e53-b7b7-39a6097ea542?api-version=2021-01-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "4e07f233-6a93-4e53-b7b7-39a6097ea542",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralindia/accountOperationResults/batch665760-4e07f233-6a93-4e53-b7b7-39a6097ea542?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:52:55 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11916",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "cf426fab-6b75-4bc3-b6f9-e505e8c08493",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075256Z:cf426fab-6b75-4bc3-b6f9-e505e8c08493",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralindia/accountOperationResults/batch665760-4e07f233-6a93-4e53-b7b7-39a6097ea542?api-version=2021-01-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "d8414be5-4f5f-4d4c-b0b6-a1f7e45da589",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralindia/accountOperationResults/batch665760-4e07f233-6a93-4e53-b7b7-39a6097ea542?api-version=2021-01-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (BatchManagementClient, 2021-01-01)"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:53:10 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11915",
"x-ms-ratelimit-remaining-subscription-reads" : "11779",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "ea4c0548-cb59-42e3-8bcb-2845befe2f35",
"x-ms-correlation-request-id" : "d6f3d21b-01d0-4050-a37e-0578ede9112b",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075311Z:ea4c0548-cb59-42e3-8bcb-2845befe2f35",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025205Z:d6f3d21b-01d0-4050-a37e-0578ede9112b",
"content-type" : "application/json; charset=utf-8",
"cache-control" : "no-cache",
"x-ms-request-id" : "d46c5509-b1f7-45c2-97f8-02652dc8648a",
"Body" : ""
"x-ms-request-id" : "a051e33c-abf2-499f-8b9f-e6394d46eebb",
"Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a\",\"name\":\"batch29525a\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralindia\",\"properties\":{\"accountEndpoint\":\"batch29525a.centralindia.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":500,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":500},{\"name\":\"standardDv2Family\",\"coreQuota\":250},{\"name\":\"standardDv3Family\",\"coreQuota\":500},{\"name\":\"standardEv3Family\",\"coreQuota\":500},{\"name\":\"standardDSv2Family\",\"coreQuota\":250},{\"name\":\"standardDSv3Family\",\"coreQuota\":500},{\"name\":\"standardESv3Family\",\"coreQuota\":500},{\"name\":\"standardFSv2Family\",\"coreQuota\":100},{\"name\":\"standardNCFamily\",\"coreQuota\":24},{\"name\":\"standardNVFamily\",\"coreQuota\":24},{\"name\":\"standardDDv4Family\",\"coreQuota\":100},{\"name\":\"standardDDSv4Family\",\"coreQuota\":100},{\"name\":\"standardEDv4Family\",\"coreQuota\":100},{\"name\":\"standardEDSv4Family\",\"coreQuota\":100},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NCASv3_T4 Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NDASv4_A100 Family\",\"coreQuota\":0},{\"name\":\"standardDCSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBv3Family\",\"coreQuota\":0},{\"name\":\"standardNPSFamily\",\"coreQuota\":0},{\"name\":\"standardFXMDVSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"allowedAuthenticationModes\":[\"SharedKey\",\"AAD\",\"TaskAuthenticationToken\"]},\"tags\":{\"mytag\":\"testtag\"},\"identity\":{\"type\":\"None\"}}]}"
}
}, {
"Method" : "DELETE",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/batch665760group?api-version=2020-06-01",
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6329c03b535ec33cd37fb229b82c5babb3cb7866e991f6299f1b3716d621b34d Java:1.8.0_221 (ResourceManagementClient, 2020-06-01)",
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Tue, 02 Feb 2021 07:53:12 GMT",
"content-length" : "0",
"date" : "Fri, 30 Jul 2021 02:52:05 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "3035",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-deletes" : "14993",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11778",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "aaf915d0-eb73-4c58-93d8-f30a0d56514e",
"last-modified" : "Fri, 30 Jul 2021 02:51:54 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025205Z:aaf915d0-eb73-4c58-93d8-f30a0d56514e",
"content-type" : "application/json; charset=utf-8",
"etag" : "\"0x8D95304FD10283E\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "bbfd8d94-611b-43f2-a241-d0c6026cbfb8",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a\",\"name\":\"batch29525a\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralindia\",\"properties\":{\"accountEndpoint\":\"batch29525a.centralindia.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":500,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":500},{\"name\":\"standardDv2Family\",\"coreQuota\":250},{\"name\":\"standardDv3Family\",\"coreQuota\":500},{\"name\":\"standardEv3Family\",\"coreQuota\":500},{\"name\":\"standardDSv2Family\",\"coreQuota\":250},{\"name\":\"standardDSv3Family\",\"coreQuota\":500},{\"name\":\"standardESv3Family\",\"coreQuota\":500},{\"name\":\"standardFSv2Family\",\"coreQuota\":100},{\"name\":\"standardNCFamily\",\"coreQuota\":24},{\"name\":\"standardNVFamily\",\"coreQuota\":24},{\"name\":\"standardDDv4Family\",\"coreQuota\":100},{\"name\":\"standardDDSv4Family\",\"coreQuota\":100},{\"name\":\"standardEDv4Family\",\"coreQuota\":100},{\"name\":\"standardEDSv4Family\",\"coreQuota\":100},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NCASv3_T4 Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NDASv4_A100 Family\",\"coreQuota\":0},{\"name\":\"standardDCSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBv3Family\",\"coreQuota\":0},{\"name\":\"standardNPSFamily\",\"coreQuota\":0},{\"name\":\"standardFXMDVSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"allowedAuthenticationModes\":[\"SharedKey\",\"AAD\",\"TaskAuthenticationToken\"]},\"tags\":{\"mytag\":\"testtag\"},\"identity\":{\"type\":\"None\"}}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Fri, 30 Jul 2021 02:52:05 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "3035",
"expires" : "-1",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11777",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "82862451-6496-421f-a25b-062a01402f27",
"last-modified" : "Fri, 30 Jul 2021 02:51:54 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025205Z:82862451-6496-421f-a25b-062a01402f27",
"content-type" : "application/json; charset=utf-8",
"etag" : "\"0x8D95304FD10283E\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "7fc41623-b7d6-4174-968b-907589858a78",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a\",\"name\":\"batch29525a\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralindia\",\"properties\":{\"accountEndpoint\":\"batch29525a.centralindia.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":500,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":500},{\"name\":\"standardDv2Family\",\"coreQuota\":250},{\"name\":\"standardDv3Family\",\"coreQuota\":500},{\"name\":\"standardEv3Family\",\"coreQuota\":500},{\"name\":\"standardDSv2Family\",\"coreQuota\":250},{\"name\":\"standardDSv3Family\",\"coreQuota\":500},{\"name\":\"standardESv3Family\",\"coreQuota\":500},{\"name\":\"standardFSv2Family\",\"coreQuota\":100},{\"name\":\"standardNCFamily\",\"coreQuota\":24},{\"name\":\"standardNVFamily\",\"coreQuota\":24},{\"name\":\"standardDDv4Family\",\"coreQuota\":100},{\"name\":\"standardDDSv4Family\",\"coreQuota\":100},{\"name\":\"standardEDv4Family\",\"coreQuota\":100},{\"name\":\"standardEDSv4Family\",\"coreQuota\":100},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NCASv3_T4 Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NDASv4_A100 Family\",\"coreQuota\":0},{\"name\":\"standardDCSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBv3Family\",\"coreQuota\":0},{\"name\":\"standardNPSFamily\",\"coreQuota\":0},{\"name\":\"standardFXMDVSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"allowedAuthenticationModes\":[\"SharedKey\",\"AAD\",\"TaskAuthenticationToken\"]},\"tags\":{\"mytag\":\"testtag\"},\"identity\":{\"type\":\"None\"}}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Storage/storageAccounts/batchsa29525a?api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (StorageManagementClient, 2019-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Fri, 30 Jul 2021 02:52:10 GMT",
"content-length" : "0",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-writes" : "1184",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "b1e5fbc0-b9b4-44f5-b36c-75415896d30a",
"x-ms-correlation-request-id" : "e0212c62-937f-43e5-a4ff-c5fa25221ed9",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210202T075312Z:b1e5fbc0-b9b4-44f5-b36c-75415896d30a",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1CQVRDSDY2NTc2MEdST1VQLUNFTlRSQUxJTkRJQSIsImpvYkxvY2F0aW9uIjoiY2VudHJhbGluZGlhIn0?api-version=2020-06-01",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025210Z:e0212c62-937f-43e5-a4ff-c5fa25221ed9",
"content-type" : "text/plain; charset=utf-8",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralindia/asyncoperations/b67fbf68-0b36-4c49-8bdb-a9092a4325f7?monitor=true&api-version=2019-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "b1e5fbc0-b9b4-44f5-b36c-75415896d30a",
"x-ms-request-id" : "b67fbf68-0b36-4c49-8bdb-a9092a4325f7",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralindia/asyncoperations/b67fbf68-0b36-4c49-8bdb-a9092a4325f7?monitor=true&api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (StorageManagementClient, 2019-06-01)"
},
"Response" : {
"date" : "Fri, 30 Jul 2021 02:52:27 GMT",
"content-length" : "0",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11776",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "d086d6e8-d22f-4de5-95ca-d9f4a1152977",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025227Z:d086d6e8-d22f-4de5-95ca-d9f4a1152977",
"content-type" : "text/plain; charset=utf-8",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralindia/asyncoperations/b67fbf68-0b36-4c49-8bdb-a9092a4325f7?monitor=true&api-version=2019-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "a7187944-5576-4dac-b1d0-fdda50871827",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralindia/asyncoperations/b67fbf68-0b36-4c49-8bdb-a9092a4325f7?monitor=true&api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (StorageManagementClient, 2019-06-01)"
},
"Response" : {
"date" : "Fri, 30 Jul 2021 02:52:30 GMT",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"content-length" : "1699",
"expires" : "-1",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11775",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "16804797-cda5-45a1-95eb-1a14561e6bbb",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025231Z:16804797-cda5-45a1-95eb-1a14561e6bbb",
"content-type" : "application/json",
"cache-control" : "no-cache",
"x-ms-request-id" : "15458198-6356-4e87-9335-afcc0c4e1ffc",
"Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Storage/storageAccounts/batchsa29525a\",\"name\":\"batchsa29525a\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-30T02:52:07.1538643Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-30T02:52:07.1538643Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-30T02:52:07.0913452Z\",\"primaryEndpoints\":{\"dfs\":\"https://batchsa29525a.dfs.core.windows.net/\",\"web\":\"https://batchsa29525a.z29.web.core.windows.net/\",\"blob\":\"https://batchsa29525a.blob.core.windows.net/\",\"queue\":\"https://batchsa29525a.queue.core.windows.net/\",\"table\":\"https://batchsa29525a.table.core.windows.net/\",\"file\":\"https://batchsa29525a.file.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southindia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://batchsa29525a-secondary.dfs.core.windows.net/\",\"web\":\"https://batchsa29525a-secondary.z29.web.core.windows.net/\",\"blob\":\"https://batchsa29525a-secondary.blob.core.windows.net/\",\"queue\":\"https://batchsa29525a-secondary.queue.core.windows.net/\",\"table\":\"https://batchsa29525a-secondary.table.core.windows.net/\"}}}"
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Storage/storageAccounts/batchsa29525a?api-version=2019-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (StorageManagementClient, 2019-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Fri, 30 Jul 2021 02:52:31 GMT",
"server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0",
"content-length" : "1699",
"expires" : "-1",
"vary" : "Accept-Encoding",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11774",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "a65bb3ea-935b-445f-a9f4-787bd1989464",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025231Z:a65bb3ea-935b-445f-a9f4-787bd1989464",
"content-type" : "application/json",
"cache-control" : "no-cache",
"x-ms-request-id" : "5127656f-8a29-4e78-ad8b-2039c63b4201",
"Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Storage/storageAccounts/batchsa29525a\",\"name\":\"batchsa29525a\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-30T02:52:07.1538643Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-30T02:52:07.1538643Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-30T02:52:07.0913452Z\",\"primaryEndpoints\":{\"dfs\":\"https://batchsa29525a.dfs.core.windows.net/\",\"web\":\"https://batchsa29525a.z29.web.core.windows.net/\",\"blob\":\"https://batchsa29525a.blob.core.windows.net/\",\"queue\":\"https://batchsa29525a.queue.core.windows.net/\",\"table\":\"https://batchsa29525a.table.core.windows.net/\",\"file\":\"https://batchsa29525a.file.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southindia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://batchsa29525a-secondary.dfs.core.windows.net/\",\"web\":\"https://batchsa29525a-secondary.z29.web.core.windows.net/\",\"blob\":\"https://batchsa29525a-secondary.blob.core.windows.net/\",\"queue\":\"https://batchsa29525a-secondary.queue.core.windows.net/\",\"table\":\"https://batchsa29525a-secondary.table.core.windows.net/\"}}}"
}
}, {
"Method" : "PUT",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Fri, 30 Jul 2021 02:52:33 GMT",
"server" : "Microsoft-HTTPAPI/2.0",
"content-length" : "3292",
"expires" : "-1",
"vary" : "Accept-Encoding",
"x-ms-ratelimit-remaining-subscription-writes" : "1183",
"retry-after" : "0",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "460f4f97-8b3b-42b4-9273-2d98020912b1",
"last-modified" : "Fri, 30 Jul 2021 02:52:33 GMT",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025233Z:460f4f97-8b3b-42b4-9273-2d98020912b1",
"content-type" : "application/json; charset=utf-8",
"etag" : "\"0x8D9530514689252\"",
"cache-control" : "no-cache",
"x-ms-request-id" : "8bd1a19d-7243-4011-b3ff-4c88981d2cf6",
"Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a\",\"name\":\"batch29525a\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"centralindia\",\"properties\":{\"accountEndpoint\":\"batch29525a.centralindia.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":500,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardAv2Family\",\"coreQuota\":500},{\"name\":\"standardDv2Family\",\"coreQuota\":250},{\"name\":\"standardDv3Family\",\"coreQuota\":500},{\"name\":\"standardEv3Family\",\"coreQuota\":500},{\"name\":\"standardDSv2Family\",\"coreQuota\":250},{\"name\":\"standardDSv3Family\",\"coreQuota\":500},{\"name\":\"standardESv3Family\",\"coreQuota\":500},{\"name\":\"standardFSv2Family\",\"coreQuota\":100},{\"name\":\"standardNCFamily\",\"coreQuota\":24},{\"name\":\"standardNVFamily\",\"coreQuota\":24},{\"name\":\"standardDDv4Family\",\"coreQuota\":100},{\"name\":\"standardDDSv4Family\",\"coreQuota\":100},{\"name\":\"standardEDv4Family\",\"coreQuota\":100},{\"name\":\"standardEDSv4Family\",\"coreQuota\":100},{\"name\":\"standardA0_A7Family\",\"coreQuota\":0},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDAv4Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0},{\"name\":\"standardMSv2Family\",\"coreQuota\":0},{\"name\":\"standardEIv3Family\",\"coreQuota\":0},{\"name\":\"standardNVSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NCASv3_T4 Family\",\"coreQuota\":0},{\"name\":\"standardXEIDSv4Family\",\"coreQuota\":0},{\"name\":\"Standard NDASv4_A100 Family\",\"coreQuota\":0},{\"name\":\"standardDCSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBv3Family\",\"coreQuota\":0},{\"name\":\"standardNPSFamily\",\"coreQuota\":0},{\"name\":\"standardFXMDVSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"lowPriorityCoreQuota\":500,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Storage/storageAccounts/batchsa29525a\",\"lastKeySync\":\"2021-07-30T02:52:33.17342Z\",\"authenticationMode\":\"StorageKeys\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"allowedAuthenticationModes\":[\"SharedKey\",\"AAD\",\"TaskAuthenticationToken\"]},\"tags\":{\"mytag\":\"testtag\"},\"identity\":{\"type\":\"None\"}}"
}
}, {
"Method" : "DELETE",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/batch29525agroup/providers/Microsoft.Batch/batchAccounts/batch29525a?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Fri, 30 Jul 2021 02:52:33 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-deletes" : "14998",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "7bd29a1a-6946-4d9c-9365-9ea4f79b3d51",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025234Z:7bd29a1a-6946-4d9c-9365-9ea4f79b3d51",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralindia/accountOperationResults/batch29525a-3609891d-3222-4e49-9e8e-b759c78365da?api-version=2021-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "3609891d-3222-4e49-9e8e-b759c78365da",
"Body" : ""
}
}, {
"Method" : "GET",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/locations/centralindia/accountOperationResults/batch29525a-3609891d-3222-4e49-9e8e-b759c78365da?api-version=2021-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (BatchManagementClient, 2021-06-01)"
},
"Response" : {
"date" : "Fri, 30 Jul 2021 02:52:48 GMT",
"content-length" : "0",
"server" : "Microsoft-HTTPAPI/2.0",
"expires" : "-1",
"retry-after" : "0",
"x-ms-ratelimit-remaining-subscription-reads" : "11773",
"StatusCode" : "200",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "a9a958f9-3537-4411-889b-9ca5627eb59b",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025249Z:a9a958f9-3537-4411-889b-9ca5627eb59b",
"cache-control" : "no-cache",
"x-ms-request-id" : "85aeeb4b-9be1-4f6c-ae5c-cf24f20f809e",
"Body" : ""
}
}, {
"Method" : "DELETE",
"Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/batch29525agroup?api-version=2020-06-01",
"Headers" : {
"User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:16d667ba85a69c1ee0ed809f30ffb817b9aa9960347395fa339605f5be4092c1 Java:15.0.1 (ResourceManagementClient, 2020-06-01)",
"Content-Type" : "application/json; charset=utf-8"
},
"Response" : {
"date" : "Fri, 30 Jul 2021 02:52:50 GMT",
"content-length" : "0",
"expires" : "-1",
"x-ms-ratelimit-remaining-subscription-deletes" : "14997",
"retry-after" : "0",
"StatusCode" : "202",
"pragma" : "no-cache",
"strict-transport-security" : "max-age=31536000; includeSubDomains",
"x-ms-correlation-request-id" : "4346909e-7288-4e2d-a949-a4c2e4564bc4",
"x-content-type-options" : "nosniff",
"x-ms-routing-request-id" : "SOUTHEASTASIA:20210730T025250Z:4346909e-7288-4e2d-a949-a4c2e4564bc4",
"location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1CQVRDSDI5NTI1QUdST1VQLUNFTlRSQUxJTkRJQSIsImpvYkxvY2F0aW9uIjoiY2VudHJhbGluZGlhIn0?api-version=2020-06-01",
"cache-control" : "no-cache",
"x-ms-request-id" : "4346909e-7288-4e2d-a949-a4c2e4564bc4",
"Body" : ""
}
} ],
"variables" : [ "665760", "4274cbc2-6939-4f01-90d1-475126010421", "dad80269-a7ad-4ed3-afb6-20d47b30ed91", "b6d4847e-e16d-4e6f-9732-a410e8f46ce6", "4b549278-70f4-4bc0-a0e5-8276a8952d14", "3ec41b7a-d46b-4b7d-b46f-b5ad380a6f75", "4ecafd2a-df83-4579-905a-3e29d046c74e" ]
"variables" : [ "29525a", "518dc22f-1642-4815-841a-d72a0ff166a7", "3b478fd2-d21b-4add-aadc-2b799c3d6faa", "91104f5f-c29a-4557-9d1b-b27ae4237748", "d8676663-242e-4f11-8cec-388973f56b13", "c3ee7437-b984-4dec-aa9c-0d2e00ac2ca1", "fa3ab1d2-6fdc-4930-bc09-2f3a6f80bc2b" ]
}

Просмотреть файл

@ -25,6 +25,8 @@ function credcheck(dir) {
redactDict.set(/\\"DOCKER_REGISTRY_SERVER_PASSWORD\\":\\"(.*?)\\"/g, '\\"DOCKER_REGISTRY_SERVER_PASSWORD\\":\\"MGMT_PLACEHOLDER\\"');
redactDict.set(/\\"connectionString\\":\\"(.*?)\\"/g, '\\"connectionString\\":\\"MGMT_PLACEHOLDER\\"');
redactDict.set(/&sig=(.*?)(&|\\")/g, '&sig=MGMT_PLACEHOLDER&');
redactDict.set(/\\"primary\\":\\"(.*?)\\"/g, '\\"primary\\":\\"MGMT_PLACEHOLDER\\"');
redactDict.set(/\\"secondary\\":\\"(.*?)\\"/g, '\\"secondary\\":\\"MGMT_PLACEHOLDER\\"');
credcheckRecursive(dir, redactDict);
}