OperationUpdateContract 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
OperationUpdateContract() |
Initializes a new instance of the OperationUpdateContract class. |
OperationUpdateContract(IList<ParameterContract>, String, RequestContract, IList<ResponseContract>, String, String, String, String) |
Initializes a new instance of the OperationUpdateContract class. |
OperationUpdateContract()
Initializes a new instance of the OperationUpdateContract class.
public OperationUpdateContract ();
Public Sub New ()
Applies to
OperationUpdateContract(IList<ParameterContract>, String, RequestContract, IList<ResponseContract>, String, String, String, String)
Initializes a new instance of the OperationUpdateContract class.
public OperationUpdateContract (System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ParameterContract> templateParameters = default, string description = default, Microsoft.Azure.Management.ApiManagement.Models.RequestContract request = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ResponseContract> responses = default, string policies = default, string displayName = default, string method = default, string urlTemplate = default);
new Microsoft.Azure.Management.ApiManagement.Models.OperationUpdateContract : System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ParameterContract> * string * Microsoft.Azure.Management.ApiManagement.Models.RequestContract * System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ResponseContract> * string * string * string * string -> Microsoft.Azure.Management.ApiManagement.Models.OperationUpdateContract
Public Sub New (Optional templateParameters As IList(Of ParameterContract) = Nothing, Optional description As String = Nothing, Optional request As RequestContract = Nothing, Optional responses As IList(Of ResponseContract) = Nothing, Optional policies As String = Nothing, Optional displayName As String = Nothing, Optional method As String = Nothing, Optional urlTemplate As String = Nothing)
Parameters
- templateParameters
- IList<ParameterContract>
Collection of URL template parameters.
- description
- String
Description of the operation. May include HTML formatting tags.
- request
- RequestContract
An entity containing request details.
- responses
- IList<ResponseContract>
Array of Operation responses.
- policies
- String
Operation Policies
- displayName
- String
Operation Name.
- method
- String
A Valid HTTP Operation Method. Typical Http Methods like GET, PUT, POST but not limited by only them.
- urlTemplate
- String
Relative URL template identifying the target resource for this operation. May include parameters. Example: /customers/{cid}/orders/{oid}/?date={date}
Applies to
Azure SDK for .NET