Documentation ¶
Index ¶
- func PossibleValuesForProvisioningState() []string
- func ValidateCertificateID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateNginxDeploymentID(input interface{}, key string) (warnings []string, errors []error)
- type CertificateId
- type CertificatesCreateOrUpdateOperationResponse
- type CertificatesDeleteOperationResponse
- type CertificatesGetOperationResponse
- type CertificatesListCompleteResult
- type CertificatesListOperationResponse
- type NginxCertificate
- type NginxCertificateClient
- func (c NginxCertificateClient) CertificatesCreateOrUpdate(ctx context.Context, id CertificateId, input NginxCertificate) (result CertificatesCreateOrUpdateOperationResponse, err error)
- func (c NginxCertificateClient) CertificatesCreateOrUpdateThenPoll(ctx context.Context, id CertificateId, input NginxCertificate) error
- func (c NginxCertificateClient) CertificatesDelete(ctx context.Context, id CertificateId) (result CertificatesDeleteOperationResponse, err error)
- func (c NginxCertificateClient) CertificatesDeleteThenPoll(ctx context.Context, id CertificateId) error
- func (c NginxCertificateClient) CertificatesGet(ctx context.Context, id CertificateId) (result CertificatesGetOperationResponse, err error)
- func (c NginxCertificateClient) CertificatesList(ctx context.Context, id NginxDeploymentId) (result CertificatesListOperationResponse, err error)
- func (c NginxCertificateClient) CertificatesListComplete(ctx context.Context, id NginxDeploymentId) (CertificatesListCompleteResult, error)
- func (c NginxCertificateClient) CertificatesListCompleteMatchingPredicate(ctx context.Context, id NginxDeploymentId, ...) (result CertificatesListCompleteResult, err error)
- type NginxCertificateOperationPredicate
- type NginxCertificateProperties
- type NginxDeploymentId
- type ProvisioningState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForProvisioningState ¶
func PossibleValuesForProvisioningState() []string
func ValidateCertificateID ¶
ValidateCertificateID checks that 'input' can be parsed as a Certificate ID
func ValidateNginxDeploymentID ¶
ValidateNginxDeploymentID checks that 'input' can be parsed as a Nginx Deployment ID
Types ¶
type CertificateId ¶
type CertificateId struct { SubscriptionId string ResourceGroupName string NginxDeploymentName string CertificateName string }
CertificateId is a struct representing the Resource ID for a Certificate
func NewCertificateID ¶
func NewCertificateID(subscriptionId string, resourceGroupName string, nginxDeploymentName string, certificateName string) CertificateId
NewCertificateID returns a new CertificateId struct
func ParseCertificateID ¶
func ParseCertificateID(input string) (*CertificateId, error)
ParseCertificateID parses 'input' into a CertificateId
func ParseCertificateIDInsensitively ¶
func ParseCertificateIDInsensitively(input string) (*CertificateId, error)
ParseCertificateIDInsensitively parses 'input' case-insensitively into a CertificateId note: this method should only be used for API response data and not user input
func (CertificateId) ID ¶
func (id CertificateId) ID() string
ID returns the formatted Certificate ID
func (CertificateId) Segments ¶
func (id CertificateId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Certificate ID
func (CertificateId) String ¶
func (id CertificateId) String() string
String returns a human-readable description of this Certificate ID
type CertificatesCreateOrUpdateOperationResponse ¶ added in v0.20221014.1184109
type CertificatesGetOperationResponse ¶
type CertificatesGetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *NginxCertificate }
type CertificatesListCompleteResult ¶
type CertificatesListCompleteResult struct {
Items []NginxCertificate
}
type CertificatesListOperationResponse ¶
type CertificatesListOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]NginxCertificate }
type NginxCertificate ¶
type NginxCertificate struct { Id *string `json:"id,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Properties *NginxCertificateProperties `json:"properties,omitempty"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Tags *map[string]string `json:"tags,omitempty"` Type *string `json:"type,omitempty"` }
type NginxCertificateClient ¶
type NginxCertificateClient struct {
Client *resourcemanager.Client
}
func NewNginxCertificateClientWithBaseURI ¶
func NewNginxCertificateClientWithBaseURI(sdkApi sdkEnv.Api) (*NginxCertificateClient, error)
func (NginxCertificateClient) CertificatesCreateOrUpdate ¶ added in v0.20221014.1184109
func (c NginxCertificateClient) CertificatesCreateOrUpdate(ctx context.Context, id CertificateId, input NginxCertificate) (result CertificatesCreateOrUpdateOperationResponse, err error)
CertificatesCreateOrUpdate ...
func (NginxCertificateClient) CertificatesCreateOrUpdateThenPoll ¶ added in v0.20221014.1184109
func (c NginxCertificateClient) CertificatesCreateOrUpdateThenPoll(ctx context.Context, id CertificateId, input NginxCertificate) error
CertificatesCreateOrUpdateThenPoll performs CertificatesCreateOrUpdate then polls until it's completed
func (NginxCertificateClient) CertificatesDelete ¶
func (c NginxCertificateClient) CertificatesDelete(ctx context.Context, id CertificateId) (result CertificatesDeleteOperationResponse, err error)
CertificatesDelete ...
func (NginxCertificateClient) CertificatesDeleteThenPoll ¶
func (c NginxCertificateClient) CertificatesDeleteThenPoll(ctx context.Context, id CertificateId) error
CertificatesDeleteThenPoll performs CertificatesDelete then polls until it's completed
func (NginxCertificateClient) CertificatesGet ¶
func (c NginxCertificateClient) CertificatesGet(ctx context.Context, id CertificateId) (result CertificatesGetOperationResponse, err error)
CertificatesGet ...
func (NginxCertificateClient) CertificatesList ¶
func (c NginxCertificateClient) CertificatesList(ctx context.Context, id NginxDeploymentId) (result CertificatesListOperationResponse, err error)
CertificatesList ...
func (NginxCertificateClient) CertificatesListComplete ¶
func (c NginxCertificateClient) CertificatesListComplete(ctx context.Context, id NginxDeploymentId) (CertificatesListCompleteResult, error)
CertificatesListComplete retrieves all the results into a single object
func (NginxCertificateClient) CertificatesListCompleteMatchingPredicate ¶
func (c NginxCertificateClient) CertificatesListCompleteMatchingPredicate(ctx context.Context, id NginxDeploymentId, predicate NginxCertificateOperationPredicate) (result CertificatesListCompleteResult, err error)
CertificatesListCompleteMatchingPredicate retrieves all the results and then applies the predicate
type NginxCertificateOperationPredicate ¶
type NginxCertificateOperationPredicate struct { Id *string Location *string Name *string Type *string }
func (NginxCertificateOperationPredicate) Matches ¶
func (p NginxCertificateOperationPredicate) Matches(input NginxCertificate) bool
type NginxCertificateProperties ¶
type NginxCertificateProperties struct { CertificateVirtualPath *string `json:"certificateVirtualPath,omitempty"` KeyVaultSecretId *string `json:"keyVaultSecretId,omitempty"` KeyVirtualPath *string `json:"keyVirtualPath,omitempty"` ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"` }
type NginxDeploymentId ¶
type NginxDeploymentId struct { SubscriptionId string ResourceGroupName string NginxDeploymentName string }
NginxDeploymentId is a struct representing the Resource ID for a Nginx Deployment
func NewNginxDeploymentID ¶
func NewNginxDeploymentID(subscriptionId string, resourceGroupName string, nginxDeploymentName string) NginxDeploymentId
NewNginxDeploymentID returns a new NginxDeploymentId struct
func ParseNginxDeploymentID ¶
func ParseNginxDeploymentID(input string) (*NginxDeploymentId, error)
ParseNginxDeploymentID parses 'input' into a NginxDeploymentId
func ParseNginxDeploymentIDInsensitively ¶
func ParseNginxDeploymentIDInsensitively(input string) (*NginxDeploymentId, error)
ParseNginxDeploymentIDInsensitively parses 'input' case-insensitively into a NginxDeploymentId note: this method should only be used for API response data and not user input
func (NginxDeploymentId) ID ¶
func (id NginxDeploymentId) ID() string
ID returns the formatted Nginx Deployment ID
func (NginxDeploymentId) Segments ¶
func (id NginxDeploymentId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Nginx Deployment ID
func (NginxDeploymentId) String ¶
func (id NginxDeploymentId) String() string
String returns a human-readable description of this Nginx Deployment ID
type ProvisioningState ¶
type ProvisioningState string
const ( ProvisioningStateAccepted ProvisioningState = "Accepted" ProvisioningStateCanceled ProvisioningState = "Canceled" ProvisioningStateCreating ProvisioningState = "Creating" ProvisioningStateDeleted ProvisioningState = "Deleted" ProvisioningStateDeleting ProvisioningState = "Deleting" ProvisioningStateFailed ProvisioningState = "Failed" ProvisioningStateNotSpecified ProvisioningState = "NotSpecified" ProvisioningStateSucceeded ProvisioningState = "Succeeded" ProvisioningStateUpdating ProvisioningState = "Updating" )
func (*ProvisioningState) UnmarshalJSON ¶ added in v0.20230516.1215417
func (s *ProvisioningState) UnmarshalJSON(bytes []byte) error