ApiVersionSetContract 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
ApiVersionSetContract() |
Initializes a new instance of the ApiVersionSetContract class. |
ApiVersionSetContract(String, String, String, String, String, String, String, String) |
Initializes a new instance of the ApiVersionSetContract class. |
ApiVersionSetContract()
Initializes a new instance of the ApiVersionSetContract class.
public ApiVersionSetContract ();
Public Sub New ()
Applies to
ApiVersionSetContract(String, String, String, String, String, String, String, String)
Initializes a new instance of the ApiVersionSetContract class.
public ApiVersionSetContract (string displayName, string versioningScheme, string id = default, string name = default, string type = default, string description = default, string versionQueryName = default, string versionHeaderName = default);
new Microsoft.Azure.Management.ApiManagement.Models.ApiVersionSetContract : string * string * string * string * string * string * string * string -> Microsoft.Azure.Management.ApiManagement.Models.ApiVersionSetContract
Public Sub New (displayName As String, versioningScheme As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional description As String = Nothing, Optional versionQueryName As String = Nothing, Optional versionHeaderName As String = Nothing)
Parameters
- displayName
- String
Name of API Version Set
- versioningScheme
- String
An value that determines where the API Version identifier will be located in a HTTP request. Possible values include: 'Segment', 'Query', 'Header'
- 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
Description of API Version Set.
- versionQueryName
- String
Name of query parameter that
indicates the API Version if versioningScheme is set to
query
.
- versionHeaderName
- String
Name of HTTP header parameter that
indicates the API Version if versioningScheme is set to
header
.