ApiManagementServiceBackupRestoreParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ApiManagementServiceBackupRestoreParameters() |
Initializes a new instance of the ApiManagementServiceBackupRestoreParameters class. |
ApiManagementServiceBackupRestoreParameters(String, String, String, String, String, String) |
Initializes a new instance of the ApiManagementServiceBackupRestoreParameters class. |
ApiManagementServiceBackupRestoreParameters()
Initializes a new instance of the ApiManagementServiceBackupRestoreParameters class.
public ApiManagementServiceBackupRestoreParameters ();
Public Sub New ()
Applies to
ApiManagementServiceBackupRestoreParameters(String, String, String, String, String, String)
Initializes a new instance of the ApiManagementServiceBackupRestoreParameters class.
public ApiManagementServiceBackupRestoreParameters (string storageAccount, string containerName, string backupName, string accessType = default, string accessKey = default, string clientId = default);
new Microsoft.Azure.Management.ApiManagement.Models.ApiManagementServiceBackupRestoreParameters : string * string * string * string * string * string -> Microsoft.Azure.Management.ApiManagement.Models.ApiManagementServiceBackupRestoreParameters
Public Sub New (storageAccount As String, containerName As String, backupName As String, Optional accessType As String = Nothing, Optional accessKey As String = Nothing, Optional clientId As String = Nothing)
Parameters
- storageAccount
- String
The name of the Azure storage account (used to place/retrieve the backup).
- containerName
- String
The name of the blob container (used to place/retrieve the backup).
- backupName
- String
The name of the backup file to create/retrieve.
- accessType
- String
The type of access to be used for the storage account. Possible values include: 'AccessKey', 'SystemAssignedManagedIdentity', 'UserAssignedManagedIdentity'
- accessKey
- String
Storage account access key. Required only
if accessType
is set to AccessKey
.
- clientId
- String
The Client ID of user assigned managed
identity. Required only if accessType
is set to
UserAssignedManagedIdentity
.
Applies to
Azure SDK for .NET