Get-AzureStorageServiceProperty
Gets properties for Azure Storage services.
Warning
The AzureRM PowerShell module has been officially deprecated as of February 29, 2024. Users are advised to migrate from AzureRM to the Az PowerShell module to ensure continued support and updates.
Although the AzureRM module may still function, it's no longer maintained or supported, placing any continued use at the user's discretion and risk. Please refer to our migration resources for guidance on transitioning to the Az module.
Syntax
Get-AzureStorageServiceProperty
[-ServiceType] <StorageServiceType>
[-Context <IStorageContext>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzureStorageServiceProperty cmdlet gets the properties for Azure Storage services.
Examples
Example 1: Get Azure Storage services property of the Blob service
C:\PS>Get-AzureStorageServiceProperty -ServiceType Blob
Logging.Version : 1.0
Logging.LoggingOperations : None
Logging.RetentionDays :
HourMetrics.Version : 1.0
HourMetrics.MetricsLevel : ServiceAndApi
HourMetrics.RetentionDays : 7
MinuteMetrics.Version : 1.0
MinuteMetrics.MetricsLevel : None
MinuteMetrics.RetentionDays :
DeleteRetentionPolicy.Enabled : True
DeleteRetentionPolicy.RetentionDays : 70
Cors :
DefaultServiceVersion : 2017-07-29
This command gets DefaultServiceVersion property of the Blob service.
Parameters
-Context
Specifies an Azure storage context. To obtain a storage context, use the New-AzureStorageContext cmdlet.
Type: | IStorageContext |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-DefaultProfile
The credentials, account, tenant, and subscription used for communication with Azure.
Type: | IAzureContextContainer |
Aliases: | AzureRmContext, AzureCredential |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ServiceType
Specifies the storage service type. This cmdlet gets the logging properties for the service type that this parameter specifies. The acceptable values for this parameter are:
- Blob
- Table
- Queue
- File
Type: | StorageServiceType |
Accepted values: | Blob, Table, Queue, File |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |