diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 3d1f3b4279e2..0cb8f7c9aba6 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,5 +1,5 @@
# Contribute Code or Provide Feedback
-If you would like to become an active contributor to this project please follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines](http://windowsazure.github.com/guidelines.html).
+If you would like to become an active contributor to this project please follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines](http://azure.github.io/guidelines/).
If you encounter any bugs with Microsoft Azure PowerShell please file an issue in the [Issues](https://github.com/Azure/azure-powershell/issues) section of the project.
diff --git a/ChangeLog.md b/ChangeLog.md
index ca50061a8f8b..76bf06d02884 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -12,6 +12,16 @@
* Set-AzureLogicAppAccessKey
* Set-AzureLogicApp
* Stop-AzureLogicAppRun
+ * Azure Storage
+ * Added cmdlet to generate SAS token against storage account
+ - New-AzureStorageAccountSASToken
+ * Added IPAddressOrRange/Protocol support in cmdlets to generate SAS token against blob, container, file, share, table, queue
+ - New-AzureStorageBlobSASToken
+ - New-AzureStorageContainerSASToken
+ - New-AzureStorageFileSASToken
+ - New-AzureStorageShareSASToken
+ - New-AzureStorageQueueSASToken
+ - New-AzureStorageTableSASToken
## 2016.02.04 version 1.2.1
* Fix installer issue - remove PSGallery modules on install
diff --git a/src/Common/Commands.Common.Authentication/Commands.Common.Authentication.csproj b/src/Common/Commands.Common.Authentication/Commands.Common.Authentication.csproj
index 0e7ed8e59545..2681cd664d3e 100644
--- a/src/Common/Commands.Common.Authentication/Commands.Common.Authentication.csproj
+++ b/src/Common/Commands.Common.Authentication/Commands.Common.Authentication.csproj
@@ -11,7 +11,7 @@
Commands.Common.Authentication
v4.5
512
- ..\..\
+
true
/assemblyCompareMode:StrongNameIgnoringVersion
06e19c11
@@ -51,7 +51,8 @@
- ..\..\packages\Hyak.Common.1.0.3\lib\net45\Hyak.Common.dll
+ False
+ ..\..\packages\Hyak.Common.1.0.3\lib\portable-net403+win+wpa81\Hyak.Common.dll
True
@@ -178,5 +179,4 @@
-
\ No newline at end of file
diff --git a/src/Common/Commands.Common.Authentication/Models/XmlProfileSerializer.cs b/src/Common/Commands.Common.Authentication/Models/XmlProfileSerializer.cs
index c1eda20aefef..1c1ee2a38d4f 100644
--- a/src/Common/Commands.Common.Authentication/Models/XmlProfileSerializer.cs
+++ b/src/Common/Commands.Common.Authentication/Models/XmlProfileSerializer.cs
@@ -38,6 +38,16 @@ public bool Deserialize(string contents, AzureSMProfile profile)
DeserializeErrors = new List();
DataContractSerializer serializer = new DataContractSerializer(typeof(ProfileData));
+
+ // For backward compatibility since namespace of ProfileData has been changed
+ // we need to replace previous namespace with the current one
+ if (!string.IsNullOrWhiteSpace(contents))
+ {
+ contents = contents.Replace(
+ "http://schemas.datacontract.org/2004/07/Microsoft.Azure.Common.Authentication",
+ "http://schemas.datacontract.org/2004/07/Microsoft.Azure.Commands.Common.Authentication");
+ }
+
using (MemoryStream s = new MemoryStream(Encoding.UTF8.GetBytes(contents ?? "")))
{
data = (ProfileData)serializer.ReadObject(s);
diff --git a/src/Common/Storage/Commands.Storage.Test/Service/MockStorageBlobManagement.cs b/src/Common/Storage/Commands.Storage.Test/Service/MockStorageBlobManagement.cs
index 08474cce73e1..fe483ac599a8 100644
--- a/src/Common/Storage/Commands.Storage.Test/Service/MockStorageBlobManagement.cs
+++ b/src/Common/Storage/Commands.Storage.Test/Service/MockStorageBlobManagement.cs
@@ -685,6 +685,16 @@ public Task StartCopyAsync(CloudBlob blob, Uri source, AccessCondition s
throw new NotImplementedException();
}
+ ///
+ /// Get the SAS token for an account.
+ ///
+ /// Shared access policy to generate the SAS token.
+ /// Account SAS token.
+ public string GetStorageAccountSASToken(SharedAccessAccountPolicy sharedAccessAccountPolicy)
+ {
+ throw new NotImplementedException();
+ }
+
///
/// The storage context
///
diff --git a/src/Common/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageBlobSasToken.cs b/src/Common/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageBlobSasToken.cs
index cd5139d2b278..67a7534a8b9e 100644
--- a/src/Common/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageBlobSasToken.cs
+++ b/src/Common/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageBlobSasToken.cs
@@ -20,6 +20,7 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet
using Microsoft.WindowsAzure.Commands.Storage.Common;
using Microsoft.WindowsAzure.Commands.Storage.Model.Contract;
using Microsoft.WindowsAzure.Storage.Blob;
+ using Microsoft.WindowsAzure.Storage;
[Cmdlet(VerbsCommon.New, StorageNouns.BlobSas, DefaultParameterSetName = BlobNamePipelineParmeterSetWithPermission), OutputType(typeof(String))]
public class NewAzureStorageBlobSasTokenCommand : StorageCloudBlobCmdletBase
@@ -80,6 +81,12 @@ public string Policy
ParameterSetName = BlobPipelineParameterSetWithPermision)]
public string Permission { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Protocol can be used in the request with this SAS token.")]
+ public SharedAccessProtocol Protocol { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "IP, or IP range ACL (access control list) that the request would be accepted from by Azure Storage.")]
+ public string IPAddressOrRange { get; set; }
+
[Parameter(HelpMessage = "Start Time")]
public DateTime? StartTime { get; set; }
@@ -133,7 +140,7 @@ public override void ExecuteCmdlet()
SharedAccessBlobPolicy accessPolicy = new SharedAccessBlobPolicy();
bool shouldSetExpiryTime = SasTokenHelper.ValidateContainerAccessPolicy(Channel, blob.Container.Name, accessPolicy, accessPolicyIdentifier);
SetupAccessPolicy(accessPolicy, shouldSetExpiryTime);
- string sasToken = GetBlobSharedAccessSignature(blob, accessPolicy, accessPolicyIdentifier);
+ string sasToken = GetBlobSharedAccessSignature(blob, accessPolicy, accessPolicyIdentifier, Protocol, Util.SetupIPAddressOrRangeForSAS(IPAddressOrRange));
if (FullUri)
{
@@ -154,10 +161,10 @@ public override void ExecuteCmdlet()
/// SharedAccessBlobPolicy object
/// The existing policy identifier.
///
- private string GetBlobSharedAccessSignature(CloudBlob blob, SharedAccessBlobPolicy accessPolicy, string policyIdentifier)
+ private string GetBlobSharedAccessSignature(CloudBlob blob, SharedAccessBlobPolicy accessPolicy, string policyIdentifier, SharedAccessProtocol protocol, IPAddressOrRange iPAddressOrRange)
{
CloudBlobContainer container = blob.Container;
- return blob.GetSharedAccessSignature(accessPolicy, policyIdentifier);
+ return blob.GetSharedAccessSignature(accessPolicy, null, policyIdentifier, protocol, iPAddressOrRange);
}
///
diff --git a/src/Common/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageContainerSasToken.cs b/src/Common/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageContainerSasToken.cs
index 5fd18bcfa596..87a487f98adf 100644
--- a/src/Common/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageContainerSasToken.cs
+++ b/src/Common/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageContainerSasToken.cs
@@ -20,6 +20,7 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet
using Microsoft.WindowsAzure.Commands.Storage.Common;
using Microsoft.WindowsAzure.Commands.Storage.Model.Contract;
using Microsoft.WindowsAzure.Storage.Blob;
+ using Microsoft.WindowsAzure.Storage;
[Cmdlet(VerbsCommon.New, StorageNouns.ContainerSas), OutputType(typeof(String))]
public class NewAzureStorageContainerSasTokenCommand : StorageCloudBlobCmdletBase
@@ -51,9 +52,15 @@ public string Policy
private string accessPolicyIdentifier;
[Parameter(HelpMessage = "Permissions for a container. Permissions can be any not-empty subset of \"rwdl\".",
- ParameterSetName = SasPermissionParameterSet)]
+ ParameterSetName = SasPermissionParameterSet)]
public string Permission { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Protocol can be used in the request with this SAS token.")]
+ public SharedAccessProtocol Protocol { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "IP, or IP range ACL (access control list) that the request would be accepted from by Azure Storage.")]
+ public string IPAddressOrRange { get; set; }
+
[Parameter(HelpMessage = "Start Time")]
public DateTime? StartTime { get; set; }
@@ -98,7 +105,7 @@ public override void ExecuteCmdlet()
SharedAccessBlobPolicy accessPolicy = new SharedAccessBlobPolicy();
bool shouldSetExpiryTime = SasTokenHelper.ValidateContainerAccessPolicy(Channel, container.Name, accessPolicy, accessPolicyIdentifier);
SetupAccessPolicy(accessPolicy, shouldSetExpiryTime);
- string sasToken = container.GetSharedAccessSignature(accessPolicy, accessPolicyIdentifier);
+ string sasToken = container.GetSharedAccessSignature(accessPolicy, accessPolicyIdentifier, Protocol, Util.SetupIPAddressOrRangeForSAS(IPAddressOrRange));
if (FullUri)
{
diff --git a/src/Common/Storage/Commands.Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs b/src/Common/Storage/Commands.Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs
index 6277a992c1e1..33a7573993d1 100644
--- a/src/Common/Storage/Commands.Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs
+++ b/src/Common/Storage/Commands.Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs
@@ -489,6 +489,10 @@ private async Task StartCopyFromBlob(long taskId, IStorageBlobManagement destCha
// Opened workitem 1487579 to track this.
throw new InvalidOperationException(Resources.DestinationBlobTypeNotMatch);
}
+ else
+ {
+ throw;
+ }
}
}
diff --git a/src/Common/Storage/Commands.Storage/Commands.Storage.csproj b/src/Common/Storage/Commands.Storage/Commands.Storage.csproj
index 2d40ef1dcba0..392777e2da2a 100644
--- a/src/Common/Storage/Commands.Storage/Commands.Storage.csproj
+++ b/src/Common/Storage/Commands.Storage/Commands.Storage.csproj
@@ -173,6 +173,7 @@
+
diff --git a/src/Common/Storage/Commands.Storage/Common/Cmdlet/NewAzureStorageAccountSasToken.cs b/src/Common/Storage/Commands.Storage/Common/Cmdlet/NewAzureStorageAccountSasToken.cs
new file mode 100644
index 000000000000..586c1a195073
--- /dev/null
+++ b/src/Common/Storage/Commands.Storage/Common/Cmdlet/NewAzureStorageAccountSasToken.cs
@@ -0,0 +1,143 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.WindowsAzure.Commands.Storage.Common.Cmdlet
+{
+ using System;
+ using System.Management.Automation;
+ using System.Security.Permissions;
+ using Microsoft.WindowsAzure.Commands.Storage.Model.Contract;
+ using Microsoft.WindowsAzure.Storage;
+
+ [Cmdlet(VerbsCommon.New, StorageNouns.AccountSas), OutputType(typeof(String))]
+ public class NewAzureStorageAccountSasTokenCommand : StorageCloudBlobCmdletBase
+ {
+ [Parameter(Mandatory = true, HelpMessage = "Service type that this SAS token applies to.")]
+ public SharedAccessAccountServices Service { get; set; }
+
+ [Parameter(Mandatory = true, HelpMessage = "Resource type that this SAS token applies to.")]
+ public SharedAccessAccountResourceTypes ResourceType { get; set; }
+
+ [Parameter(Mandatory = true, HelpMessage = "Permissions.")]
+ public string Permission { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Protocol can be used in the request with this SAS token.")]
+ public SharedAccessProtocol Protocol { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "IP, or IP range ACL (access control list) that the request would be accepted from by Azure Storage.")]
+ public string IPAddressOrRange { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Start Time")]
+ public DateTime? StartTime { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Expiry Time")]
+ public DateTime? ExpiryTime { get; set; }
+
+ // Overwrite the useless parameter
+ public override int? ServerTimeoutPerRequest { get; set; }
+ public override int? ClientTimeoutPerRequest { get; set; }
+ public override int? ConcurrentTaskCount { get; set; }
+
+ ///
+ /// Initializes a new instance of the NewAzureStorageAccountSasTokenCommand class.
+ ///
+ public NewAzureStorageAccountSasTokenCommand()
+ : this(null)
+ {
+ }
+
+ ///
+ /// Initializes a new instance of the NewAzureStorageAccountSasTokenCommand class.
+ ///
+ /// IStorageBlobManagement channel
+ public NewAzureStorageAccountSasTokenCommand(IStorageBlobManagement channel)
+ {
+ Channel = channel;
+ EnableMultiThread = false;
+ }
+
+ ///
+ /// Execute command
+ ///
+ [PermissionSet(SecurityAction.Demand, Name = "FullTrust")]
+ public override void ExecuteCmdlet()
+ {
+ var sharedAccessPolicy = new SharedAccessAccountPolicy()
+ {
+ Permissions = SetupAccessPolicyPermission(this.Permission),
+ Services = Service,
+ ResourceTypes = ResourceType,
+ Protocols = Protocol,
+ IPAddressOrRange = Util.SetupIPAddressOrRangeForSAS(this.IPAddressOrRange)
+ };
+
+ DateTimeOffset? accessStartTime;
+ DateTimeOffset? accessEndTime;
+ SasTokenHelper.SetupAccessPolicyLifeTime(StartTime, ExpiryTime,
+ out accessStartTime, out accessEndTime, true);
+ sharedAccessPolicy.SharedAccessStartTime = accessStartTime;
+ sharedAccessPolicy.SharedAccessExpiryTime = accessEndTime;
+
+ this.WriteObject(Channel.GetStorageAccountSASToken(sharedAccessPolicy));
+ }
+
+ ///
+ /// Set up access policy permission
+ ///
+ /// SharedAccessBlobPolicy object
+ /// Permisson
+ internal SharedAccessAccountPermissions SetupAccessPolicyPermission(string permission)
+ {
+ if (string.IsNullOrEmpty(permission)) return SharedAccessAccountPermissions.None;
+
+ SharedAccessAccountPermissions accountPermission = SharedAccessAccountPermissions.None;
+ permission = permission.ToLower();
+ foreach (char op in permission)
+ {
+ switch (op)
+ {
+ case StorageNouns.Permission.Read:
+ case StorageNouns.Permission.Query:
+ accountPermission |= SharedAccessAccountPermissions.Read;
+ break;
+ case StorageNouns.Permission.Process:
+ accountPermission |= SharedAccessAccountPermissions.ProcessMessages;
+ break;
+ case StorageNouns.Permission.Write:
+ accountPermission |= SharedAccessAccountPermissions.Write;
+ break;
+ case StorageNouns.Permission.Add:
+ accountPermission |= SharedAccessAccountPermissions.Add;
+ break;
+ case StorageNouns.Permission.Create:
+ accountPermission |= SharedAccessAccountPermissions.Create;
+ break;
+ case StorageNouns.Permission.Update:
+ accountPermission |= SharedAccessAccountPermissions.Update;
+ break;
+ case StorageNouns.Permission.Delete:
+ accountPermission |= SharedAccessAccountPermissions.Delete;
+ break;
+ case StorageNouns.Permission.List:
+ accountPermission |= SharedAccessAccountPermissions.List;
+ break;
+ default:
+ throw new ArgumentException(string.Format(Resources.InvalidAccessPermission, op));
+ }
+ }
+
+ return accountPermission;
+ }
+ }
+}
diff --git a/src/Common/Storage/Commands.Storage/Common/StorageNouns.cs b/src/Common/Storage/Commands.Storage/Common/StorageNouns.cs
index 1c7bb28e2ed7..774281a27033 100644
--- a/src/Common/Storage/Commands.Storage/Common/StorageNouns.cs
+++ b/src/Common/Storage/Commands.Storage/Common/StorageNouns.cs
@@ -104,6 +104,11 @@ public static class StorageNouns
///
public const string StorageCORSRule = "AzureStorageCORSRule";
+ ///
+ /// Azure storage account sas
+ ///
+ public const string AccountSas = "AzureStorageAccountSASToken";
+
///
/// Azure storage container sas
///
@@ -214,6 +219,11 @@ public static class Permission
/// Query permission
///
public const char Query = 'q';
+
+ ///
+ /// Create permission.
+ ///
+ public const char Create = 'c';
}
}
}
diff --git a/src/Common/Storage/Commands.Storage/Common/Util.cs b/src/Common/Storage/Commands.Storage/Common/Util.cs
index cae189794e84..9c997f724d90 100644
--- a/src/Common/Storage/Commands.Storage/Common/Util.cs
+++ b/src/Common/Storage/Commands.Storage/Common/Util.cs
@@ -161,5 +161,21 @@ public static CloudBlob GetBlobReference(Uri blobUri, StorageCredentials storage
blobUri));
}
}
+
+ public static IPAddressOrRange SetupIPAddressOrRangeForSAS(string inputIPACL)
+ {
+ if (string.IsNullOrEmpty(inputIPACL)) return null;
+
+ int separator = inputIPACL.IndexOf('-');
+
+ if (-1 == separator)
+ {
+ return new IPAddressOrRange(inputIPACL);
+ }
+ else
+ {
+ return new IPAddressOrRange(inputIPACL.Substring(0, separator), inputIPACL.Substring(separator + 1));
+ }
+ }
}
}
diff --git a/src/Common/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageFileSasToken.cs b/src/Common/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageFileSasToken.cs
index b5bf925035d1..5cdf06e2c140 100644
--- a/src/Common/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageFileSasToken.cs
+++ b/src/Common/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageFileSasToken.cs
@@ -24,6 +24,7 @@
using Microsoft.WindowsAzure.Commands.Storage.Common;
using Microsoft.WindowsAzure.Commands.Storage.Model.Contract;
using Microsoft.WindowsAzure.Storage.File;
+using Microsoft.WindowsAzure.Storage;
namespace Microsoft.WindowsAzure.Commands.Storage.File.Cmdlet
{
@@ -104,6 +105,12 @@ public string Policy
ParameterSetName = CloudFileSasPermissionParameterSet)]
public string Permission { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Protocol can be used in the request with this SAS token.")]
+ public SharedAccessProtocol Protocol { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "IP, or IP range ACL (access control list) that the request would be accepted from by Azure Storage.")]
+ public string IPAddressOrRange { get; set; }
+
[Parameter(HelpMessage = "Start Time")]
public DateTime? StartTime { get; set; }
@@ -123,6 +130,11 @@ public string Policy
ParameterSetName = NameSasPolicyParmeterSet)]
public override AzureStorageContext Context { get; set; }
+ // Overwrite the useless parameter
+ public override int? ServerTimeoutPerRequest { get; set; }
+ public override int? ClientTimeoutPerRequest { get; set; }
+ public override int? ConcurrentTaskCount { get; set; }
+
///
/// Execute command
///
@@ -158,7 +170,7 @@ public override void ExecuteCmdlet()
SetupAccessPolicy(accessPolicy, shouldSetExpiryTime);
- string sasToken = file.GetSharedAccessSignature(accessPolicy, accessPolicyIdentifier);
+ string sasToken = file.GetSharedAccessSignature(accessPolicy, null, accessPolicyIdentifier, Protocol, Util.SetupIPAddressOrRangeForSAS(IPAddressOrRange));
if (FullUri)
{
diff --git a/src/Common/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageShareSasToken.cs b/src/Common/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageShareSasToken.cs
index 28eaefaebc29..62d6f79459f6 100644
--- a/src/Common/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageShareSasToken.cs
+++ b/src/Common/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageShareSasToken.cs
@@ -22,6 +22,7 @@ namespace Microsoft.WindowsAzure.Commands.Storage.File.Cmdlet
using Microsoft.WindowsAzure.Commands.Storage.Common;
using Microsoft.WindowsAzure.Commands.Storage.Model.Contract;
using Microsoft.WindowsAzure.Storage.File;
+ using Microsoft.WindowsAzure.Storage;
[Cmdlet(VerbsCommon.New, StorageNouns.ShareSas), OutputType(typeof(String))]
public class NewAzureStorageShareSasToken : AzureStorageFileCmdletBase
@@ -56,6 +57,12 @@ public string Policy
ParameterSetName = SasPermissionParameterSet)]
public string Permission { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Protocol can be used in the request with this SAS token.")]
+ public SharedAccessProtocol Protocol { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "IP, or IP range ACL (access control list) that the request would be accepted from by Azure Storage.")]
+ public string IPAddressOrRange { get; set; }
+
[Parameter(HelpMessage = "Start Time")]
public DateTime? StartTime { get; set; }
@@ -95,7 +102,7 @@ public override void ExecuteCmdlet()
this.ExpiryTime.HasValue);
SetupAccessPolicy(accessPolicy, shouldSetExpiryTime);
- string sasToken = fileShare.GetSharedAccessSignature(accessPolicy, accessPolicyIdentifier);
+ string sasToken = fileShare.GetSharedAccessSignature(accessPolicy, accessPolicyIdentifier, Protocol, Util.SetupIPAddressOrRangeForSAS(IPAddressOrRange));
if (FullUri)
{
diff --git a/src/Common/Storage/Commands.Storage/File/StorageFileDataManagementCmdletBase.cs b/src/Common/Storage/Commands.Storage/File/StorageFileDataManagementCmdletBase.cs
index 69223f75282f..2853752104d0 100644
--- a/src/Common/Storage/Commands.Storage/File/StorageFileDataManagementCmdletBase.cs
+++ b/src/Common/Storage/Commands.Storage/File/StorageFileDataManagementCmdletBase.cs
@@ -91,7 +91,8 @@ protected TransferContext GetTransferContext(ProgressRecord record, long totalTr
{
if (record != null)
{
- record.PercentComplete = (int)(transferProgress.BytesTransferred * 100 / totalTransferLength);
+ // Size of the source file might be 0, when it is, directly treat the progress as 100 percent.
+ record.PercentComplete = (totalTransferLength == 0) ? 100 : (int)(transferProgress.BytesTransferred * 100 / totalTransferLength);
record.StatusDescription = string.Format(CultureInfo.CurrentCulture, Resources.FileTransmitStatus, record.PercentComplete);
this.OutputStream.WriteProgress(record);
}
diff --git a/src/Common/Storage/Commands.Storage/Microsoft.WindowsAzure.Commands.Storage.dll-Help.xml b/src/Common/Storage/Commands.Storage/Microsoft.WindowsAzure.Commands.Storage.dll-Help.xml
index 7f5c752e086e..acb286c5bbd1 100644
--- a/src/Common/Storage/Commands.Storage/Microsoft.WindowsAzure.Commands.Storage.dll-Help.xml
+++ b/src/Common/Storage/Commands.Storage/Microsoft.WindowsAzure.Commands.Storage.dll-Help.xml
@@ -1,382 +1,417 @@
-
-
-
-
-
- Get-AzureStorageBlob
-
- List the azure blobs in the specified container.
-
-
-
-
- Get
- AzureStorageBlob
-
-
-
-
- List the azure blobs in the specified container.
-
-
-
- Get-AzureStorageBlob
-
- Blob
-
- Blob name pattern. If blob name is empty, this will list all the blobs in container. Otherwise, this will list the blobs whose name matched the name regular pattern.
-
- String
-
-
- Container
-
- Container name
-
- String
-
-
- MaxCount
-
- The max count of the blobs that can return.
-
- Nullable`1[Int32]
-
-
- ContinuationToken
-
- Blob list continuation token.
-
- BlobContinuationToken
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageBlob
-
- Prefix
-
- Blob name prefix. The Prefix parameter don't support regular expression.
-
- String
-
-
- Container
-
- Container name
-
- String
-
-
- MaxCount
-
- The max count of the blobs that can return.
-
- Nullable`1[Int32]
-
-
- ContinuationToken
-
- Blob list continuation token.
-
- BlobContinuationToken
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- Blob
-
- Blob name pattern. If blob name is empty, this will list all the blobs in container. Otherwise, this will list the blobs whose name matched the name regular pattern.
-
- String
-
- String
-
-
-
-
-
-
- Container
-
- Container name
-
- String
-
- String
-
-
-
-
-
-
- MaxCount
-
- The max count of the blobs that can return.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ContinuationToken
-
- Blob list continuation token.
-
- BlobContinuationToken
-
- BlobContinuationToken
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Prefix
-
- Blob name prefix. The Prefix parameter don't support regular expression.
-
- String
-
- String
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AzureStorageBlob
-
-
- CloudBlob object and Azure storage context and etc.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- SYNOPSIS
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Get azure storage blob by blob name --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageBlob -Container containername -Blob blob*
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Get blob by pipeline from GetAzureStorageContainer --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer container* | Get-AzureStorageBlob
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Get azure storage blob by name prefix --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageBlob -Container containername -Prefix blob
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- List all blobs with max count and continuation token. --------------------------
-
-
-
-
- PS C:\> $maxReturn = 10000
-$containerName = "abc"
+
+
+
+
+ Get-AzureStorageBlob
+
+ List the azure blobs in the specified container.
+
+
+
+
+ Get
+ AzureStorageBlob
+
+
+
+ List the azure blobs in the specified container.
+
+
+
+ Get-AzureStorageBlob
+
+ Blob
+
+ Blob name pattern. If blob name is empty, this will list all the blobs in container. Otherwise, this will list the blobs whose name matched the name regular pattern.
+
+ String
+
+
+ Container
+
+ Container name
+
+ String
+
+
+ MaxCount
+
+ The max count of the blobs that can return.
+
+ Nullable`1[Int32]
+
+
+ ContinuationToken
+
+ Blob list continuation token.
+
+ BlobContinuationToken
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageBlob
+
+ Prefix
+
+ Blob name prefix. The Prefix parameter don't support regular expression.
+
+ String
+
+
+ Container
+
+ Container name
+
+ String
+
+
+ MaxCount
+
+ The max count of the blobs that can return.
+
+ Nullable`1[Int32]
+
+
+ ContinuationToken
+
+ Blob list continuation token.
+
+ BlobContinuationToken
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Blob
+
+ Blob name pattern. If blob name is empty, this will list all the blobs in container. Otherwise, this will list the blobs whose name matched the name regular pattern.
+
+ String
+
+ String
+
+
+
+
+
+ Container
+
+ Container name
+
+ String
+
+ String
+
+
+
+
+
+ MaxCount
+
+ The max count of the blobs that can return.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ContinuationToken
+
+ Blob list continuation token.
+
+ BlobContinuationToken
+
+ BlobContinuationToken
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Prefix
+
+ Blob name prefix. The Prefix parameter don't support regular expression.
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AzureStorageBlob
+
+
+
+
+ CloudBlob object and Azure storage context and etc.
+
+
+
+
+
+
+
+
+ SYNOPSIS
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Get azure storage blob by blob name --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageBlob -Container containername -Blob blob*
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Get blob by pipeline from GetAzureStorageContainer --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer container* | Get-AzureStorageBlob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Get azure storage blob by name prefix --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageBlob -Container containername -Prefix blob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- List all blobs with max count and continuation token. --------------------------
+
+ PS C:\>
+
+ PS C:\> $maxReturn = 10000
+$containerName = "abc"
$total = 0
$token = $null
@@ -388,1271 +423,1400 @@ do
$token = $blobs[$blobs.Count -1].ContinuationToken;
}
while($token -ne $null)
-echo "Total $total blobs in container $containerName"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureStorageBlob
-
-
-
-
- Get-AzureStorageBlobContent
-
-
-
-
- Set-AzureStorageBlobContent
-
-
-
-
-
-
-
-
- Get-AzureStorageBlobContent
-
- Download the specified azure storage blob.
-
-
-
-
- Get
- AzureStorageBlobContent
-
-
-
-
- Download the specified azure storage blob.
-
-
-
- Get-AzureStorageBlobContent
-
- Blob
-
- Blob name.
-
- String
-
-
- Container
-
- Container name.
-
- String
-
-
- Destination
-
- Download destination file path.
-
- String
-
-
- CheckMd5
-
- Whether check the md5 sum for downloaded file.
-
- SwitchParameter
-
-
- Force
-
- Force to overwrite the existing file.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageBlobContent
-
- CloudBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
-
- Destination
-
- Download destination file path.
-
- String
-
-
- CheckMd5
-
- Whether check the md5 sum for downloaded file.
-
- SwitchParameter
-
-
- Force
-
- Force to overwrite the existing file.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageBlobContent
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
-
- Blob
-
- Blob name.
-
- String
-
-
- Destination
-
- Download destination file path.
-
- String
-
-
- CheckMd5
-
- Whether check the md5 sum for downloaded file.
-
- SwitchParameter
-
-
- Force
-
- Force to overwrite the existing file.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
-
-
- Blob
-
- Blob name.
-
- String
-
- String
-
-
-
-
-
-
- Container
-
- Container name.
-
- String
-
- String
-
-
-
-
-
-
- Destination
-
- Download destination file path.
-
- String
-
- String
-
-
-
-
-
-
- CheckMd5
-
- Whether check the md5 sum for downloaded file.
-
- SwitchParameter
-
- SwitchParameter
-
-
- False
-
-
- Force
-
- Force to overwrite the existing file.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
- ProcessorCount * 8
-
-
- CloudBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
- CloudBlob
-
-
-
-
-
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
- CloudBlobContainer
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AzureStorageContainer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the blob name is invalid for local machine, this cmdlet will auto resovle it if it's possible.
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Download blob by name. --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageBlobContent -Container containername -Blob blob -Destination C:\test\
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Download blob content using pipeline from GetAzureStorageBlob. --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageBlob -Container containername -Blob blobname | Get-AzureStorageBlobContent
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Download blob content using pipeline from GetAzureStorageContainer. --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer container* | Get-AzureStorageBlobContent -Blob cbox.exe -Destination C:\test
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Set-AzureStorageBlobContent
-
-
-
-
- Get-AzureStorageBlob
-
-
-
-
- Remove-AzureStorageBlob
-
-
-
-
-
-
-
-
- Get-AzureStorageBlobCopyState
-
- Get copy state of the specified azure storage blob.
-
-
-
-
- Get
- AzureStorageBlobCopyState
-
-
-
-
- Get copy state of the specified azure storage blob.
-
-
-
- Get-AzureStorageBlobCopyState
-
- Blob
-
- Blob name.
-
- String
-
-
- Container
-
- Container name.
-
- String
-
-
- WaitForComplete
-
- Wait for the copy completion.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageBlobCopyState
-
- CloudBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
-
- WaitForComplete
-
- Wait for the copy completion.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageBlobCopyState
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
-
- Blob
-
- Blob name.
-
- String
-
-
- WaitForComplete
-
- Wait for the copy completion.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- Blob
-
- Blob name.
-
- String
-
- String
-
-
-
-
-
-
- Container
-
- Container name.
-
- String
-
- String
-
-
-
-
-
-
- WaitForComplete
-
- Wait for the copy completion.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- CloudBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
- CloudBlob
-
-
-
-
-
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
- CloudBlobContainer
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- CopyState
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Get Copy State by name. --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageBlobCopyState -Container containername -Blob blobname
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Get copy state using pipeline by GetAzureStorageBlob --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageBlob -Container containername -blob blobname | Get-AzureStorageBlobCopyState
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Get azure storage blob copy state using pipeline from GetAzureStorageContainer. --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer containername | Get-AzureStorageBlobCopyState -Blob blobname
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Start-AzureStorageBlobCopy
-
-
-
-
- Stop-AzureStorageBlobCopy
-
-
-
-
-
-
-
-
- Get-AzureStorageContainer
-
- List azure storage containers.
-
-
-
-
- Get
- AzureStorageContainer
-
-
-
-
- List azure storage containers.
-
-
-
- Get-AzureStorageContainer
-
- Name
-
- Container name. If container name is empty, this will list all the containers. Otherwise, this will list the containers whose name matched the name regular pattern.
-
- String
-
-
- MaxCount
-
- The max count of the containers that can return.
-
- Nullable`1[Int32]
-
-
- ContinuationToken
-
- Container list continuation token.
-
- BlobContinuationToken
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageContainer
-
- Prefix
-
- Container name prefix.
-
- String
-
-
- MaxCount
-
- The max count of the containers that can return.
-
- Nullable`1[Int32]
-
-
- ContinuationToken
-
- Container list continuation token.
-
- BlobContinuationToken
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- Name
-
- Container name. If container name is empty, this will list all the containers. Otherwise, this will list the containers whose name matched the name regular pattern.
-
- String
-
- String
-
-
-
-
-
-
- MaxCount
-
- The max count of the containers that can return.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ContinuationToken
-
- Container list continuation token.
-
- BlobContinuationToken
-
- BlobContinuationToken
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Prefix
-
- Container name prefix.
-
- String
-
- String
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Get azure storage blob by namne --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer container*
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Get azure storage container by container name prefix --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer -Prefix container
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- List all containers with maxCount and ContinuationToken --------------------------
-
-
-
-
- PS C:\> $maxReturn = 10000
+echo "Total $total blobs in container $containerName"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Remove-AzureStorageBlob
+
+
+
+ Get-AzureStorageBlobContent
+
+
+
+ Set-AzureStorageBlobContent
+
+
+
+
+
+
+
+ Get-AzureStorageBlobContent
+
+ Download the specified azure storage blob.
+
+
+
+
+ Get
+ AzureStorageBlobContent
+
+
+
+ Download the specified azure storage blob.
+
+
+
+ Get-AzureStorageBlobContent
+
+ Blob
+
+ Blob name.
+
+ String
+
+
+ Container
+
+ Container name.
+
+ String
+
+
+ Destination
+
+ Download destination file path.
+
+ String
+
+
+ CheckMd5
+
+ Whether check the md5 sum for downloaded file.
+
+ SwitchParameter
+
+
+ Force
+
+ Force to overwrite the existing file.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageBlobContent
+
+ CloudBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+
+ Destination
+
+ Download destination file path.
+
+ String
+
+
+ CheckMd5
+
+ Whether check the md5 sum for downloaded file.
+
+ SwitchParameter
+
+
+ Force
+
+ Force to overwrite the existing file.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageBlobContent
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+
+ Destination
+
+ Download destination file path.
+
+ String
+
+
+ CheckMd5
+
+ Whether check the md5 sum for downloaded file.
+
+ SwitchParameter
+
+
+ Force
+
+ Force to overwrite the existing file.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+ String
+
+
+
+
+
+ Container
+
+ Container name.
+
+ String
+
+ String
+
+
+
+
+
+ Destination
+
+ Download destination file path.
+
+ String
+
+ String
+
+
+
+
+
+ CheckMd5
+
+ Whether check the md5 sum for downloaded file.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+ False
+
+
+ Force
+
+ Force to overwrite the existing file.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+ ProcessorCount * 8
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ CloudBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+ CloudBlob
+
+
+
+
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+ CloudBlobContainer
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AzureStorageContainer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the blob name is invalid for local machine, this cmdlet will auto resovle it if it's possible.
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Download blob by name. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageBlobContent -Container containername -Blob blob -Destination C:\test\
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Download blob content using pipeline from GetAzureStorageBlob. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageBlob -Container containername -Blob blobname | Get-AzureStorageBlobContent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Download blob content using pipeline from GetAzureStorageContainer. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer container* | Get-AzureStorageBlobContent -Blob cbox.exe -Destination C:\test
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Set-AzureStorageBlobContent
+
+
+
+ Get-AzureStorageBlob
+
+
+
+ Remove-AzureStorageBlob
+
+
+
+
+
+
+
+ Get-AzureStorageBlobCopyState
+
+ Get copy state of the specified azure storage blob.
+
+
+
+
+ Get
+ AzureStorageBlobCopyState
+
+
+
+ Get copy state of the specified azure storage blob.
+
+
+
+ Get-AzureStorageBlobCopyState
+
+ Blob
+
+ Blob name.
+
+ String
+
+
+ Container
+
+ Container name.
+
+ String
+
+
+ WaitForComplete
+
+ Wait for the copy completion.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageBlobCopyState
+
+ CloudBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+
+ WaitForComplete
+
+ Wait for the copy completion.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageBlobCopyState
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+
+ WaitForComplete
+
+ Wait for the copy completion.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+ String
+
+
+
+
+
+ Container
+
+ Container name.
+
+ String
+
+ String
+
+
+
+
+
+ WaitForComplete
+
+ Wait for the copy completion.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ CloudBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+ CloudBlob
+
+
+
+
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+ CloudBlobContainer
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CopyState
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Get Copy State by name. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageBlobCopyState -Container containername -Blob blobname
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Get copy state using pipeline by GetAzureStorageBlob --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageBlob -Container containername -blob blobname | Get-AzureStorageBlobCopyState
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Get azure storage blob copy state using pipeline from GetAzureStorageContainer. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer containername | Get-AzureStorageBlobCopyState -Blob blobname
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Start-AzureStorageBlobCopy
+
+
+
+ Stop-AzureStorageBlobCopy
+
+
+
+
+
+
+
+ Get-AzureStorageContainer
+
+ List azure storage containers.
+
+
+
+
+ Get
+ AzureStorageContainer
+
+
+
+ List azure storage containers.
+
+
+
+ Get-AzureStorageContainer
+
+ Name
+
+ Container name. If container name is empty, this will list all the containers. Otherwise, this will list the containers whose name matched the name regular pattern.
+
+ String
+
+
+ MaxCount
+
+ The max count of the containers that can return.
+
+ Nullable`1[Int32]
+
+
+ ContinuationToken
+
+ Container list continuation token.
+
+ BlobContinuationToken
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageContainer
+
+ Prefix
+
+ Container name prefix.
+
+ String
+
+
+ MaxCount
+
+ The max count of the containers that can return.
+
+ Nullable`1[Int32]
+
+
+ ContinuationToken
+
+ Container list continuation token.
+
+ BlobContinuationToken
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ Container name. If container name is empty, this will list all the containers. Otherwise, this will list the containers whose name matched the name regular pattern.
+
+ String
+
+ String
+
+
+
+
+
+ MaxCount
+
+ The max count of the containers that can return.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ContinuationToken
+
+ Container list continuation token.
+
+ BlobContinuationToken
+
+ BlobContinuationToken
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Prefix
+
+ Container name prefix.
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Get azure storage blob by namne --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer container*
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Get azure storage container by container name prefix --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer -Prefix container
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- List all containers with maxCount and ContinuationToken --------------------------
+
+ PS C:\>
+
+ PS C:\> $maxReturn = 10000
$total = 0
@@ -1666,20550 +1830,23231 @@ do
}
while($token -ne $null)
-echo "Total $total containers"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- New-AzureStorageContainer
-
-
-
-
- Remove-AzureStorageContainer
-
-
-
-
- Set-AzureStorageContainerAcl
-
-
-
-
-
-
-
-
- Get-AzureStorageContainerStoredAccessPolicy
-
- List the specified Stored Access Policy for an azure storage container, or list all the Stored Access Policies for an azure storage container.
-
-
-
-
- Get
- AzureStorageContainerStoredAccessPolicy
-
-
-
-
- List the specified Stored Access Policy for an azure storage container, or list all the Stored Access Policies for an azure storage container.
-
-
-
- Get-AzureStorageContainerStoredAccessPolicy
-
- Container
-
- Azure storage container name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Container
-
- Azure storage container name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- List a stored access policy in container --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- List all the stored access policies in container --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainerStoredAccessPolicy -Container test
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- Get-AzureStorageCORSRule
-
- Retrieve the service CORS rules for a specific service type. If it succeeds, the cmdlet will return an array of CORS rule objects. You can add, remove, change this array of rule objects and set them back to service using Set-AzureStorageCORSRule cmdlet.
-
-
-
-
- Get
- AzureStorageCORSRule
-
-
-
- Get azure storage service CORS rules.
-
-
-
- Get-AzureStorageCORSRule
-
- ServiceType
-
- Azure storage service type, such as Blob, Table, Queue.
-
- StorageServiceType
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- ServiceType
-
- Azure storage service type, such as Blob, Table, Queue.
-
- StorageServiceType
-
- StorageServiceType
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- An array of PSCORSRule objects which represent the CORS rules currently set on the service.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Get CORS rules of blob service. --------------------------
-
- PS C:\>
-
- PS C:\> Get-AzureStorageCORSRule -ServiceType Blob
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageFile
-
- List the files and directories in the specified file share or directory, or return an instance of a directory or file in the specified path.
-
-
-
-
- Get
- AzureStorageFile
-
-
-
-
- If you omit the Path parameter, Get-AzureStorageFile lists the directories and files in the specified file share or directory. If you include the Path parameter, Get-AzureStorageFiles returns an instance of a directory or file in the specified path.
-
-
-
- Get-AzureStorageFile
-
- ShareName
-
- The file share name
-
- String
-
-
- Path
-
- The file or directory path
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageFile
-
- Share
-
- The file share object
-
- CloudFileShare
-
-
- Path
-
- The file or directory path
-
- String
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageFile
-
- Directory
-
- The file directory object
-
- CloudFileDirectory
-
-
- Path
-
- The file or directory path
-
- String
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageFile
-
- Path
-
- The file or directory path
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageFile
-
- Path
-
- The file or directory path
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- ShareName
-
- The file share name
-
- String
-
- String
-
-
-
-
-
-
- Path
-
- The file or directory path
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Share
-
- The file share object
-
- CloudFileShare
-
- CloudFileShare
-
-
-
-
-
-
- Directory
-
- The file directory object
-
- CloudFileDirectory
-
- CloudFileDirectory
-
-
-
-
-
-
- ClientRequestId
-
-
-
-
- string
-
- string
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Example 1 --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageShare -Name sample | Get-AzureStorageFile
-
- This example lists the files and directories under the sample file share.
-
-
-
-
-
-
-
-
-
- -------------------------- Example 2 --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageFile -FileShareName sample | ? IsDirectory
-
- This example lists the directories under sample file share.
-
-
-
-
-
-
-
-
-
-
-
- New-AzureStorageDirectory
-
-
-
-
- Remove-AzureStorageDirectory
-
-
-
-
- Remove-AzureStorageFile
-
-
-
-
- Get-AzureStorageFileContent
-
-
-
-
- Set-AzureStorageFileContent
-
-
-
-
-
-
-
-
- Get-AzureStorageFileContent
-
- Download the specified azure storage file.
-
-
-
-
- Get
- AzureStorageFileContent
-
-
-
-
- Download the specified azure storage file.
-
-
-
- Get-AzureStorageFileContent
-
- ShareName
-
- The file share name
-
- String
-
-
- Path
-
- the path of the azure storage file to download
-
- String
-
-
- Destination
-
- The destination to put the downloaded file
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the local file when there is name conflict.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Get-AzureStorageFileContent
-
- Share
-
- The file share object
-
- CloudFileShare
-
-
- Path
-
- the path of the azure storage file to download
-
- String
-
-
- Destination
-
- The destination to put the downloaded file
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the local file when there is name conflict.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Get-AzureStorageFileContent
-
- Directory
-
-
-
-
- CloudFileDirectory
-
-
- Path
-
- the path of the azure storage file to download
-
- String
-
-
- Destination
-
- The destination to put the downloaded file
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the local file when there is name conflict.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Get-AzureStorageFileContent
-
- File
-
- The file object
-
- CloudFile
-
-
- Destination
-
- The destination to put the downloaded file
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the local file when there is name conflict.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Get-AzureStorageFileContent
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the local file when there is name conflict.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Get-AzureStorageFileContent
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the local file when there is name conflict.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
-
-
- ShareName
-
- The file share name
-
- String
-
- String
-
-
-
-
-
-
- Path
-
- the path of the azure storage file to download
-
- String
-
- String
-
-
-
-
-
-
- Destination
-
- The destination to put the downloaded file
-
- String
-
- String
-
-
-
-
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Force
-
- If this parameter is set, it will overwrite the local file when there is name conflict.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Share
-
- The file share object
-
- CloudFileShare
-
- CloudFileShare
-
-
-
-
-
-
- Directory
-
-
-
-
- CloudFileDirectory
-
- CloudFileDirectory
-
-
-
-
-
-
- File
-
- The file object
-
- CloudFile
-
- CloudFile
-
-
-
-
-
-
- ClientRequestId
-
-
-
-
- string
-
- string
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Example 1 --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageFileContent -ShareName sample -FilePath sampledir/samplefile
-
- This example downloads the file whose path is sampledir/samplefile in the sample file share.
-
-
-
-
-
-
-
-
-
- -------------------------- Example 2 --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageFile -ShareName sample | ? IsFile | Get-AzureStorageFileContent
-
- This example downloads the files under sample file share
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageFile
-
-
-
-
- Set-AzureStorageFileContent
-
-
-
-
-
-
-
-
- Get-AzureStorageFileCopyState
-
- Get copy state of the specified azure storage file.
-
-
-
-
- Get
- AzureStorageFileCopyState
-
-
-
- Get copy state of the specified azure storage file.
-
-
-
- Get-AzureStorageFileCopyState
-
- ShareName
-
- Azure storage share name.
-
- String
-
-
- FilePath
-
- Relative path in azure storage share to the azure storage file.
-
- String
-
-
- WaitForComplete
-
- Wait for the copy completion.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
- Get-AzureStorageFileCopyState
-
- File
-
- CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
-
- CloudFile
-
-
- WaitForComplete
-
- Wait for the copy completion.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
- Get-AzureStorageFileCopyState
-
- WaitForComplete
-
- Wait for the copy completion.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
- Get-AzureStorageFileCopyState
-
- WaitForComplete
-
- Wait for the copy completion.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
-
-
- ShareName
-
- Azure storage share name.
-
- String
-
- String
-
-
-
-
-
-
- FilePath
-
- Relative path in azure storage share to the azure storage file.
-
- String
-
- String
-
-
-
-
-
-
- WaitForComplete
-
- Wait for the copy completion.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Profile
-
-
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
- File
-
- CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
-
- CloudFile
-
- CloudFile
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Get copy state by name. --------------------------
-
- PS C:\>
-
- PS C:\> Get-AzureStorageFileCopyState -ShareName share -FilePath filePath
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageQueue
-
- list azure storage queues
-
-
-
-
- Get
- AzureStorageQueue
-
-
-
-
- list azure storage queues
-
-
-
- Get-AzureStorageQueue
-
- Name
-
- Queue name. If queue name is empty, this will list all the queues. Otherwise, this will list the queues whose name matched the name regular pattern.
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
- Get-AzureStorageQueue
-
- Prefix
-
- Queue name prefix
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Name
-
- Queue name. If queue name is empty, this will list all the queues. Otherwise, this will list the queues whose name matched the name regular pattern.
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- Prefix
-
- Queue name prefix
-
- String
-
- String
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- List all azure storage queues --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageQueue
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- List azure storage queues using wildcard --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageQueue queue*
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- List azure storage queues using queue name prefix --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageQueue -Prefix queue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageQueueStoredAccessPolicy
-
- List the specified Stored Access Policy for an azure storage queue, or list all the Stored Access Policies for an azure storage queue.
-
-
-
-
- Get
- AzureStorageQueueStoredAccessPolicy
-
-
-
-
- List the specified Stored Access Policy for an azure storage queue, or list all the Stored Access Policies for an azure storage queue.
-
-
-
- Get-AzureStorageQueueStoredAccessPolicy
-
- Queue
-
- Azure storage queue name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Queue
-
- Azure storage queue name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- List a stored access policy in queue --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- List all the stored access policies in queue --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageQueueStoredAccessPolicy -Queue test
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/dn806375.aspx
-
-
-
-
-
-
- Get-AzureStorageServiceLoggingProperty
-
- Get azure storage service logging properties.
-
-
-
-
- Get
- AzureStorageServiceLoggingProperty
-
-
-
-
- Get azure storage service logging properties.
-
-
-
- Get-AzureStorageServiceLoggingProperty
-
- ServiceType
-
- Azure storage service type.
-
- StorageServiceType
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- ServiceType
-
- Azure storage service type.
-
- StorageServiceType
-
- StorageServiceType
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Get azure storage blob service logging properties. --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageServiceLoggingProperty -ServiceType Blob
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageServiceMetricsProperty
-
- Get azure storage service metrics properties.
-
-
-
-
- Get
- AzureStorageServiceMetricsProperty
-
-
-
-
- Get azure storage service metrics properties.
-
-
-
- Get-AzureStorageServiceMetricsProperty
-
- ServiceType
-
- Azure storage service type.
-
- StorageServiceType
-
-
- MetricsType
-
- Metrics type.
-
- ServiceMetricsType
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- ServiceType
-
- Azure storage service type.
-
- StorageServiceType
-
- StorageServiceType
-
-
-
-
-
-
- MetricsType
-
- Metrics type.
-
- ServiceMetricsType
-
- ServiceMetricsType
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Get hour metrics properties for azure storage blob service. --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageServiceMetricsProperty -ServiceType Blob -MetricsType Hour
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/dn806390.aspx
-
-
-
-
-
-
- Get-AzureStorageShare
-
- List azure storage file shares.
-
-
-
-
- Get
- AzureStorageShare
-
-
-
-
- List azure storage file shares.
-
-
-
- Get-AzureStorageShare
-
- Prefix
-
- The file share name prefix. The Prefix parameter doesn't support regular expression.
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageShare
-
- Name
-
- The file share name
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Get-AzureStorageShare
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- Prefix
-
- The file share name prefix. The Prefix parameter doesn't support regular expression.
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Name
-
- The file share name
-
- String
-
- String
-
-
-
-
-
-
- ClientRequestId
-
-
-
-
- string
-
- string
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Example 1 --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageShare -Name sample
-
- This example gets a file share named sample.
-
-
-
-
-
-
-
-
-
- -------------------------- Example 2 --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageShare -Prefix sample
-
- This example lists all file shares whose names begin with the specified prefix.
-
-
-
-
-
-
-
-
-
-
-
- New-AzureStorageShare
-
-
-
-
- Remove-AzureStorageShare
-
-
-
-
-
-
-
-
- Get-AzureStorageShareStoredAccessPolicy
-
- Get the specified Stored Access Policy for an azure storage share, or list all the Stored Access Policies for an azure storage share.
-
-
-
-
- Get
- AzureStorageShareStoredAccessPolicy
-
-
-
- Get the specified Stored Access Policy for an azure storage share, or list all the Stored Access Policies for an azure storage share.
-
-
-
- Get-AzureStorageShareStoredAccessPolicy
-
- ShareName
-
- Azure storage share name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy name.
-
- String
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
-
-
- ShareName
-
- Azure storage share name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy name.
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Profile
-
-
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- List a stored access policy in share --------------------------
-
- PS C:\>
-
- PS C:\> Get-AzureStorageShareStoredAccessPolicy -ShareName test -Policy testPolicy
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- List all the stored access policies in share --------------------------
-
- PS C:\>
-
- PS C:\> Get-AzureStorageShareStoredAccessPolicy -ShareName test
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageTable
-
- List azure storage tables
-
-
-
-
- Get
- AzureStorageTable
-
-
-
-
- List azure storage tables
-
-
-
- Get-AzureStorageTable
-
- Name
-
- Table name. If table name is empty, this will list all the queues. Otherwise, this will list the tables whose name matched the name regular pattern.
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
- Get-AzureStorageTable
-
- Prefix
-
- Table name prefix
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Name
-
- Table name. If table name is empty, this will list all the queues. Otherwise, this will list the tables whose name matched the name regular pattern.
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- Prefix
-
- Table name prefix
-
- String
-
- String
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- List all azure storage tables --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageTable
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- List azure storage tables using wildcard --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageTable table*
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- List azure storage tables using table name prefix --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageTable -Prefix table
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageTableStoredAccessPolicy
-
- List the specified Stored Access Policy for an azure storage table, or list all the Stored Access Policies for an azure storage tabel.
-
-
-
-
- Get
- AzureStorageTableStoredAccessPolicy
-
-
-
-
- List the specified Stored Access Policy for an azure storage table, or list all the Stored Access Policies for an azure storage tabel.
-
-
-
- Get-AzureStorageTableStoredAccessPolicy
-
- Table
-
- Azure storage table name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Table
-
- Azure storage table name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- List a stored access policy in table --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- List all the stored access policies in table --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageTableStoredAccessPolicy -Table test
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- New-AzureStorageBlobSASToken
-
- Generate Shared Access Signature token for azure storage blob.
-
-
-
-
- New
- AzureStorageBlobSASToken
-
-
-
-
- Generate Shared Access Signature token for azure storage blob.
-
-
-
- New-AzureStorageBlobSASToken
-
- Container
-
- Azure storage container name.
-
- String
-
-
- Blob
-
- Azure storage blob name.
-
- String
-
-
- Permission
-
- Permissions for a storage blob.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full blob uri with sas token.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
- New-AzureStorageBlobSASToken
-
- CloudBlob
-
- CloudBlob object
-
- CloudBlob
-
-
- Permission
-
- Permissions for a storage blob.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full blob uri with sas token.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
- New-AzureStorageBlobSASToken
-
- CloudBlob
-
- CloudBlob object
-
- CloudBlob
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full blob uri with sas token.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
- New-AzureStorageBlobSASToken
-
- Container
-
- Azure storage container name.
-
- String
-
-
- Blob
-
- Azure storage blob name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full blob uri with sas token.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Container
-
- Azure storage container name.
-
- String
-
- String
-
-
-
-
-
-
- Blob
-
- Azure storage blob name.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Permissions for a storage blob.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- FullUri
-
- Return the full blob uri with sas token.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- CloudBlob
-
- CloudBlob object
-
- CloudBlob
-
- CloudBlob
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Generate a blob sas token with full blob permission. --------------------------
-
-
-
-
- PS C:\> New-AzureStorageBlobSASToken -Container cname -Blob bname -Permission rwd
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Generate a blob sas token with life time. --------------------------
-
-
-
-
- PS C:\> $startTime = Get-Date
+echo "Total $total containers"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageContainer
+
+
+
+ Remove-AzureStorageContainer
+
+
+
+ Set-AzureStorageContainerAcl
+
+
+
+
+
+
+
+ Get-AzureStorageContainerStoredAccessPolicy
+
+ List the specified Stored Access Policy for an azure storage container, or list all the Stored Access Policies for an azure storage container.
+
+
+
+
+ Get
+ AzureStorageContainerStoredAccessPolicy
+
+
+
+ List the specified Stored Access Policy for an azure storage container, or list all the Stored Access Policies for an azure storage container.
+
+
+
+ Get-AzureStorageContainerStoredAccessPolicy
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- List a stored access policy in container --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- List all the stored access policies in container --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainerStoredAccessPolicy -Container test
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ Get-AzureStorageCORSRule
+
+ Retrieve the service CORS rules for a specific service type. If it succeeds, the cmdlet will return an array of CORS rule objects. You can add, remove, change this array of rule objects and set them back to service using Set-AzureStorageCORSRule cmdlet.
+
+
+
+
+ Get
+ AzureStorageCORSRule
+
+
+
+ Get azure storage service CORS rules.
+
+
+
+ Get-AzureStorageCORSRule
+
+ ServiceType
+
+ Azure storage service type, such as Blob, Table, Queue.
+
+ StorageServiceType
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ServiceType
+
+ Azure storage service type, such as Blob, Table, Queue.
+
+ StorageServiceType
+
+ StorageServiceType
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An array of PSCORSRule objects which represent the CORS rules currently set on the service.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Get CORS rules of blob service. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageCORSRule -ServiceType Blob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageFile
+
+ List the files and directories in the specified file share or directory, or return an instance of a directory or file in the specified path.
+
+
+
+
+ Get
+ AzureStorageFile
+
+
+
+ If you omit the Path parameter, Get-AzureStorageFile lists the directories and files in the specified file share or directory. If you include the Path parameter, Get-AzureStorageFiles returns an instance of a directory or file in the specified path.
+
+
+
+ Get-AzureStorageFile
+
+ ShareName
+
+ The file share name
+
+ String
+
+
+ Path
+
+ The file or directory path
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageFile
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+
+ Path
+
+ The file or directory path
+
+ String
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageFile
+
+ Directory
+
+ The file directory object
+
+ CloudFileDirectory
+
+
+ Path
+
+ The file or directory path
+
+ String
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageFile
+
+ Path
+
+ The file or directory path
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageFile
+
+ Path
+
+ The file or directory path
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ShareName
+
+ The file share name
+
+ String
+
+ String
+
+
+
+
+
+ Path
+
+ The file or directory path
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+ CloudFileShare
+
+
+
+
+
+ Directory
+
+ The file directory object
+
+ CloudFileDirectory
+
+ CloudFileDirectory
+
+
+
+
+
+ ClientRequestId
+
+
+
+ string
+
+ string
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Example 1 --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageShare -Name sample | Get-AzureStorageFile
+
+ This example lists the files and directories under the sample file share.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Example 2 --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageFile -FileShareName sample | ? IsDirectory
+
+ This example lists the directories under sample file share.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageDirectory
+
+
+
+ Remove-AzureStorageDirectory
+
+
+
+ Remove-AzureStorageFile
+
+
+
+ Get-AzureStorageFileContent
+
+
+
+ Set-AzureStorageFileContent
+
+
+
+
+
+
+
+ Get-AzureStorageFileContent
+
+ Download the specified azure storage file.
+
+
+
+
+ Get
+ AzureStorageFileContent
+
+
+
+ Download the specified azure storage file.
+
+
+
+ Get-AzureStorageFileContent
+
+ ShareName
+
+ The file share name
+
+ String
+
+
+ Path
+
+ the path of the azure storage file to download
+
+ String
+
+
+ Destination
+
+ The destination to put the downloaded file
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the local file when there is name conflict.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Get-AzureStorageFileContent
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+
+ Path
+
+ the path of the azure storage file to download
+
+ String
+
+
+ Destination
+
+ The destination to put the downloaded file
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the local file when there is name conflict.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Get-AzureStorageFileContent
+
+ Directory
+
+
+
+ CloudFileDirectory
+
+
+ Path
+
+ the path of the azure storage file to download
+
+ String
+
+
+ Destination
+
+ The destination to put the downloaded file
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the local file when there is name conflict.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Get-AzureStorageFileContent
+
+ File
+
+ The file object
+
+ CloudFile
+
+
+ Destination
+
+ The destination to put the downloaded file
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the local file when there is name conflict.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Get-AzureStorageFileContent
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the local file when there is name conflict.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Get-AzureStorageFileContent
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the local file when there is name conflict.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ ShareName
+
+ The file share name
+
+ String
+
+ String
+
+
+
+
+
+ Path
+
+ the path of the azure storage file to download
+
+ String
+
+ String
+
+
+
+
+
+ Destination
+
+ The destination to put the downloaded file
+
+ String
+
+ String
+
+
+
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Force
+
+ If this parameter is set, it will overwrite the local file when there is name conflict.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+ CloudFileShare
+
+
+
+
+
+ Directory
+
+
+
+ CloudFileDirectory
+
+ CloudFileDirectory
+
+
+
+
+
+ File
+
+ The file object
+
+ CloudFile
+
+ CloudFile
+
+
+
+
+
+ ClientRequestId
+
+
+
+ string
+
+ string
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Example 1 --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageFileContent -ShareName sample -FilePath sampledir/samplefile
+
+ This example downloads the file whose path is sampledir/samplefile in the sample file share.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Example 2 --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageFile -ShareName sample | ? IsFile | Get-AzureStorageFileContent
+
+ This example downloads the files under sample file share
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageFile
+
+
+
+ Set-AzureStorageFileContent
+
+
+
+
+
+
+
+ Get-AzureStorageFileCopyState
+
+ Get copy state of the specified azure storage file.
+
+
+
+
+ Get
+ AzureStorageFileCopyState
+
+
+
+ Get copy state of the specified azure storage file.
+
+
+
+ Get-AzureStorageFileCopyState
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+
+ FilePath
+
+ Relative path in azure storage share to the azure storage file.
+
+ String
+
+
+ WaitForComplete
+
+ Wait for the copy completion.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageFileCopyState
+
+ File
+
+ CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
+
+ CloudFile
+
+
+ WaitForComplete
+
+ Wait for the copy completion.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageFileCopyState
+
+ WaitForComplete
+
+ Wait for the copy completion.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageFileCopyState
+
+ WaitForComplete
+
+ Wait for the copy completion.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+ String
+
+
+
+
+
+ FilePath
+
+ Relative path in azure storage share to the azure storage file.
+
+ String
+
+ String
+
+
+
+
+
+ WaitForComplete
+
+ Wait for the copy completion.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ File
+
+ CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
+
+ CloudFile
+
+ CloudFile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Get copy state by name. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageFileCopyState -ShareName share -FilePath filePath
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageQueue
+
+ list azure storage queues
+
+
+
+
+ Get
+ AzureStorageQueue
+
+
+
+ list azure storage queues
+
+
+
+ Get-AzureStorageQueue
+
+ Name
+
+ Queue name. If queue name is empty, this will list all the queues. Otherwise, this will list the queues whose name matched the name regular pattern.
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageQueue
+
+ Prefix
+
+ Queue name prefix
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ Queue name. If queue name is empty, this will list all the queues. Otherwise, this will list the queues whose name matched the name regular pattern.
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Prefix
+
+ Queue name prefix
+
+ String
+
+ String
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- List all azure storage queues --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageQueue
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- List azure storage queues using wildcard --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageQueue queue*
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- List azure storage queues using queue name prefix --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageQueue -Prefix queue
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageQueueStoredAccessPolicy
+
+ List the specified Stored Access Policy for an azure storage queue, or list all the Stored Access Policies for an azure storage queue.
+
+
+
+
+ Get
+ AzureStorageQueueStoredAccessPolicy
+
+
+
+ List the specified Stored Access Policy for an azure storage queue, or list all the Stored Access Policies for an azure storage queue.
+
+
+
+ Get-AzureStorageQueueStoredAccessPolicy
+
+ Queue
+
+ Azure storage queue name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Queue
+
+ Azure storage queue name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- List a stored access policy in queue --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- List all the stored access policies in queue --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageQueueStoredAccessPolicy -Queue test
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/dn806375.aspx
+
+
+
+
+
+
+ Get-AzureStorageServiceLoggingProperty
+
+ Get azure storage service logging properties.
+
+
+
+
+ Get
+ AzureStorageServiceLoggingProperty
+
+
+
+ Get azure storage service logging properties.
+
+
+
+ Get-AzureStorageServiceLoggingProperty
+
+ ServiceType
+
+ Azure storage service type.
+
+ StorageServiceType
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ServiceType
+
+ Azure storage service type.
+
+ StorageServiceType
+
+ StorageServiceType
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Get azure storage blob service logging properties. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageServiceLoggingProperty -ServiceType Blob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageServiceMetricsProperty
+
+ Get azure storage service metrics properties.
+
+
+
+
+ Get
+ AzureStorageServiceMetricsProperty
+
+
+
+ Get azure storage service metrics properties.
+
+
+
+ Get-AzureStorageServiceMetricsProperty
+
+ ServiceType
+
+ Azure storage service type.
+
+ StorageServiceType
+
+
+ MetricsType
+
+ Metrics type.
+
+ ServiceMetricsType
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ServiceType
+
+ Azure storage service type.
+
+ StorageServiceType
+
+ StorageServiceType
+
+
+
+
+
+ MetricsType
+
+ Metrics type.
+
+ ServiceMetricsType
+
+ ServiceMetricsType
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Get hour metrics properties for azure storage blob service. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageServiceMetricsProperty -ServiceType Blob -MetricsType Hour
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/dn806390.aspx
+
+
+
+
+
+
+ Get-AzureStorageShare
+
+ List azure storage file shares.
+
+
+
+
+ Get
+ AzureStorageShare
+
+
+
+ List azure storage file shares.
+
+
+
+ Get-AzureStorageShare
+
+ Prefix
+
+ The file share name prefix. The Prefix parameter doesn't support regular expression.
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageShare
+
+ Name
+
+ The file share name
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageShare
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Prefix
+
+ The file share name prefix. The Prefix parameter doesn't support regular expression.
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Name
+
+ The file share name
+
+ String
+
+ String
+
+
+
+
+
+ ClientRequestId
+
+
+
+ string
+
+ string
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Example 1 --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageShare -Name sample
+
+ This example gets a file share named sample.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Example 2 --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageShare -Prefix sample
+
+ This example lists all file shares whose names begin with the specified prefix.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageShare
+
+
+
+ Remove-AzureStorageShare
+
+
+
+
+
+
+
+ Get-AzureStorageShareStoredAccessPolicy
+
+ Get the specified Stored Access Policy for an azure storage share, or list all the Stored Access Policies for an azure storage share.
+
+
+
+
+ Get
+ AzureStorageShareStoredAccessPolicy
+
+
+
+ Get the specified Stored Access Policy for an azure storage share, or list all the Stored Access Policies for an azure storage share.
+
+
+
+ Get-AzureStorageShareStoredAccessPolicy
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy name.
+
+ String
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy name.
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- List a stored access policy in share --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageShareStoredAccessPolicy -ShareName test -Policy testPolicy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- List all the stored access policies in share --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageShareStoredAccessPolicy -ShareName test
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageTable
+
+ List azure storage tables
+
+
+
+
+ Get
+ AzureStorageTable
+
+
+
+ List azure storage tables
+
+
+
+ Get-AzureStorageTable
+
+ Name
+
+ Table name. If table name is empty, this will list all the queues. Otherwise, this will list the tables whose name matched the name regular pattern.
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Get-AzureStorageTable
+
+ Prefix
+
+ Table name prefix
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ Table name. If table name is empty, this will list all the queues. Otherwise, this will list the tables whose name matched the name regular pattern.
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Prefix
+
+ Table name prefix
+
+ String
+
+ String
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- List all azure storage tables --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageTable
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- List azure storage tables using wildcard --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageTable table*
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- List azure storage tables using table name prefix --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageTable -Prefix table
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageTableStoredAccessPolicy
+
+ List the specified Stored Access Policy for an azure storage table, or list all the Stored Access Policies for an azure storage tabel.
+
+
+
+
+ Get
+ AzureStorageTableStoredAccessPolicy
+
+
+
+ List the specified Stored Access Policy for an azure storage table, or list all the Stored Access Policies for an azure storage tabel.
+
+
+
+ Get-AzureStorageTableStoredAccessPolicy
+
+ Table
+
+ Azure storage table name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Table
+
+ Azure storage table name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- List a stored access policy in table --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- List all the stored access policies in table --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageTableStoredAccessPolicy -Table test
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ New-AzureStorageAccountSASToken
+
+ Generate Shared Access Signature token for azure storage account.
+
+
+
+
+ New
+ AzureStorageAccountSASToken
+
+
+
+ Generate Shared Access Signature token for azure storage account.
+
+
+
+ New-AzureStorageAccountSASToken
+
+ Service
+
+ Azure storage service type, such as Blob, Table, Queue, File.
+
+ SharedAccessAccountServices
+
+
+ ResourceType
+
+ The resource types that are accessible with the account SAS, such as Service, Container, Object.
+
+ SharedAccessAccountResourceTypes
+
+
+ Permission
+
+ Permissions for a storage account. Permissions are only valid if they match the specified resource type; otherwise they are ignored.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Service
+
+ Azure storage service type, such as Blob, Table, Queue, File.
+
+ SharedAccessAccountServices
+
+ SharedAccessAccountServices
+
+
+
+
+
+ ResourceType
+
+ The resource types that are accessible with the account SAS, such as Service, Container, Object.
+
+ SharedAccessAccountResourceTypes
+
+ SharedAccessAccountResourceTypes
+
+
+
+
+
+ Permission
+
+ Permissions for a storage account. Permissions are only valid if they match the specified resource type; otherwise they are ignored.
+
+ String
+
+ String
+
+
+
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+ SharedAccessProtocol
+
+
+
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate an account sas token with full permission. --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageAccountSASToken -Service Blob,File,Table,Queue -ResourceType Service,Container,Object -Permission racwdlup
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate an account sas token which only allow https request from specific range of IP addresses. --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageAccountSASToken -Service Blob,File,Table,Queue -ResourceType Service,Container,Object -Permission racwdlup -Protocol HttpsOnly -IPAddressOrRange 168.1.5.60-168.1.5.70
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageBlobSASToken
+
+ Generate Shared Access Signature token for azure storage blob.
+
+
+
+
+ New
+ AzureStorageBlobSASToken
+
+
+
+ Generate Shared Access Signature token for azure storage blob.
+
+
+
+ New-AzureStorageBlobSASToken
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+
+ Blob
+
+ Azure storage blob name.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage blob.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full blob uri with sas token.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageBlobSASToken
+
+ CloudBlob
+
+ CloudBlob object
+
+ CloudBlob
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full blob uri with sas token.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageBlobSASToken
+
+ CloudBlob
+
+ CloudBlob object
+
+ CloudBlob
+
+
+ Permission
+
+ Permissions for a storage blob.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full blob uri with sas token.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageBlobSASToken
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+
+ Blob
+
+ Azure storage blob name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full blob uri with sas token.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+ String
+
+
+
+
+
+ Blob
+
+ Azure storage blob name.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage blob.
+
+ String
+
+ String
+
+
+
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+ SharedAccessProtocol
+
+
+
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ FullUri
+
+ Return the full blob uri with sas token.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ CloudBlob
+
+ CloudBlob object
+
+ CloudBlob
+
+ CloudBlob
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Generate a blob sas token with full blob permission. --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageBlobSASToken -Container cname -Blob bname -Permission rwd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate a blob sas token with life time. --------------------------
+
+ PS C:\>
+
+ PS C:\> $startTime = Get-Date
$endTime = $startTime.AddHours(2.0)
New-AzureStorageBlobSASToken -Container cname -Blob bname -Permission rwd -StartTime $startTime -ExpiryTime $endTime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/dn806412.aspx
-
-
-
-
-
-
- New-AzureStorageContainer
-
- Create an azure storage container.
-
-
-
-
- New
- AzureStorageContainer
-
-
-
-
- Create an azure storage container.
-
-
-
- New-AzureStorageContainer
-
- Name
-
- Container name.
-
- String
-
-
- Permission
-
- Container public access permission (Off/Blob/Container).
-
- Nullable`1[BlobContainerPublicAccessType]
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- Name
-
- Container name.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Container public access permission (Off/Blob/Container).
-
- Nullable`1[BlobContainerPublicAccessType]
-
- Nullable`1[BlobContainerPublicAccessType]
-
-
- Off
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Create a new azure storage container --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContainer containername -Permission Off
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Create multiple azure storage containers. --------------------------
-
-
-
-
- PS C:\> "container1 container2 container3".split() | New-AzureStorageContainer -Permission Container
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageContainer
-
-
-
-
- Remove-AzureStorageContainer
-
-
-
-
- Set-AzureStorageContainerAcl
-
-
-
-
-
-
-
-
- New-AzureStorageContainerSASToken
-
- Generate Shared Access Signature token for azure storage container.
-
-
-
-
- New
- AzureStorageContainerSASToken
-
-
-
-
- Generate Shared Access Signature token for azure storage container.
-
-
-
- New-AzureStorageContainerSASToken
-
- Name
-
- Azure storage container name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full container uri with sas token.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
- New-AzureStorageContainerSASToken
-
- Name
-
- Azure storage container name.
-
- String
-
-
- Permission
-
- Permissions for a storage container.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full container uri with sas token.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Name
-
- Azure storage container name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- FullUri
-
- Return the full container uri with sas token.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- Permission
-
- Permissions for a storage container.
-
- String
-
- String
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Generate a container sas token with full container permission. --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContainerSASToken -Name test -Permission rwdl
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Generate multiple container sas token by pipeline --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer -Container test* | New-AzureStorageContainerSASToken -Permission rwdl
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Generate container sas token with shared access policy --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContainerSASToken -Name test -Policy policyName
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/dn806416.aspx
-
-
-
-
-
-
- New-AzureStorageContainerStoredAccessPolicy
-
- Create Stored Access Policy for azure storage container.
-
-
-
-
- New
- AzureStorageContainerStoredAccessPolicy
-
-
-
-
- Create Stored Access Policy for azure storage container.
-
-
-
- New-AzureStorageContainerStoredAccessPolicy
-
- Container
-
- Azure storage container name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Permission
-
- Permissions for a storage container.
-
- String
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Container
-
- Azure storage container name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Permissions for a storage container.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Create a stored access policy in container with full permission --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy -Permission rwdl
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- New-AzureStorageContext
-
- Create an azure storage context using azure storage credentials.
-
-
-
-
- New
- AzureStorageContext
-
-
-
-
- Create an azure storage context using azure storage credentials.
-
-
-
- New-AzureStorageContext
-
- StorageAccountName
-
- Azure storage account name
-
- String
-
-
- StorageAccountKey
-
- Azure storage account key.
-
- String
-
-
- Protocol
-
- Transfer Protocol (https/http).
-
- String
-
-
- Endpoint
-
- Azure Storage Endpoint.
-
- String
-
-
-
- New-AzureStorageContext
-
- StorageAccountName
-
- Azure storage account name
-
- String
-
-
- Anonymous
-
- Anonymous storage account.
-
- SwitchParameter
-
-
- Protocol
-
- Transfer Protocol (https/http).
-
- String
-
-
- Endpoint
-
- Azure Storage Endpoint.
-
- String
-
-
-
- New-AzureStorageContext
-
- StorageAccountName
-
- Azure storage account name
-
- String
-
-
- SasToken
-
-
-
-
- String
-
-
- Environment
-
- Azure Environment
-
- String
-
-
-
- New-AzureStorageContext
-
- StorageAccountName
-
- Azure storage account name
-
- String
-
-
- Anonymous
-
- Anonymous storage account.
-
- SwitchParameter
-
-
- Protocol
-
- Transfer Protocol (https/http).
-
- String
-
-
- Environment
-
- Azure Environment
-
- String
-
-
-
- New-AzureStorageContext
-
- StorageAccountName
-
- Azure storage account name
-
- String
-
-
- StorageAccountKey
-
- Azure storage account key.
-
- String
-
-
- Protocol
-
- Transfer Protocol (https/http).
-
- String
-
-
- Environment
-
- Azure Environment
-
- String
-
-
-
- New-AzureStorageContext
-
- StorageAccountName
-
- Azure storage account name
-
- String
-
-
- SasToken
-
-
-
-
- String
-
-
- Protocol
-
- Transfer Protocol (https/http).
-
- String
-
-
- Endpoint
-
- Azure Storage Endpoint.
-
- String
-
-
-
- New-AzureStorageContext
-
- ConnectionString
-
- Azure storage connection string.
-
- String
-
-
-
- New-AzureStorageContext
-
- Local
-
- Local development storage account.
-
- SwitchParameter
-
-
-
-
-
- StorageAccountName
-
- Azure storage account name
-
- String
-
- String
-
-
-
-
-
-
- StorageAccountKey
-
- Azure storage account key.
-
- String
-
- String
-
-
-
-
-
-
- Protocol
-
- Transfer Protocol (https/http).
-
- String
-
- String
-
-
- Https
-
-
- Endpoint
-
- Azure Storage Endpoint.
-
- String
-
- String
-
-
-
-
-
-
- Anonymous
-
- Anonymous storage account.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- SasToken
-
-
-
-
- String
-
- String
-
-
-
-
-
-
- Environment
-
- Azure Environment
-
- String
-
- String
-
-
- AzureCloud | AzureChinaCloud
-
-
- ConnectionString
-
- Azure storage connection string.
-
- String
-
- String
-
-
-
-
-
-
- Local
-
- Local development storage account.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AzureStorageContext
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Use storage account name and key --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContext -StorageAccountName name -StorageAccountKey key
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Use connection string --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContext -ConnnectionString connectionstring
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Use anonymous storage accont. --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContext -StorageAccountName account -Anonymous -Protocol http
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Use local development storage account --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContext -Local
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Use NewAzureSotrageContext cmdlet with other storage cmdlet. --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContext -Local | Get-AzureStorageContainer
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Use multiple storage context. --------------------------
-
-
-
-
- PS C:\> $context1 = New-AzureStorageContext -Local
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/dn806412.aspx
+
+
+
+
+
+
+ New-AzureStorageContainer
+
+ Create an azure storage container.
+
+
+
+
+ New
+ AzureStorageContainer
+
+
+
+ Create an azure storage container.
+
+
+
+ New-AzureStorageContainer
+
+ Name
+
+ Container name.
+
+ String
+
+
+ Permission
+
+ Container public access permission (Off/Blob/Container).
+
+ Nullable`1[BlobContainerPublicAccessType]
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ Container name.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Container public access permission (Off/Blob/Container).
+
+ Nullable`1[BlobContainerPublicAccessType]
+
+ Nullable`1[BlobContainerPublicAccessType]
+
+
+ Off
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Create a new azure storage container --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContainer containername -Permission Off
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Create multiple azure storage containers. --------------------------
+
+ PS C:\>
+
+ PS C:\> "container1 container2 container3".split() | New-AzureStorageContainer -Permission Container
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageContainer
+
+
+
+ Remove-AzureStorageContainer
+
+
+
+ Set-AzureStorageContainerAcl
+
+
+
+
+
+
+
+ New-AzureStorageContainerSASToken
+
+ Generate Shared Access Signature token for azure storage container.
+
+
+
+
+ New
+ AzureStorageContainerSASToken
+
+
+
+ Generate Shared Access Signature token for azure storage container.
+
+
+
+ New-AzureStorageContainerSASToken
+
+ Name
+
+ Azure storage container name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full container uri with sas token.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageContainerSASToken
+
+ Name
+
+ Azure storage container name.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage container.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full container uri with sas token.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ Azure storage container name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+ SharedAccessProtocol
+
+
+
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ FullUri
+
+ Return the full container uri with sas token.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage container.
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Generate a container sas token with full container permission. --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContainerSASToken -Name test -Permission rwdl
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate multiple container sas token by pipeline --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer -Container test* | New-AzureStorageContainerSASToken -Permission rwdl
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate container sas token with shared access policy --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContainerSASToken -Name test -Policy policyName
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageContainerSASToken
+ http://msdn.microsoft.com/en-us/library/dn806416.aspx
+
+
+
+
+
+
+ New-AzureStorageContainerStoredAccessPolicy
+
+ Create Stored Access Policy for azure storage container.
+
+
+
+
+ New
+ AzureStorageContainerStoredAccessPolicy
+
+
+
+ Create Stored Access Policy for azure storage container.
+
+
+
+ New-AzureStorageContainerStoredAccessPolicy
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage container.
+
+ String
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage container.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Create a stored access policy in container with full permission --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy -Permission rwdl
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ New-AzureStorageContext
+
+ Create an azure storage context using azure storage credentials.
+
+
+
+
+ New
+ AzureStorageContext
+
+
+
+ Create an azure storage context using azure storage credentials.
+
+
+
+ New-AzureStorageContext
+
+ StorageAccountName
+
+ Azure storage account name
+
+ String
+
+
+ StorageAccountKey
+
+ Azure storage account key.
+
+ String
+
+
+ Protocol
+
+ Transfer Protocol (https/http).
+
+ String
+
+
+ Endpoint
+
+ Azure Storage Endpoint.
+
+ String
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageContext
+
+ StorageAccountName
+
+ Azure storage account name
+
+ String
+
+
+ SasToken
+
+
+
+ String
+
+
+ Environment
+
+ Azure Environment
+
+ String
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageContext
+
+ StorageAccountName
+
+ Azure storage account name
+
+ String
+
+
+ Anonymous
+
+ Anonymous storage account.
+
+ SwitchParameter
+
+
+ Protocol
+
+ Transfer Protocol (https/http).
+
+ String
+
+
+ Endpoint
+
+ Azure Storage Endpoint.
+
+ String
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageContext
+
+ StorageAccountName
+
+ Azure storage account name
+
+ String
+
+
+ StorageAccountKey
+
+ Azure storage account key.
+
+ String
+
+
+ Protocol
+
+ Transfer Protocol (https/http).
+
+ String
+
+
+ Environment
+
+ Azure Environment
+
+ String
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageContext
+
+ StorageAccountName
+
+ Azure storage account name
+
+ String
+
+
+ Anonymous
+
+ Anonymous storage account.
+
+ SwitchParameter
+
+
+ Protocol
+
+ Transfer Protocol (https/http).
+
+ String
+
+
+ Environment
+
+ Azure Environment
+
+ String
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageContext
+
+ StorageAccountName
+
+ Azure storage account name
+
+ String
+
+
+ SasToken
+
+
+
+ String
+
+
+ Protocol
+
+ Transfer Protocol (https/http).
+
+ String
+
+
+ Endpoint
+
+ Azure Storage Endpoint.
+
+ String
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageContext
+
+ ConnectionString
+
+ Azure storage connection string.
+
+ String
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageContext
+
+ Local
+
+ Local development storage account.
+
+ SwitchParameter
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ StorageAccountName
+
+ Azure storage account name
+
+ String
+
+ String
+
+
+
+
+
+ StorageAccountKey
+
+ Azure storage account key.
+
+ String
+
+ String
+
+
+
+
+
+ Protocol
+
+ Transfer Protocol (https/http).
+
+ String
+
+ String
+
+
+ Https
+
+
+ Endpoint
+
+ Azure Storage Endpoint.
+
+ String
+
+ String
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ SasToken
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Environment
+
+ Azure Environment
+
+ String
+
+ String
+
+
+ AzureCloud | AzureChinaCloud
+
+
+ Anonymous
+
+ Anonymous storage account.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ ConnectionString
+
+ Azure storage connection string.
+
+ String
+
+ String
+
+
+
+
+
+ Local
+
+ Local development storage account.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AzureStorageContext
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Use storage account name and key --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContext -StorageAccountName name -StorageAccountKey key
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Use connection string --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContext -ConnnectionString connectionstring
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Use anonymous storage accont. --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContext -StorageAccountName account -Anonymous -Protocol http
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Use local development storage account --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContext -Local
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Use NewAzureSotrageContext cmdlet with other storage cmdlet. --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContext -Local | Get-AzureStorageContainer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Use multiple storage context. --------------------------
+
+ PS C:\>
+
+ PS C:\> $context1 = New-AzureStorageContext -Local
$context2 = new-azurestoragecontext -StorageAccountName accountname -StorageAccountKey accountkey
($context1, $context2) | Get-AzureStorageContainer
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Create azure storage context with specified storage end point --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContext -StorageAccountName name -StorageAccountKey key -Endpoint core.windows.net
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Create azure storage context with specified storage end point --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContext -StorageAccountName name -StorageAccountKey key -Endpoint core.chinacloudapi.cn
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Create azure storage context with specified azure environment --------------------------
-
-
-
-
- PS C:\> New-AzureStorageContext -StorageAccountName name -StorageAccountKey key -Environment AzureChinaCloud
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Create storage context with sas token and use it with other storage cmdlet. --------------------------
-
-
-
-
- PS C:\> $sasToken = New-AzureStorageContainerSASToken -Container abc -Permission rl
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Create azure storage context with specified storage end point --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContext -StorageAccountName name -StorageAccountKey key -Endpoint core.windows.net
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Create azure storage context with specified storage end point --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContext -StorageAccountName name -StorageAccountKey key -Endpoint core.chinacloudapi.cn
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Create azure storage context with specified azure environment --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageContext -StorageAccountName name -StorageAccountKey key -Environment AzureChinaCloud
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Create storage context with sas token and use it with other storage cmdlet. --------------------------
+
+ PS C:\>
+
+ PS C:\> $sasToken = New-AzureStorageContainerSASToken -Container abc -Permission rl
$context = New-AzureStorageContext -StorageAccountName account -SasToken $sasToken
$context | Get-AzureStorageBlob -Container abc
-
- Create an sas token with container read and list permission and then list all the blobs in the specified container.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- New-AzureStorageDirectory
-
- Create an azure storage directory.
-
-
-
-
- New
- AzureStorageDirectory
-
-
-
-
- Create an azure storage directory.
-
-
-
- New-AzureStorageDirectory
-
- ShareName
-
- The file share name
-
- String
-
-
- Path
-
- The path of the file directory to be created
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- New-AzureStorageDirectory
-
- Share
-
- The file share object
-
- CloudFileShare
-
-
- Path
-
- The path of the file directory to be created
-
- String
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- New-AzureStorageDirectory
-
- Directory
-
- the parent directory object
-
- CloudFileDirectory
-
-
- Path
-
- The path of the file directory to be created
-
- String
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- New-AzureStorageDirectory
-
- Path
-
- The path of the file directory to be created
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- New-AzureStorageDirectory
-
- Path
-
- The path of the file directory to be created
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- ShareName
-
- The file share name
-
- String
-
- String
-
-
-
-
-
-
- Path
-
- The path of the file directory to be created
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Share
-
- The file share object
-
- CloudFileShare
-
- CloudFileShare
-
-
-
-
-
-
- Directory
-
- the parent directory object
-
- CloudFileDirectory
-
- CloudFileDirectory
-
-
-
-
-
-
- ClientRequestId
-
-
-
-
- string
-
- string
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Example 1 --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageShare -Name sample | New-AzureStorageDirectory -Path sampledir
-
- This example creates a file directory named sampledir under the sample file share.
-
-
-
-
-
-
-
-
-
- -------------------------- Example 2 --------------------------
-
-
-
-
- PS C:\> New-AzureStorageFileDirectory -ShareName sample -Path sampledir
-
- This example creates a file directory named sampledir under the sample file share.
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageFile
-
-
-
-
- Remove-AzureStorageDirectory
-
-
-
-
-
-
-
-
- New-AzureStorageFileSASToken
-
- Generate Shared Access Signature token for azure storage file.
-
-
-
-
- New
- AzureStorageFileSASToken
-
-
-
- Generate Shared Access Signature token for azure storage file.
-
-
-
- New-AzureStorageFileSASToken
-
- ShareName
-
- Azure storage share name.
-
- String
-
-
- Path
-
- Relative path in azure storage share to the azure storage file.
-
- String
-
-
- Permission
-
- Permissions for a storage file.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full blob uri with sas token.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile instance
-
- AzureProfile
-
-
-
- New-AzureStorageFileSASToken
-
- ShareName
-
- Azure storage share name.
-
- String
-
-
- Path
-
- Relative path in azure storage share to the azure storage file.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full blob uri with sas token.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile instance
-
- AzureProfile
-
-
-
- New-AzureStorageFileSASToken
-
- File
-
- CloudFile object.
-
- CloudFile
-
-
- Permission
-
- Permissions for a storage file.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full blob uri with sas token.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile instance
-
- AzureProfile
-
-
-
- New-AzureStorageFileSASToken
-
- File
-
- CloudFile object.
-
- CloudFile
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full blob uri with sas token.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile instance
-
- AzureProfile
-
-
-
-
-
- ShareName
-
- Azure storage share name.
-
- String
-
- String
-
-
-
-
-
-
- Path
-
- Relative path in azure storage share to the azure storage file.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Permissions for a storage file.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- FullUri
-
- Return the full blob uri with sas token.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Profile
-
- AzureProfile instance
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- File
-
- CloudFile object.
-
- CloudFile
-
- CloudFile
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Generate a file sas token with full file permission. --------------------------
-
- PS C:\>
-
- PS C:\> New-AzureStorageFileSASToken -ShareName share -Path filePath -Permission rwd
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Generate a file sas token with life time. --------------------------
-
- PS C:\>
-
- PS C:\> $startTime = Get-Date
+
+ Create an sas token with container read and list permission and then list all the blobs in the specified container.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageDirectory
+
+ Create an azure storage directory.
+
+
+
+
+ New
+ AzureStorageDirectory
+
+
+
+ Create an azure storage directory.
+
+
+
+ New-AzureStorageDirectory
+
+ ShareName
+
+ The file share name
+
+ String
+
+
+ Path
+
+ The path of the file directory to be created
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageDirectory
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+
+ Path
+
+ The path of the file directory to be created
+
+ String
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageDirectory
+
+ Directory
+
+ the parent directory object
+
+ CloudFileDirectory
+
+
+ Path
+
+ The path of the file directory to be created
+
+ String
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageDirectory
+
+ Path
+
+ The path of the file directory to be created
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageDirectory
+
+ Path
+
+ The path of the file directory to be created
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ShareName
+
+ The file share name
+
+ String
+
+ String
+
+
+
+
+
+ Path
+
+ The path of the file directory to be created
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+ CloudFileShare
+
+
+
+
+
+ Directory
+
+ the parent directory object
+
+ CloudFileDirectory
+
+ CloudFileDirectory
+
+
+
+
+
+ ClientRequestId
+
+
+
+ string
+
+ string
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Example 1 --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageShare -Name sample | New-AzureStorageDirectory -Path sampledir
+
+ This example creates a file directory named sampledir under the sample file share.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Example 2 --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageFileDirectory -ShareName sample -Path sampledir
+
+ This example creates a file directory named sampledir under the sample file share.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageFile
+
+
+
+ Remove-AzureStorageDirectory
+
+
+
+
+
+
+
+ New-AzureStorageFileSASToken
+
+ Generate Shared Access Signature token for azure storage file.
+
+
+
+
+ New
+ AzureStorageFileSASToken
+
+
+
+ Generate Shared Access Signature token for azure storage file.
+
+
+
+ New-AzureStorageFileSASToken
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+
+ Path
+
+ Relative path in azure storage share to the azure storage file.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage file.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full blob uri with sas token.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageFileSASToken
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+
+ Path
+
+ Relative path in azure storage share to the azure storage file.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full blob uri with sas token.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageFileSASToken
+
+ File
+
+ CloudFile object.
+
+ CloudFile
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full blob uri with sas token.
+
+ SwitchParameter
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageFileSASToken
+
+ File
+
+ CloudFile object.
+
+ CloudFile
+
+
+ Permission
+
+ Permissions for a storage file.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full blob uri with sas token.
+
+ SwitchParameter
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+ String
+
+
+
+
+
+ Path
+
+ Relative path in azure storage share to the azure storage file.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage file.
+
+ String
+
+ String
+
+
+
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+ SharedAccessProtocol
+
+
+
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ FullUri
+
+ Return the full blob uri with sas token.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ File
+
+ CloudFile object.
+
+ CloudFile
+
+ CloudFile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Generate a file sas token with full file permission. --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageFileSASToken -ShareName share -Path filePath -Permission rwd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate a file sas token with life time. --------------------------
+
+ PS C:\>
+
+ PS C:\> $startTime = Get-Date
$endTime = $startTime.AddHours(2.0)
New-AzureStorageFileSASToken -ShareName share -Path filePath -Permission rwd -StartTime $startTime -ExpiryTime $endTime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- New-AzureStorageQueue
-
- Create an azure storage queue
-
-
-
-
- New
- AzureStorageQueue
-
-
-
-
- Create an azure storage queue
-
-
-
- New-AzureStorageQueue
-
- Name
-
- Queue name
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Name
-
- Queue name
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Create an azure storage queue --------------------------
-
-
-
-
- PS C:\> New-AzureStorageQueue queueabc
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Create multiple azure storage queues --------------------------
-
-
-
-
- PS C:\> "queue1 queue2 queue3".split() | New-AzureStorageQueue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- New-AzureStorageQueueSASToken
-
- Generate Shared Access Signature token for azure storage queue.
-
-
-
-
- New
- AzureStorageQueueSASToken
-
-
-
-
- Generate Shared Access Signature token for azure storage queue.
-
-
-
- New-AzureStorageQueueSASToken
-
- Name
-
- Azure storage queue name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full queue uri with sas token
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
- New-AzureStorageQueueSASToken
-
- Name
-
- Azure storage queue name.
-
- String
-
-
- Permission
-
- Permissions for a storage queue.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full queue uri with sas token
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Name
-
- Azure storage queue name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- FullUri
-
- Return the full queue uri with sas token
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- Permission
-
- Permissions for a storage queue.
-
- String
-
- String
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Generate a queue sas token with full permission --------------------------
-
-
-
-
- PS C:\> New-AzureStorageQueueSASToken -Name test -Permission raup
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Generate a queue sas token with shared access policy --------------------------
-
-
-
-
- PS C:\> New-AzureStorageQueueSASToken -Name test -Policy policyName
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/dn806410.aspx
-
-
-
-
-
-
- New-AzureStorageQueueStoredAccessPolicy
-
- Create Stored Access Policy for azure storage queue.
-
-
-
-
- New
- AzureStorageQueueStoredAccessPolicy
-
-
-
-
- Create Stored Access Policy for azure storage queue.
-
-
-
- New-AzureStorageQueueStoredAccessPolicy
-
- Queue
-
- Azure storage queue name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Permission
-
- Permissions for a storage queue.
-
- String
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Queue
-
- Azure storage queue name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Permissions for a storage queue.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Create a stored access policy in queue with full permission --------------------------
-
-
-
-
- PS C:\> New-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy -Permission arup
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- New-AzureStorageShare
-
- Create a new Azure storage file share.
-
-
-
-
- New
- AzureStorageShare
-
-
-
-
- Create a new Azure storage file share.
-
-
-
- New-AzureStorageShare
-
- Name
-
- The file share name
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- New-AzureStorageShare
-
- Name
-
- The file share name
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- New-AzureStorageShare
-
- Name
-
- The file share name
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- Name
-
- The file share name
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientRequestId
-
-
-
-
- string
-
- string
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Example 1 --------------------------
-
-
-
-
- PS C:\> New-AzureStorageShare -Name sample
-
- This example creates a file share named sample.
-
-
-
-
-
-
-
-
-
-
-
- Unkown
-
-
-
-
- Remove-AzureStorageShare
-
-
-
-
- Unkown
-
-
-
-
- Get-AzureStorageShare
-
-
-
-
-
-
-
-
- New-AzureStorageShareSASToken
-
- Generate Shared Access Signature token for azure storage share.
-
-
-
-
- New
- AzureStorageShareSASToken
-
-
-
- Generate Shared Access Signature token for azure storage share.
-
-
-
- New-AzureStorageShareSASToken
-
- ShareName
-
- Azure storage share name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy name.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full share uri with sas token.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
- New-AzureStorageShareSASToken
-
- ShareName
-
- Azure storage share name.
-
- String
-
-
- Permission
-
- Permissions in the SAS token to access the share and files under the share.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full share uri with sas token.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
-
-
- ShareName
-
- Azure storage share name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy name.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- FullUri
-
- Return the full share uri with sas token.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- Profile
-
-
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
- Permission
-
- Permissions in the SAS token to access the share and files under the share.
-
- String
-
- String
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Generate a share sas token with full share permission. --------------------------
-
- PS C:\>
-
- PS C:\> New-AzureStorageShareSASToken -ShareName test -Permission rwdl
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Generate multiple share sas token by pipeline --------------------------
-
- PS C:\>
-
- PS C:\> Get-AzureStorageShare -Prefix test | New-AzureStorageShareSASToken -Permission rwdl
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Generate share sas token with a shared access policy --------------------------
-
- PS C:\>
-
- PS C:\> New-AzureStorageShareSASToken -ShareName test -Policy policyName
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- New-AzureStorageShareStoredAccessPolicy
-
- Create Stored Access Policy on an azure storage share.
-
-
-
-
- New
- AzureStorageShareStoredAccessPolicy
-
-
-
- Create Stored Access Policy on an azure storage share.
-
-
-
- New-AzureStorageShareStoredAccessPolicy
-
- ShareName
-
- Azure storage share name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy name.
-
- String
-
-
- Permission
-
- Permissions in the Shared Access Policy to access the storage share or files under it.
-
- String
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
-
-
- ShareName
-
- Azure storage share name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy name.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Permissions in the Shared Access Policy to access the storage share or files under it.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Profile
-
-
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Create a Stored Access Policy in a share with full permission --------------------------
-
- PS C:\>
-
- PS C:\> New-AzureStorageShareStoredAccessPolicy -ShareName test -Policy testPolicy -Permission rwdl
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- New-AzureStorageTable
-
- Create an azure storage table
-
-
-
-
- New
- AzureStorageTable
-
-
-
-
- Create an azure storage table
-
-
-
- New-AzureStorageTable
-
- Name
-
- Table name
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Name
-
- Table name
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Create an azure storage table --------------------------
-
-
-
-
- PS C:\> New-AzureStorageTable tableabc
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Create multiple azure storage tables --------------------------
-
-
-
-
- PS C:\> "table1 table2 table3".split() | New-AzureStorageTable
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- New-AzureStorageTableSASToken
-
- Generate Shared Access Signature token for azure storage table.
-
-
-
-
- New
- AzureStorageTableSASToken
-
-
-
-
- Generate Shared Access Signature token for azure storage table.
-
-
-
- New-AzureStorageTableSASToken
-
- Name
-
- Azure storage table name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full queue uri with sas token
-
- SwitchParameter
-
-
- StartPartitionKey
-
- Start partition key.
-
- String
-
-
- StartRowKey
-
- Start row key.
-
- String
-
-
- EndPartitionKey
-
- End partition key.
-
- String
-
-
- EndRowKey
-
- End row key.
-
- String
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
- New-AzureStorageTableSASToken
-
- Name
-
- Azure storage table name.
-
- String
-
-
- Permission
-
- Permissions for a storage table.
-
- String
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
-
- FullUri
-
- Return the full queue uri with sas token
-
- SwitchParameter
-
-
- StartPartitionKey
-
- Start partition key.
-
- String
-
-
- StartRowKey
-
- Start row key.
-
- String
-
-
- EndPartitionKey
-
- End partition key.
-
- String
-
-
- EndRowKey
-
- End row key.
-
- String
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Name
-
- Azure storage table name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the shared access signature becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the shared access signature becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- FullUri
-
- Return the full queue uri with sas token
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- StartPartitionKey
-
- Start partition key.
-
- String
-
- String
-
-
-
-
-
-
- StartRowKey
-
- Start row key.
-
- String
-
- String
-
-
-
-
-
-
- EndPartitionKey
-
- End partition key.
-
- String
-
- String
-
-
-
-
-
-
- EndRowKey
-
- End row key.
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- Permission
-
- Permissions for a storage table.
-
- String
-
- String
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Generate a table sas token with full permission --------------------------
-
-
-
-
- PS C:\> New-AzureStorageTableSASToken -Name test -Permission raud
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Generate a table sas token with partition key and row key. --------------------------
-
-
-
-
- PS C:\> New-AzureStorageTableSASToken -Name test -Permission raud -StartPartitionKey a -EndPartitionKey b
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Generate a table sas token with shared access policy --------------------------
-
-
-
-
- PS C:\> New-AzureStorageTableSASToken -Name test -Policy policyName
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/dn806400.aspx
-
-
-
-
-
-
- New-AzureStorageTableStoredAccessPolicy
-
- Create Stored Access Policy for azure storage table.
-
-
-
-
- New
- AzureStorageTableStoredAccessPolicy
-
-
-
-
- Create Stored Access Policy for azure storage table.
-
-
-
- New-AzureStorageTableStoredAccessPolicy
-
- Table
-
- Azure storage table name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Permission
-
- Permissions for a storage table.
-
- String
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Table
-
- Azure storage table name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Permissions for a storage table.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Create a stored access policy in table with full permission --------------------------
-
-
-
-
- PS C:\> New-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy -Permission raud
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- Remove-AzureStorageBlob
-
- Remove the specified azure storage blob.
-
-
-
-
- Remove
- AzureStorageBlob
-
-
-
-
- Remove the specified azure storage blob.
-
-
-
- Remove-AzureStorageBlob
-
- Blob
-
- Blob name.
-
- String
-
-
- Container
-
- Container name.
-
- String
-
-
- DeleteSnapshot
-
- Only delete blob snapshots.
-
- SwitchParameter
-
-
- Force
-
- Force to remove the blob and its snapshot without confirmation.
-
- SwitchParameter
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Remove-AzureStorageBlob
-
- ICloudBlob
-
- ICloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- ICloudBlob
-
-
- DeleteSnapshot
-
- Only delete blob snapshots.
-
- SwitchParameter
-
-
- Force
-
- Force to remove the blob and its snapshot without confirmation.
-
- SwitchParameter
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Remove-AzureStorageBlob
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
-
- Blob
-
- Blob name.
-
- String
-
-
- DeleteSnapshot
-
- Only delete blob snapshots.
-
- SwitchParameter
-
-
- Force
-
- Force to remove the blob and its snapshot without confirmation.
-
- SwitchParameter
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
-
-
- Blob
-
- Blob name.
-
- String
-
- String
-
-
-
-
-
-
- Container
-
- Container name.
-
- String
-
- String
-
-
-
-
-
-
- DeleteSnapshot
-
- Only delete blob snapshots.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Force
-
- Force to remove the blob and its snapshot without confirmation.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- ICloudBlob
-
- ICloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- ICloudBlob
-
- ICloudBlob
-
-
-
-
-
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
- CloudBlobContainer
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Remove azure storage blob by name --------------------------
-
-
-
-
- PS C:\> Remove-AzureStorageBlob -Container containername -Blob blobname
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Remove azure storage blob using pipeline from GetAzureStorageBlob --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageBlob -Container containername -Blob blobname | Remove-AzureStorageBlob
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Remove azure storage blob using pipeline from GetAzureStorageContainer --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer container* | Remove-AzureStorageBlob blobname
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageBlob
-
-
-
-
- Get-AzureStorageBlobContent
-
-
-
-
- Set-AzureStorageBlobContent
-
-
-
-
-
-
-
-
- Remove-AzureStorageContainer
-
- Remove the specified azure storage container.
-
-
-
-
- Remove
- AzureStorageContainer
-
-
-
-
- Remove the specified azure storage container.
-
-
-
- Remove-AzureStorageContainer
-
- Name
-
-
-
-
- String
-
-
- Force
-
-
-
-
- SwitchParameter
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
-
-
- Name
-
-
-
-
- String
-
- String
-
-
-
-
-
-
- Force
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
-
-
-
-
-
-
- Remove-AzureStorageContainerStoredAccessPolicy
-
- Remove Stored Access Policy from azure storage container.
-
-
-
-
- Remove
- AzureStorageContainerStoredAccessPolicy
-
-
-
-
- Remove Stored Access Policy from azure storage container.
-
-
-
- Remove-AzureStorageContainerStoredAccessPolicy
-
- Container
-
- Azure storage container name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Force
-
- Force to remove the policy without confirmation
-
- SwitchParameter
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified policy is remove successfully.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
-
-
- Container
-
- Azure storage container name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Force
-
- Force to remove the policy without confirmation
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified policy is remove successfully.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Remove a stored access policy from container --------------------------
-
-
-
-
- PS C:\> Remove-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- Remove-AzureStorageCORSRule
-
- Clear the CORS rules for a specific type of storage service (blob, table or queue).
-
-
-
-
- Remove
- AzureStorageCORSRule
-
-
-
- Clear azure storage service CORS rules. This cmdlet will delete all CORS rules in the specific azure storage service.
-
-
-
- Remove-AzureStorageCORSRule
-
- ServiceType
-
- Azure storage service type, such as Blob, Table, Queue.
-
- StorageServiceType
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- ServiceType
-
- Azure storage service type, such as Blob, Table, Queue.
-
- StorageServiceType
-
- StorageServiceType
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Profile
-
-
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Clear CORS rules of blob service. --------------------------
-
- PS C:\>
-
- Remove-AzureStorageCORSRule -ServiceType Blob
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureStorageDirectory
-
- Remove an azure storage file directory.
-
-
-
-
- Remove
- AzureStorageDirectory
-
-
-
-
- Remove an azure storage file directory.
-
-
-
- Remove-AzureStorageDirectory
-
- ShareName
-
- The file share name
-
- String
-
-
- Path
-
- The path of the file directory to be removed
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageDirectory
-
- Share
-
- The file share object
-
- CloudFileShare
-
-
- Path
-
- The path of the file directory to be removed
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageDirectory
-
- Directory
-
- The directory object to be removed
-
- CloudFileDirectory
-
-
- Path
-
- The path of the file directory to be removed
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageDirectory
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageDirectory
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
-
-
- ShareName
-
- The file share name
-
- String
-
- String
-
-
-
-
-
-
- Path
-
- The path of the file directory to be removed
-
- String
-
- String
-
-
-
-
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Share
-
- The file share object
-
- CloudFileShare
-
- CloudFileShare
-
-
-
-
-
-
- Directory
-
- The directory object to be removed
-
- CloudFileDirectory
-
- CloudFileDirectory
-
-
-
-
-
-
- ClientRequestId
-
-
-
-
- string
-
- string
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Example 1 --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageShare -Name sample | Remove-AzureStorageDirectory -Path sampledir
-
- This example removes a file directory named sampledir under the sample file share.
-
-
-
-
-
-
-
-
-
- -------------------------- Example 2 --------------------------
-
-
-
-
- PS C:\> Remove-AzureStorageDirectory -ShareName sample -Path sampledir
-
- This example removes a file directory named sampledir under the sample file share.
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageFile
-
-
-
-
- New-AzureStorageDirectory
-
-
-
-
-
-
-
-
- Remove-AzureStorageFile
-
- Remove the specified file
-
-
-
-
- Remove
- AzureStorageFile
-
-
-
-
- Remove the specified file
-
-
-
- Remove-AzureStorageFile
-
- ShareName
-
- The file share name
-
- String
-
-
- Path
-
- The path of the file to be removed
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageFile
-
- Share
-
- The file share object
-
- CloudFileShare
-
-
- Path
-
- The path of the file to be removed
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageFile
-
- Directory
-
-
-
-
- CloudFileDirectory
-
-
- Path
-
- The path of the file to be removed
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageFile
-
- File
-
- The file object to remove
-
- CloudFile
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageFile
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageFile
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
-
-
- ShareName
-
- The file share name
-
- String
-
- String
-
-
-
-
-
-
- Path
-
- The path of the file to be removed
-
- String
-
- String
-
-
-
-
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Share
-
- The file share object
-
- CloudFileShare
-
- CloudFileShare
-
-
-
-
-
-
- Directory
-
-
-
-
- CloudFileDirectory
-
- CloudFileDirectory
-
-
-
-
-
-
- File
-
- The file object to remove
-
- CloudFile
-
- CloudFile
-
-
-
-
-
-
- ClientRequestId
-
-
-
-
- string
-
- string
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Example 1 --------------------------
-
-
-
-
- PS C:\> Remove-AzureStorageFile –ShareName sample –FilePath samplefile
-
- This example removes the samplefile file from the sample file share.
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageFile
-
-
-
-
-
-
-
-
- Remove-AzureStorageQueue
-
- Remove the specified azure storage queue
-
-
-
-
- Remove
- AzureStorageQueue
-
-
-
-
- Remove the specified azure storage queue
-
-
-
- Remove-AzureStorageQueue
-
- Name
-
- Queue name
-
- String
-
-
- Force
-
- Force to remove the queue without confirmation
-
- SwitchParameter
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified queue is remove successfully.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
-
-
- Name
-
- Queue name
-
- String
-
- String
-
-
-
-
-
-
- Force
-
- Force to remove the queue without confirmation
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified queue is remove successfully.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Remove azure storage queue by queue name --------------------------
-
-
-
-
- PS C:\> Remove-AzureStorageQueue queueabc
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Remove azure storage queue using GetAzureStorageQueue --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageQueue queue* | Remove-AzureStorageQueue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureStorageQueueStoredAccessPolicy
-
- Remove Stored Access Policy from azure storage queue.
-
-
-
-
- Remove
- AzureStorageQueueStoredAccessPolicy
-
-
-
-
- Remove Stored Access Policy from azure storage queue.
-
-
-
- Remove-AzureStorageQueueStoredAccessPolicy
-
- Queue
-
- Azure storage queue name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Force
-
- Force to remove the policy without confirmation
-
- SwitchParameter
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified policy is remove successfully.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
-
-
- Queue
-
- Azure storage queue name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Force
-
- Force to remove the policy without confirmation
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified policy is remove successfully.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Remove a stored access policy from queue --------------------------
-
-
-
-
- PS C:\> Remove-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- Set-AzureStorageQueueStoredAccessPolicy
-
- Set Stored Access Policy for azure storage queue.
-
-
-
-
- Set
- AzureStorageQueueStoredAccessPolicy
-
-
-
-
- Set Stored Access Policy for azure storage queue.
-
-
-
- Set-AzureStorageQueueStoredAccessPolicy
-
- Queue
-
- Azure storage queue name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Permission
-
- Permissions for a storage queue.
-
- String
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
-
- NoStartTime
-
- Set the StartTime to be Null.
-
- SwitchParameter
-
-
- NoExpiryTime
-
- Set the ExpiryTime to be Null.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Queue
-
- Azure storage queue name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Permissions for a storage queue.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- NoStartTime
-
- Set the StartTime to be Null.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- NoExpiryTime
-
- Set the ExpiryTime to be Null.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Set a stored access policy in queue with full permission --------------------------
-
-
-
-
- PS C:\> Set-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy -Permission arup
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- Remove-AzureStorageShare
-
- Remove an azure storage file share.
-
-
-
-
- Remove
- AzureStorageShare
-
-
-
-
- Remove an azure storage file share.
-
-
-
- Remove-AzureStorageShare
-
- Name
-
- The file share name
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageShare
-
- Share
-
- The file share object
-
- CloudFileShare
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageShare
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
- Remove-AzureStorageShare
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
-
-
-
-
- Name
-
- The file share name
-
- String
-
- String
-
-
-
-
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- WhatIf
-
- Shows what would happen if the cmdlet runs. The cmdlet is not run.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
- Prompts you for confirmation before running the cmdlet.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Share
-
- The file share object
-
- CloudFileShare
-
- CloudFileShare
-
-
-
-
-
-
- ClientRequestId
-
-
-
-
- string
-
- string
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Example 1 --------------------------
-
-
-
-
- PS C:\> Remove-AzureStorageShare -Name sample
-
- This example removes a file share named sample.
-
-
-
-
-
-
-
-
-
-
-
- New-AzureStorageShare
-
-
-
-
- Get-AzureStorageShare
-
-
-
-
-
-
-
-
- Remove-AzureStorageShareStoredAccessPolicy
-
- Remove a Stored Access Policy from an azure storage share.
-
-
-
-
- Remove
- AzureStorageShareStoredAccessPolicy
-
-
-
- Remove a Stored Access Policy from an azure storage share.
-
-
-
- Remove-AzureStorageShareStoredAccessPolicy
-
- ShareName
-
- Azure storage share name.
-
- String
-
-
- Policy
-
- Name of the Azure storage Shared Access Policy to delete.
-
- String
-
-
- Force
-
- Force to remove the policy without confirmation
-
- SwitchParameter
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified policy is removed successfully.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
-
- Profile
-
-
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
-
-
- ShareName
-
- Azure storage share name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Name of the Azure storage Shared Access Policy to delete.
-
- String
-
- String
-
-
-
-
-
-
- Force
-
- Force to remove the policy without confirmation
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified policy is removed successfully.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Profile
-
-
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
- CloudBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
- CloudBlob
-
-
-
-
-
-
- Confirm
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Remove a stored access policy from an azure storage share --------------------------
-
- PS C:\>
-
- PS C:\> Remove-AzureStorageShareStoredAccessPolicy -ShareName test -Policy testPolicy
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureStorageTable
-
- Remove azure storage table
-
-
-
-
- Remove
- AzureStorageTable
-
-
-
-
- Remove azure storage table
-
-
-
- Remove-AzureStorageTable
-
- Name
-
- The name of the table to be removed.
-
- String
-
-
- Force
-
- Force to remove the table without confirmation
-
- SwitchParameter
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified table is remove successfully.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
-
-
- Name
-
- The name of the table to be removed.
-
- String
-
- String
-
-
-
-
-
-
- Force
-
- Force to remove the table without confirmation
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified table is remove successfully.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Remove azure storage table by table name --------------------------
-
-
-
-
- PS C:\> Remove-AzureStorageTable tableabc
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Remove azure storage tables using GetAzureStorageTable --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageTable table* | Remove-AzureStorageTable
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureStorageTableStoredAccessPolicy
-
- Remove Stored Access Policy from azure storage table.
-
-
-
-
- Remove
- AzureStorageTableStoredAccessPolicy
-
-
-
-
- Remove Stored Access Policy from azure storage table.
-
-
-
- Remove-AzureStorageTableStoredAccessPolicy
-
- Table
-
- Azure storage table name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Force
-
- Force to remove the policy without confirmation
-
- SwitchParameter
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified policy is remove successfully.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
-
-
- Table
-
- Azure storage table name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Force
-
- Force to remove the policy without confirmation
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PassThru
-
- Output a bool value in order to indicate whether the specified policy is remove successfully.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Remove a stored access policy from table --------------------------
-
-
-
-
- PS C:\> Remove-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- Set-AzureStorageBlobContent
-
- Upload local file to azure storage blob.
-
-
-
-
- Set
- AzureStorageBlobContent
-
-
-
-
- Upload local file to azure storage blob.
-
-
-
- Set-AzureStorageBlobContent
-
- File
-
- Local file path.
-
- String
-
-
- Container
-
- Container name
-
- String
-
-
- Blob
-
- Blob name.
-
- String
-
-
- BlobType
-
- Destination Blob Type (Block/Page/Append).
-
- String
-
-
- Properties
-
- Blob properties.
-
- Hashtable
-
-
- Metadata
-
- Blob metadata.
-
- Hashtable
-
-
- Force
-
- Force to overwrite the existing blob.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Set-AzureStorageBlobContent
-
- File
-
- Local file path.
-
- String
-
-
- Blob
-
- Blob name.
-
- String
-
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
-
- BlobType
-
- Destination Blob Type (Block/Page/Append).
-
- String
-
-
- Properties
-
- Blob properties.
-
- Hashtable
-
-
- Metadata
-
- Blob metadata.
-
- Hashtable
-
-
- Force
-
- Force to overwrite the existing blob.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Set-AzureStorageBlobContent
-
- File
-
- Local file path.
-
- String
-
-
- ICloudBlob
-
- ICloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- ICloudBlob
-
-
- BlobType
-
- Destination Blob Type (Block/Page/Append).
-
- String
-
-
- Properties
-
- Blob properties.
-
- Hashtable
-
-
- Metadata
-
- Blob metadata.
-
- Hashtable
-
-
- Force
-
- Force to overwrite the existing blob.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
-
-
- File
-
- Local file path.
-
- String
-
- String
-
-
-
-
-
-
- Container
-
- Container name
-
- String
-
- String
-
-
-
-
-
-
- Blob
-
- Blob name.
-
- String
-
- String
-
-
-
-
-
-
- BlobType
-
- Destination Blob Type (Block/Page/Append).
-
- String
-
- String
-
-
-
-
-
-
- Properties
-
- Blob properties.
-
- Hashtable
-
- Hashtable
-
-
-
-
-
-
- Metadata
-
- Blob metadata.
-
- Hashtable
-
- Hashtable
-
-
-
-
-
-
- Force
-
- Force to overwrite the existing blob.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
- ProcessorCount * 8
-
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
- CloudBlobContainer
-
-
-
-
-
-
- ICloudBlob
-
- ICloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- ICloudBlob
-
- ICloudBlob
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Upload file by name. --------------------------
-
-
-
-
- PS C:\> Set-AzureStorageBlobContent -Container upload -File .\filename -Blob blobname
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Upload file using ls command. --------------------------
-
-
-
-
- PS C:\> ls -File -Recurse | Set-AzureStorageBlobContent -Container upload
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Upload file using pipeline from GetAzureStorageBlob --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageBlob -Container containername -Blob blobname | Set-AzureStorageBlobContent -File filename
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Upload file using pipeline from GetAzureStorageContainer --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer -Container container* | Set-AzureStorageBlobContent -File filename -Blob blobname
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Upload file and set metadata --------------------------
-
-
-
-
- PS C:\> $meta = @{"key" = "value"; "name" = "test"}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageQueue
+
+ Create an azure storage queue
+
+
+
+
+ New
+ AzureStorageQueue
+
+
+
+ Create an azure storage queue
+
+
+
+ New-AzureStorageQueue
+
+ Name
+
+ Queue name
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ Queue name
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Create an azure storage queue --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageQueue queueabc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Create multiple azure storage queues --------------------------
+
+ PS C:\>
+
+ PS C:\> "queue1 queue2 queue3".split() | New-AzureStorageQueue
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageQueueSASToken
+
+ Generate Shared Access Signature token for azure storage queue.
+
+
+
+
+ New
+ AzureStorageQueueSASToken
+
+
+
+ Generate Shared Access Signature token for azure storage queue.
+
+
+
+ New-AzureStorageQueueSASToken
+
+ Name
+
+ Azure storage queue name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full queue uri with sas token
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageQueueSASToken
+
+ Name
+
+ Azure storage queue name.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage queue.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full queue uri with sas token
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ Azure storage queue name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+ SharedAccessProtocol
+
+
+
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ FullUri
+
+ Return the full queue uri with sas token
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage queue.
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Generate a queue sas token with full permission --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageQueueSASToken -Name test -Permission raup
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate a queue sas token with shared access policy --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageQueueSASToken -Name test -Policy policyName
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageQueueSASToken
+ http://msdn.microsoft.com/en-us/library/dn806410.aspx
+
+
+
+
+
+
+ New-AzureStorageQueueStoredAccessPolicy
+
+ Create Stored Access Policy for azure storage queue.
+
+
+
+
+ New
+ AzureStorageQueueStoredAccessPolicy
+
+
+
+ Create Stored Access Policy for azure storage queue.
+
+
+
+ New-AzureStorageQueueStoredAccessPolicy
+
+ Queue
+
+ Azure storage queue name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage queue.
+
+ String
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Queue
+
+ Azure storage queue name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage queue.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Create a stored access policy in queue with full permission --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy -Permission arup
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ New-AzureStorageShare
+
+ Create a new Azure storage file share.
+
+
+
+
+ New
+ AzureStorageShare
+
+
+
+ Create a new Azure storage file share.
+
+
+
+ New-AzureStorageShare
+
+ Name
+
+ The file share name
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageShare
+
+ Name
+
+ The file share name
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageShare
+
+ Name
+
+ The file share name
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ The file share name
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ClientRequestId
+
+
+
+ string
+
+ string
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Example 1 --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageShare -Name sample
+
+ This example creates a file share named sample.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Unkown
+
+
+
+ Remove-AzureStorageShare
+
+
+
+ Unkown
+
+
+
+ Get-AzureStorageShare
+
+
+
+
+
+
+
+ New-AzureStorageShareSASToken
+
+ Generate Shared Access Signature token for azure storage share.
+
+
+
+
+ New
+ AzureStorageShareSASToken
+
+
+
+ Generate Shared Access Signature token for azure storage share.
+
+
+
+ New-AzureStorageShareSASToken
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy name.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full share uri with sas token.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageShareSASToken
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+
+ Permission
+
+ Permissions in the SAS token to access the share and files under the share.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full share uri with sas token.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy name.
+
+ String
+
+ String
+
+
+
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+ SharedAccessProtocol
+
+
+
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ FullUri
+
+ Return the full share uri with sas token.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions in the SAS token to access the share and files under the share.
+
+ String
+
+ String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Generate a share sas token with full share permission. --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageShareSASToken -ShareName test -Permission rwdl
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate multiple share sas token by pipeline --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageShare -Prefix test | New-AzureStorageShareSASToken -Permission rwdl
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate share sas token with a shared access policy --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageShareSASToken -ShareName test -Policy policyName
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageShareStoredAccessPolicy
+
+ Create Stored Access Policy on an azure storage share.
+
+
+
+
+ New
+ AzureStorageShareStoredAccessPolicy
+
+
+
+ Create Stored Access Policy on an azure storage share.
+
+
+
+ New-AzureStorageShareStoredAccessPolicy
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy name.
+
+ String
+
+
+ Permission
+
+ Permissions in the Shared Access Policy to access the storage share or files under it.
+
+ String
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy name.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions in the Shared Access Policy to access the storage share or files under it.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Create a Stored Access Policy in a share with full permission --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageShareStoredAccessPolicy -ShareName test -Policy testPolicy -Permission rwdl
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageTable
+
+ Create an azure storage table
+
+
+
+
+ New
+ AzureStorageTable
+
+
+
+ Create an azure storage table
+
+
+
+ New-AzureStorageTable
+
+ Name
+
+ Table name
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ Table name
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Create an azure storage table --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageTable tableabc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Create multiple azure storage tables --------------------------
+
+ PS C:\>
+
+ PS C:\> "table1 table2 table3".split() | New-AzureStorageTable
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageTableSASToken
+
+ Generate Shared Access Signature token for azure storage table.
+
+
+
+
+ New
+ AzureStorageTableSASToken
+
+
+
+ Generate Shared Access Signature token for azure storage table.
+
+
+
+ New-AzureStorageTableSASToken
+
+ Name
+
+ Azure storage table name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full queue uri with sas token
+
+ SwitchParameter
+
+
+ StartPartitionKey
+
+ Start partition key.
+
+ String
+
+
+ StartRowKey
+
+ Start row key.
+
+ String
+
+
+ EndPartitionKey
+
+ End partition key.
+
+ String
+
+
+ EndRowKey
+
+ End row key.
+
+ String
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ New-AzureStorageTableSASToken
+
+ Name
+
+ Azure storage table name.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage table.
+
+ String
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ FullUri
+
+ Return the full queue uri with sas token
+
+ SwitchParameter
+
+
+ StartPartitionKey
+
+ Start partition key.
+
+ String
+
+
+ StartRowKey
+
+ Start row key.
+
+ String
+
+
+ EndPartitionKey
+
+ End partition key.
+
+ String
+
+
+ EndRowKey
+
+ End row key.
+
+ String
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ Azure storage table name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Protocol
+
+ Protocol permitted for a request made with the account SAS, such as HttpsOrHttp, HttpsOnly. The default value is HttpsOrHttp.
+
+ SharedAccessProtocol
+
+ SharedAccessProtocol
+
+
+
+
+
+ IPAddressOrRange
+
+ IP address or a range of IP addresses from which to accept requests. The range is inclusive.
+For example, 168.1.5.65 or 168.1.5.60-168.1.5.70.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the shared access signature becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the shared access signature becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ FullUri
+
+ Return the full queue uri with sas token
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ StartPartitionKey
+
+ Start partition key.
+
+ String
+
+ String
+
+
+
+
+
+ StartRowKey
+
+ Start row key.
+
+ String
+
+ String
+
+
+
+
+
+ EndPartitionKey
+
+ End partition key.
+
+ String
+
+ String
+
+
+
+
+
+ EndRowKey
+
+ End row key.
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage table.
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Generate a table sas token with full permission --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageTableSASToken -Name test -Permission raud
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate a table sas token with partition key and row key. --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageTableSASToken -Name test -Permission raud -StartPartitionKey a -EndPartitionKey b
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Generate a table sas token with shared access policy --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageTableSASToken -Name test -Policy policyName
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/dn806400.aspx
+
+
+
+
+
+
+ New-AzureStorageTableStoredAccessPolicy
+
+ Create Stored Access Policy for azure storage table.
+
+
+
+
+ New
+ AzureStorageTableStoredAccessPolicy
+
+
+
+ Create Stored Access Policy for azure storage table.
+
+
+
+ New-AzureStorageTableStoredAccessPolicy
+
+ Table
+
+ Azure storage table name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage table.
+
+ String
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Table
+
+ Azure storage table name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage table.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Create a stored access policy in table with full permission --------------------------
+
+ PS C:\>
+
+ PS C:\> New-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy -Permission raud
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ Remove-AzureStorageBlob
+
+ Remove the specified azure storage blob.
+
+
+
+
+ Remove
+ AzureStorageBlob
+
+
+
+ Remove the specified azure storage blob.
+
+
+
+ Remove-AzureStorageBlob
+
+ Blob
+
+ Blob name.
+
+ String
+
+
+ Container
+
+ Container name.
+
+ String
+
+
+ DeleteSnapshot
+
+ Only delete blob snapshots.
+
+ SwitchParameter
+
+
+ Force
+
+ Force to remove the blob and its snapshot without confirmation.
+
+ SwitchParameter
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageBlob
+
+ CloudBlob
+
+
+
+ CloudBlob
+
+
+ DeleteSnapshot
+
+ Only delete blob snapshots.
+
+ SwitchParameter
+
+
+ Force
+
+ Force to remove the blob and its snapshot without confirmation.
+
+ SwitchParameter
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageBlob
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+
+ DeleteSnapshot
+
+ Only delete blob snapshots.
+
+ SwitchParameter
+
+
+ Force
+
+ Force to remove the blob and its snapshot without confirmation.
+
+ SwitchParameter
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+ String
+
+
+
+
+
+ Container
+
+ Container name.
+
+ String
+
+ String
+
+
+
+
+
+ DeleteSnapshot
+
+ Only delete blob snapshots.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Force
+
+ Force to remove the blob and its snapshot without confirmation.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ CloudBlob
+
+
+
+ CloudBlob
+
+ CloudBlob
+
+
+
+
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+ CloudBlobContainer
+
+
+
+
+
+ ICloudBlob
+
+ ICloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ icloudblob
+
+ icloudblob
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Remove azure storage blob by name --------------------------
+
+ PS C:\>
+
+ PS C:\> Remove-AzureStorageBlob -Container containername -Blob blobname
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Remove azure storage blob using pipeline from GetAzureStorageBlob --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageBlob -Container containername -Blob blobname | Remove-AzureStorageBlob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Remove azure storage blob using pipeline from GetAzureStorageContainer --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer container* | Remove-AzureStorageBlob blobname
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageBlob
+
+
+
+ Get-AzureStorageBlobContent
+
+
+
+ Set-AzureStorageBlobContent
+
+
+
+
+
+
+
+ Remove-AzureStorageContainer
+
+ Remove the specified azure storage container.
+
+
+
+
+ Remove
+ AzureStorageContainer
+
+
+
+ Remove the specified azure storage container.
+
+
+
+ Remove-AzureStorageContainer
+
+ Name
+
+
+
+ String
+
+
+ Force
+
+
+
+ SwitchParameter
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ Name
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Force
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+
+
+
+
+
+
+ Remove-AzureStorageContainerStoredAccessPolicy
+
+ Remove Stored Access Policy from azure storage container.
+
+
+
+
+ Remove
+ AzureStorageContainerStoredAccessPolicy
+
+
+
+ Remove Stored Access Policy from azure storage container.
+
+
+
+ Remove-AzureStorageContainerStoredAccessPolicy
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Force
+
+ Force to remove the policy without confirmation
+
+ SwitchParameter
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified policy is remove successfully.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Force
+
+ Force to remove the policy without confirmation
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified policy is remove successfully.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Remove a stored access policy from container --------------------------
+
+ PS C:\>
+
+ PS C:\> Remove-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ Remove-AzureStorageCORSRule
+
+ Clear the CORS rules for a specific type of storage service (blob, table or queue).
+
+
+
+
+ Remove
+ AzureStorageCORSRule
+
+
+
+ Clear azure storage service CORS rules. This cmdlet will delete all CORS rules in the specific azure storage service.
+
+
+
+ Remove-AzureStorageCORSRule
+
+ ServiceType
+
+ Azure storage service type, such as Blob, Table, Queue.
+
+ StorageServiceType
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ServiceType
+
+ Azure storage service type, such as Blob, Table, Queue.
+
+ StorageServiceType
+
+ StorageServiceType
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Clear CORS rules of blob service. --------------------------
+
+ PS C:\>
+
+ Remove-AzureStorageCORSRule -ServiceType Blob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Remove-AzureStorageDirectory
+
+ Remove an azure storage file directory.
+
+
+
+
+ Remove
+ AzureStorageDirectory
+
+
+
+ Remove an azure storage file directory.
+
+
+
+ Remove-AzureStorageDirectory
+
+ ShareName
+
+ The file share name
+
+ String
+
+
+ Path
+
+ The path of the file directory to be removed
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageDirectory
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+
+ Path
+
+ The path of the file directory to be removed
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageDirectory
+
+ Directory
+
+ The directory object to be removed
+
+ CloudFileDirectory
+
+
+ Path
+
+ The path of the file directory to be removed
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageDirectory
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageDirectory
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+
+
+ ShareName
+
+ The file share name
+
+ String
+
+ String
+
+
+
+
+
+ Path
+
+ The path of the file directory to be removed
+
+ String
+
+ String
+
+
+
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+ CloudFileShare
+
+
+
+
+
+ Directory
+
+ The directory object to be removed
+
+ CloudFileDirectory
+
+ CloudFileDirectory
+
+
+
+
+
+ ClientRequestId
+
+
+
+ string
+
+ string
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Example 1 --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageShare -Name sample | Remove-AzureStorageDirectory -Path sampledir
+
+ This example removes a file directory named sampledir under the sample file share.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Example 2 --------------------------
+
+ PS C:\>
+
+ PS C:\> Remove-AzureStorageDirectory -ShareName sample -Path sampledir
+
+ This example removes a file directory named sampledir under the sample file share.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageFile
+
+
+
+ New-AzureStorageDirectory
+
+
+
+
+
+
+
+ Remove-AzureStorageFile
+
+ Remove the specified file
+
+
+
+
+ Remove
+ AzureStorageFile
+
+
+
+ Remove the specified file
+
+
+
+ Remove-AzureStorageFile
+
+ ShareName
+
+ The file share name
+
+ String
+
+
+ Path
+
+ The path of the file to be removed
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageFile
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+
+ Path
+
+ The path of the file to be removed
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageFile
+
+ Directory
+
+
+
+ CloudFileDirectory
+
+
+ Path
+
+ The path of the file to be removed
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageFile
+
+ File
+
+ The file object to remove
+
+ CloudFile
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageFile
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageFile
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+
+
+ ShareName
+
+ The file share name
+
+ String
+
+ String
+
+
+
+
+
+ Path
+
+ The path of the file to be removed
+
+ String
+
+ String
+
+
+
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+ CloudFileShare
+
+
+
+
+
+ Directory
+
+
+
+ CloudFileDirectory
+
+ CloudFileDirectory
+
+
+
+
+
+ File
+
+ The file object to remove
+
+ CloudFile
+
+ CloudFile
+
+
+
+
+
+ ClientRequestId
+
+
+
+ string
+
+ string
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Example 1 --------------------------
+
+ PS C:\>
+
+ PS C:\> Remove-AzureStorageFile –ShareName sample –FilePath samplefile
+
+ This example removes the samplefile file from the sample file share.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageFile
+
+
+
+
+
+
+
+ Remove-AzureStorageQueue
+
+ Remove the specified azure storage queue
+
+
+
+
+ Remove
+ AzureStorageQueue
+
+
+
+ Remove the specified azure storage queue
+
+
+
+ Remove-AzureStorageQueue
+
+ Name
+
+ Queue name
+
+ String
+
+
+ Force
+
+ Force to remove the queue without confirmation
+
+ SwitchParameter
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified queue is remove successfully.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ Name
+
+ Queue name
+
+ String
+
+ String
+
+
+
+
+
+ Force
+
+ Force to remove the queue without confirmation
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified queue is remove successfully.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Remove azure storage queue by queue name --------------------------
+
+ PS C:\>
+
+ PS C:\> Remove-AzureStorageQueue queueabc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Remove azure storage queue using GetAzureStorageQueue --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageQueue queue* | Remove-AzureStorageQueue
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Remove-AzureStorageQueueStoredAccessPolicy
+
+ Remove Stored Access Policy from azure storage queue.
+
+
+
+
+ Remove
+ AzureStorageQueueStoredAccessPolicy
+
+
+
+ Remove Stored Access Policy from azure storage queue.
+
+
+
+ Remove-AzureStorageQueueStoredAccessPolicy
+
+ Queue
+
+ Azure storage queue name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Force
+
+ Force to remove the policy without confirmation
+
+ SwitchParameter
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified policy is remove successfully.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ Queue
+
+ Azure storage queue name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Force
+
+ Force to remove the policy without confirmation
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified policy is remove successfully.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Remove a stored access policy from queue --------------------------
+
+ PS C:\>
+
+ PS C:\> Remove-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ Remove-AzureStorageShare
+
+ Remove an azure storage file share.
+
+
+
+
+ Remove
+ AzureStorageShare
+
+
+
+ Remove an azure storage file share.
+
+
+
+ Remove-AzureStorageShare
+
+ Name
+
+ The file share name
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageShare
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageShare
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+ Remove-AzureStorageShare
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+
+
+
+
+ Name
+
+ The file share name
+
+ String
+
+ String
+
+
+
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+ CloudFileShare
+
+
+
+
+
+ ClientRequestId
+
+
+
+ string
+
+ string
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Example 1 --------------------------
+
+ PS C:\>
+
+ PS C:\> Remove-AzureStorageShare -Name sample
+
+ This example removes a file share named sample.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureStorageShare
+
+
+
+ Get-AzureStorageShare
+
+
+
+
+
+
+
+ Remove-AzureStorageShareStoredAccessPolicy
+
+ Remove a Stored Access Policy from an azure storage share.
+
+
+
+
+ Remove
+ AzureStorageShareStoredAccessPolicy
+
+
+
+ Remove a Stored Access Policy from an azure storage share.
+
+
+
+ Remove-AzureStorageShareStoredAccessPolicy
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+
+ Policy
+
+ Name of the Azure storage Shared Access Policy to delete.
+
+ String
+
+
+ Force
+
+ Force to remove the policy without confirmation
+
+ SwitchParameter
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified policy is removed successfully.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Name of the Azure storage Shared Access Policy to delete.
+
+ String
+
+ String
+
+
+
+
+
+ Force
+
+ Force to remove the policy without confirmation
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified policy is removed successfully.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ CloudBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ cloudblob
+
+ cloudblob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Remove a stored access policy from an azure storage share --------------------------
+
+ PS C:\>
+
+ PS C:\> Remove-AzureStorageShareStoredAccessPolicy -ShareName test -Policy testPolicy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Remove-AzureStorageTable
+
+ Remove azure storage table
+
+
+
+
+ Remove
+ AzureStorageTable
+
+
+
+ Remove azure storage table
+
+
+
+ Remove-AzureStorageTable
+
+ Name
+
+ The name of the table to be removed.
+
+ String
+
+
+ Force
+
+ Force to remove the table without confirmation
+
+ SwitchParameter
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified table is remove successfully.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ Name
+
+ The name of the table to be removed.
+
+ String
+
+ String
+
+
+
+
+
+ Force
+
+ Force to remove the table without confirmation
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified table is remove successfully.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Remove azure storage table by table name --------------------------
+
+ PS C:\>
+
+ PS C:\> Remove-AzureStorageTable tableabc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Remove azure storage tables using GetAzureStorageTable --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageTable table* | Remove-AzureStorageTable
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Remove-AzureStorageTableStoredAccessPolicy
+
+ Remove Stored Access Policy from azure storage table.
+
+
+
+
+ Remove
+ AzureStorageTableStoredAccessPolicy
+
+
+
+ Remove Stored Access Policy from azure storage table.
+
+
+
+ Remove-AzureStorageTableStoredAccessPolicy
+
+ Table
+
+ Azure storage table name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Force
+
+ Force to remove the policy without confirmation
+
+ SwitchParameter
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified policy is remove successfully.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ Table
+
+ Azure storage table name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Force
+
+ Force to remove the policy without confirmation
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PassThru
+
+ Output a bool value in order to indicate whether the specified policy is remove successfully.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Remove a stored access policy from table --------------------------
+
+ PS C:\>
+
+ PS C:\> Remove-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ Set-AzureStorageBlobContent
+
+ Upload local file to azure storage blob.
+
+
+
+
+ Set
+ AzureStorageBlobContent
+
+
+
+ Upload local file to azure storage blob.
+
+
+
+ Set-AzureStorageBlobContent
+
+ File
+
+ Local file path.
+
+ String
+
+
+ Container
+
+ Container name
+
+ String
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+
+ BlobType
+
+ Destination Blob Type (Block/Page/Append).
+
+ String
+
+
+ Properties
+
+ Blob properties.
+
+ Hashtable
+
+
+ Metadata
+
+ Blob metadata.
+
+ Hashtable
+
+
+ Force
+
+ Force to overwrite the existing blob.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Set-AzureStorageBlobContent
+
+ File
+
+ Local file path.
+
+ String
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+
+ BlobType
+
+ Destination Blob Type (Block/Page/Append).
+
+ String
+
+
+ Properties
+
+ Blob properties.
+
+ Hashtable
+
+
+ Metadata
+
+ Blob metadata.
+
+ Hashtable
+
+
+ Force
+
+ Force to overwrite the existing blob.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Set-AzureStorageBlobContent
+
+ File
+
+ Local file path.
+
+ String
+
+
+ CloudBlob
+
+
+
+ CloudBlob
+
+
+ BlobType
+
+ Destination Blob Type (Block/Page/Append).
+
+ String
+
+
+ Properties
+
+ Blob properties.
+
+ Hashtable
+
+
+ Metadata
+
+ Blob metadata.
+
+ Hashtable
+
+
+ Force
+
+ Force to overwrite the existing blob.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ File
+
+ Local file path.
+
+ String
+
+ String
+
+
+
+
+
+ Container
+
+ Container name
+
+ String
+
+ String
+
+
+
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+ String
+
+
+
+
+
+ BlobType
+
+ Destination Blob Type (Block/Page/Append).
+
+ String
+
+ String
+
+
+
+
+
+ Properties
+
+ Blob properties.
+
+ Hashtable
+
+ Hashtable
+
+
+
+
+
+ Metadata
+
+ Blob metadata.
+
+ Hashtable
+
+ Hashtable
+
+
+
+
+
+ Force
+
+ Force to overwrite the existing blob.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+ ProcessorCount * 8
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+ CloudBlobContainer
+
+
+
+
+
+ CloudBlob
+
+
+
+ CloudBlob
+
+ CloudBlob
+
+
+
+
+
+ ICloudBlob
+
+ ICloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ icloudblob
+
+ icloudblob
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Upload file by name. --------------------------
+
+ PS C:\>
+
+ PS C:\> Set-AzureStorageBlobContent -Container upload -File .\filename -Blob blobname
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Upload file using ls command. --------------------------
+
+ PS C:\>
+
+ PS C:\> ls -File -Recurse | Set-AzureStorageBlobContent -Container upload
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Upload file using pipeline from GetAzureStorageBlob --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageBlob -Container containername -Blob blobname | Set-AzureStorageBlobContent -File filename
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Upload file using pipeline from GetAzureStorageContainer --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer -Container container* | Set-AzureStorageBlobContent -File filename -Blob blobname
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Upload file and set metadata --------------------------
+
+ PS C:\>
+
+ PS C:\> $meta = @{"key" = "value"; "name" = "test"}
Set-AzureStorageBlobContent -File filename -Container containername -Metadata $meta
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageBlobContent
-
-
-
-
- Get-AzureStorageBlob
-
-
-
-
- Remove-AzureStorageBlob
-
-
-
-
-
-
-
-
- Set-AzureStorageContainerAcl
-
- Set the public access permission to the specified azure storage container.
-
-
-
-
- Set
- AzureStorageContainerAcl
-
-
-
-
- Set the public access permission to the specified azure storage container.
-
-
-
- Set-AzureStorageContainerAcl
-
- Name
-
- Container name.
-
- String
-
-
- Permission
-
- Container public access permission (Off/Blob/Container).
-
- BlobContainerPublicAccessType
-
-
- PassThru
-
- Output the sepcified container.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- Name
-
- Container name.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Container public access permission (Off/Blob/Container).
-
- BlobContainerPublicAccessType
-
- BlobContainerPublicAccessType
-
-
-
-
-
-
- PassThru
-
- Output the sepcified container.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Set azure storage container acl by name. --------------------------
-
-
-
-
- PS C:\> Set-AzureStorageContainerAcl -Container container1 -Permission off -PassThru
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Set azure storage container acl using pipeline by GetAzureStorageContainer --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer container* | Set-AzureStorageContainerAcl -Permission blob -PassThru
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageContainerAcl
-
-
-
-
- Get-AzureStorageContainer
-
-
-
-
- New-AzureStorageContainer
-
-
-
-
- Remove-AzureStorageContainer
-
-
-
-
-
-
-
-
- Set-AzureStorageContainerStoredAccessPolicy
-
- Set Stored Access Policy for azure storage container.
-
-
-
-
- Set
- AzureStorageContainerStoredAccessPolicy
-
-
-
-
- Set Stored Access Policy for azure storage container.
-
-
-
- Set-AzureStorageContainerStoredAccessPolicy
-
- Container
-
- Azure storage container name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Permission
-
- Permissions for a storage container.
-
- String
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
-
- NoStartTime
-
- Set the StartTime to be Null.
-
- SwitchParameter
-
-
- NoExpiryTime
-
- Set the ExpiryTime to be Null.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Container
-
- Azure storage container name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Permissions for a storage container.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- NoStartTime
-
- Set the StartTime to be Null.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- NoExpiryTime
-
- Set the ExpiryTime to be Null.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Set a stored access policy in container with full permission --------------------------
-
-
-
-
- PS C:\> Set-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy -Permission rwdl
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- Set-AzureStorageCORSRule
-
- Set azure storage service CORS rules.
-
-
-
-
- Set
- AzureStorageCORSRule
-
-
-
- This cmdlet will set the CORS rules for a specified type of storage service (blob, table, queue). Note that it will overwrite the existing rules with the input CORS rules array. It is recommended to get the existing rules first before you set if you just want to add one rule as shown in example.
-
-
-
- Set-AzureStorageCORSRule
-
- ServiceType
-
- Azure storage service type, such as Blob, Table, Queue.
-
- StorageServiceType
-
-
- CorsRules
-
- An array of PSCORSRule instances each to represent a CORS rule. You can retrieve the existing rules using Get-AzureStorageCORSRule
-
- PSCorsRule[]
-
-
- PassThru
-
-
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- ServiceType
-
- Azure storage service type, such as Blob, Table, Queue.
-
- StorageServiceType
-
- StorageServiceType
-
-
-
-
-
-
- CorsRules
-
- An array of PSCORSRule instances each to represent a CORS rule.
-
- PSCorsRule[]
-
- PSCorsRule[]
-
-
-
-
-
-
- PassThru
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Set two CORS rules to blob service. --------------------------
-
- PS C:\>
-
- PS C:\> $CorsRules = (@{
- AllowedHeaders=@("x-ms-blob-content-type","x-ms-blob-content-disposition");
- AllowedOrigins=@("*");
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageBlobContent
+
+
+
+ Get-AzureStorageBlob
+
+
+
+ Remove-AzureStorageBlob
+
+
+
+
+
+
+
+ Set-AzureStorageContainerAcl
+
+ Set the public access permission to the specified azure storage container.
+
+
+
+
+ Set
+ AzureStorageContainerAcl
+
+
+
+ Set the public access permission to the specified azure storage container.
+
+
+
+ Set-AzureStorageContainerAcl
+
+ Name
+
+ Container name.
+
+ String
+
+
+ Permission
+
+ Container public access permission (Off/Blob/Container).
+
+ BlobContainerPublicAccessType
+
+
+ PassThru
+
+ Output the sepcified container.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Name
+
+ Container name.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Container public access permission (Off/Blob/Container).
+
+ BlobContainerPublicAccessType
+
+ BlobContainerPublicAccessType
+
+
+
+
+
+ PassThru
+
+ Output the sepcified container.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Set azure storage container acl by name. --------------------------
+
+ PS C:\>
+
+ PS C:\> Set-AzureStorageContainerAcl -Container container1 -Permission off -PassThru
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Set azure storage container acl using pipeline by GetAzureStorageContainer --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer container* | Set-AzureStorageContainerAcl -Permission blob -PassThru
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageContainerAcl
+
+
+
+ Get-AzureStorageContainer
+
+
+
+ New-AzureStorageContainer
+
+
+
+ Remove-AzureStorageContainer
+
+
+
+
+
+
+
+ Set-AzureStorageContainerStoredAccessPolicy
+
+ Set Stored Access Policy for azure storage container.
+
+
+
+
+ Set
+ AzureStorageContainerStoredAccessPolicy
+
+
+
+ Set Stored Access Policy for azure storage container.
+
+
+
+ Set-AzureStorageContainerStoredAccessPolicy
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage container.
+
+ String
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ NoStartTime
+
+ Set the StartTime to be Null.
+
+ SwitchParameter
+
+
+ NoExpiryTime
+
+ Set the ExpiryTime to be Null.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Container
+
+ Azure storage container name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage container.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ NoStartTime
+
+ Set the StartTime to be Null.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ NoExpiryTime
+
+ Set the ExpiryTime to be Null.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Set a stored access policy in container with full permission --------------------------
+
+ PS C:\>
+
+ PS C:\> Set-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy -Permission rwdl
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ Set-AzureStorageCORSRule
+
+ Set azure storage service CORS rules.
+
+
+
+
+ Set
+ AzureStorageCORSRule
+
+
+
+ This cmdlet will set the CORS rules for a specified type of storage service (blob, table, queue). Note that it will overwrite the existing rules with the input CORS rules array. It is recommended to get the existing rules first before you set if you just want to add one rule as shown in example.
+
+
+
+ Set-AzureStorageCORSRule
+
+ ServiceType
+
+ Azure storage service type, such as Blob, Table, Queue.
+
+ StorageServiceType
+
+
+ CorsRules
+
+ An array of PSCORSRule instances each to represent a CORS rule.
+
+ PSCorsRule[]
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ServiceType
+
+ Azure storage service type, such as Blob, Table, Queue.
+
+ StorageServiceType
+
+ StorageServiceType
+
+
+
+
+
+ CorsRules
+
+ An array of PSCORSRule instances each to represent a CORS rule.
+
+ PSCorsRule[]
+
+ PSCorsRule[]
+
+
+
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Set two CORS rules to blob service. --------------------------
+
+ PS C:\>
+
+ PS C:\> $CorsRules = (@{
+ AllowedHeaders=@("x-ms-blob-content-type","x-ms-blob-content-disposition");
+ AllowedOrigins=@("*");
MaxAgeInSeconds=30;
- AllowedMethods=@("Get","Connect")},
+ AllowedMethods=@("Get","Connect")},
@{
- AllowedOrigins=@("http://www.fabrikam.com","http://www.contoso.com");
- ExposedHeaders=@("x-ms-meta-data*","x-ms-meta-customheader");
- AllowedHeaders=@("x-ms-meta-target*","x-ms-meta-customheader");
+ AllowedOrigins=@("http://www.fabrikam.com","http://www.contoso.com");
+ ExposedHeaders=@("x-ms-meta-data*","x-ms-meta-customheader");
+ AllowedHeaders=@("x-ms-meta-target*","x-ms-meta-customheader");
MaxAgeInSeconds=30;
- AllowedMethods=@("Put")})
-PS C:\> Set-AzureStorageCORSRule -ServiceType Blob -CorsRules $CorsRules
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Change a CORS rule's properties of blob service. --------------------------
-
- PS C:\>
-
- PS C:\> $corsRules = Get-AzureStorageCORSRule -ServiceType Blob
-PS C:\> $corsRules[0].AllowedHeaders = @("x-ms-blob-content-type", "x-ms-blob-content-disposition")
-PS C:\> $corsRules[0].AllowedMethods = @("Get", "Connect", "Merge")
+ AllowedMethods=@("Put")})
+PS C:\> Set-AzureStorageCORSRule -ServiceType Blob -CorsRules $CorsRules
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Change a CORS rule's properties of blob service. --------------------------
+
+ PS C:\>
+
+ PS C:\> $corsRules = Get-AzureStorageCORSRule -ServiceType Blob
+PS C:\> $corsRules[0].AllowedHeaders = @("x-ms-blob-content-type", "x-ms-blob-content-disposition")
+PS C:\> $corsRules[0].AllowedMethods = @("Get", "Connect", "Merge")
PS C:\> Set-AzureStorageCORSRule -ServiceType Blob -CorsRules $corsRules
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Set-AzureStorageFileContent
-
- Upload the specified file to azure.
-
-
-
-
- Set
- AzureStorageFileContent
-
-
-
-
- Upload the specified file to azure.
-
-
-
- Set-AzureStorageFileContent
-
- ShareName
-
- The file share name
-
- String
-
-
- Source
-
- The source path of the file to upload
-
- String
-
-
- Path
-
- The destination file path to upload the local file
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the azure storage file when there is name conflict.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Set-AzureStorageFileContent
-
- Share
-
- The file share object
-
- CloudFileShare
-
-
- Source
-
- The source path of the file to upload
-
- String
-
-
- Path
-
- The destination file path to upload the local file
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the azure storage file when there is name conflict.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Set-AzureStorageFileContent
-
- Directory
-
- The destination directory object to upload the file
-
- CloudFileDirectory
-
-
- Source
-
- The source path of the file to upload
-
- String
-
-
- Path
-
- The destination file path to upload the local file
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the azure storage file when there is name conflict.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Set-AzureStorageFileContent
-
- Source
-
- The source path of the file to upload
-
- String
-
-
- Path
-
- The destination file path to upload the local file
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the azure storage file when there is name conflict.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
- Set-AzureStorageFileContent
-
- Source
-
- The source path of the file to upload
-
- String
-
-
- Path
-
- The destination file path to upload the local file
-
- String
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
-
- Force
-
- If this parameter is set, it will overwrite the azure storage file when there is name conflict.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
-
-
-
-
- ShareName
-
- The file share name
-
- String
-
- String
-
-
-
-
-
-
- Source
-
- The source path of the file to upload
-
- String
-
- String
-
-
-
-
-
-
- Path
-
- The destination file path to upload the local file
-
- String
-
- String
-
-
-
-
-
-
- PassThru
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Force
-
- If this parameter is set, it will overwrite the azure storage file when there is name conflict.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side timeout value for the request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- WhatIf
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Share
-
- The file share object
-
- CloudFileShare
-
- CloudFileShare
-
-
-
-
-
-
- Directory
-
- The destination directory object to upload the file
-
- CloudFileDirectory
-
- CloudFileDirectory
-
-
-
-
-
-
- ClientRequestId
-
-
-
-
- string
-
- string
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Example 1 --------------------------
-
-
-
-
- PS C:\> Set-AzureStorageFileContent –ShareName sample –Source samplefile –FilePath sampledir/samplefile
-
- This example uploads the samplefile file to the path sampledir/samplefile in the sample file share.
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureStorageFileDirectory
-
-
-
-
- New-AzureStorageFileDirectory
-
-
-
-
- Get-AzureStorageFileContent
-
-
-
-
- Set-AzureStorageFileContent
-
-
-
-
-
-
-
-
- Set-AzureStorageServiceLoggingProperty
-
- Set azure storage service logging properties。
-
-
-
-
- Set
- AzureStorageServiceLoggingProperty
-
-
-
-
- Set azure storage service logging properties。
-
-
-
- Set-AzureStorageServiceLoggingProperty
-
- ServiceType
-
- Azure storage service type.
-
- StorageServiceType
-
-
- Version
-
- Azure storage service logging version.
-
- Nullable`1[Double]
-
-
- RetentionDays
-
- Azure storage logging retention days.
-
- Nullable`1[Int32]
-
-
- LoggingOperations
-
- Azure storage service logging operations.
-
- LoggingOperations[]
-
-
- PassThru
-
- Ouput the updated azure storage service logging properties.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- ServiceType
-
- Azure storage service type.
-
- StorageServiceType
-
- StorageServiceType
-
-
-
-
-
-
- Version
-
- Azure storage service logging version.
-
- Nullable`1[Double]
-
- Nullable`1[Double]
-
-
-
-
-
-
- RetentionDays
-
- Azure storage logging retention days.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- LoggingOperations
-
- Azure storage service logging operations.
-
- LoggingOperations[]
-
- LoggingOperations[]
-
-
-
-
-
-
- PassThru
-
- Ouput the updated azure storage service logging properties.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Set logging properties for azure storage blob service. --------------------------
-
-
-
-
- PS C:\> Set-AzureStorageServiceLoggingProperty -ServiceType Blob -LoggingOperations Read,Write -RetentionDays 10 -Version 1.0 -PassThru
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/dn806397.aspx
-
-
-
-
-
-
- Set-AzureStorageServiceMetricsProperty
-
- Set azure storage service metrics properties.
-
-
-
-
- Set
- AzureStorageServiceMetricsProperty
-
-
-
-
- Set azure storage service metrics properties.
-
-
-
- Set-AzureStorageServiceMetricsProperty
-
- ServiceType
-
- Azure storage service type.
-
- StorageServiceType
-
-
- MetricsType
-
- Azure Storage service metrics type.
-
- ServiceMetricsType
-
-
- Version
-
- Azure storage service metrics version.
-
- Nullable`1[Double]
-
-
- RetentionDays
-
- Azure storage service metrics retention days.
-
- Nullable`1[Int32]
-
-
- MetricsLevel
-
- Azure storage service metrics level.
-
- Nullable`1[MetricsLevel]
-
-
- PassThru
-
- Output the updated azure storage service metrics properties.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- ServiceType
-
- Azure storage service type.
-
- StorageServiceType
-
- StorageServiceType
-
-
-
-
-
-
- MetricsType
-
- Azure Storage service metrics type.
-
- ServiceMetricsType
-
- ServiceMetricsType
-
-
-
-
-
-
- Version
-
- Azure storage service metrics version.
-
- Nullable`1[Double]
-
- Nullable`1[Double]
-
-
-
-
-
-
- RetentionDays
-
- Azure storage service metrics retention days.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- MetricsLevel
-
- Azure storage service metrics level.
-
- Nullable`1[MetricsLevel]
-
- Nullable`1[MetricsLevel]
-
-
-
-
-
-
- PassThru
-
- Output the updated azure storage service metrics properties.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- int32
-
- int32
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Set metrics properties for azure storage blob service. --------------------------
-
-
-
-
- PS C:\> Set-AzureStorageServiceMetricsProperty -ServiceType Blob -MetricsType Hour -MetricsLevel Service -RetentionDays 10 -Version 1.0 -PassThru
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/dn806391.aspx
-
-
-
-
-
-
- Set-AzureStorageShareQuota
-
- Set capacity quota for a specific share.
-
-
-
-
- Set
- AzureStorageShareQuota
-
-
-
- Set capacity quota for a specific share.
-
-
-
- Set-AzureStorageShareQuota
-
- ShareName
-
- Name of the share whose quota to be set.
-
- String
-
-
- Quota
-
- Quota value in GB.
-
- Int32
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
- Set-AzureStorageShareQuota
-
- Share
-
- Instance of CloudFileShare to represent a share whose quota to be set. You can retrieve a share using Get-AzureStorageShare cmdlet.
-
- CloudFileShare
-
-
- Quota
-
- Quota value in GB.
-
- Int32
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
-
-
- ShareName
-
- Name of the share whose quota to be set.
-
- String
-
- String
-
-
-
-
-
-
- Quota
-
- Quota value in GB.
-
- Int32
-
- Int32
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Profile
-
-
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
- Share
-
- Instance of CloudFileShare to represent a share whose quota to be set. You can retrieve a share using Get-AzureStorageShare cmdlet.
-
- CloudFileShare
-
- CloudFileShare
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Set quota of a share --------------------------
-
- PS C:\>
-
- PS C:\> Set-AzureStorageShareQuota -ShareName "myshare" -Quota 1024
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Set-AzureStorageShareStoredAccessPolicy
-
- Update a Stored Access Policy for an azure storage share.
-
-
-
-
- Set
- AzureStorageShareStoredAccessPolicy
-
-
-
- Update a Stored Access Policy for an azure storage share.
-
-
-
- Set-AzureStorageShareStoredAccessPolicy
-
- ShareName
-
- Azure storage share name.
-
- String
-
-
- Policy
-
- Name of Azure storage Stored Access Policy to be set.
-
- String
-
-
- Permission
-
- New permissions in the Stored Access Policy to access the share or files under it.
-
- String
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
-
- NoStartTime
-
- Clear the StartTime property in the Stored Access Policy.
-
- SwitchParameter
-
-
- NoExpiryTime
-
- Clear the ExpiryTime property in the Stored Access Policy.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
-
- Profile
-
-
-
- AzureProfile
-
-
-
-
-
- ShareName
-
- Azure storage share name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Name of Azure storage Stored Access Policy to be set.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- New permissions in the Stored Access Policy to access the share or files under it.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- NoStartTime
-
- Clear the StartTime property in the Stored Access Policy.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- NoExpiryTime
-
- Clear the ExpiryTime property in the Stored Access Policy.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Profile
-
-
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Update a stored access policy in an azure storage share with full permission --------------------------
-
- PS C:\>
-
- PS C:\> Set-AzureStorageShareStoredAccessPolicy -ShareName test -Policy testPolicy -Permission rwdl
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Set-AzureStorageTableStoredAccessPolicy
-
- Set Stored Access Policy for azure storage table.
-
-
-
-
- Set
- AzureStorageTableStoredAccessPolicy
-
-
-
-
- Set Stored Access Policy for azure storage table.
-
-
-
- Set-AzureStorageTableStoredAccessPolicy
-
- Table
-
- Azure storage table name.
-
- String
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
-
- Permission
-
- Permissions for a storage table.
-
- String
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
-
- NoStartTime
-
- Set the StartTime to be Null.
-
- SwitchParameter
-
-
- NoExpiryTime
-
- Set the ExpiryTime to be Null.
-
- SwitchParameter
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
-
-
-
- Table
-
- Azure storage table name.
-
- String
-
- String
-
-
-
-
-
-
- Policy
-
- Azure Stored Access Policy.
-
- String
-
- String
-
-
-
-
-
-
- Permission
-
- Permissions for a storage table.
-
- String
-
- String
-
-
-
-
-
-
- StartTime
-
- The time at which the stored access policy becomes valid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- ExpiryTime
-
- The time at which the stored access policy becomes invalid.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
-
- NoStartTime
-
- Set the StartTime to be Null.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- NoExpiryTime
-
- Set the ExpiryTime to be Null.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure storage context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Set a stored access policy in table with full permission --------------------------
-
-
-
-
- PS C:\> Set-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy -Permission raud
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
-
-
-
-
-
-
-
-
- Start-AzureStorageBlobCopy
-
- Start a copy operation to the specified destination blob.
-
-
-
-
- Start
- AzureStorageBlobCopy
-
-
-
-
- Start a copy operation to the specified destination blob.
-
-
-
- Start-AzureStorageBlobCopy
-
- SrcBlob
-
- Source blob name.
-
- String
-
-
- SrcContainer
-
- Source container name.
-
- String
-
-
- DestContainer
-
- Destination container name.
-
- String
-
-
- DestBlob
-
- Destination blob name.
-
- String
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Start-AzureStorageBlobCopy
-
- CloudBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
-
- DestCloudBlob
-
- Destination CloudBlob object
-
- CloudBlob
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Start-AzureStorageBlobCopy
-
- CloudBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
-
- DestContainer
-
- Destination container name.
-
- String
-
-
- DestBlob
-
- Destination blob name.
-
- String
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Start-AzureStorageBlobCopy
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
-
- SrcBlob
-
- Source blob name.
-
- String
-
-
- DestContainer
-
- Destination container name.
-
- String
-
-
- DestBlob
-
- Destination blob name.
-
- String
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Start-AzureStorageBlobCopy
-
- SrcShareName
-
- Source share name.
-
- String
-
-
- SrcFilePath
-
- Source file relative path to source directory or source share.
-
- String
-
-
- DestContainer
-
- Destination container name.
-
- String
-
-
- DestBlob
-
- Destination blob name.
-
- String
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Start-AzureStorageBlobCopy
-
- SrcShare
-
- CloudFileShare object from Azure Storage Client library. You can create it or use Get-AzureStorageShare cmdlet.
-
- CloudFileShare
-
-
- SrcFilePath
-
- Source file relative path to source directory or source share.
-
- String
-
-
- DestContainer
-
- Destination container name.
-
- String
-
-
- DestBlob
-
- Destination blob name.
-
- String
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Start-AzureStorageBlobCopy
-
- SrcDir
-
- CloudFileDirectory object from Azure Storage Client library.
-
- CloudFileDirectory
-
-
- SrcFilePath
-
- Source file relative path to source directory or source share.
-
- String
-
-
- DestContainer
-
- Destination container name.
-
- String
-
-
- DestBlob
-
- Destination blob name.
-
- String
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Start-AzureStorageBlobCopy
-
- SrcFile
-
- CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
-
- CloudFile
-
-
- DestCloudBlob
-
- Destination CloudBlob object
-
- CloudBlob
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Start-AzureStorageBlobCopy
-
- SrcFile
-
- CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
-
- CloudFile
-
-
- DestContainer
-
- Destination container name.
-
- String
-
-
- DestBlob
-
- Destination blob name.
-
- String
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
- Start-AzureStorageBlobCopy
-
- AbsoluteUri
-
- Absolute Uri to the source. Be noted that the credential should be provided in the Uri, if the source requires any.
-
- String
-
-
- DestContainer
-
- Destination container name.
-
- String
-
-
- DestBlob
-
- Destination blob name.
-
- String
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
-
-
-
- SrcBlob
-
- Source blob name.
-
- String
-
- String
-
-
-
-
-
-
- SrcContainer
-
- Source container name.
-
- String
-
- String
-
-
-
-
-
-
- DestContainer
-
- Destination container name.
-
- String
-
- String
-
-
-
-
-
-
- DestBlob
-
- Destination blob name.
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- Force
-
- Force to overwrite the destination blob without confirmation.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- CloudBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
- CloudBlob
-
-
-
-
-
-
- DestCloudBlob
-
- Destination CloudBlob object
-
- CloudBlob
-
- CloudBlob
-
-
-
-
-
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
- CloudBlobContainer
-
-
-
-
-
-
- SrcShareName
-
- Source share name.
-
- String
-
- String
-
-
-
-
-
-
- SrcFilePath
-
- Source file relative path to source directory or source share.
-
- String
-
- String
-
-
-
-
-
-
- SrcShare
-
- CloudFileShare object from Azure Storage Client library. You can create it or use Get-AzureStorageShare cmdlet.
-
- CloudFileShare
-
- CloudFileShare
-
-
-
-
-
-
- SrcDir
-
- CloudFileDirectory object from Azure Storage Client library.
-
- CloudFileDirectory
-
- CloudFileDirectory
-
-
-
-
-
-
- SrcFile
-
- CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
-
- CloudFile
-
- CloudFile
-
-
-
-
-
-
- AbsoluteUri
-
- Absolute Uri to the source. Be noted that the credential should be provided in the Uri, if the source requires any.
-
- String
-
- String
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Start copy operation by name. --------------------------
-
-
-
-
- PS C:\> Start-CopyAzureStorageContainer -SrcContainer container1 -SrcBlob blob1 -DestContainer container2
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Start copy operation using container pipeline from GetAzureStorageContainer. --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer -Container container1 | Start-AzureStorageBlobCopy -SrcBlob blob -DestContainer container2
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- StartCopy to specified blob using pipeline from GetAzureStorageBlob --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageBlob -Container container1 | Start-AzureStorageBlobCopy -DestContainer container2
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- start copy operation to CloudBlob object --------------------------
-
-
-
-
- PS C:\> $srcBlob = Get-AzureStorageBlob -Container container1 -Blob srcBlob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Set-AzureStorageFileContent
+
+ Upload the specified file to azure.
+
+
+
+
+ Set
+ AzureStorageFileContent
+
+
+
+ Upload the specified file to azure.
+
+
+
+ Set-AzureStorageFileContent
+
+ ShareName
+
+ The file share name
+
+ String
+
+
+ Source
+
+ The source path of the file to upload
+
+ String
+
+
+ Path
+
+ The destination file path to upload the local file
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the azure storage file when there is name conflict.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Set-AzureStorageFileContent
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+
+ Source
+
+ The source path of the file to upload
+
+ String
+
+
+ Path
+
+ The destination file path to upload the local file
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the azure storage file when there is name conflict.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Set-AzureStorageFileContent
+
+ Directory
+
+ The destination directory object to upload the file
+
+ CloudFileDirectory
+
+
+ Source
+
+ The source path of the file to upload
+
+ String
+
+
+ Path
+
+ The destination file path to upload the local file
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the azure storage file when there is name conflict.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Set-AzureStorageFileContent
+
+ Source
+
+ The source path of the file to upload
+
+ String
+
+
+ Path
+
+ The destination file path to upload the local file
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the azure storage file when there is name conflict.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Set-AzureStorageFileContent
+
+ Source
+
+ The source path of the file to upload
+
+ String
+
+
+ Path
+
+ The destination file path to upload the local file
+
+ String
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+
+ Force
+
+ If this parameter is set, it will overwrite the azure storage file when there is name conflict.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ ShareName
+
+ The file share name
+
+ String
+
+ String
+
+
+
+
+
+ Source
+
+ The source path of the file to upload
+
+ String
+
+ String
+
+
+
+
+
+ Path
+
+ The destination file path to upload the local file
+
+ String
+
+ String
+
+
+
+
+
+ PassThru
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Force
+
+ If this parameter is set, it will overwrite the azure storage file when there is name conflict.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side timeout value for the request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Share
+
+ The file share object
+
+ CloudFileShare
+
+ CloudFileShare
+
+
+
+
+
+ Directory
+
+ The destination directory object to upload the file
+
+ CloudFileDirectory
+
+ CloudFileDirectory
+
+
+
+
+
+ ClientRequestId
+
+
+
+ string
+
+ string
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Example 1 --------------------------
+
+ PS C:\>
+
+ PS C:\> Set-AzureStorageFileContent –ShareName sample –Source samplefile –FilePath sampledir/samplefile
+
+ This example uploads the samplefile file to the path sampledir/samplefile in the sample file share.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Remove-AzureStorageFileDirectory
+
+
+
+ New-AzureStorageFileDirectory
+
+
+
+ Get-AzureStorageFileContent
+
+
+
+ Set-AzureStorageFileContent
+
+
+
+
+
+
+
+ Set-AzureStorageQueueStoredAccessPolicy
+
+ Set Stored Access Policy for azure storage queue.
+
+
+
+
+ Set
+ AzureStorageQueueStoredAccessPolicy
+
+
+
+ Set Stored Access Policy for azure storage queue.
+
+
+
+ Set-AzureStorageQueueStoredAccessPolicy
+
+ Queue
+
+ Azure storage queue name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage queue.
+
+ String
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ NoStartTime
+
+ Set the StartTime to be Null.
+
+ SwitchParameter
+
+
+ NoExpiryTime
+
+ Set the ExpiryTime to be Null.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Queue
+
+ Azure storage queue name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage queue.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ NoStartTime
+
+ Set the StartTime to be Null.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ NoExpiryTime
+
+ Set the ExpiryTime to be Null.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Set a stored access policy in queue with full permission --------------------------
+
+ PS C:\>
+
+ PS C:\> Set-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy -Permission arup
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ Set-AzureStorageServiceLoggingProperty
+
+ Set azure storage service logging properties。
+
+
+
+
+ Set
+ AzureStorageServiceLoggingProperty
+
+
+
+ Set azure storage service logging properties。
+
+
+
+ Set-AzureStorageServiceLoggingProperty
+
+ ServiceType
+
+ Azure storage service type.
+
+ StorageServiceType
+
+
+ Version
+
+ Azure storage service logging version.
+
+ Nullable`1[Double]
+
+
+ RetentionDays
+
+ Azure storage logging retention days.
+
+ Nullable`1[Int32]
+
+
+ LoggingOperations
+
+ Azure storage service logging operations.
+
+ LoggingOperations[]
+
+
+ PassThru
+
+ Ouput the updated azure storage service logging properties.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ServiceType
+
+ Azure storage service type.
+
+ StorageServiceType
+
+ StorageServiceType
+
+
+
+
+
+ Version
+
+ Azure storage service logging version.
+
+ Nullable`1[Double]
+
+ Nullable`1[Double]
+
+
+
+
+
+ RetentionDays
+
+ Azure storage logging retention days.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ LoggingOperations
+
+ Azure storage service logging operations.
+
+ LoggingOperations[]
+
+ LoggingOperations[]
+
+
+
+
+
+ PassThru
+
+ Ouput the updated azure storage service logging properties.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Set logging properties for azure storage blob service. --------------------------
+
+ PS C:\>
+
+ PS C:\> Set-AzureStorageServiceLoggingProperty -ServiceType Blob -LoggingOperations Read,Write -RetentionDays 10 -Version 1.0 -PassThru
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/dn806397.aspx
+
+
+
+
+
+
+ Set-AzureStorageServiceMetricsProperty
+
+ Set azure storage service metrics properties.
+
+
+
+
+ Set
+ AzureStorageServiceMetricsProperty
+
+
+
+ Set azure storage service metrics properties.
+
+
+
+ Set-AzureStorageServiceMetricsProperty
+
+ ServiceType
+
+ Azure storage service type.
+
+ StorageServiceType
+
+
+ MetricsType
+
+ Azure Storage service metrics type.
+
+ ServiceMetricsType
+
+
+ Version
+
+ Azure storage service metrics version.
+
+ Nullable`1[Double]
+
+
+ RetentionDays
+
+ Azure storage service metrics retention days.
+
+ Nullable`1[Int32]
+
+
+ MetricsLevel
+
+ Azure storage service metrics level.
+
+ Nullable`1[MetricsLevel]
+
+
+ PassThru
+
+ Output the updated azure storage service metrics properties.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ServiceType
+
+ Azure storage service type.
+
+ StorageServiceType
+
+ StorageServiceType
+
+
+
+
+
+ MetricsType
+
+ Azure Storage service metrics type.
+
+ ServiceMetricsType
+
+ ServiceMetricsType
+
+
+
+
+
+ Version
+
+ Azure storage service metrics version.
+
+ Nullable`1[Double]
+
+ Nullable`1[Double]
+
+
+
+
+
+ RetentionDays
+
+ Azure storage service metrics retention days.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ MetricsLevel
+
+ Azure storage service metrics level.
+
+ Nullable`1[MetricsLevel]
+
+ Nullable`1[MetricsLevel]
+
+
+
+
+
+ PassThru
+
+ Output the updated azure storage service metrics properties.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ int32
+
+ int32
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Set metrics properties for azure storage blob service. --------------------------
+
+ PS C:\>
+
+ PS C:\> Set-AzureStorageServiceMetricsProperty -ServiceType Blob -MetricsType Hour -MetricsLevel Service -RetentionDays 10 -Version 1.0 -PassThru
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/dn806391.aspx
+
+
+
+
+
+
+ Set-AzureStorageShareQuota
+
+ Set capacity quota for a specific share.
+
+
+
+
+ Set
+ AzureStorageShareQuota
+
+
+
+ Set capacity quota for a specific share.
+
+
+
+ Set-AzureStorageShareQuota
+
+ ShareName
+
+ Name of the share whose quota to be set.
+
+ String
+
+
+ Quota
+
+ Quota value in GB.
+
+ Int32
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Set-AzureStorageShareQuota
+
+ Share
+
+ Instance of CloudFileShare to represent a share whose quota to be set. You can retrieve a share using Get-AzureStorageShare cmdlet.
+
+ CloudFileShare
+
+
+ Quota
+
+ Quota value in GB.
+
+ Int32
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ShareName
+
+ Name of the share whose quota to be set.
+
+ String
+
+ String
+
+
+
+
+
+ Quota
+
+ Quota value in GB.
+
+ Int32
+
+ Int32
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Share
+
+ Instance of CloudFileShare to represent a share whose quota to be set. You can retrieve a share using Get-AzureStorageShare cmdlet.
+
+ CloudFileShare
+
+ CloudFileShare
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Set quota of a share --------------------------
+
+ PS C:\>
+
+ PS C:\> Set-AzureStorageShareQuota -ShareName "myshare" -Quota 1024
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Set-AzureStorageShareStoredAccessPolicy
+
+ Update a Stored Access Policy for an azure storage share.
+
+
+
+
+ Set
+ AzureStorageShareStoredAccessPolicy
+
+
+
+ Update a Stored Access Policy for an azure storage share.
+
+
+
+ Set-AzureStorageShareStoredAccessPolicy
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+
+ Policy
+
+ Name of Azure storage Stored Access Policy to be set.
+
+ String
+
+
+ Permission
+
+ New permissions in the Stored Access Policy to access the share or files under it.
+
+ String
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ NoStartTime
+
+ Clear the StartTime property in the Stored Access Policy.
+
+ SwitchParameter
+
+
+ NoExpiryTime
+
+ Clear the ExpiryTime property in the Stored Access Policy.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ShareName
+
+ Azure storage share name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Name of Azure storage Stored Access Policy to be set.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ New permissions in the Stored Access Policy to access the share or files under it.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ NoStartTime
+
+ Clear the StartTime property in the Stored Access Policy.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ NoExpiryTime
+
+ Clear the ExpiryTime property in the Stored Access Policy.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Update a stored access policy in an azure storage share with full permission --------------------------
+
+ PS C:\>
+
+ PS C:\> Set-AzureStorageShareStoredAccessPolicy -ShareName test -Policy testPolicy -Permission rwdl
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Set-AzureStorageTableStoredAccessPolicy
+
+ Set Stored Access Policy for azure storage table.
+
+
+
+
+ Set
+ AzureStorageTableStoredAccessPolicy
+
+
+
+ Set Stored Access Policy for azure storage table.
+
+
+
+ Set-AzureStorageTableStoredAccessPolicy
+
+ Table
+
+ Azure storage table name.
+
+ String
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+
+ Permission
+
+ Permissions for a storage table.
+
+ String
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+
+ NoStartTime
+
+ Set the StartTime to be Null.
+
+ SwitchParameter
+
+
+ NoExpiryTime
+
+ Set the ExpiryTime to be Null.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Table
+
+ Azure storage table name.
+
+ String
+
+ String
+
+
+
+
+
+ Policy
+
+ Azure Stored Access Policy.
+
+ String
+
+ String
+
+
+
+
+
+ Permission
+
+ Permissions for a storage table.
+
+ String
+
+ String
+
+
+
+
+
+ StartTime
+
+ The time at which the stored access policy becomes valid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ ExpiryTime
+
+ The time at which the stored access policy becomes invalid.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ NoStartTime
+
+ Set the StartTime to be Null.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ NoExpiryTime
+
+ Set the ExpiryTime to be Null.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure storage context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Set a stored access policy in table with full permission --------------------------
+
+ PS C:\>
+
+ PS C:\> Set-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy -Permission raud
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx
+
+
+
+
+
+
+
+ Start-AzureStorageBlobCopy
+
+ Start a copy operation to the specified destination blob.
+
+
+
+
+ Start
+ AzureStorageBlobCopy
+
+
+
+ Start a copy operation to the specified destination blob.
+
+
+
+ Start-AzureStorageBlobCopy
+
+ SrcBlob
+
+ Source blob name.
+
+ String
+
+
+ SrcContainer
+
+ Source container name.
+
+ String
+
+
+ DestContainer
+
+ Destination container name.
+
+ String
+
+
+ DestBlob
+
+ Destination blob name.
+
+ String
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Start-AzureStorageBlobCopy
+
+ CloudBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+
+ DestCloudBlob
+
+ Destination CloudBlob object
+
+ CloudBlob
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Start-AzureStorageBlobCopy
+
+ CloudBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+
+ DestContainer
+
+ Destination container name.
+
+ String
+
+
+ DestBlob
+
+ Destination blob name.
+
+ String
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Start-AzureStorageBlobCopy
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+
+ SrcBlob
+
+ Source blob name.
+
+ String
+
+
+ DestContainer
+
+ Destination container name.
+
+ String
+
+
+ DestBlob
+
+ Destination blob name.
+
+ String
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Start-AzureStorageBlobCopy
+
+ SrcShareName
+
+ Source share name.
+
+ String
+
+
+ SrcFilePath
+
+ Source file relative path to source directory or source share.
+
+ String
+
+
+ DestContainer
+
+ Destination container name.
+
+ String
+
+
+ DestBlob
+
+ Destination blob name.
+
+ String
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Start-AzureStorageBlobCopy
+
+ SrcShare
+
+ CloudFileShare object from Azure Storage Client library. You can create it or use Get-AzureStorageShare cmdlet.
+
+ CloudFileShare
+
+
+ SrcFilePath
+
+ Source file relative path to source directory or source share.
+
+ String
+
+
+ DestContainer
+
+ Destination container name.
+
+ String
+
+
+ DestBlob
+
+ Destination blob name.
+
+ String
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Start-AzureStorageBlobCopy
+
+ SrcDir
+
+ CloudFileDirectory object from Azure Storage Client library.
+
+ CloudFileDirectory
+
+
+ SrcFilePath
+
+ Source file relative path to source directory or source share.
+
+ String
+
+
+ DestContainer
+
+ Destination container name.
+
+ String
+
+
+ DestBlob
+
+ Destination blob name.
+
+ String
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Start-AzureStorageBlobCopy
+
+ SrcFile
+
+ CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
+
+ CloudFile
+
+
+ DestContainer
+
+ Destination container name.
+
+ String
+
+
+ DestBlob
+
+ Destination blob name.
+
+ String
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Start-AzureStorageBlobCopy
+
+ SrcFile
+
+ CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
+
+ CloudFile
+
+
+ DestCloudBlob
+
+ Destination CloudBlob object
+
+ CloudBlob
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Start-AzureStorageBlobCopy
+
+ AbsoluteUri
+
+ Absolute Uri to the source. Be noted that the credential should be provided in the Uri, if the source requires any.
+
+ String
+
+
+ DestContainer
+
+ Destination container name.
+
+ String
+
+
+ DestBlob
+
+ Destination blob name.
+
+ String
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ SrcBlob
+
+ Source blob name.
+
+ String
+
+ String
+
+
+
+
+
+ SrcContainer
+
+ Source container name.
+
+ String
+
+ String
+
+
+
+
+
+ DestContainer
+
+ Destination container name.
+
+ String
+
+ String
+
+
+
+
+
+ DestBlob
+
+ Destination blob name.
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ Force
+
+ Force to overwrite the destination blob without confirmation.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ CloudBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+ CloudBlob
+
+
+
+
+
+ DestCloudBlob
+
+ Destination CloudBlob object
+
+ CloudBlob
+
+ CloudBlob
+
+
+
+
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+ CloudBlobContainer
+
+
+
+
+
+ SrcShareName
+
+ Source share name.
+
+ String
+
+ String
+
+
+
+
+
+ SrcFilePath
+
+ Source file relative path to source directory or source share.
+
+ String
+
+ String
+
+
+
+
+
+ SrcShare
+
+ CloudFileShare object from Azure Storage Client library. You can create it or use Get-AzureStorageShare cmdlet.
+
+ CloudFileShare
+
+ CloudFileShare
+
+
+
+
+
+ SrcDir
+
+ CloudFileDirectory object from Azure Storage Client library.
+
+ CloudFileDirectory
+
+ CloudFileDirectory
+
+
+
+
+
+ SrcFile
+
+ CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
+
+ CloudFile
+
+ CloudFile
+
+
+
+
+
+ AbsoluteUri
+
+ Absolute Uri to the source. Be noted that the credential should be provided in the Uri, if the source requires any.
+
+ String
+
+ String
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Start copy operation by name. --------------------------
+
+ PS C:\>
+
+ PS C:\> Start-CopyAzureStorageContainer -SrcContainer container1 -SrcBlob blob1 -DestContainer container2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Start copy operation using container pipeline from GetAzureStorageContainer. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer -Container container1 | Start-AzureStorageBlobCopy -SrcBlob blob -DestContainer container2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- StartCopy to specified blob using pipeline from GetAzureStorageBlob --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageBlob -Container container1 | Start-AzureStorageBlobCopy -DestContainer container2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- start copy operation to CloudBlob object --------------------------
+
+ PS C:\>
+
+ PS C:\> $srcBlob = Get-AzureStorageBlob -Container container1 -Blob srcBlob
$destBlob = Get-AzureStorageBlob -Container container2 -Blob destBlob
Start-AzureStorageBlobCopy -CloudBlob $srcBlob.ICloudBlob -DestCloudBlob $destBlob.ICloudBlob
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Start copy operation using source uri --------------------------
-
-
-
-
- PS C:\> $context = New-AzureStorageContainer -StorageAccountName accountname -StorageAccountKey accountkey
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Start copy operation using source uri --------------------------
+
+ PS C:\>
+
+ PS C:\> $context = New-AzureStorageContainer -StorageAccountName accountname -StorageAccountKey accountkey
Start-AzureStorageBlobCopy -SrcUri http://www.somesite.com/somefile -DestContainer container -DestBlob blob -DestContext $context
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Start copy from a secondary location --------------------------
-
-
-
-
- PS C:\> $SrcContext = New-AzureStorageContext -ConnectionString "DefaultEndpointsProtocol=https;AccountName=myaccount;AccountKey=***;BlobEndpoint=http://myaccount-secondary.blob.core.windows.net;FileEndpoint=http://myaccount-secondary.file.core.windows.net;QueueEndpoint=http://myaccount-secondary.queue.core.windows.net; TableEndpoint=http://myaccount-secondary.table.core.windows.net;"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Start copy from a secondary location --------------------------
+
+ PS C:\>
+
+ PS C:\> $SrcContext = New-AzureStorageContext -ConnectionString "DefaultEndpointsProtocol=https;AccountName=myaccount;AccountKey=***;BlobEndpoint=http://myaccount-secondary.blob.core.windows.net;FileEndpoint=http://myaccount-secondary.file.core.windows.net;QueueEndpoint=http://myaccount-secondary.queue.core.windows.net; TableEndpoint=http://myaccount-secondary.table.core.windows.net;"
-Start-AzureStorageBlobCopy –Container sourcecontainer -Blob BlobName -Context $SrcContext –DestContainer destcontainer -DestBlob DestBlobName
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureStorageBlobCopyState
-
-
-
-
- Stop-AzureStorageBlobCopy
-
-
-
-
-
-
-
-
- Start-AzureStorageFileCopy
-
- Start a copy operation to the specified destination file.
-
-
-
-
- Start
- AzureStorageFileCopy
-
-
-
- Start a copy operation to the specified destination file.
-
-
-
- Start-AzureStorageFileCopy
-
- SrcBlobName
-
- Source blob name.
-
- String
-
-
- SrcContainerName
-
- Source container name.
-
- String
-
-
- DestShareName
-
- Destination share name.
-
- String
-
-
- DestFilePath
-
- Destination file relative path to destination share.
-
- String
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
- Start-AzureStorageFileCopy
-
- SrcBlobName
-
- Source blob name.
-
- String
-
-
- SrcContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
-
- DestShareName
-
- Destination share name.
-
- String
-
-
- DestFilePath
-
- Destination file relative path to destination share.
-
- String
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
- Start-AzureStorageFileCopy
-
- SrcBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
-
- DestFile
-
- CloudFile object from Azure Storage Client library.
-
- CloudFile
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
- Start-AzureStorageFileCopy
-
- SrcBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
-
- DestShareName
-
- Destination share name.
-
- String
-
-
- DestFilePath
-
- Destination file relative path to destination share.
-
- String
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
- Start-AzureStorageFileCopy
-
- SrcFilePath
-
- Source file relative path to source directory or source share.
-
- String
-
-
- SrcShareName
-
- Source share name.
-
- String
-
-
- DestShareName
-
- Destination share name.
-
- String
-
-
- DestFilePath
-
- Destination file relative path to destination share.
-
- String
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
- Start-AzureStorageFileCopy
-
- SrcFilePath
-
- Source file relative path to source directory or source share.
-
- String
-
-
- SrcShare
-
- CloudFileShare object from Azure Storage Client library. You can create it or use Get-AzureStorageShare cmdlet.
-
- CloudFileShare
-
-
- DestShareName
-
- Destination share name.
-
- String
-
-
- DestFilePath
-
- Destination file relative path to destination share.
-
- String
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
- Start-AzureStorageFileCopy
-
- SrcFile
-
- CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
-
- CloudFile
-
-
- DestShareName
-
- Destination share name.
-
- String
-
-
- DestFilePath
-
- Destination file relative path to destination share.
-
- String
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
- Start-AzureStorageFileCopy
-
- SrcFile
-
- CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
-
- CloudFile
-
-
- DestFile
-
- CloudFile object from Azure Storage Client library.
-
- CloudFile
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
- Start-AzureStorageFileCopy
-
- AbsoluteUri
-
- Absolute Uri to the source. Be noted that the credential should be provided in the Uri, if the source requires any.
-
- String
-
-
- DestShareName
-
- Destination share name.
-
- String
-
-
- DestFilePath
-
- Destination file relative path to destination share.
-
- String
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
- Start-AzureStorageFileCopy
-
- AbsoluteUri
-
- Absolute Uri to the source. Be noted that the credential should be provided in the Uri, if the source requires any.
-
- String
-
-
- DestFile
-
- CloudFile object from Azure Storage Client library.
-
- CloudFile
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
-
-
-
- SrcBlobName
-
- Source blob name.
-
- String
-
- String
-
-
-
-
-
-
- SrcContainerName
-
- Source container name.
-
- String
-
- String
-
-
-
-
-
-
- DestShareName
-
- Destination share name.
-
- String
-
- String
-
-
-
-
-
-
- DestFilePath
-
- Destination file relative path to destination share.
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- DestContext
-
- Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- Force
-
- Force to overwrite the destination file without confirmation.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Profile
-
- AzureProfile
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
- WhatIf
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Confirm
-
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- SrcContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
- CloudBlobContainer
-
-
-
-
-
-
- SrcBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
- CloudBlob
-
-
-
-
-
-
- DestFile
-
- CloudFile object from Azure Storage Client library.
-
- CloudFile
-
- CloudFile
-
-
-
-
-
-
- SrcFilePath
-
- Source file relative path to source directory or source share.
-
- String
-
- String
-
-
-
-
-
-
- SrcShareName
-
- Source share name.
-
- String
-
- String
-
-
-
-
-
-
- SrcShare
-
- CloudFileShare object from Azure Storage Client library. You can create it or use Get-AzureStorageShare cmdlet.
-
- CloudFileShare
-
- CloudFileShare
-
-
-
-
-
-
- SrcFile
-
- CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
-
- CloudFile
-
- CloudFile
-
-
-
-
-
-
- AbsoluteUri
-
- Absolute Uri to the source. Be noted that the credential should be provided in the Uri, if the source requires any.
-
- String
-
- String
-
-
-
-
-
-
- SrcDir
-
- CloudFileDirectory object from Azure Storage Client library.
-
- cloudfiledirectory
-
- cloudfiledirectory
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Start copy operation from file to file with share name and file name --------------------------
-
- PS C:\>
-
- PS C:\> Start-AzureStorageFileCopy -SrcShareName share -SrcFilePath filepath -DestShareName share2 -DestFilePath filepath2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Start copy operation from blob to file with container name and blob name --------------------------
-
- PS C:\>
-
- PS C:\> Start-AzureStorageFileCopy -SrcContainerName container -SrcBlobName blobname -DestShareName share -DestFilePath filepath
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Stop-AzureStorageBlobCopy
-
- Stop a copy operation to the specified destination blob.
-
-
-
-
- Stop
- AzureStorageBlobCopy
-
-
-
-
- Stop a copy operation to the specified destination blob.
-
-
-
- Stop-AzureStorageBlobCopy
-
- Blob
-
- Blob name.
-
- String
-
-
- Container
-
- Container name.
-
- String
-
-
- Force
-
- Force to stop the current copy task on the specified blob
-
- SwitchParameter
-
-
- CopyId
-
- Copy Id
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Stop-AzureStorageBlobCopy
-
- CloudBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
-
- Force
-
- Force to stop the current copy task on the specified blob
-
- SwitchParameter
-
-
- CopyId
-
- Copy Id
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
- Stop-AzureStorageBlobCopy
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
-
- Blob
-
- Blob name.
-
- String
-
-
- Force
-
- Force to stop the current copy task on the specified blob
-
- SwitchParameter
-
-
- CopyId
-
- Copy Id
-
- String
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
-
-
-
-
- Blob
-
- Blob name.
-
- String
-
- String
-
-
-
-
-
-
- Container
-
- Container name.
-
- String
-
- String
-
-
-
-
-
-
- Force
-
- Force to stop the current copy task on the specified blob
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- CopyId
-
- Copy Id
-
- String
-
- String
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
-
-
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- CloudBlob
-
- CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
-
- CloudBlob
-
- CloudBlob
-
-
-
-
-
-
- CloudBlobContainer
-
- CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
-
- CloudBlobContainer
-
- CloudBlobContainer
-
-
-
-
-
-
- PipelineVariable
-
-
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Stop copy operation by name --------------------------
-
-
-
-
- PS C:\> Stop-AzureStorageBlobCopy -Container containername -Blob blobname -CopyId copyid
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Stop copy operation using container pipeline from GetAzureStorageContainer. --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageContainer container* | Stop-AzureStorageBlobCopy -Blob blobname
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Stop copy operation using container pipeline from GetAzureStorageBlob. --------------------------
-
-
-
-
- PS C:\> Get-AzureStorageBlob -Container containername | Stop-AzureStorageBlobCopy -Force
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Start-AzureStorageBlobCopyCopyState
-
-
-
-
- Get-AzureStorageBlobCopyState
-
-
-
-
-
-
-
-
- Stop-AzureStorageFileCopy
-
- Stop a copy operation to the specified destination file.
-
-
-
-
- Stop
- AzureStorageFileCopy
-
-
-
- Stop a copy operation to the specified destination file.
-
-
-
- Stop-AzureStorageFileCopy
-
- ShareName
-
- Share name.
-
- String
-
-
- FilePath
-
- File path in share.
-
- String
-
-
- CopyId
-
- Copy Id.
-
- String
-
-
- Force
-
- Force to stop the current copy task on the specified file.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile instance.
-
- AzureProfile
-
-
-
- Stop-AzureStorageFileCopy
-
- File
-
- CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
-
- CloudFile
-
-
- CopyId
-
- Copy Id.
-
- String
-
-
- Force
-
- Force to stop the current copy task on the specified file.
-
- SwitchParameter
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile instance.
-
- AzureProfile
-
-
-
- Stop-AzureStorageFileCopy
-
- CopyId
-
- Copy Id.
-
- String
-
-
- Force
-
- Force to stop the current copy task on the specified file.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile instance.
-
- AzureProfile
-
-
-
- Stop-AzureStorageFileCopy
-
- CopyId
-
- Copy Id.
-
- String
-
-
- Force
-
- Force to stop the current copy task on the specified file.
-
- SwitchParameter
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
-
- Profile
-
- AzureProfile instance.
-
- AzureProfile
-
-
-
-
-
- ShareName
-
- Share name.
-
- String
-
- String
-
-
-
-
-
-
- FilePath
-
- File path in share.
-
- String
-
- String
-
-
-
-
-
-
- CopyId
-
- Copy Id.
-
- String
-
- String
-
-
-
-
-
-
- Force
-
- Force to stop the current copy task on the specified file.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
- Context
-
- Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
-
- AzureStorageContext
-
- AzureStorageContext
-
-
-
-
-
-
- ServerTimeoutPerRequest
-
- Server side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ClientTimeoutPerRequest
-
- Client side time out for each request.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- ConcurrentTaskCount
-
- The total amount of concurrent async tasks.
-
- Nullable`1[Int32]
-
- Nullable`1[Int32]
-
-
-
-
-
-
- Profile
-
- AzureProfile instance.
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
- File
-
- CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
-
- CloudFile
-
- CloudFile
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Keywords: common, azure, services, data, storage, blob, queue, table
-
-
-
-
- -------------------------- Stop copy operation by name --------------------------
-
- PS C:\>
-
- PS C:\> Stop-AzureStorageFileCopy -ShareName share -FilePath filePath -CopyId copyid
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+Start-AzureStorageBlobCopy –Container sourcecontainer -Blob BlobName -Context $SrcContext –DestContainer destcontainer -DestBlob DestBlobName
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureStorageBlobCopyState
+
+
+
+ Stop-AzureStorageBlobCopy
+
+
+
+
+
+
+
+ Start-AzureStorageFileCopy
+
+ Start a copy operation to the specified destination file.
+
+
+
+
+ Start
+ AzureStorageFileCopy
+
+
+
+ Start a copy operation to the specified destination file.
+
+
+
+ Start-AzureStorageFileCopy
+
+ SrcBlobName
+
+ Source blob name.
+
+ String
+
+
+ SrcContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+
+ DestShareName
+
+ Destination share name.
+
+ String
+
+
+ DestFilePath
+
+ Destination file relative path to destination share.
+
+ String
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Start-AzureStorageFileCopy
+
+ SrcBlobName
+
+ Source blob name.
+
+ String
+
+
+ SrcContainerName
+
+ Source container name.
+
+ String
+
+
+ DestShareName
+
+ Destination share name.
+
+ String
+
+
+ DestFilePath
+
+ Destination file relative path to destination share.
+
+ String
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Start-AzureStorageFileCopy
+
+ SrcBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+
+ DestFile
+
+ CloudFile object from Azure Storage Client library.
+
+ CloudFile
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Start-AzureStorageFileCopy
+
+ SrcBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+
+ DestShareName
+
+ Destination share name.
+
+ String
+
+
+ DestFilePath
+
+ Destination file relative path to destination share.
+
+ String
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Start-AzureStorageFileCopy
+
+ SrcFilePath
+
+ Source file relative path to source directory or source share.
+
+ String
+
+
+ SrcShare
+
+ CloudFileShare object from Azure Storage Client library. You can create it or use Get-AzureStorageShare cmdlet.
+
+ CloudFileShare
+
+
+ DestShareName
+
+ Destination share name.
+
+ String
+
+
+ DestFilePath
+
+ Destination file relative path to destination share.
+
+ String
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Start-AzureStorageFileCopy
+
+ SrcFilePath
+
+ Source file relative path to source directory or source share.
+
+ String
+
+
+ SrcShareName
+
+ Source share name.
+
+ String
+
+
+ DestShareName
+
+ Destination share name.
+
+ String
+
+
+ DestFilePath
+
+ Destination file relative path to destination share.
+
+ String
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Start-AzureStorageFileCopy
+
+ SrcFile
+
+ CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
+
+ CloudFile
+
+
+ DestFile
+
+ CloudFile object from Azure Storage Client library.
+
+ CloudFile
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Start-AzureStorageFileCopy
+
+ SrcFile
+
+ CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
+
+ CloudFile
+
+
+ DestShareName
+
+ Destination share name.
+
+ String
+
+
+ DestFilePath
+
+ Destination file relative path to destination share.
+
+ String
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Start-AzureStorageFileCopy
+
+ AbsoluteUri
+
+ Absolute Uri to the source. Be noted that the credential should be provided in the Uri, if the source requires any.
+
+ String
+
+
+ DestShareName
+
+ Destination share name.
+
+ String
+
+
+ DestFilePath
+
+ Destination file relative path to destination share.
+
+ String
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+ Start-AzureStorageFileCopy
+
+ AbsoluteUri
+
+ Absolute Uri to the source. Be noted that the credential should be provided in the Uri, if the source requires any.
+
+ String
+
+
+ DestFile
+
+ CloudFile object from Azure Storage Client library.
+
+ CloudFile
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ SrcBlobName
+
+ Source blob name.
+
+ String
+
+ String
+
+
+
+
+
+ SrcContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+ CloudBlobContainer
+
+
+
+
+
+ DestShareName
+
+ Destination share name.
+
+ String
+
+ String
+
+
+
+
+
+ DestFilePath
+
+ Destination file relative path to destination share.
+
+ String
+
+ String
+
+
+
+
+
+ DestContext
+
+ Destination Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ Force
+
+ Force to overwrite the destination file without confirmation.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ SrcContainerName
+
+ Source container name.
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Source Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ SrcBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+ CloudBlob
+
+
+
+
+
+ DestFile
+
+ CloudFile object from Azure Storage Client library.
+
+ CloudFile
+
+ CloudFile
+
+
+
+
+
+ SrcFilePath
+
+ Source file relative path to source directory or source share.
+
+ String
+
+ String
+
+
+
+
+
+ SrcShare
+
+ CloudFileShare object from Azure Storage Client library. You can create it or use Get-AzureStorageShare cmdlet.
+
+ CloudFileShare
+
+ CloudFileShare
+
+
+
+
+
+ SrcShareName
+
+ Source share name.
+
+ String
+
+ String
+
+
+
+
+
+ SrcFile
+
+ CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
+
+ CloudFile
+
+ CloudFile
+
+
+
+
+
+ AbsoluteUri
+
+ Absolute Uri to the source. Be noted that the credential should be provided in the Uri, if the source requires any.
+
+ String
+
+ String
+
+
+
+
+
+ SrcDir
+
+ CloudFileDirectory object from Azure Storage Client library.
+
+ cloudfiledirectory
+
+ cloudfiledirectory
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Start copy operation from file to file with share name and file name --------------------------
+
+ PS C:\>
+
+ PS C:\> Start-AzureStorageFileCopy -SrcShareName share -SrcFilePath filepath -DestShareName share2 -DestFilePath filepath2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Start copy operation from blob to file with container name and blob name --------------------------
+
+ PS C:\>
+
+ PS C:\> Start-AzureStorageFileCopy -SrcContainerName container -SrcBlobName blobname -DestShareName share -DestFilePath filepath
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Stop-AzureStorageBlobCopy
+
+ Stop a copy operation to the specified destination blob.
+
+
+
+
+ Stop
+ AzureStorageBlobCopy
+
+
+
+ Stop a copy operation to the specified destination blob.
+
+
+
+ Stop-AzureStorageBlobCopy
+
+ Blob
+
+ Blob name.
+
+ String
+
+
+ Container
+
+ Container name.
+
+ String
+
+
+ Force
+
+ Force to stop the current copy task on the specified blob
+
+ SwitchParameter
+
+
+ CopyId
+
+ Copy Id
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Stop-AzureStorageBlobCopy
+
+ CloudBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+
+ Force
+
+ Force to stop the current copy task on the specified blob
+
+ SwitchParameter
+
+
+ CopyId
+
+ Copy Id
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Stop-AzureStorageBlobCopy
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+
+ Force
+
+ Force to stop the current copy task on the specified blob
+
+ SwitchParameter
+
+
+ CopyId
+
+ Copy Id
+
+ String
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ Blob
+
+ Blob name.
+
+ String
+
+ String
+
+
+
+
+
+ Container
+
+ Container name.
+
+ String
+
+ String
+
+
+
+
+
+ Force
+
+ Force to stop the current copy task on the specified blob
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ CopyId
+
+ Copy Id
+
+ String
+
+ String
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ CloudBlob
+
+ CloudBlob object from Azure Storage Client library. You can create it or use Get-AzureStorageBlob cmdlet.
+
+ CloudBlob
+
+ CloudBlob
+
+
+
+
+
+ CloudBlobContainer
+
+ CloudBlobContainer object from Azure Storage Client library. You can create it or use Get-AzureStorageContainer cmdlet.
+
+ CloudBlobContainer
+
+ CloudBlobContainer
+
+
+
+
+
+ PipelineVariable
+
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Stop copy operation by name --------------------------
+
+ PS C:\>
+
+ PS C:\> Stop-AzureStorageBlobCopy -Container containername -Blob blobname -CopyId copyid
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Stop copy operation using container pipeline from GetAzureStorageContainer. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageContainer container* | Stop-AzureStorageBlobCopy -Blob blobname
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Stop copy operation using container pipeline from GetAzureStorageBlob. --------------------------
+
+ PS C:\>
+
+ PS C:\> Get-AzureStorageBlob -Container containername | Stop-AzureStorageBlobCopy -Force
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Start-AzureStorageBlobCopyCopyState
+
+
+
+ Get-AzureStorageBlobCopyState
+
+
+
+
+
+
+
+ Stop-AzureStorageFileCopy
+
+ Stop a copy operation to the specified destination file.
+
+
+
+
+ Stop
+ AzureStorageFileCopy
+
+
+
+ Stop a copy operation to the specified destination file.
+
+
+
+ Stop-AzureStorageFileCopy
+
+ ShareName
+
+ Share name.
+
+ String
+
+
+ FilePath
+
+ File path in share.
+
+ String
+
+
+ CopyId
+
+ Copy Id.
+
+ String
+
+
+ Force
+
+ Force to stop the current copy task on the specified file.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Stop-AzureStorageFileCopy
+
+ File
+
+ CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
+
+ CloudFile
+
+
+ CopyId
+
+ Copy Id.
+
+ String
+
+
+ Force
+
+ Force to stop the current copy task on the specified file.
+
+ SwitchParameter
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Stop-AzureStorageFileCopy
+
+ CopyId
+
+ Copy Id.
+
+ String
+
+
+ Force
+
+ Force to stop the current copy task on the specified file.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+ Stop-AzureStorageFileCopy
+
+ CopyId
+
+ Copy Id.
+
+ String
+
+
+ Force
+
+ Force to stop the current copy task on the specified file.
+
+ SwitchParameter
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+
+ InformationVariable
+
+
+
+ String
+
+
+
+
+
+ ShareName
+
+ Share name.
+
+ String
+
+ String
+
+
+
+
+
+ FilePath
+
+ File path in share.
+
+ String
+
+ String
+
+
+
+
+
+ CopyId
+
+ Copy Id.
+
+ String
+
+ String
+
+
+
+
+
+ Force
+
+ Force to stop the current copy task on the specified file.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Context
+
+ Azure Storage Context. You can create it by New-AzureStorageContext cmdlet.
+
+ AzureStorageContext
+
+ AzureStorageContext
+
+
+
+
+
+ ServerTimeoutPerRequest
+
+ Server side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ClientTimeoutPerRequest
+
+ Client side time out for each request.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ ConcurrentTaskCount
+
+ The total amount of concurrent async tasks.
+
+ Nullable`1[Int32]
+
+ Nullable`1[Int32]
+
+
+
+
+
+ InformationAction
+
+
+
+ ActionPreference
+
+ ActionPreference
+
+
+
+
+
+ InformationVariable
+
+
+
+ String
+
+ String
+
+
+
+
+
+ File
+
+ CloudFile object from Azure Storage Client library. You can create it or use Get-AzureStorageFile cmdlet.
+
+ CloudFile
+
+ CloudFile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keywords: common, azure, services, data, storage, blob, queue, table
+
+
+
+
+ -------------------------- Stop copy operation by name --------------------------
+
+ PS C:\>
+
+ PS C:\> Stop-AzureStorageFileCopy -ShareName share -FilePath filePath -CopyId copyid
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Common/Storage/Commands.Storage/Model/Contract/IStorageBlobManagement.cs b/src/Common/Storage/Commands.Storage/Model/Contract/IStorageBlobManagement.cs
index a79782683c83..b3b4f1007dfb 100644
--- a/src/Common/Storage/Commands.Storage/Model/Contract/IStorageBlobManagement.cs
+++ b/src/Common/Storage/Commands.Storage/Model/Contract/IStorageBlobManagement.cs
@@ -208,6 +208,13 @@ public interface IStorageBlobManagement : IStorageManagement
/// Operation context
void SetStorageServiceProperties(StorageServiceType type, ServiceProperties properties, IRequestOptions options, OperationContext operationContext);
+ ///
+ /// Get the SAS token for an account.
+ ///
+ /// Shared access policy to generate the SAS token.
+ /// Account SAS token.
+ string GetStorageAccountSASToken(SharedAccessAccountPolicy sharedAccessAccountPolicy);
+
///
/// Async get container presssions
///
diff --git a/src/Common/Storage/Commands.Storage/Model/Contract/StorageBlobManagement.cs b/src/Common/Storage/Commands.Storage/Model/Contract/StorageBlobManagement.cs
index 658c47d2705e..9b02b8c1e9db 100644
--- a/src/Common/Storage/Commands.Storage/Model/Contract/StorageBlobManagement.cs
+++ b/src/Common/Storage/Commands.Storage/Model/Contract/StorageBlobManagement.cs
@@ -396,6 +396,16 @@ public void SetStorageServiceProperties(StorageServiceType type, ServiceProperti
}
}
+ ///
+ /// Get the SAS token for an account.
+ ///
+ /// Shared access policy to generate the SAS token.
+ /// Account SAS token.
+ public string GetStorageAccountSASToken(SharedAccessAccountPolicy sharedAccessAccountPolicy)
+ {
+ return StorageContext.StorageAccount.GetSharedAccessSignature(sharedAccessAccountPolicy);
+ }
+
///
/// Async Get container presssions
///
diff --git a/src/Common/Storage/Commands.Storage/Queue/Cmdlet/NewAzureStorageQueueSasToken.cs b/src/Common/Storage/Commands.Storage/Queue/Cmdlet/NewAzureStorageQueueSasToken.cs
index c5f6f7252eb4..4caf798c1839 100644
--- a/src/Common/Storage/Commands.Storage/Queue/Cmdlet/NewAzureStorageQueueSasToken.cs
+++ b/src/Common/Storage/Commands.Storage/Queue/Cmdlet/NewAzureStorageQueueSasToken.cs
@@ -20,6 +20,7 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Queue.Cmdlet
using Microsoft.WindowsAzure.Commands.Storage.Common;
using Microsoft.WindowsAzure.Commands.Storage.Model.Contract;
using Microsoft.WindowsAzure.Storage.Queue;
+ using Microsoft.WindowsAzure.Storage;
[Cmdlet(VerbsCommon.New, StorageNouns.QueueSas), OutputType(typeof(String))]
public class NewAzureStorageQueueSasTokenCommand : StorageQueueBaseCmdlet
@@ -54,6 +55,12 @@ public string Policy
ParameterSetName = SasPermissionParameterSet)]
public string Permission { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Protocol can be used in the request with this SAS token.")]
+ public SharedAccessProtocol Protocol { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "IP, or IP range ACL (access control list) that the request would be accepted from by Azure Storage.")]
+ public string IPAddressOrRange { get; set; }
+
[Parameter(HelpMessage = "Start Time")]
public DateTime? StartTime { get; set; }
@@ -96,7 +103,7 @@ public override void ExecuteCmdlet()
SharedAccessQueuePolicy policy = new SharedAccessQueuePolicy();
bool shouldSetExpiryTime = SasTokenHelper.ValidateQueueAccessPolicy(Channel, queue.Name, policy, accessPolicyIdentifier);
SetupAccessPolicy(policy, shouldSetExpiryTime);
- string sasToken = queue.GetSharedAccessSignature(policy, accessPolicyIdentifier);
+ string sasToken = queue.GetSharedAccessSignature(policy, accessPolicyIdentifier, Protocol, Util.SetupIPAddressOrRangeForSAS(IPAddressOrRange));
if (FullUri)
{
diff --git a/src/Common/Storage/Commands.Storage/Table/Cmdlet/NewAzureStorageTableSasToken.cs b/src/Common/Storage/Commands.Storage/Table/Cmdlet/NewAzureStorageTableSasToken.cs
index 71abc0e60537..0354bfd6ee39 100644
--- a/src/Common/Storage/Commands.Storage/Table/Cmdlet/NewAzureStorageTableSasToken.cs
+++ b/src/Common/Storage/Commands.Storage/Table/Cmdlet/NewAzureStorageTableSasToken.cs
@@ -20,6 +20,7 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet
using Microsoft.WindowsAzure.Commands.Storage.Common;
using Microsoft.WindowsAzure.Commands.Storage.Model.Contract;
using Microsoft.WindowsAzure.Storage.Table;
+ using Microsoft.WindowsAzure.Storage;
[Cmdlet(VerbsCommon.New, StorageNouns.TableSas), OutputType(typeof(String))]
public class NewAzureStorageTableSasTokenCommand : StorageCloudTableCmdletBase
@@ -55,6 +56,12 @@ public string Policy
ParameterSetName = SasPermissionParameterSet)]
public string Permission { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Protocol can be used in the request with this SAS token.")]
+ public SharedAccessProtocol Protocol { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "IP, or IP range ACL (access control list) that the request would be accepted from by Azure Storage.")]
+ public string IPAddressOrRange { get; set; }
+
[Parameter(HelpMessage = "Start Time")]
public DateTime? StartTime { get; set; }
@@ -113,7 +120,7 @@ public override void ExecuteCmdlet()
SetupAccessPolicy(policy, shouldSetExpiryTime);
ValidatePkAndRk(StartPartitionKey, StartRowKey, EndPartitionKey, EndRowKey);
string sasToken = table.GetSharedAccessSignature(policy, accessPolicyIdentifier, StartPartitionKey,
- StartRowKey, EndPartitionKey, EndRowKey);
+ StartRowKey, EndPartitionKey, EndRowKey, Protocol, Util.SetupIPAddressOrRangeForSAS(IPAddressOrRange));
if (FullUri)
{
diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj
index bd0ca39315b6..2e57ab65bb77 100644
--- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj
+++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj
@@ -140,6 +140,7 @@
+
@@ -171,10 +172,6 @@
{5ee72c53-1720-4309-b54b-5fb79703195f}
Commands.Common
-
- {cff09e81-1e31-444e-b4d4-a21e946c29e2}
- Commands.ServiceManagement.Common
-
{3819d8a7-c62c-4c47-8ddd-0332d9ce1252}
Commands.ResourceManager.Common
diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs
index 9ffaf56104bd..486a52f56cea 100644
--- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs
+++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs
@@ -61,9 +61,11 @@ public EnvironmentSetupHelper()
rmprofile.Context.Subscription.Environment = "foo";
if (AzureRmProfileProvider.Instance.Profile == null)
{
- AzureRmProfileProvider.Instance.Profile = rmprofile; }
+ AzureRmProfileProvider.Instance.Profile = rmprofile;
+ }
- AzureSession.DataStore = datastore; ProfileClient = new ProfileClient(profile);
+ AzureSession.DataStore = datastore;
+ ProfileClient = new ProfileClient(profile);
// Ignore SSL errors
System.Net.ServicePointManager.ServerCertificateValidationCallback += (se, cert, chain, sslerror) => true;
diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs
index 7541d4ba702f..0595d8bc7c7d 100644
--- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs
+++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs
@@ -29,6 +29,7 @@
using Microsoft.Azure.Commands.Common.Authentication.Factories;
using Microsoft.Azure.Commands.Common.Authentication.Models;
using Microsoft.Azure.ServiceManagemenet.Common;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
namespace Microsoft.WindowsAzure.Commands.Common.Test.Mocks
{
diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/ProfileClient.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/ProfileClient.cs
index 2c93654794db..9eedd3034ec3 100644
--- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/ProfileClient.cs
+++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/ProfileClient.cs
@@ -656,7 +656,7 @@ public AzureSubscription SetSubscriptionAsDefault(Guid id, string accountName)
{
if (subscription.IsPropertySet(AzureSubscription.Property.StorageAccount))
{
- subscription.SetProperty(AzureSubscription.Property.StorageAccount, null);
+ GeneralUtilities.ClearCurrentStorageAccount();
}
Profile.DefaultSubscription = subscription;
diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ExpressRouteCircuitTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ExpressRouteCircuitTests.cs
index 861ab5a509e9..ef973bc2ee67 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ExpressRouteCircuitTests.cs
+++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ExpressRouteCircuitTests.cs
@@ -19,7 +19,7 @@ namespace Commands.Network.Test.ScenarioTests
{
public class ExpressRouteCircuitTests : Microsoft.WindowsAzure.Commands.Test.Utilities.Common.RMTestBase
{
- [Fact(Skip = "Rerecord tests")]
+ [Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestExpressRouteCircuitCRUD()
{
@@ -33,7 +33,7 @@ public void TestExpressRouteCircuitPeeringCRUD()
NetworkResourcesController.NewInstance.RunPsTest("Test-ExpressRouteCircuitPeeringCRUD");
}
- [Fact(Skip = "Rerecord tests")]
+ [Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestExpressRouteCircuitAuthorizationCRUD()
{
diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ExpressRouteCircuitTests.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ExpressRouteCircuitTests.ps1
index 5100bddfea8e..df5c63c23ea0 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ExpressRouteCircuitTests.ps1
+++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ExpressRouteCircuitTests.ps1
@@ -31,7 +31,7 @@ function Test-ExpressRouteCircuitCRUD
$resourceGroup = New-AzureRmResourceGroup -Name $rgname -Location $rglocation
# Create the ExpressRouteCircuit
- $circuit = New-AzureRmExpressRouteCircuit -Name $circuitName -Location $location -ResourceGroupName $rgname -SkuTier Standard -SkuFamily MeteredData -BillingType MeteredData -ServiceProviderName "equinix" -PeeringLocation "Silicon Valley" -BandwidthInMbps 1000;
+ $circuit = New-AzureRmExpressRouteCircuit -Name $circuitName -Location $location -ResourceGroupName $rgname -SkuTier Standard -SkuFamily MeteredData -ServiceProviderName "equinix" -PeeringLocation "Silicon Valley" -BandwidthInMbps 500;
# get Circuit
$getCircuit = Get-AzureRmExpressRouteCircuit -Name $circuitName -ResourceGroupName $rgname
@@ -47,7 +47,7 @@ function Test-ExpressRouteCircuitCRUD
Assert-AreEqual "MeteredData" $getCircuit.Sku.Family
Assert-AreEqual "equinix" $getCircuit.ServiceProviderProperties.ServiceProviderName
Assert-AreEqual "Silicon Valley" $getCircuit.ServiceProviderProperties.PeeringLocation
- Assert-AreEqual "1000" $getCircuit.ServiceProviderProperties.BandwidthInMbps
+ Assert-AreEqual "500" $getCircuit.ServiceProviderProperties.BandwidthInMbps
# list
$list = Get-AzureRmExpressRouteCircuit -ResourceGroupName $rgname
@@ -59,20 +59,22 @@ function Test-ExpressRouteCircuitCRUD
Assert-AreEqual @($list[0].Peerings).Count @($getCircuit.Peerings).Count
# set
- $getCircuit.ServiceProviderProperties.BandwidthInMbps = 500
+ $getCircuit.ServiceProviderProperties.BandwidthInMbps = 1000
+ $getCircuit.Sku.Tier = "Premium"
+ $getCircuit.Sku.Family = "UnlimitedData"
- $getCircuit = Set-AzureRmExpressRouteCircuit -ExpressRouteCircuit $getCircuit -BillingType UnlimitedData
+ $getCircuit = Set-AzureRmExpressRouteCircuit -ExpressRouteCircuit $getCircuit
Assert-AreEqual $rgName $getCircuit.ResourceGroupName
Assert-AreEqual $circuitName $getCircuit.Name
Assert-NotNull $getCircuit.Location
Assert-NotNull $getCircuit.Etag
Assert-AreEqual 0 @($getCircuit.Peerings).Count
- Assert-AreEqual "standard_meteredData" $getCircuit.Sku.Name
- Assert-AreEqual "Standard" $getCircuit.Sku.Tier
- Assert-AreEqual "MeteredData" $getCircuit.Sku.Family
+ Assert-AreEqual "Standard_MeteredData" $getCircuit.Sku.Name
+ Assert-AreEqual "Premium" $getCircuit.Sku.Tier
+ Assert-AreEqual "UnlimitedData" $getCircuit.Sku.Family
Assert-AreEqual "equinix" $getCircuit.ServiceProviderProperties.ServiceProviderName
Assert-AreEqual "Silicon Valley" $getCircuit.ServiceProviderProperties.PeeringLocation
- Assert-AreEqual "500" $getCircuit.ServiceProviderProperties.BandwidthInMbps
+ Assert-AreEqual "1000" $getCircuit.ServiceProviderProperties.BandwidthInMbps
# Delete Circuit
$delete = Remove-AzureRmExpressRouteCircuit -ResourceGroupName $rgname -name $circuitName -PassThru -Force
@@ -108,7 +110,7 @@ function Test-ExpressRouteCircuitPeeringCRUD
# Create the ExpressRouteCircuit with peering
$peering = New-AzureRmExpressRouteCircuitPeeringConfig -Name AzurePrivatePeering -PeeringType AzurePrivatePeering -PeerASN 100 -PrimaryPeerAddressPrefix "192.168.1.0/30" -SecondaryPeerAddressPrefix "192.168.2.0/30" -VlanId 200
- $circuit = New-AzureRmExpressRouteCircuit -Name $circuitName -Location $location -ResourceGroupName $rgname -SkuTier Standard -SkuFamily MeteredData -BillingType UnlimitedData -ServiceProviderName "equinix" -PeeringLocation "Silicon Valley" -BandwidthInMbps 1000 -Peering $peering
+ $circuit = New-AzureRmExpressRouteCircuit -Name $circuitName -Location $location -ResourceGroupName $rgname -SkuTier Standard -SkuFamily MeteredData -ServiceProviderName "equinix" -PeeringLocation "Silicon Valley" -BandwidthInMbps 1000 -Peering $peering
#verification
Assert-AreEqual $rgName $circuit.ResourceGroupName
@@ -146,7 +148,7 @@ function Test-ExpressRouteCircuitPeeringCRUD
Assert-AreEqual 1 @($listPeering).Count
# add a new Peering
- $circuit = Get-AzureRmExpressRouteCircuit -Name $circuitName -ResourceGroupName $rgname | Add-AzureRmExpressRouteCircuitPeeringConfig -Name MicrosoftPeering -PeeringType MicrosoftPeering -PeerASN 99 -PrimaryPeerAddressPrefix "192.168.1.0/30" -SecondaryPeerAddressPrefix "192.168.2.0/30" -VlanId 200 -MicrosoftConfigAdvertisedPublicPrefixes @("11.2.3.4/30", "12.2.3.4/30") -MicrosoftConfigCustomerAsn 1000 -MicrosoftConfigRoutingRegistryName AFRINIC | Set-AzureRmExpressRouteCircuit -BillingType UnlimitedData
+ $circuit = Get-AzureRmExpressRouteCircuit -Name $circuitName -ResourceGroupName $rgname | Add-AzureRmExpressRouteCircuitPeeringConfig -Name MicrosoftPeering -PeeringType MicrosoftPeering -PeerASN 99 -PrimaryPeerAddressPrefix "192.168.1.0/30" -SecondaryPeerAddressPrefix "192.168.2.0/30" -VlanId 200 -MicrosoftConfigAdvertisedPublicPrefixes @("11.2.3.4/30", "12.2.3.4/30") -MicrosoftConfigCustomerAsn 1000 -MicrosoftConfigRoutingRegistryName AFRINIC | Set-AzureRmExpressRouteCircuit
$p = $circuit | Get-AzureRmExpressRouteCircuitPeeringConfig -Name MicrosoftPeering
Assert-AreEqual "MicrosoftPeering" $p.Name
@@ -165,7 +167,7 @@ function Test-ExpressRouteCircuitPeeringCRUD
Assert-AreEqual 2 @($listPeering).Count
# Set a new peering
- $circuit = Get-AzureRmExpressRouteCircuit -Name $circuitName -ResourceGroupName $rgname | Set-AzureRmExpressRouteCircuitPeeringConfig -Name MicrosoftPeering -PeeringType MicrosoftPeering -PeerASN 100 -PrimaryPeerAddressPrefix "192.168.1.0/30" -SecondaryPeerAddressPrefix "192.168.2.0/30" -VlanId 200 -MicrosoftConfigAdvertisedPublicPrefixes @("11.2.3.4/30", "12.2.3.4/30") -MicrosoftConfigCustomerAsn 1000 -MicrosoftConfigRoutingRegistryName AFRINIC | Set-AzureRmExpressRouteCircuit -BillingType UnlimitedData
+ $circuit = Get-AzureRmExpressRouteCircuit -Name $circuitName -ResourceGroupName $rgname | Set-AzureRmExpressRouteCircuitPeeringConfig -Name MicrosoftPeering -PeeringType MicrosoftPeering -PeerASN 100 -PrimaryPeerAddressPrefix "192.168.1.0/30" -SecondaryPeerAddressPrefix "192.168.2.0/30" -VlanId 200 -MicrosoftConfigAdvertisedPublicPrefixes @("11.2.3.4/30", "12.2.3.4/30") -MicrosoftConfigCustomerAsn 1000 -MicrosoftConfigRoutingRegistryName AFRINIC | Set-AzureRmExpressRouteCircuit
$p = $circuit | Get-AzureRmExpressRouteCircuitPeeringConfig -Name MicrosoftPeering
Assert-AreEqual "MicrosoftPeering" $p.Name
Assert-AreEqual "MicrosoftPeering" $p.PeeringType
@@ -215,7 +217,7 @@ function Test-ExpressRouteCircuitAuthorizationCRUD
# Create the ExpressRouteCircuit with authorization
$authorization = New-AzureRmExpressRouteCircuitAuthorization -Name $authorizationName
- $circuit = New-AzureRmExpressRouteCircuit -Name $circuitName -Location $location -ResourceGroupName $rgname -SkuTier Standard -SkuFamily MeteredData -ServiceProviderName "equinix" -PeeringLocation "Silicon Valley" -BandwidthInMbps 1000 -Authorization $authorization
+ $circuit = New-AzureRmExpressRouteCircuit -Name $circuitName -Location $location -ResourceGroupName $rgname -SkuTier Standard -SkuFamily MeteredData -ServiceProviderName "equinix" -PeeringLocation "Silicon Valley" -BandwidthInMbps 500 -Authorization $authorization
#verification
Assert-AreEqual $rgName $circuit.ResourceGroupName
@@ -228,7 +230,7 @@ function Test-ExpressRouteCircuitAuthorizationCRUD
Assert-AreEqual "MeteredData" $circuit.Sku.Family
Assert-AreEqual "equinix" $circuit.ServiceProviderProperties.ServiceProviderName
Assert-AreEqual "Silicon Valley" $circuit.ServiceProviderProperties.PeeringLocation
- Assert-AreEqual "1000" $circuit.ServiceProviderProperties.BandwidthInMbps
+ Assert-AreEqual "500" $circuit.ServiceProviderProperties.BandwidthInMbps
# Verify the authorization
Assert-AreEqual $authorizationName $circuit.Authorizations[0].Name
diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ExpressRouteCircuitTests/TestExpressRouteCircuitAuthorizationCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ExpressRouteCircuitTests/TestExpressRouteCircuitAuthorizationCRUD.json
index 9142b6264582..625cec30b687 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ExpressRouteCircuitTests/TestExpressRouteCircuitAuthorizationCRUD.json
+++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ExpressRouteCircuitTests/TestExpressRouteCircuitAuthorizationCRUD.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/Microsoft.Network?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "5479"
+ "5934"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14986"
],
"x-ms-request-id": [
- "d236705d-4e0f-4a34-8cd5-c2aff8549005"
+ "d2603a2e-b8dd-49f5-894b-0ac7bff29a26"
],
"x-ms-correlation-request-id": [
- "d236705d-4e0f-4a34-8cd5-c2aff8549005"
+ "d2603a2e-b8dd-49f5-894b-0ac7bff29a26"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225244Z:d236705d-4e0f-4a34-8cd5-c2aff8549005"
+ "WESTUS:20160223T000402Z:d2603a2e-b8dd-49f5-894b-0ac7bff29a26"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:52:44 GMT"
+ "Tue, 23 Feb 2016 00:04:01 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/onesdk993?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourcegroups/onesdk1350?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -61,7 +61,7 @@
"ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "101"
+ "102"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -76,16 +76,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14985"
],
"x-ms-request-id": [
- "d537cabf-b46e-496f-b484-3d5cc4853d58"
+ "e69279af-a62c-4e13-86bc-2a70ca30d224"
],
"x-ms-correlation-request-id": [
- "d537cabf-b46e-496f-b484-3d5cc4853d58"
+ "e69279af-a62c-4e13-86bc-2a70ca30d224"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225244Z:d537cabf-b46e-496f-b484-3d5cc4853d58"
+ "WESTUS:20160223T000402Z:e69279af-a62c-4e13-86bc-2a70ca30d224"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -94,14 +94,14 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:52:44 GMT"
+ "Tue, 23 Feb 2016 00:04:01 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/onesdk993?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourcegroups/onesdk1350?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -121,16 +121,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14983"
],
"x-ms-request-id": [
- "21ca4718-2d7f-4f63-82ac-5dc3d0a8cc42"
+ "65fd93b0-1494-4740-850c-8585d9b99c3e"
],
"x-ms-correlation-request-id": [
- "21ca4718-2d7f-4f63-82ac-5dc3d0a8cc42"
+ "65fd93b0-1494-4740-850c-8585d9b99c3e"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225445Z:21ca4718-2d7f-4f63-82ac-5dc3d0a8cc42"
+ "WESTUS:20160223T000510Z:65fd93b0-1494-4740-850c-8585d9b99c3e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -139,14 +139,14 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:54:44 GMT"
+ "Tue, 23 Feb 2016 00:05:09 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/onesdk993?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourcegroups/onesdk1350?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
@@ -160,10 +160,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993\",\r\n \"name\": \"onesdk993\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350\",\r\n \"name\": \"onesdk1350\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "171"
+ "173"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-request-id": [
- "14a307dd-569d-445c-ae57-50d2db5dd9e6"
+ "d81d7836-c343-4951-8065-3f84ef31b18c"
],
"x-ms-correlation-request-id": [
- "14a307dd-569d-445c-ae57-50d2db5dd9e6"
+ "d81d7836-c343-4951-8065-3f84ef31b18c"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225245Z:14a307dd-569d-445c-ae57-50d2db5dd9e6"
+ "WESTUS:20160223T000402Z:d81d7836-c343-4951-8065-3f84ef31b18c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,14 +193,14 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:52:44 GMT"
+ "Tue, 23 Feb 2016 00:04:01 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlR3JvdXBzL29uZXNkazk5My9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -223,16 +223,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14984"
],
"x-ms-request-id": [
- "27b916c7-671d-4004-a433-e1af4fae4590"
+ "e9cb825d-8e40-44e1-a3d7-7d63d68df681"
],
"x-ms-correlation-request-id": [
- "27b916c7-671d-4004-a433-e1af4fae4590"
+ "e9cb825d-8e40-44e1-a3d7-7d63d68df681"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225245Z:27b916c7-671d-4004-a433-e1af4fae4590"
+ "WESTUS:20160223T000402Z:e9cb825d-8e40-44e1-a3d7-7d63d68df681"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -241,19 +241,19 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:52:44 GMT"
+ "Tue, 23 Feb 2016 00:04:01 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlR3JvdXBzL29uZXNkazk5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZXhwcmVzc1JvdXRlQ2lyY3VpdHMvb25lc2RrMzk0ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazg0NC8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4fc520ce-4517-4626-9dcd-46baa53fed39"
+ "aaaa8eb1-b9ac-4233-b679-9328f5ac51dd"
],
"accept-language": [
"en-US"
@@ -262,7 +262,7 @@
"Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/expressRouteCircuits/onesdk3944' under resource group 'onesdk993' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/expressRouteCircuits/onesdk844' under resource group 'onesdk1350' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"162"
@@ -280,13 +280,13 @@
"gateway"
],
"x-ms-request-id": [
- "679ad00c-6787-4ca5-be59-4ce2d2ccec4b"
+ "3ea1d141-d2c4-4095-98e7-288e8ecb4113"
],
"x-ms-correlation-request-id": [
- "679ad00c-6787-4ca5-be59-4ce2d2ccec4b"
+ "3ea1d141-d2c4-4095-98e7-288e8ecb4113"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225245Z:679ad00c-6787-4ca5-be59-4ce2d2ccec4b"
+ "WESTUS:20160223T000403Z:3ea1d141-d2c4-4095-98e7-288e8ecb4113"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -295,14 +295,14 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:52:45 GMT"
+ "Tue, 23 Feb 2016 00:04:02 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlR3JvdXBzL29uZXNkazk5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZXhwcmVzc1JvdXRlQ2lyY3VpdHMvb25lc2RrMzk0ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazg0NC8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -310,10 +310,10 @@
"Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"onesdk3944\",\r\n \"id\": \"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944\",\r\n \"etag\": \"W/\\\"6750e610-74fe-43d8-91a6-9d9812e2289b\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"18d37eea-b62f-4dc2-a922-d8e72ceb7179\",\r\n \"peerings\": [],\r\n \"authorizations\": [\r\n {\r\n \"name\": \"testkey\",\r\n \"id\": \"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944/authorizations/testkey\",\r\n \"etag\": \"W/\\\"6750e610-74fe-43d8-91a6-9d9812e2289b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"authorizationKey\": \"3bf00ebd-760b-425b-aa5b-d4387744062b\",\r\n \"authorizationUseStatus\": \"Available\"\r\n }\r\n }\r\n ],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"960d4a8f-f266-4543-92e3-b9aaaf1f165b\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk844\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844\",\r\n \"etag\": \"W/\\\"d1cd3965-22af-4a00-81f4-ba0604ce0be5\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e535b2b8-0846-4531-ab0f-b647345dfd24\",\r\n \"peerings\": [],\r\n \"authorizations\": [\r\n {\r\n \"name\": \"testkey\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844/authorizations/testkey\",\r\n \"etag\": \"W/\\\"d1cd3965-22af-4a00-81f4-ba0604ce0be5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"authorizationKey\": \"39b552f7-d67c-43d4-b8cb-a6f1ac161406\",\r\n \"authorizationUseStatus\": \"Available\"\r\n }\r\n }\r\n ],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"02036306-bdbe-4359-8efb-b5428b71d165\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1414"
+ "1412"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -325,7 +325,7 @@
"no-cache"
],
"x-ms-request-id": [
- "921d6abd-2fac-4d62-8237-76d9cd6c32f7"
+ "5082602a-83ca-400b-b122-d829351173b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -338,28 +338,28 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14997"
],
"x-ms-correlation-request-id": [
- "74edd120-470f-40c6-a266-98b75b9505bd"
+ "7b7e2d6b-2b2c-4caf-9b9c-0c5724dc14c7"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225402Z:74edd120-470f-40c6-a266-98b75b9505bd"
+ "WESTUS:20160223T000437Z:7b7e2d6b-2b2c-4caf-9b9c-0c5724dc14c7"
],
"Date": [
- "Fri, 04 Dec 2015 22:54:01 GMT"
+ "Tue, 23 Feb 2016 00:04:37 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlR3JvdXBzL29uZXNkazk5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZXhwcmVzc1JvdXRlQ2lyY3VpdHMvb25lc2RrMzk0ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazg0NC8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94c36e6a-5ed1-4fef-be04-09ec45db77ec"
+ "8a10b369-7103-4827-a106-261f4a9a3bcd"
],
"accept-language": [
"en-US"
@@ -368,10 +368,10 @@
"Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"onesdk3944\",\r\n \"id\": \"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944\",\r\n \"etag\": \"W/\\\"6750e610-74fe-43d8-91a6-9d9812e2289b\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"18d37eea-b62f-4dc2-a922-d8e72ceb7179\",\r\n \"peerings\": [],\r\n \"authorizations\": [\r\n {\r\n \"name\": \"testkey\",\r\n \"id\": \"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944/authorizations/testkey\",\r\n \"etag\": \"W/\\\"6750e610-74fe-43d8-91a6-9d9812e2289b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"authorizationKey\": \"3bf00ebd-760b-425b-aa5b-d4387744062b\",\r\n \"authorizationUseStatus\": \"Available\"\r\n }\r\n }\r\n ],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"960d4a8f-f266-4543-92e3-b9aaaf1f165b\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk844\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844\",\r\n \"etag\": \"W/\\\"d1cd3965-22af-4a00-81f4-ba0604ce0be5\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e535b2b8-0846-4531-ab0f-b647345dfd24\",\r\n \"peerings\": [],\r\n \"authorizations\": [\r\n {\r\n \"name\": \"testkey\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844/authorizations/testkey\",\r\n \"etag\": \"W/\\\"d1cd3965-22af-4a00-81f4-ba0604ce0be5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"authorizationKey\": \"39b552f7-d67c-43d4-b8cb-a6f1ac161406\",\r\n \"authorizationUseStatus\": \"Available\"\r\n }\r\n }\r\n ],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"02036306-bdbe-4359-8efb-b5428b71d165\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1414"
+ "1412"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -383,7 +383,7 @@
"no-cache"
],
"x-ms-request-id": [
- "b271be33-2c6b-4af5-be95-29c8d737cc81"
+ "8e4d8b6e-f139-4704-a680-0b2f3e04b683"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -396,34 +396,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14996"
],
"x-ms-correlation-request-id": [
- "0afd40f0-9589-447f-b0f4-eefb0f999ef4"
+ "076b0288-d0de-4f9d-a23b-abb1df78c9d8"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225402Z:0afd40f0-9589-447f-b0f4-eefb0f999ef4"
+ "WESTUS:20160223T000438Z:076b0288-d0de-4f9d-a23b-abb1df78c9d8"
],
"Date": [
- "Fri, 04 Dec 2015 22:54:01 GMT"
+ "Tue, 23 Feb 2016 00:04:37 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlR3JvdXBzL29uZXNkazk5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZXhwcmVzc1JvdXRlQ2lyY3VpdHMvb25lc2RrMzk0ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazg0NC8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n },\r\n \"location\": \"brazilSouth\",\r\n \"properties\": {\r\n \"authorizations\": [\r\n {\r\n \"name\": \"testkey\"\r\n }\r\n ],\r\n \"peerings\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n },\r\n \"location\": \"brazilSouth\",\r\n \"properties\": {\r\n \"authorizations\": [\r\n {\r\n \"name\": \"testkey\"\r\n }\r\n ],\r\n \"peerings\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n }\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "425"
+ "424"
],
"x-ms-client-request-id": [
- "fa841cce-a404-4698-b320-147e38fa37d4"
+ "975422af-e2f5-4ae6-8379-a32c4a70879c"
],
"accept-language": [
"en-US"
@@ -432,10 +432,10 @@
"Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"onesdk3944\",\r\n \"id\": \"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944\",\r\n \"etag\": \"W/\\\"3da37023-e9b9-4e77-a008-6a3110707ba9\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"18d37eea-b62f-4dc2-a922-d8e72ceb7179\",\r\n \"peerings\": [],\r\n \"authorizations\": [\r\n {\r\n \"name\": \"testkey\",\r\n \"id\": \"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944/authorizations/testkey\",\r\n \"etag\": \"W/\\\"3da37023-e9b9-4e77-a008-6a3110707ba9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"authorizationUseStatus\": \"Available\"\r\n }\r\n }\r\n ],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"serviceKey\": \"00000000-0000-0000-0000-000000000000\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk844\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844\",\r\n \"etag\": \"W/\\\"31403817-56fe-4282-a9b8-d8eba6c13525\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e535b2b8-0846-4531-ab0f-b647345dfd24\",\r\n \"peerings\": [],\r\n \"authorizations\": [\r\n {\r\n \"name\": \"testkey\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844/authorizations/testkey\",\r\n \"etag\": \"W/\\\"31403817-56fe-4282-a9b8-d8eba6c13525\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"authorizationUseStatus\": \"Available\"\r\n }\r\n }\r\n ],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"serviceKey\": \"00000000-0000-0000-0000-000000000000\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1342"
+ "1340"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -450,10 +450,10 @@
"10"
],
"x-ms-request-id": [
- "06f376fb-19ec-45d4-bd41-f9d9ef558329"
+ "3fd40c08-647c-4cfc-9757-ffef5e3f5322"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/Microsoft.Network/locations/brazilsouth/operations/06f376fb-19ec-45d4-bd41-f9d9ef558329?api-version=2015-06-15"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operations/3fd40c08-647c-4cfc-9757-ffef5e3f5322?api-version=2015-06-15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -466,127 +466,23 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "35786901-7571-42d1-8b82-abb7f0aa5766"
+ "41434c7d-6e32-4699-8439-484faec6991e"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225248Z:35786901-7571-42d1-8b82-abb7f0aa5766"
+ "WESTUS:20160223T000405Z:41434c7d-6e32-4699-8439-484faec6991e"
],
"Date": [
- "Fri, 04 Dec 2015 22:52:48 GMT"
+ "Tue, 23 Feb 2016 00:04:05 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/Microsoft.Network/locations/brazilsouth/operations/06f376fb-19ec-45d4-bd41-f9d9ef558329?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy8wNmYzNzZmYi0xOWVjLTQ1ZDQtYmQ0MS1mOWQ5ZWY1NTgzMjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "9f2b5c43-6285-4d68-95aa-40262efb97d1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
- ],
- "x-ms-correlation-request-id": [
- "680cda55-cdec-47a9-bc42-aec6955b9768"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151204T225259Z:680cda55-cdec-47a9-bc42-aec6955b9768"
- ],
- "Date": [
- "Fri, 04 Dec 2015 22:52:58 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/Microsoft.Network/locations/brazilsouth/operations/06f376fb-19ec-45d4-bd41-f9d9ef558329?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy8wNmYzNzZmYi0xOWVjLTQ1ZDQtYmQ0MS1mOWQ5ZWY1NTgzMjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "8f4ec02a-eecf-4ff0-a159-d1c0a246ed6a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
- ],
- "x-ms-correlation-request-id": [
- "7ab0863b-6c8a-4a59-8ebd-5fc539bfff5b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151204T225330Z:7ab0863b-6c8a-4a59-8ebd-5fc539bfff5b"
- ],
- "Date": [
- "Fri, 04 Dec 2015 22:53:29 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/Microsoft.Network/locations/brazilsouth/operations/06f376fb-19ec-45d4-bd41-f9d9ef558329?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy8wNmYzNzZmYi0xOWVjLTQ1ZDQtYmQ0MS1mOWQ5ZWY1NTgzMjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operations/3fd40c08-647c-4cfc-9757-ffef5e3f5322?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy8zZmQ0MGMwOC02NDdjLTRjZmMtOTc1Ny1mZmVmNWUzZjUzMjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -609,7 +505,7 @@
"no-cache"
],
"x-ms-request-id": [
- "f97f9789-20e7-498e-8693-b65f9aa56716"
+ "840317a8-a070-4dbe-98e6-b2c42430d73b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -622,28 +518,28 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14998"
],
"x-ms-correlation-request-id": [
- "98ac2ae9-9a32-4ef5-b818-919048f91372"
+ "5c07445b-b644-4039-8949-bae49efbb2ab"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225401Z:98ac2ae9-9a32-4ef5-b818-919048f91372"
+ "WESTUS:20160223T000436Z:5c07445b-b644-4039-8949-bae49efbb2ab"
],
"Date": [
- "Fri, 04 Dec 2015 22:54:00 GMT"
+ "Tue, 23 Feb 2016 00:04:36 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits/onesdk3944?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlR3JvdXBzL29uZXNkazk5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZXhwcmVzc1JvdXRlQ2lyY3VpdHMvb25lc2RrMzk0ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits/onesdk844/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazg0NC8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6bc0114-ef5e-4bf0-babb-16d0564eaf65"
+ "e359c25b-dbdc-4187-b30f-7c2d232eb535"
],
"accept-language": [
"en-US"
@@ -667,10 +563,10 @@
"10"
],
"x-ms-request-id": [
- "c01f4983-d929-44b1-b95e-f482bcfa3fab"
+ "1a810e9c-3cb7-463f-9ddc-0ac5af4be5e8"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/Microsoft.Network/locations/brazilsouth/operations/c01f4983-d929-44b1-b95e-f482bcfa3fab?api-version=2015-06-15"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operations/1a810e9c-3cb7-463f-9ddc-0ac5af4be5e8?api-version=2015-06-15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -679,82 +575,30 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/Microsoft.Network/locations/brazilsouth/operationResults/c01f4983-d929-44b1-b95e-f482bcfa3fab?api-version=2015-06-15"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operationResults/1a810e9c-3cb7-463f-9ddc-0ac5af4be5e8?api-version=2015-06-15"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "7a2a97b2-e138-4f1a-866c-9814c250e20d"
+ "fb046529-0ace-4d68-b14f-57f727398023"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225403Z:7a2a97b2-e138-4f1a-866c-9814c250e20d"
+ "WESTUS:20160223T000439Z:fb046529-0ace-4d68-b14f-57f727398023"
],
"Date": [
- "Fri, 04 Dec 2015 22:54:02 GMT"
+ "Tue, 23 Feb 2016 00:04:38 GMT"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/Microsoft.Network/locations/brazilsouth/operations/c01f4983-d929-44b1-b95e-f482bcfa3fab?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9jMDFmNDk4My1kOTI5LTQ0YjEtYjk1ZS1mNDgyYmNmYTNmYWI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "b79596d0-17c2-4f47-8bd7-c5b77e47bd9f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
- ],
- "x-ms-correlation-request-id": [
- "4d21762f-49f4-40b1-aba0-6122b982c73f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151204T225414Z:4d21762f-49f4-40b1-aba0-6122b982c73f"
- ],
- "Date": [
- "Fri, 04 Dec 2015 22:54:13 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/Microsoft.Network/locations/brazilsouth/operations/c01f4983-d929-44b1-b95e-f482bcfa3fab?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9jMDFmNDk4My1kOTI5LTQ0YjEtYjk1ZS1mNDgyYmNmYTNmYWI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operations/1a810e9c-3cb7-463f-9ddc-0ac5af4be5e8?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy8xYTgxMGU5Yy0zY2I3LTQ2M2YtOWRkYy0wYWM1YWY0YmU1ZTg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -777,7 +621,7 @@
"no-cache"
],
"x-ms-request-id": [
- "de3fc176-adb6-45d8-9f1c-92ac7bca9fd2"
+ "5615111d-1f9b-4219-bf8d-b94b8e163d7d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -790,28 +634,28 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14995"
],
"x-ms-correlation-request-id": [
- "38211b6d-f3c9-4062-bdf5-8975441d79d0"
+ "2678ae85-7b73-475a-8710-d40e95739c1d"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225444Z:38211b6d-f3c9-4062-bdf5-8975441d79d0"
+ "WESTUS:20160223T000509Z:2678ae85-7b73-475a-8710-d40e95739c1d"
],
"Date": [
- "Fri, 04 Dec 2015 22:54:44 GMT"
+ "Tue, 23 Feb 2016 00:05:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/onesdk993/providers/Microsoft.Network/expressRouteCircuits?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlR3JvdXBzL29uZXNkazk5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZXhwcmVzc1JvdXRlQ2lyY3VpdHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk1350/providers/Microsoft.Network/expressRouteCircuits?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e18b4ea-3948-4674-99ba-c89008045026"
+ "d6ca71f1-ed07-4efd-88d7-1073c06687d7"
],
"accept-language": [
"en-US"
@@ -835,16 +679,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14994"
],
"x-ms-request-id": [
- "0de44353-3d53-4c7f-bbb2-33e23e4743a2"
+ "912d1d56-512c-449a-91ad-331f3ce12714"
],
"x-ms-correlation-request-id": [
- "0de44353-3d53-4c7f-bbb2-33e23e4743a2"
+ "912d1d56-512c-449a-91ad-331f3ce12714"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225444Z:0de44353-3d53-4c7f-bbb2-33e23e4743a2"
+ "WESTUS:20160223T000510Z:912d1d56-512c-449a-91ad-331f3ce12714"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -853,14 +697,14 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:54:44 GMT"
+ "Tue, 23 Feb 2016 00:05:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/onesdk993?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourcegroups/onesdk1350?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -883,16 +727,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1195"
],
"x-ms-request-id": [
- "4ed60de8-b279-44d0-a93f-c4d497fe4188"
+ "76545fd0-aba3-4d2d-a697-cea2d08d8d79"
],
"x-ms-correlation-request-id": [
- "4ed60de8-b279-44d0-a93f-c4d497fe4188"
+ "76545fd0-aba3-4d2d-a697-cea2d08d8d79"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225445Z:4ed60de8-b279-44d0-a93f-c4d497fe4188"
+ "WESTUS:20160223T000510Z:76545fd0-aba3-4d2d-a697-cea2d08d8d79"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -901,17 +745,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:54:44 GMT"
+ "Tue, 23 Feb 2016 00:05:10 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzUwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzUwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNelV3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -937,16 +781,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14982"
],
"x-ms-request-id": [
- "c51a2f47-eb36-48f1-a2d6-84505eed3005"
+ "5b72c054-3e1f-46aa-9fb8-41d6f8c9bfff"
],
"x-ms-correlation-request-id": [
- "c51a2f47-eb36-48f1-a2d6-84505eed3005"
+ "5b72c054-3e1f-46aa-9fb8-41d6f8c9bfff"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225445Z:c51a2f47-eb36-48f1-a2d6-84505eed3005"
+ "WESTUS:20160223T000510Z:5b72c054-3e1f-46aa-9fb8-41d6f8c9bfff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -955,17 +799,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:54:44 GMT"
+ "Tue, 23 Feb 2016 00:05:10 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzUwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzUwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNelV3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -991,16 +835,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
+ "14981"
],
"x-ms-request-id": [
- "0920749d-650e-4544-ab2c-28dfc9ee4cfa"
+ "18bda40d-c192-4b46-bc7a-01bd3b45708e"
],
"x-ms-correlation-request-id": [
- "0920749d-650e-4544-ab2c-28dfc9ee4cfa"
+ "18bda40d-c192-4b46-bc7a-01bd3b45708e"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225500Z:0920749d-650e-4544-ab2c-28dfc9ee4cfa"
+ "WESTUS:20160223T000525Z:18bda40d-c192-4b46-bc7a-01bd3b45708e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1009,17 +853,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:55:00 GMT"
+ "Tue, 23 Feb 2016 00:05:24 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzUwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzUwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNelV3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1045,16 +889,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14981"
+ "14980"
],
"x-ms-request-id": [
- "f054386f-86b6-4107-b0e4-782717c3e294"
+ "0a8421dc-70ab-4ef5-a476-48e80c7ed5b6"
],
"x-ms-correlation-request-id": [
- "f054386f-86b6-4107-b0e4-782717c3e294"
+ "0a8421dc-70ab-4ef5-a476-48e80c7ed5b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225515Z:f054386f-86b6-4107-b0e4-782717c3e294"
+ "WESTUS:20160223T000540Z:0a8421dc-70ab-4ef5-a476-48e80c7ed5b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1063,17 +907,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:55:15 GMT"
+ "Tue, 23 Feb 2016 00:05:40 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzUwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2NhNDkwNDItNzgyYS00Y2M5LTg5YjUtZWUxYjQ4N2ZlMTE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzUwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNelV3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1096,16 +940,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14979"
],
"x-ms-request-id": [
- "c1b64d82-e3da-414e-8518-8a294e4953d2"
+ "d85a93e6-cc5b-4d95-a4ac-5ecfbe8b774f"
],
"x-ms-correlation-request-id": [
- "c1b64d82-e3da-414e-8518-8a294e4953d2"
+ "d85a93e6-cc5b-4d95-a4ac-5ecfbe8b774f"
],
"x-ms-routing-request-id": [
- "WESTUS:20151204T225530Z:c1b64d82-e3da-414e-8518-8a294e4953d2"
+ "WESTUS:20160223T000555Z:d85a93e6-cc5b-4d95-a4ac-5ecfbe8b774f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1114,7 +958,7 @@
"no-cache"
],
"Date": [
- "Fri, 04 Dec 2015 22:55:29 GMT"
+ "Tue, 23 Feb 2016 00:05:55 GMT"
]
},
"StatusCode": 200
@@ -1122,11 +966,11 @@
],
"Names": {
"Test-ExpressRouteCircuitAuthorizationCRUD": [
- "onesdk993",
- "onesdk3944"
+ "onesdk1350",
+ "onesdk844"
]
},
"Variables": {
- "SubscriptionId": "3ca49042-782a-4cc9-89b5-ee1b487fe115"
+ "SubscriptionId": "18b0dc06-a2b8-4c0f-95af-550319fa5eac"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ExpressRouteCircuitTests/TestExpressRouteCircuitCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ExpressRouteCircuitTests/TestExpressRouteCircuitCRUD.json
index 3b619b8d1118..7dbbe311332c 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ExpressRouteCircuitTests/TestExpressRouteCircuitCRUD.json
+++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ExpressRouteCircuitTests/TestExpressRouteCircuitCRUD.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "5908"
+ "5934"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14999"
],
"x-ms-request-id": [
- "29b1fec6-1158-44fd-b367-2aebd0aa15c5"
+ "147c6090-d54b-45ed-adb5-063bcd3148d2"
],
"x-ms-correlation-request-id": [
- "29b1fec6-1158-44fd-b367-2aebd0aa15c5"
+ "147c6090-d54b-45ed-adb5-063bcd3148d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102242Z:29b1fec6-1158-44fd-b367-2aebd0aa15c5"
+ "WESTUS:20160223T000729Z:147c6090-d54b-45ed-adb5-063bcd3148d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:22:42 GMT"
+ "Tue, 23 Feb 2016 00:07:28 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk7333?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourcegroups/onesdk8096?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwOTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -76,16 +76,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14998"
],
"x-ms-request-id": [
- "50833c25-e11f-4d55-8f10-cc0f3f3b3977"
+ "0315670c-b8fe-4ba0-a736-8c8f1d536913"
],
"x-ms-correlation-request-id": [
- "50833c25-e11f-4d55-8f10-cc0f3f3b3977"
+ "0315670c-b8fe-4ba0-a736-8c8f1d536913"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102243Z:50833c25-e11f-4d55-8f10-cc0f3f3b3977"
+ "WESTUS:20160223T000729Z:0315670c-b8fe-4ba0-a736-8c8f1d536913"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -94,14 +94,14 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:22:42 GMT"
+ "Tue, 23 Feb 2016 00:07:28 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk7333?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourcegroups/onesdk8096?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwOTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -121,16 +121,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14996"
],
"x-ms-request-id": [
- "992c03b4-d58a-428d-aea2-ed50b90e01d1"
+ "a4b78578-c960-4335-b375-a6c7b04a1771"
],
"x-ms-correlation-request-id": [
- "992c03b4-d58a-428d-aea2-ed50b90e01d1"
+ "a4b78578-c960-4335-b375-a6c7b04a1771"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102415Z:992c03b4-d58a-428d-aea2-ed50b90e01d1"
+ "WESTUS:20160223T000912Z:a4b78578-c960-4335-b375-a6c7b04a1771"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -139,14 +139,14 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:24:15 GMT"
+ "Tue, 23 Feb 2016 00:09:12 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk7333?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourcegroups/onesdk8096?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwOTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
@@ -160,7 +160,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333\",\r\n \"name\": \"onesdk7333\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096\",\r\n \"name\": \"onesdk8096\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"173"
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-request-id": [
- "0741f969-a7ce-406a-b101-bb2207b47f02"
+ "349b425f-ede4-467d-91e6-46338d05e1ec"
],
"x-ms-correlation-request-id": [
- "0741f969-a7ce-406a-b101-bb2207b47f02"
+ "349b425f-ede4-467d-91e6-46338d05e1ec"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102243Z:0741f969-a7ce-406a-b101-bb2207b47f02"
+ "WESTUS:20160223T000730Z:349b425f-ede4-467d-91e6-46338d05e1ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,14 +193,14 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:22:43 GMT"
+ "Tue, 23 Feb 2016 00:07:29 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -223,16 +223,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14997"
],
"x-ms-request-id": [
- "c94eabdf-af84-4a12-bd22-f434dde052be"
+ "c768dacc-2403-4624-993a-018db68981fa"
],
"x-ms-correlation-request-id": [
- "c94eabdf-af84-4a12-bd22-f434dde052be"
+ "c768dacc-2403-4624-993a-018db68981fa"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102243Z:c94eabdf-af84-4a12-bd22-f434dde052be"
+ "WESTUS:20160223T000730Z:c768dacc-2403-4624-993a-018db68981fa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -241,22 +241,28 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:22:43 GMT"
+ "Tue, 23 Feb 2016 00:07:29 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazY0NTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazQxMjgvP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0e0b9753-7eb8-4182-b34f-eb3a92d2d6ea"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/expressRouteCircuits/onesdk6458' under resource group 'onesdk7333' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/expressRouteCircuits/onesdk4128' under resource group 'onesdk8096' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"163"
@@ -274,13 +280,13 @@
"gateway"
],
"x-ms-request-id": [
- "808142a7-18f9-4038-af49-78cb19bba312"
+ "be23bf18-7c47-412a-a3a4-c3a9936876bf"
],
"x-ms-correlation-request-id": [
- "808142a7-18f9-4038-af49-78cb19bba312"
+ "be23bf18-7c47-412a-a3a4-c3a9936876bf"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102245Z:808142a7-18f9-4038-af49-78cb19bba312"
+ "WESTUS:20160223T000730Z:be23bf18-7c47-412a-a3a4-c3a9936876bf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -289,25 +295,25 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:22:44 GMT"
+ "Tue, 23 Feb 2016 00:07:29 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazY0NTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazQxMjgvP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"onesdk6458\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458\",\r\n \"etag\": \"W/\\\"d72013ba-329a-41c0-bfb3-0510ffb86895\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02e32dd9-aca1-4d78-bc46-b0889de98d1f\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"cb4349df-e730-40e4-829f-abb2848e65da\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk4128\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128\",\r\n \"etag\": \"W/\\\"5d71833b-c69a-492f-a76a-a67a8b2ebe58\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27c175df-9c9f-417d-8abb-aa22678a93d4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"98aba96f-0685-4beb-98e3-d2f5bd176d4f\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "921"
+ "920"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -319,7 +325,7 @@
"no-cache"
],
"x-ms-request-id": [
- "0ab074ef-e0e9-45f0-85fc-7b2e25c38a98"
+ "73b2a08f-4eff-4a4e-8b20-da3399735ca8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -332,34 +338,40 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14966"
],
"x-ms-correlation-request-id": [
- "d0d7da1d-58d1-450f-870e-6695f18e9475"
+ "b100a0f6-5da7-40df-8519-ded42e3abf7a"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102332Z:d0d7da1d-58d1-450f-870e-6695f18e9475"
+ "WESTUS:20160223T000805Z:b100a0f6-5da7-40df-8519-ded42e3abf7a"
],
"Date": [
- "Tue, 03 Nov 2015 10:23:31 GMT"
+ "Tue, 23 Feb 2016 00:08:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazY0NTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazQxMjgvP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6cea42e4-c033-4254-93f4-aec932eb1723"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"onesdk6458\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458\",\r\n \"etag\": \"W/\\\"d72013ba-329a-41c0-bfb3-0510ffb86895\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02e32dd9-aca1-4d78-bc46-b0889de98d1f\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"cb4349df-e730-40e4-829f-abb2848e65da\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk4128\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128\",\r\n \"etag\": \"W/\\\"5d71833b-c69a-492f-a76a-a67a8b2ebe58\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27c175df-9c9f-417d-8abb-aa22678a93d4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"98aba96f-0685-4beb-98e3-d2f5bd176d4f\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "921"
+ "920"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -371,7 +383,7 @@
"no-cache"
],
"x-ms-request-id": [
- "1b336136-d578-4c5e-af2e-80fd16f86bd1"
+ "2cb9eec4-004a-4305-abee-b2170ca0764f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -384,34 +396,40 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14965"
],
"x-ms-correlation-request-id": [
- "8873c372-b7ab-427f-80bd-b4a65cf89735"
+ "1580e944-4937-417f-91c8-1522d41d418a"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102332Z:8873c372-b7ab-427f-80bd-b4a65cf89735"
+ "WESTUS:20160223T000805Z:1580e944-4937-417f-91c8-1522d41d418a"
],
"Date": [
- "Tue, 03 Nov 2015 10:23:32 GMT"
+ "Tue, 23 Feb 2016 00:08:05 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazY0NTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazQxMjgvP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5bc19a27-f5f4-4c86-bd39-d9d1068fda8b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"onesdk6458\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458\",\r\n \"etag\": \"W/\\\"d72013ba-329a-41c0-bfb3-0510ffb86895\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02e32dd9-aca1-4d78-bc46-b0889de98d1f\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"cb4349df-e730-40e4-829f-abb2848e65da\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk4128\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128\",\r\n \"etag\": \"W/\\\"5d71833b-c69a-492f-a76a-a67a8b2ebe58\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27c175df-9c9f-417d-8abb-aa22678a93d4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"98aba96f-0685-4beb-98e3-d2f5bd176d4f\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "921"
+ "920"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -423,7 +441,7 @@
"no-cache"
],
"x-ms-request-id": [
- "2445372b-c814-45cc-84b4-26687e80880a"
+ "aa9272b7-31f7-431b-9535-639382fd8e36"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -436,34 +454,40 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14964"
],
"x-ms-correlation-request-id": [
- "7d7ec956-8a30-420e-8d67-e0422ab14ae0"
+ "02f718a2-20e9-4a8a-a128-981e03d1d411"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102334Z:7d7ec956-8a30-420e-8d67-e0422ab14ae0"
+ "WESTUS:20160223T000806Z:02f718a2-20e9-4a8a-a128-981e03d1d411"
],
"Date": [
- "Tue, 03 Nov 2015 10:23:34 GMT"
+ "Tue, 23 Feb 2016 00:08:05 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazY0NTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazQxMjgvP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "46aa0f5d-3331-46aa-8ed6-5cc7813d352e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"onesdk6458\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458\",\r\n \"etag\": \"W/\\\"80f6e40f-459a-4fee-b94a-9b7297e4cd4a\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"resourceGuid\": \"02e32dd9-aca1-4d78-bc46-b0889de98d1f\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"serviceKey\": \"cb4349df-e730-40e4-829f-abb2848e65da\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk4128\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128\",\r\n \"etag\": \"W/\\\"5d71833b-c69a-492f-a76a-a67a8b2ebe58\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27c175df-9c9f-417d-8abb-aa22678a93d4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"98aba96f-0685-4beb-98e3-d2f5bd176d4f\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "918"
+ "920"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -475,7 +499,7 @@
"no-cache"
],
"x-ms-request-id": [
- "a35cd7aa-7772-4cbf-b5a5-f0629b6c976c"
+ "75ded6f1-b88a-479d-95fe-288c57243d47"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -488,40 +512,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14962"
],
"x-ms-correlation-request-id": [
- "1589c46c-4cbe-4ea3-af51-6da4c378f688"
+ "7f7f51d1-1ca2-4b68-bc18-67a8e8f72493"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102347Z:1589c46c-4cbe-4ea3-af51-6da4c378f688"
+ "WESTUS:20160223T000807Z:7f7f51d1-1ca2-4b68-bc18-67a8e8f72493"
],
"Date": [
- "Tue, 03 Nov 2015 10:23:46 GMT"
+ "Tue, 23 Feb 2016 00:08:07 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazY0NTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n },\r\n \"properties\": {\r\n \"peerings\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n }\r\n },\r\n \"name\": \"onesdk6458\",\r\n \"type\": \"microsoft.network/ExpressRouteCircuits\",\r\n \"location\": \"brazilSouth\"\r\n}",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazQxMjgvP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Content-Length": [
- "425"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"onesdk6458\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458\",\r\n \"etag\": \"W/\\\"d6aa66c5-1807-47ef-8997-8e5fc24f7cbc\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"02e32dd9-aca1-4d78-bc46-b0889de98d1f\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"serviceKey\": \"00000000-0000-0000-0000-000000000000\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk4128\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128\",\r\n \"etag\": \"W/\\\"b5589ba5-3c67-41a0-ac0d-85ac343b245d\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27c175df-9c9f-417d-8abb-aa22678a93d4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"98aba96f-0685-4beb-98e3-d2f5bd176d4f\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"UnlimitedData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "921"
+ "922"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -532,14 +550,8 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "edc99dab-e50a-4bc2-9d85-6afb615148f1"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/edc99dab-e50a-4bc2-9d85-6afb615148f1?api-version=2015-05-01-preview"
+ "7800dede-9fde-4b8c-a88c-db7afe882c76"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -551,41 +563,41 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
],
"x-ms-correlation-request-id": [
- "1f74daba-344d-467a-9ff8-994e24f0c6e7"
+ "f9c1b11f-64e3-4491-8934-f925fc5d0188"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102248Z:1f74daba-344d-467a-9ff8-994e24f0c6e7"
+ "WESTUS:20160223T000840Z:f9c1b11f-64e3-4491-8934-f925fc5d0188"
],
"Date": [
- "Tue, 03 Nov 2015 10:22:47 GMT"
+ "Tue, 23 Feb 2016 00:08:40 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazY0NTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n },\r\n \"properties\": {\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"peerings\": [],\r\n \"serviceKey\": \"cb4349df-e730-40e4-829f-abb2848e65da\",\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"d72013ba-329a-41c0-bfb3-0510ffb86895\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458\",\r\n \"name\": \"onesdk6458\",\r\n \"type\": \"microsoft.network/ExpressRouteCircuits\",\r\n \"location\": \"brazilsouth\"\r\n}",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazQxMjgvP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json"
+ "x-ms-client-request-id": [
+ "cc0a361c-1e6f-41ad-b793-289547607dab"
],
- "Content-Length": [
- "832"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"onesdk6458\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458\",\r\n \"etag\": \"W/\\\"d7b1f4f5-8f58-43b7-abe8-ce7393298fa8\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"02e32dd9-aca1-4d78-bc46-b0889de98d1f\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"serviceKey\": \"cb4349df-e730-40e4-829f-abb2848e65da\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk4128\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128\",\r\n \"etag\": \"W/\\\"b5589ba5-3c67-41a0-ac0d-85ac343b245d\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27c175df-9c9f-417d-8abb-aa22678a93d4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"98aba96f-0685-4beb-98e3-d2f5bd176d4f\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"UnlimitedData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "920"
+ "922"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -596,14 +608,8 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "eb526467-50d2-4b01-ab0b-8d91e7e818cf"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/eb526467-50d2-4b01-ab0b-8d91e7e818cf?api-version=2015-05-01-preview"
+ "db92c97b-0ab5-4eed-adcb-7bd4f64e3206"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -615,93 +621,47 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
],
"x-ms-correlation-request-id": [
- "491e965e-3f46-4d95-95cf-2d4d4c9675fa"
+ "e1de2881-55d6-4cc6-8f2e-097f932bf5f5"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102335Z:491e965e-3f46-4d95-95cf-2d4d4c9675fa"
+ "WESTUS:20160223T000841Z:e1de2881-55d6-4cc6-8f2e-097f932bf5f5"
],
"Date": [
- "Tue, 03 Nov 2015 10:23:35 GMT"
+ "Tue, 23 Feb 2016 00:08:40 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/edc99dab-e50a-4bc2-9d85-6afb615148f1?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9lZGM5OWRhYi1lNTBhLTRiYzItOWQ4NS02YWZiNjE1MTQ4ZjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazQxMjgvP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n },\r\n \"location\": \"brazilSouth\",\r\n \"properties\": {\r\n \"authorizations\": [],\r\n \"peerings\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n }\r\n }\r\n}",
"RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "30"
- ],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "edd98835-0545-44f2-9dc8-a31734176a32"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "Content-Length": [
+ "373"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "x-ms-client-request-id": [
+ "527578f8-5fd5-43e6-a83f-0f5430089a03"
],
- "x-ms-correlation-request-id": [
- "228a1f2c-e4f2-44dd-ae8d-632ed8831fc3"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151103T102249Z:228a1f2c-e4f2-44dd-ae8d-632ed8831fc3"
- ],
- "Date": [
- "Tue, 03 Nov 2015 10:22:49 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/edc99dab-e50a-4bc2-9d85-6afb615148f1?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9lZGM5OWRhYi1lNTBhLTRiYzItOWQ4NS02YWZiNjE1MTQ4ZjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk4128\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128\",\r\n \"etag\": \"W/\\\"2f00304b-2c56-4fc3-8ef5-b77d592820b2\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"27c175df-9c9f-417d-8abb-aa22678a93d4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"serviceKey\": \"00000000-0000-0000-0000-000000000000\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "30"
+ "920"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -712,8 +672,14 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "a95283a8-163a-4fc3-84fd-4f9cdb005a1e"
+ "e1338c0e-9f5c-4d25-b9b0-16ce64c75748"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operations/e1338c0e-9f5c-4d25-b9b0-16ce64c75748?api-version=2015-06-15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -725,38 +691,47 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
],
"x-ms-correlation-request-id": [
- "3455fd8e-100f-4b50-823d-40f70cd0b5ad"
+ "e2830884-5612-4484-82d1-cf4027bf3e58"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102259Z:3455fd8e-100f-4b50-823d-40f70cd0b5ad"
+ "WESTUS:20160223T000733Z:e2830884-5612-4484-82d1-cf4027bf3e58"
],
"Date": [
- "Tue, 03 Nov 2015 10:22:59 GMT"
+ "Tue, 23 Feb 2016 00:07:33 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/edc99dab-e50a-4bc2-9d85-6afb615148f1?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9lZGM5OWRhYi1lNTBhLTRiYzItOWQ4NS02YWZiNjE1MTQ4ZjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazQxMjgvP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"UnlimitedData\"\r\n },\r\n \"etag\": \"W/\\\"5d71833b-c69a-492f-a76a-a67a8b2ebe58\\\"\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"authorizations\": [],\r\n \"peerings\": [],\r\n \"serviceKey\": \"98aba96f-0685-4beb-98e3-d2f5bd176d4f\",\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "783"
+ ],
+ "x-ms-client-request-id": [
+ "bc331de1-6e8e-4231-bc67-4bb5eb80b8fa"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"onesdk4128\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128\",\r\n \"etag\": \"W/\\\"fdcbccff-926f-4efa-9b7c-c37f165d7591\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"27c175df-9c9f-417d-8abb-aa22678a93d4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"serviceKey\": \"98aba96f-0685-4beb-98e3-d2f5bd176d4f\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"UnlimitedData\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "30"
+ "922"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -767,8 +742,14 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
"x-ms-request-id": [
- "9d7b209f-6b0a-4000-94b8-8fbbdace46ce"
+ "c77739fd-1d5d-4987-a844-30f79522bf4c"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operations/c77739fd-1d5d-4987-a844-30f79522bf4c?api-version=2015-06-15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -780,32 +761,29 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
],
"x-ms-correlation-request-id": [
- "4fb9baf7-304f-4ba4-b40f-c434a901ddf0"
+ "5fea7dde-6ecf-40e1-8223-3b14717a8ac2"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102315Z:4fb9baf7-304f-4ba4-b40f-c434a901ddf0"
+ "WESTUS:20160223T000808Z:5fea7dde-6ecf-40e1-8223-3b14717a8ac2"
],
"Date": [
- "Tue, 03 Nov 2015 10:23:14 GMT"
+ "Tue, 23 Feb 2016 00:08:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/edc99dab-e50a-4bc2-9d85-6afb615148f1?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9lZGM5OWRhYi1lNTBhLTRiYzItOWQ4NS02YWZiNjE1MTQ4ZjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operations/e1338c0e-9f5c-4d25-b9b0-16ce64c75748?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9lMTMzOGMwZS05ZjVjLTRkMjUtYjliMC0xNmNlNjRjNzU3NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -823,7 +801,7 @@
"no-cache"
],
"x-ms-request-id": [
- "fa59e6eb-e585-4bbb-bb61-976c3b538f92"
+ "b7bfe723-1174-4fe3-bbbc-5583b2fb79d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -836,34 +814,40 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14967"
],
"x-ms-correlation-request-id": [
- "3893a678-6dfc-4f51-b436-c4e6ba64910e"
+ "1adc11d7-955e-4742-a7fa-ab3c6bbbc70a"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102331Z:3893a678-6dfc-4f51-b436-c4e6ba64910e"
+ "WESTUS:20160223T000804Z:1adc11d7-955e-4742-a7fa-ab3c6bbbc70a"
],
"Date": [
- "Tue, 03 Nov 2015 10:23:31 GMT"
+ "Tue, 23 Feb 2016 00:08:03 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e64822f1-b297-44d8-8ac2-616dfb454f3a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk6458\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458\",\r\n \"etag\": \"W/\\\"d72013ba-329a-41c0-bfb3-0510ffb86895\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02e32dd9-aca1-4d78-bc46-b0889de98d1f\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 1000\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"cb4349df-e730-40e4-829f-abb2848e65da\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk4128\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128\",\r\n \"etag\": \"W/\\\"5d71833b-c69a-492f-a76a-a67a8b2ebe58\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27c175df-9c9f-417d-8abb-aa22678a93d4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \"bandwidthInMbps\": 500\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"serviceKey\": \"98aba96f-0685-4beb-98e3-d2f5bd176d4f\",\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1050"
+ "1049"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -875,7 +859,7 @@
"no-cache"
],
"x-ms-request-id": [
- "7b47b9d0-6375-467b-bde1-27c64f6252e4"
+ "c07a3b07-c6c5-4179-8935-8a6c79c390d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -888,28 +872,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14963"
],
"x-ms-correlation-request-id": [
- "f7f00713-b17f-4c7f-b78b-6f5034d4c00e"
+ "21d255d5-596d-474a-8679-3bda2db63439"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102333Z:f7f00713-b17f-4c7f-b78b-6f5034d4c00e"
+ "WESTUS:20160223T000807Z:21d255d5-596d-474a-8679-3bda2db63439"
],
"Date": [
- "Tue, 03 Nov 2015 10:23:33 GMT"
+ "Tue, 23 Feb 2016 00:08:06 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bca7730e-5c32-4880-8d5a-600afdc3ea7a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -927,16 +917,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14979"
+ "14957"
],
"x-ms-request-id": [
- "1ba1114f-a6fc-485b-b59c-8af587800d50"
+ "54d80e12-5ef8-4332-840b-de053abd3687"
],
"x-ms-correlation-request-id": [
- "1ba1114f-a6fc-485b-b59c-8af587800d50"
+ "54d80e12-5ef8-4332-840b-de053abd3687"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102415Z:1ba1114f-a6fc-485b-b59c-8af587800d50"
+ "WESTUS:20160223T000912Z:54d80e12-5ef8-4332-840b-de053abd3687"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -945,28 +935,25 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:24:14 GMT"
+ "Tue, 23 Feb 2016 00:09:12 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/eb526467-50d2-4b01-ab0b-8d91e7e818cf?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9lYjUyNjQ2Ny01MGQyLTRiMDEtYWIwYi04ZDkxZTdlODE4Y2Y/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operations/c77739fd-1d5d-4987-a844-30f79522bf4c?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9jNzc3MzlmZC0xZDVkLTQ5ODctYTg0NC0zMGY3OTUyMmJmNGM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "30"
+ "29"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -978,7 +965,7 @@
"no-cache"
],
"x-ms-request-id": [
- "925cf7b5-61f0-4068-8ecf-07fb65e46e33"
+ "6797e5c7-a132-4547-bf4e-9aad70a7d3bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -991,83 +978,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14961"
],
"x-ms-correlation-request-id": [
- "9ff694ba-2845-44f9-921c-c55f6e69067a"
+ "586f6e65-74a1-47bb-b403-4211f5701063"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102336Z:9ff694ba-2845-44f9-921c-c55f6e69067a"
+ "WESTUS:20160223T000839Z:586f6e65-74a1-47bb-b403-4211f5701063"
],
"Date": [
- "Tue, 03 Nov 2015 10:23:35 GMT"
+ "Tue, 23 Feb 2016 00:08:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/eb526467-50d2-4b01-ab0b-8d91e7e818cf?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9lYjUyNjQ2Ny01MGQyLTRiMDEtYWIwYi04ZDkxZTdlODE4Y2Y/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk8096/providers/Microsoft.Network/expressRouteCircuits/onesdk4128/?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazgwOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazQxMjgvP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\": \"InternalServerError\",\r\n \"message\": \"An error occured.\",\r\n \"details\": []\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "138"
+ "x-ms-client-request-id": [
+ "d0eaf433-ab9f-46b2-80bb-abfe8c576f12"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "accept-language": [
+ "en-US"
],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "bd87c8ea-3b9c-4fc2-b7cd-b7a05cbd55c0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
- ],
- "x-ms-correlation-request-id": [
- "62991c27-d923-4b82-be5f-2380de703319"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151103T102347Z:62991c27-d923-4b82-be5f-2380de703319"
- ],
- "Date": [
- "Tue, 03 Nov 2015 10:23:46 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk7333/providers/Microsoft.Network/expressRouteCircuits/onesdk6458/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazczMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2V4cHJlc3NSb3V0ZUNpcmN1aXRzL29uZXNkazY0NTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
"ResponseBody": "",
@@ -1085,10 +1023,10 @@
"10"
],
"x-ms-request-id": [
- "6efc1a31-bf4d-4463-ae10-82424520df7c"
+ "d1a2a84d-39ed-44f1-bdc3-9776e4a97990"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/6efc1a31-bf4d-4463-ae10-82424520df7c?api-version=2015-05-01-preview"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operations/d1a2a84d-39ed-44f1-bdc3-9776e4a97990?api-version=2015-06-15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1097,148 +1035,35 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operationResults/6efc1a31-bf4d-4463-ae10-82424520df7c?api-version=2015-05-01-preview"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operationResults/d1a2a84d-39ed-44f1-bdc3-9776e4a97990?api-version=2015-06-15"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1192"
],
"x-ms-correlation-request-id": [
- "7e139ea0-d2b4-4c34-bae6-2380f852816d"
+ "d78dd4ce-4ea5-4dda-a894-3e39e7fc2583"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102348Z:7e139ea0-d2b4-4c34-bae6-2380f852816d"
+ "WESTUS:20160223T000841Z:d78dd4ce-4ea5-4dda-a894-3e39e7fc2583"
],
"Date": [
- "Tue, 03 Nov 2015 10:23:47 GMT"
+ "Tue, 23 Feb 2016 00:08:41 GMT"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/6efc1a31-bf4d-4463-ae10-82424520df7c?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy82ZWZjMWEzMS1iZjRkLTQ0NjMtYWUxMC04MjQyNDUyMGRmN2M/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "fb36c001-6a07-49b8-814f-9eb737a2df0d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
- ],
- "x-ms-correlation-request-id": [
- "9409c5fa-d543-4048-b477-aa95b2a97fd1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151103T102349Z:9409c5fa-d543-4048-b477-aa95b2a97fd1"
- ],
- "Date": [
- "Tue, 03 Nov 2015 10:23:49 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/6efc1a31-bf4d-4463-ae10-82424520df7c?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy82ZWZjMWEzMS1iZjRkLTQ0NjMtYWUxMC04MjQyNDUyMGRmN2M/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/brazilsouth/operations/d1a2a84d-39ed-44f1-bdc3-9776e4a97990?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy9kMWEyYTg0ZC0zOWVkLTQ0ZjEtYmRjMy05Nzc2ZTRhOTc5OTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "30"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "f4ed050e-71e7-46b3-b6a9-0098dcf379f1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14981"
- ],
- "x-ms-correlation-request-id": [
- "a3f2339e-80bc-43c5-b2f2-080e25a56fd7"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151103T102400Z:a3f2339e-80bc-43c5-b2f2-080e25a56fd7"
- ],
- "Date": [
- "Tue, 03 Nov 2015 10:23:59 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/brazilsouth/operations/6efc1a31-bf4d-4463-ae10-82424520df7c?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvYnJhemlsc291dGgvb3BlcmF0aW9ucy82ZWZjMWEzMS1iZjRkLTQ0NjMtYWUxMC04MjQyNDUyMGRmN2M/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1256,7 +1081,7 @@
"no-cache"
],
"x-ms-request-id": [
- "cfb374a2-3d27-4b86-8066-18bc25c20213"
+ "8a300c15-fc51-4184-8e14-91c7d6cd3b6b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1269,23 +1094,23 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14958"
],
"x-ms-correlation-request-id": [
- "8d502f62-2180-4435-bce0-6cdc27eb053d"
+ "63dc2bc7-ed98-489d-81b0-76ff330e158f"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102415Z:8d502f62-2180-4435-bce0-6cdc27eb053d"
+ "WESTUS:20160223T000912Z:63dc2bc7-ed98-489d-81b0-76ff330e158f"
],
"Date": [
- "Tue, 03 Nov 2015 10:24:14 GMT"
+ "Tue, 23 Feb 2016 00:09:12 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk7333?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourcegroups/onesdk8096?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwOTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -1308,16 +1133,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-request-id": [
- "6d2d59f9-beef-4aad-8d88-3c1effaf90ec"
+ "0ab4df97-01ac-452f-bbf3-d4dd9107a5bb"
],
"x-ms-correlation-request-id": [
- "6d2d59f9-beef-4aad-8d88-3c1effaf90ec"
+ "0ab4df97-01ac-452f-bbf3-d4dd9107a5bb"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102416Z:6d2d59f9-beef-4aad-8d88-3c1effaf90ec"
+ "WESTUS:20160223T000912Z:0ab4df97-01ac-452f-bbf3-d4dd9107a5bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1326,17 +1151,17 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:24:15 GMT"
+ "Tue, 23 Feb 2016 00:09:12 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzMzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzMzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNek16TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNRGsyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1362,16 +1187,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14995"
],
"x-ms-request-id": [
- "c39a97d3-ee8f-43f1-a14e-61087ee64c47"
+ "e714427b-264f-49ea-a309-07de9cf94337"
],
"x-ms-correlation-request-id": [
- "c39a97d3-ee8f-43f1-a14e-61087ee64c47"
+ "e714427b-264f-49ea-a309-07de9cf94337"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102416Z:c39a97d3-ee8f-43f1-a14e-61087ee64c47"
+ "WESTUS:20160223T000912Z:e714427b-264f-49ea-a309-07de9cf94337"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1380,17 +1205,17 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:24:15 GMT"
+ "Tue, 23 Feb 2016 00:09:12 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzMzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzMzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNek16TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNRGsyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1416,16 +1241,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14994"
],
"x-ms-request-id": [
- "9bfd7018-0714-4ddf-be10-e90d60d8c42f"
+ "99f29d77-4d08-485d-a77a-fdbe5cf98663"
],
"x-ms-correlation-request-id": [
- "9bfd7018-0714-4ddf-be10-e90d60d8c42f"
+ "99f29d77-4d08-485d-a77a-fdbe5cf98663"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102431Z:9bfd7018-0714-4ddf-be10-e90d60d8c42f"
+ "WESTUS:20160223T000927Z:99f29d77-4d08-485d-a77a-fdbe5cf98663"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1434,17 +1259,17 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:24:30 GMT"
+ "Tue, 23 Feb 2016 00:09:27 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzMzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzMzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNek16TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNRGsyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1470,16 +1295,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14993"
],
"x-ms-request-id": [
- "63cf04e9-16ce-4ccb-826b-5edd89e91e87"
+ "0060c508-be22-495e-84c5-e7fbe1e25484"
],
"x-ms-correlation-request-id": [
- "63cf04e9-16ce-4ccb-826b-5edd89e91e87"
+ "0060c508-be22-495e-84c5-e7fbe1e25484"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102446Z:63cf04e9-16ce-4ccb-826b-5edd89e91e87"
+ "WESTUS:20160223T000943Z:0060c508-be22-495e-84c5-e7fbe1e25484"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1488,17 +1313,17 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:24:45 GMT"
+ "Tue, 23 Feb 2016 00:09:42 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzMzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzMzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNek16TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNRGsyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1521,16 +1346,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14992"
],
"x-ms-request-id": [
- "ab5cae9a-2811-400d-ae0a-4c75e3fcfddd"
+ "ad73f228-af51-4e6c-86bb-265983e0b9b3"
],
"x-ms-correlation-request-id": [
- "ab5cae9a-2811-400d-ae0a-4c75e3fcfddd"
+ "ad73f228-af51-4e6c-86bb-265983e0b9b3"
],
"x-ms-routing-request-id": [
- "WESTUS:20151103T102501Z:ab5cae9a-2811-400d-ae0a-4c75e3fcfddd"
+ "WESTUS:20160223T000958Z:ad73f228-af51-4e6c-86bb-265983e0b9b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1539,7 +1364,7 @@
"no-cache"
],
"Date": [
- "Tue, 03 Nov 2015 10:25:01 GMT"
+ "Tue, 23 Feb 2016 00:09:57 GMT"
]
},
"StatusCode": 200
@@ -1547,11 +1372,11 @@
],
"Names": {
"Test-ExpressRouteCircuitCRUD": [
- "onesdk7333",
- "onesdk6458"
+ "onesdk8096",
+ "onesdk4128"
]
},
"Variables": {
- "SubscriptionId": "64229c92-175a-4eba-a2fd-ee1f9e29766e"
+ "SubscriptionId": "18b0dc06-a2b8-4c0f-95af-550319fa5eac"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network/ExpressRouteCircuit/NewAzureExpressRouteCircuitCommand.cs b/src/ResourceManager/Network/Commands.Network/ExpressRouteCircuit/NewAzureExpressRouteCircuitCommand.cs
index 580d3ea225f4..74e4dea6082d 100644
--- a/src/ResourceManager/Network/Commands.Network/ExpressRouteCircuit/NewAzureExpressRouteCircuitCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/ExpressRouteCircuit/NewAzureExpressRouteCircuitCommand.cs
@@ -74,7 +74,7 @@ public class NewAzureExpressRouteCircuitCommand : ExpressRouteCircuitBaseCmdlet
public string ServiceProviderName { get; set; }
[Parameter(
- Mandatory = false,
+ Mandatory = true,
ValueFromPipelineByPropertyName = true)]
public string PeeringLocation { get; set; }
diff --git a/src/ResourceManager/Network/Commands.Network/ExpressRouteCircuit/Peering/AzureExpressRouteCircuitPeeringConfigBase.cs b/src/ResourceManager/Network/Commands.Network/ExpressRouteCircuit/Peering/AzureExpressRouteCircuitPeeringConfigBase.cs
index 33c8094e7398..f4100b964602 100644
--- a/src/ResourceManager/Network/Commands.Network/ExpressRouteCircuit/Peering/AzureExpressRouteCircuitPeeringConfigBase.cs
+++ b/src/ResourceManager/Network/Commands.Network/ExpressRouteCircuit/Peering/AzureExpressRouteCircuitPeeringConfigBase.cs
@@ -39,7 +39,7 @@ public class AzureExpressRouteCircuitPeeringConfigBase : NetworkBaseCmdlet
public string PeeringType { get; set; }
[Parameter(
- Mandatory = false,
+ Mandatory = true,
HelpMessage = "The PeerAsn")]
[ValidateNotNullOrEmpty]
public int PeerASN { get; set; }
diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj b/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj
index cc0056bc0f9c..d531bbddfdd0 100644
--- a/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj
+++ b/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj
@@ -238,10 +238,6 @@
{5ee72c53-1720-4309-b54b-5fb79703195f}
Commands.Common
-
- {cff09e81-1e31-444e-b4d4-a21e946c29e2}
- Commands.ServiceManagement.Common
-
{3819d8a7-c62c-4c47-8ddd-0332d9ce1252}
Commands.ResourceManager.Common
diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/CommonDataCmdletTests.cs b/src/ResourceManager/Profile/Commands.Profile.Test/CommonDataCmdletTests.cs
index 0058e0b8c93a..43c03919a733 100644
--- a/src/ResourceManager/Profile/Commands.Profile.Test/CommonDataCmdletTests.cs
+++ b/src/ResourceManager/Profile/Commands.Profile.Test/CommonDataCmdletTests.cs
@@ -39,21 +39,22 @@ public static AzureRMProfile CreateAzureRMProfile(string storageAccount)
AccountType = "User"
},
Environment = (PSAzureEnvironment)AzureEnvironment.PublicEnvironments[EnvironmentName.AzureCloud],
- Subscription =
- new PSAzureSubscription {
+ Subscription =
+ new PSAzureSubscription
+ {
CurrentStorageAccount = storageAccount,
- CurrentStorageAccountName= PSAzureSubscription.GetAccountName(storageAccount),
+ CurrentStorageAccountName = PSAzureSubscription.GetAccountName(storageAccount),
SubscriptionId = subscriptionId.ToString(),
SubscriptionName = "Test Subscription 1",
TenantId = tenantId.ToString()
},
Tenant = new PSAzureTenant
{
- Domain=domain,
+ Domain = domain,
TenantId = tenantId.ToString()
}
};
- return new AzureRMProfile() { Context = context};
+ return new AzureRMProfile() { Context = context };
}
public static AzureSMProfile CreateAzureSMProfile(string storageAccount)
@@ -99,13 +100,14 @@ public static void RunDataProfileTest(AzureRMProfile rmProfile, AzureSMProfile s
AzureRmProfileProvider.Instance.Profile = savedRmProfile;
AzureSMProfileProvider.Instance.Profile = savedSmProfile;
}
- }
+ }
+
[Theory,
InlineData(null, null),
InlineData("", null),
InlineData("AccountName=myAccount", "AccountName=myAccount")]
[Trait(Category.AcceptanceType, Category.CheckIn)]
- public void CanClearStorageAccountForSMProfile(string connectionString, string expected)
+ public void CanClearStorageAccountForSMProfile(string connectionString, string expected)
{
RunDataProfileTest(
CreateAzureRMProfile(null),
@@ -121,9 +123,9 @@ public void CanClearStorageAccountForSMProfile(string connectionString, string e
[Theory,
InlineData(null, null),
InlineData("", null),
- InlineData("AccountName=myAccount","AccountName=myAccount")]
+ InlineData("AccountName=myAccount", "AccountName=myAccount")]
[Trait(Category.AcceptanceType, Category.CheckIn)]
- public void CanClearStorageAccountForRMProfile(string connectionString, string expected)
+ public void CanClearStorageAccountForRMProfile(string connectionString, string expected)
{
RunDataProfileTest(
CreateAzureRMProfile(connectionString),
@@ -138,18 +140,18 @@ public void CanClearStorageAccountForRMProfile(string connectionString, string e
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
- public void CanClearStorageAccountForEmptyProfile()
+ public void CanClearStorageAccountForEmptyProfile()
{
var rmProfile = new AzureRMProfile();
rmProfile.Context = new AzureContext(null, null, null, null);
- RunDataProfileTest(
- rmProfile,
- new AzureSMProfile(),
- () =>
- {
- GeneralUtilities.ClearCurrentStorageAccount(true);
- Assert.True(string.IsNullOrEmpty(AzureSMProfileProvider.Instance.Profile.Context.GetCurrentStorageAccountName()));
- });
+ RunDataProfileTest(
+ rmProfile,
+ new AzureSMProfile(),
+ () =>
+ {
+ GeneralUtilities.ClearCurrentStorageAccount(true);
+ Assert.True(string.IsNullOrEmpty(AzureSMProfileProvider.Instance.Profile.Context.GetCurrentStorageAccountName()));
+ });
}
-}
+ }
}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml
index ef4853312d3b..81bb2b6d8dba 100644
--- a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml
+++ b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml
@@ -5046,7 +5046,7 @@ Status : Queued
Get-AzureRmSqlServerCommunicationLink
- Gets server communication links and their property values in an Azure SQL Database.
+ Gets communication links for elastic database transactions between Azure SQL Database servers.
@@ -5056,7 +5056,7 @@ Status : Queued
- The Get-AzureRmSqlServerCommunicationLink cmdlet gets server-to-server partnerships for Elastic transactions and their property values. Specify the name of an existing server communication link to see the property values for only that one.
+ The Get-AzureRmSqlServerCommunicationLink cmdlet gets server-to-server communication links for Elastic transactions. Specify the name of a server communication link to see the properties for that link.
@@ -5071,14 +5071,14 @@ Status : Queued
ServerName
- Specifies the name of the one of the servers that contain the server communication link that this cmdlet gets.
+ Specifies the name of a server. This server contains the communication link that this cmdlet gets.
String
ResourceGroupName
- Specifies the name of the resource group that contains the server communication link that this cmdlet gets.
+ Specifies the name of the resource group to which the server specified by the ServerName parameter belongs.
String
@@ -5161,9 +5161,9 @@ Status : Queued
PS C:\>
- PS C:\> Get-AzureRmSqlServerCommunicationLink -ResourceGroupName "resourcegroup01" -ServerName "server01"
+ PS C:\> Get-AzureRmSqlServerCommunicationLink -ResourceGroupName "ResourceGroup01" -ServerName "ContosoServer17"
- Gets all server-to-server partnerships for Elastic transactions that the specified server in Azure SQL Database is involved in.
+ This command gets all server-to-server communication links for elastic database transactions for the server named ContosoServer17.
@@ -5177,13 +5177,13 @@ Status : Queued
- -------------------------- Example 2: Get a named communication link for a server --------------------------
+ -------------------------- Example 2: Get a specific communication link for a server --------------------------
PS C:\>
- PS C:\> Get-AzureRmSqlServerCommunicationLink -ResourceGroupName "resourcegroup01" -ServerName "server01" -LinkName "link01"
+ PS C:\> Get-AzureRmSqlServerCommunicationLink -ResourceGroupName "ResourceGroup01" -ServerName "ContosoServer01" -LinkName "Link01"
- Gets the specified server-to-server partnership for Elastic transactions.
+ This command gets the server-to-server communication link named Link01.
@@ -5198,6 +5198,16 @@ Status : Queued
+
+ New-AzureRmSqlServerCommunicationLink
+
+
+
+
+ Remove-AzureRmSqlServerCommunicationLink
+
+
+
@@ -7345,7 +7355,7 @@ FirewallRuleName : rule01
New-AzureRmSqlServerCommunicationLink
- Creates a communication link for Elastic transactions between two logical servers in Azure SQL Database. Once established, Elastic transactions will be able to span databases in either of the servers paired.
+ Creates a communication link for elastic database transactions between two in Azure SQL Database servers.
@@ -7355,7 +7365,7 @@ FirewallRuleName : rule01
- The New-AzureRmSqlServerCommunicationLink cmdlet creates a communication link for Elastic transactions between two logical servers in Azure SQL Database. The communication link can be set up for two servers at a time and once established, Elastic transactions will be able to span databases in either of the servers paired. Users can create as many server partnerships as necessary and involve a server in multiple partnerships to span Elastic transactions over a larger number of servers.
+ The New-AzureRmSqlServerCommunicationLink cmdlet creates a communication link for elastic database transactions between two logical servers in Azure SQL Database. Elastic database transactions can span databases in either of the paired servers. You can create more than one link on a server. Therefore, elastic database transactions can span across a larger number of servers.
@@ -7370,21 +7380,21 @@ FirewallRuleName : rule01
PartnerServer
- Specifies the name of the other server taking part in this partnership.
+ Specifies the name of the other server that takes part in this communication link.
String
ServerName
- Specifies the name of the server to set up the partnership on.
+ Specifies the name of the server on which this cmdlet sets up the communication link.
String
ResourceGroupName
- Specifies the name of the resource group the server named in the 'ServerName' parameter.
+ Specifies the name of the resource group to which the server specified by the 'ServerName' parameter belongs.
String
@@ -7475,13 +7485,13 @@ FirewallRuleName : rule01
- -------------------------- Example 1: Create a new communication link --------------------------
+ -------------------------- Example 1: Create a communication link --------------------------
PS C:\>
- PS C:\> New-AzureRmSqlServerCommunicationLink -ResourceGroupName "resourcegroup01" -ServerName "server01" -LinkName "link01" -PartnerServer "server02"
+ PS C:\> New-AzureRmSqlServerCommunicationLink -ResourceGroupName "ResourceGroup01" -ServerName "ContosoServer17" -LinkName "Link01" -PartnerServer "ContosoServer02"
-
+ This command creates a link named Link01 between ContosoServer17 and ContosoServer02.
@@ -7496,6 +7506,16 @@ FirewallRuleName : rule01
+
+ Get-AzureRmSqlServerCommunicationLink
+
+
+
+
+ Remove-AzureRmSqlServerCommunicationLink
+
+
+
@@ -9615,7 +9635,7 @@ resourcegroup01 server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
Remove-AzureRmSqlServerCommunicationLink
- Deletes a communication link for Elastic transactions between two logical servers in Azure SQL Database.
+ Deletes a communication link for elastic database transactions between two Azure SQL Database servers.
@@ -9625,7 +9645,7 @@ resourcegroup01 server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
- The Remove-AzureRmSqlServerCommunicationLink cmdlet deletes an existing server-to-server partnership for Elastic transactions.
+ The Remove-AzureRmSqlServerCommunicationLink cmdlet deletes a server-to-server communication link for elastic database transactions in Azure SQL Database.
@@ -9647,14 +9667,14 @@ resourcegroup01 server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
ServerName
- Specifies the name of the server that contains the server communication link that this cmdlet deletes.
+ Specifies the name of a server. This server contains the communication link that this cmdlet deletes.
String
ResourceGroupName
- Specifies the name of the resource group that contains the server communication link that this cmdlet deletes.
+ Specifies the name of the resource group to which the server specified by the ServerName parameter belongs.
String
@@ -9783,13 +9803,13 @@ resourcegroup01 server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
- -------------------------- Example 1: Delete a server communication link --------------------------
+ -------------------------- Example 1: Delete a communication link --------------------------
PS C:\>
- PS C:\> Remove-AzureRmSqlServerCommunicationLink -ResourceGroupName "resourcegroup01" -ServerName "server01" -LinkName "link01"
+ PS C:\> Remove-AzureRmSqlServerCommunicationLink -ResourceGroupName "ResourceGroup01" -ServerName "ContosoServer17" -LinkName "Link01"
- Deletes an existing server-to-server partnership for Elastic transactions.
+ This command deletes a server-to-server communication link named Link01 on ContosoServer17.
@@ -9804,6 +9824,16 @@ resourcegroup01 server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
+
+ Get-AzureRmSqlServerCommunicationLink
+
+
+
+
+ New-AzureRmSqlServerCommunicationLink
+
+
+
diff --git a/src/ServiceManagement/Common/Commands.Common.Test/Common/ProfileClientTests.cs b/src/ServiceManagement/Common/Commands.Common.Test/Common/ProfileClientTests.cs
index d17327bd538f..d7607989ad77 100644
--- a/src/ServiceManagement/Common/Commands.Common.Test/Common/ProfileClientTests.cs
+++ b/src/ServiceManagement/Common/Commands.Common.Test/Common/ProfileClientTests.cs
@@ -25,6 +25,7 @@
using Xunit;
using CSMSubscription = Microsoft.Azure.Subscriptions.Models.Subscription;
using RDFESubscription = Microsoft.WindowsAzure.Subscriptions.Models.SubscriptionListOperationResponse.Subscription;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
namespace Common.Authentication.Test
{
@@ -193,6 +194,7 @@ public void ProfileMigratesOldDataOnce()
}
[Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
public void ProfileMigratesAccountsAndDefaultSubscriptions()
{
MemoryDataStore dataStore = new MemoryDataStore();
diff --git a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/BgpPeerings/SetAzureBGPPeering.cs b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/BgpPeerings/SetAzureBGPPeering.cs
index 56d76cab4efe..96de8458e3c1 100644
--- a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/BgpPeerings/SetAzureBGPPeering.cs
+++ b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/BgpPeerings/SetAzureBGPPeering.cs
@@ -34,7 +34,7 @@ public class SetAzureBGPPeeringCommand : ExpressRouteBaseCmdlet
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Customer AS number")]
public UInt32 CustomerAsn { get; set; }
- [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true,
+ [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true,
HelpMessage = "Peer Asn")]
public UInt32? PeerAsn { get; set; }
@@ -53,7 +53,7 @@ public class SetAzureBGPPeeringCommand : ExpressRouteBaseCmdlet
[ValidateNotNullOrEmpty]
public string SharedKey { get; set; }
- [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Vlan Id")]
+ [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Vlan Id")]
public UInt32? VlanId { get; set; }
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Bgp Peering Access Type: Microsoft, Public or Private")]