GlobalSchemaContract 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
GlobalSchemaContract() |
Initializes a new instance of the GlobalSchemaContract class. |
GlobalSchemaContract(String, String, String, String, String, Object, Object) |
Initializes a new instance of the GlobalSchemaContract class. |
GlobalSchemaContract()
Initializes a new instance of the GlobalSchemaContract class.
public GlobalSchemaContract ();
Public Sub New ()
Applies to
GlobalSchemaContract(String, String, String, String, String, Object, Object)
Initializes a new instance of the GlobalSchemaContract class.
public GlobalSchemaContract (string schemaType, string id = default, string name = default, string type = default, string description = default, object value = default, object document = default);
new Microsoft.Azure.Management.ApiManagement.Models.GlobalSchemaContract : string * string * string * string * string * obj * obj -> Microsoft.Azure.Management.ApiManagement.Models.GlobalSchemaContract
Public Sub New (schemaType As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional description As String = Nothing, Optional value As Object = Nothing, Optional document As Object = Nothing)
Parameters
- schemaType
- String
Schema Type. Immutable. Possible values include: 'Xml', 'Json'
- id
- String
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name
- String
The name of the resource
- type
- String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- description
- String
Free-form schema entity description.
- value
- Object
Json-encoded string for non json-based schema.
- document
- Object
Global Schema document object for json-based schema formats(e.g. json schema).
Applies to
Azure SDK for .NET