Condividi tramite


Provider Constructors

Definition

Overloads

Provider()

Initializes a new instance of the Provider class.

Provider(String, String, String, String, IList<ProviderResourceType>, String)

Initializes a new instance of the Provider class.

Provider()

Initializes a new instance of the Provider class.

public Provider ();
Public Sub New ()

Applies to

Provider(String, String, String, String, IList<ProviderResourceType>, String)

Initializes a new instance of the Provider class.

public Provider (string id = default, string namespaceProperty = default, string registrationState = default, string registrationPolicy = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceManager.Models.ProviderResourceType> resourceTypes = default, string providerAuthorizationConsentState = default);
new Microsoft.Azure.Management.ResourceManager.Models.Provider : string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceManager.Models.ProviderResourceType> * string -> Microsoft.Azure.Management.ResourceManager.Models.Provider
Public Sub New (Optional id As String = Nothing, Optional namespaceProperty As String = Nothing, Optional registrationState As String = Nothing, Optional registrationPolicy As String = Nothing, Optional resourceTypes As IList(Of ProviderResourceType) = Nothing, Optional providerAuthorizationConsentState As String = Nothing)

Parameters

id
String

The provider ID.

namespaceProperty
String

The namespace of the resource provider.

registrationState
String

The registration state of the resource provider.

registrationPolicy
String

The registration policy of the resource provider.

resourceTypes
IList<ProviderResourceType>

The collection of provider resource types.

providerAuthorizationConsentState
String

The provider authorization consent state. Possible values include: 'NotSpecified', 'Required', 'NotRequired', 'Consented'

Applies to