ArmApiManagementModelFactory.ApiCreateOrUpdateContent Method
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.
Initializes a new instance of ApiCreateOrUpdateContent.
public static Azure.ResourceManager.ApiManagement.Models.ApiCreateOrUpdateContent ApiCreateOrUpdateContent (string description = default, Azure.ResourceManager.ApiManagement.Models.AuthenticationSettingsContract authenticationSettings = default, Azure.ResourceManager.ApiManagement.Models.SubscriptionKeyParameterNamesContract subscriptionKeyParameterNames = default, Azure.ResourceManager.ApiManagement.Models.ApiType? apiType = default, string apiRevision = default, string apiVersion = default, bool? isCurrent = default, bool? isOnline = default, string apiRevisionDescription = default, string apiVersionDescription = default, Azure.Core.ResourceIdentifier apiVersionSetId = default, bool? isSubscriptionRequired = default, string termsOfServiceLink = default, Azure.ResourceManager.ApiManagement.Models.ApiContactInformation contact = default, Azure.ResourceManager.ApiManagement.Models.ApiLicenseInformation license = default, Azure.Core.ResourceIdentifier sourceApiId = default, string displayName = default, string serviceLink = default, string path = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.ApiManagement.Models.ApiOperationInvokableProtocol> protocols = default, Azure.ResourceManager.ApiManagement.Models.ApiVersionSetContractDetails apiVersionSet = default, string value = default, Azure.ResourceManager.ApiManagement.Models.ContentFormat? format = default, Azure.ResourceManager.ApiManagement.Models.ApiCreateOrUpdatePropertiesWsdlSelector wsdlSelector = default, Azure.ResourceManager.ApiManagement.Models.SoapApiType? soapApiType = default, Azure.ResourceManager.ApiManagement.Models.TranslateRequiredQueryParametersConduct? translateRequiredQueryParametersConduct = default);
static member ApiCreateOrUpdateContent : string * Azure.ResourceManager.ApiManagement.Models.AuthenticationSettingsContract * Azure.ResourceManager.ApiManagement.Models.SubscriptionKeyParameterNamesContract * Nullable<Azure.ResourceManager.ApiManagement.Models.ApiType> * string * string * Nullable<bool> * Nullable<bool> * string * string * Azure.Core.ResourceIdentifier * Nullable<bool> * string * Azure.ResourceManager.ApiManagement.Models.ApiContactInformation * Azure.ResourceManager.ApiManagement.Models.ApiLicenseInformation * Azure.Core.ResourceIdentifier * string * string * string * seq<Azure.ResourceManager.ApiManagement.Models.ApiOperationInvokableProtocol> * Azure.ResourceManager.ApiManagement.Models.ApiVersionSetContractDetails * string * Nullable<Azure.ResourceManager.ApiManagement.Models.ContentFormat> * Azure.ResourceManager.ApiManagement.Models.ApiCreateOrUpdatePropertiesWsdlSelector * Nullable<Azure.ResourceManager.ApiManagement.Models.SoapApiType> * Nullable<Azure.ResourceManager.ApiManagement.Models.TranslateRequiredQueryParametersConduct> -> Azure.ResourceManager.ApiManagement.Models.ApiCreateOrUpdateContent
Public Shared Function ApiCreateOrUpdateContent (Optional description As String = Nothing, Optional authenticationSettings As AuthenticationSettingsContract = Nothing, Optional subscriptionKeyParameterNames As SubscriptionKeyParameterNamesContract = Nothing, Optional apiType As Nullable(Of ApiType) = Nothing, Optional apiRevision As String = Nothing, Optional apiVersion As String = Nothing, Optional isCurrent As Nullable(Of Boolean) = Nothing, Optional isOnline As Nullable(Of Boolean) = Nothing, Optional apiRevisionDescription As String = Nothing, Optional apiVersionDescription As String = Nothing, Optional apiVersionSetId As ResourceIdentifier = Nothing, Optional isSubscriptionRequired As Nullable(Of Boolean) = Nothing, Optional termsOfServiceLink As String = Nothing, Optional contact As ApiContactInformation = Nothing, Optional license As ApiLicenseInformation = Nothing, Optional sourceApiId As ResourceIdentifier = Nothing, Optional displayName As String = Nothing, Optional serviceLink As String = Nothing, Optional path As String = Nothing, Optional protocols As IEnumerable(Of ApiOperationInvokableProtocol) = Nothing, Optional apiVersionSet As ApiVersionSetContractDetails = Nothing, Optional value As String = Nothing, Optional format As Nullable(Of ContentFormat) = Nothing, Optional wsdlSelector As ApiCreateOrUpdatePropertiesWsdlSelector = Nothing, Optional soapApiType As Nullable(Of SoapApiType) = Nothing, Optional translateRequiredQueryParametersConduct As Nullable(Of TranslateRequiredQueryParametersConduct) = Nothing) As ApiCreateOrUpdateContent
Parameters
- description
- String
Description of the API. May include HTML formatting tags.
- authenticationSettings
- AuthenticationSettingsContract
Collection of authentication settings included into this API.
- subscriptionKeyParameterNames
- SubscriptionKeyParameterNamesContract
Protocols over which API is made available.
- apiRevision
- String
Describes the revision of the API. If no value is provided, default revision 1 is created.
- apiVersion
- String
Indicates the version identifier of the API if the API is versioned.
- apiRevisionDescription
- String
Description of the API Revision.
- apiVersionDescription
- String
Description of the API Version.
- apiVersionSetId
- ResourceIdentifier
A resource identifier for the related ApiVersionSet.
Specifies whether an API or Product subscription is required for accessing the API.
- termsOfServiceLink
- String
A URL to the Terms of Service for the API. MUST be in the format of a URL.
- contact
- ApiContactInformation
Contact information for the API.
- license
- ApiLicenseInformation
License information for the API.
- sourceApiId
- ResourceIdentifier
API identifier of the source API.
- displayName
- String
API name. Must be 1 to 300 characters long.
- serviceLink
- String
Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
- path
- String
Relative URL uniquely identifying this API and all of its resource paths within the API Management service instance. It is appended to the API endpoint base URL specified during the service instance creation to form a public URL for this API.
- protocols
- IEnumerable<ApiOperationInvokableProtocol>
Describes on which protocols the operations in this API can be invoked.
- apiVersionSet
- ApiVersionSetContractDetails
Version set details.
- value
- String
Content value when Importing an API.
- format
- Nullable<ContentFormat>
Format of the Content in which the API is getting imported. New formats can be added in the future.
- wsdlSelector
- ApiCreateOrUpdatePropertiesWsdlSelector
Criteria to limit import of WSDL to a subset of the document.
- soapApiType
- Nullable<SoapApiType>
Type of API to create.
http
creates a REST APIsoap
creates a SOAP pass-through APIwebsocket
creates websocket APIgraphql
creates GraphQL API. New types can be added in the future.
- translateRequiredQueryParametersConduct
- Nullable<TranslateRequiredQueryParametersConduct>
Strategy of translating required query parameters to template ones. By default has value 'template'. Possible values: 'template', 'query'.
Returns
A new ApiCreateOrUpdateContent instance for mocking.
Applies to
Azure SDK for .NET