import "github.com/Azure/azure-sdk-for-go/services/preview/confluent/mgmt/2020-03-01-preview/confluent"
Package confluent implements the Azure ARM Confluent service API version 2020-03-01-preview.
client.go enums.go marketplaceagreements.go models.go organization.go organizationoperations.go version.go
const ( // DefaultBaseURI is the default URI used for the service Confluent DefaultBaseURI = "https://management.azure.com" )
UserAgent returns the UserAgent string to use when sending http.Requests.
Version returns the semantic version (see http://semver.org) of the client.
type AgreementProperties struct { // Publisher - Publisher identifier string. Publisher *string `json:"publisher,omitempty"` // Product - Product identifier string. Product *string `json:"product,omitempty"` // Plan - Plan identifier string. Plan *string `json:"plan,omitempty"` // LicenseTextLink - Link to HTML with Microsoft and Publisher terms. LicenseTextLink *string `json:"licenseTextLink,omitempty"` // PrivacyPolicyLink - Link to the privacy policy of the publisher. PrivacyPolicyLink *string `json:"privacyPolicyLink,omitempty"` // RetrieveDatetime - Date and time in UTC of when the terms were accepted. This is empty if Accepted is false. RetrieveDatetime *date.Time `json:"retrieveDatetime,omitempty"` // Signature - Terms signature. Signature *string `json:"signature,omitempty"` // Accepted - If any version of the terms have been accepted, otherwise false. Accepted *bool `json:"accepted,omitempty"` }
AgreementProperties terms properties for Marketplace and Confluent.
type AgreementResource struct { autorest.Response `json:"-"` // ID - READ-ONLY; The ARM id of the resource. ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the agreement. Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the agreement. Type *string `json:"type,omitempty"` // Properties - Represents the properties of the resource. Properties *AgreementProperties `json:"properties,omitempty"` }
AgreementResource agreement Terms definition
func (ar AgreementResource) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AgreementResource.
type AgreementResourceListResponse struct { autorest.Response `json:"-"` // Value - Results of a list operation. Value *[]AgreementResource `json:"value,omitempty"` // NextLink - Link to the next set of results, if any. NextLink *string `json:"nextLink,omitempty"` }
AgreementResourceListResponse response of a agreements operation.
func (arlr AgreementResourceListResponse) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
type AgreementResourceListResponseIterator struct {
// contains filtered or unexported fields
}
AgreementResourceListResponseIterator provides access to a complete listing of AgreementResource values.
func NewAgreementResourceListResponseIterator(page AgreementResourceListResponsePage) AgreementResourceListResponseIterator
Creates a new instance of the AgreementResourceListResponseIterator type.
func (iter *AgreementResourceListResponseIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *AgreementResourceListResponseIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter AgreementResourceListResponseIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter AgreementResourceListResponseIterator) Response() AgreementResourceListResponse
Response returns the raw server response from the last page request.
func (iter AgreementResourceListResponseIterator) Value() AgreementResource
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
type AgreementResourceListResponsePage struct {
// contains filtered or unexported fields
}
AgreementResourceListResponsePage contains a page of AgreementResource values.
func NewAgreementResourceListResponsePage(cur AgreementResourceListResponse, getNextPage func(context.Context, AgreementResourceListResponse) (AgreementResourceListResponse, error)) AgreementResourceListResponsePage
Creates a new instance of the AgreementResourceListResponsePage type.
func (page *AgreementResourceListResponsePage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *AgreementResourceListResponsePage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page AgreementResourceListResponsePage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page AgreementResourceListResponsePage) Response() AgreementResourceListResponse
Response returns the raw server response from the last page request.
func (page AgreementResourceListResponsePage) Values() []AgreementResource
Values returns the slice of values for the current page or nil if there are no values.
BaseClient is the base client for Confluent.
func New(subscriptionID string) BaseClient
New creates an instance of the BaseClient client.
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient
NewWithBaseURI creates an instance of the BaseClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
type ErrorResponseBody struct { // Code - READ-ONLY; Error code Code *string `json:"code,omitempty"` // Message - READ-ONLY; Error message Message *string `json:"message,omitempty"` // Target - READ-ONLY; Error target Target *string `json:"target,omitempty"` // Details - READ-ONLY; Error detail Details *[]ErrorResponseBody `json:"details,omitempty"` }
ErrorResponseBody response body of Error
type MarketplaceAgreementsClient struct { BaseClient }
MarketplaceAgreementsClient is the client for the MarketplaceAgreements methods of the Confluent service.
func NewMarketplaceAgreementsClient(subscriptionID string) MarketplaceAgreementsClient
NewMarketplaceAgreementsClient creates an instance of the MarketplaceAgreementsClient client.
func NewMarketplaceAgreementsClientWithBaseURI(baseURI string, subscriptionID string) MarketplaceAgreementsClient
NewMarketplaceAgreementsClientWithBaseURI creates an instance of the MarketplaceAgreementsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client MarketplaceAgreementsClient) Create(ctx context.Context, body *AgreementResource) (result AgreementResource, err error)
Create sends the create request.
func (client MarketplaceAgreementsClient) CreatePreparer(ctx context.Context, body *AgreementResource) (*http.Request, error)
CreatePreparer prepares the Create request.
func (client MarketplaceAgreementsClient) CreateResponder(resp *http.Response) (result AgreementResource, err error)
CreateResponder handles the response to the Create request. The method always closes the http.Response Body.
CreateSender sends the Create request. The method will close the http.Response Body if it receives an error.
func (client MarketplaceAgreementsClient) List(ctx context.Context) (result AgreementResourceListResponsePage, err error)
List sends the list request.
func (client MarketplaceAgreementsClient) ListComplete(ctx context.Context) (result AgreementResourceListResponseIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
ListPreparer prepares the List request.
func (client MarketplaceAgreementsClient) ListResponder(resp *http.Response) (result AgreementResourceListResponse, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
type OfferDetail struct { // PublisherID - Publisher Id PublisherID *string `json:"publisherId,omitempty"` // ID - Offer Id ID *string `json:"id,omitempty"` // PlanID - Offer Plan Id PlanID *string `json:"planId,omitempty"` // PlanName - Offer Plan Name PlanName *string `json:"planName,omitempty"` // TermUnit - Offer Plan Term unit TermUnit *string `json:"termUnit,omitempty"` // Status - SaaS Offer Status. Possible values include: 'SaaSOfferStatusStarted', 'SaaSOfferStatusPendingFulfillmentStart', 'SaaSOfferStatusInProgress', 'SaaSOfferStatusSubscribed', 'SaaSOfferStatusSuspended', 'SaaSOfferStatusReinstated', 'SaaSOfferStatusSucceeded', 'SaaSOfferStatusFailed', 'SaaSOfferStatusUnsubscribed', 'SaaSOfferStatusUpdating' Status SaaSOfferStatus `json:"status,omitempty"` }
OfferDetail confluent Offer detail
type OperationDisplay struct { // Provider - Service provider: Microsoft.Confluent Provider *string `json:"provider,omitempty"` // Resource - Type on which the operation is performed, e.g., 'clusters'. Resource *string `json:"resource,omitempty"` // Operation - Operation type, e.g., read, write, delete, etc. Operation *string `json:"operation,omitempty"` // Description - Description of the operation, e.g., 'Write confluent'. Description *string `json:"description,omitempty"` }
OperationDisplay the object that represents the operation.
type OperationListResult struct { autorest.Response `json:"-"` // Value - List of Confluent operations supported by the Microsoft.Confluent provider. Value *[]OperationResult `json:"value,omitempty"` // NextLink - URL to get the next set of operation list results if there are any. NextLink *string `json:"nextLink,omitempty"` }
OperationListResult result of GET request to list Confluent operations.
func (olr OperationListResult) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
type OperationListResultIterator struct {
// contains filtered or unexported fields
}
OperationListResultIterator provides access to a complete listing of OperationResult values.
func NewOperationListResultIterator(page OperationListResultPage) OperationListResultIterator
Creates a new instance of the OperationListResultIterator type.
func (iter *OperationListResultIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *OperationListResultIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter OperationListResultIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter OperationListResultIterator) Response() OperationListResult
Response returns the raw server response from the last page request.
func (iter OperationListResultIterator) Value() OperationResult
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
type OperationListResultPage struct {
// contains filtered or unexported fields
}
OperationListResultPage contains a page of OperationResult values.
func NewOperationListResultPage(cur OperationListResult, getNextPage func(context.Context, OperationListResult) (OperationListResult, error)) OperationListResultPage
Creates a new instance of the OperationListResultPage type.
func (page *OperationListResultPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *OperationListResultPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page OperationListResultPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page OperationListResultPage) Response() OperationListResult
Response returns the raw server response from the last page request.
func (page OperationListResultPage) Values() []OperationResult
Values returns the slice of values for the current page or nil if there are no values.
type OperationResult struct { // Name - Operation name: {provider}/{resource}/{operation} Name *string `json:"name,omitempty"` // Display - The object that represents the operation. Display *OperationDisplay `json:"display,omitempty"` }
OperationResult an Confluent REST API operation.
type OrganizationClient struct { BaseClient }
OrganizationClient is the client for the Organization methods of the Confluent service.
func NewOrganizationClient(subscriptionID string) OrganizationClient
NewOrganizationClient creates an instance of the OrganizationClient client.
func NewOrganizationClientWithBaseURI(baseURI string, subscriptionID string) OrganizationClient
NewOrganizationClientWithBaseURI creates an instance of the OrganizationClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client OrganizationClient) Create(ctx context.Context, resourceGroupName string, organizationName string, body *OrganizationResource) (result OrganizationCreateFuture, err error)
Create sends the create request. Parameters: resourceGroupName - resource group name organizationName - organization resource name body - organization resource model
func (client OrganizationClient) CreatePreparer(ctx context.Context, resourceGroupName string, organizationName string, body *OrganizationResource) (*http.Request, error)
CreatePreparer prepares the Create request.
func (client OrganizationClient) CreateResponder(resp *http.Response) (result OrganizationResource, err error)
CreateResponder handles the response to the Create request. The method always closes the http.Response Body.
func (client OrganizationClient) CreateSender(req *http.Request) (future OrganizationCreateFuture, err error)
CreateSender sends the Create request. The method will close the http.Response Body if it receives an error.
func (client OrganizationClient) Delete(ctx context.Context, resourceGroupName string, organizationName string) (result OrganizationDeleteFuture, err error)
Delete sends the delete request. Parameters: resourceGroupName - resource group name organizationName - organization resource name
func (client OrganizationClient) DeletePreparer(ctx context.Context, resourceGroupName string, organizationName string) (*http.Request, error)
DeletePreparer prepares the Delete request.
func (client OrganizationClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)
DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.
func (client OrganizationClient) DeleteSender(req *http.Request) (future OrganizationDeleteFuture, err error)
DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.
func (client OrganizationClient) Get(ctx context.Context, resourceGroupName string, organizationName string) (result OrganizationResource, err error)
Get sends the get request. Parameters: resourceGroupName - resource group name organizationName - organization resource name
func (client OrganizationClient) GetPreparer(ctx context.Context, resourceGroupName string, organizationName string) (*http.Request, error)
GetPreparer prepares the Get request.
func (client OrganizationClient) GetResponder(resp *http.Response) (result OrganizationResource, err error)
GetResponder handles the response to the Get request. The method always closes the http.Response Body.
GetSender sends the Get request. The method will close the http.Response Body if it receives an error.
func (client OrganizationClient) ListByResourceGroup(ctx context.Context, resourceGroupName string) (result OrganizationResourceListResultPage, err error)
ListByResourceGroup sends the list by resource group request. Parameters: resourceGroupName - resource group name
func (client OrganizationClient) ListByResourceGroupComplete(ctx context.Context, resourceGroupName string) (result OrganizationResourceListResultIterator, err error)
ListByResourceGroupComplete enumerates all values, automatically crossing page boundaries as required.
func (client OrganizationClient) ListByResourceGroupPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error)
ListByResourceGroupPreparer prepares the ListByResourceGroup request.
func (client OrganizationClient) ListByResourceGroupResponder(resp *http.Response) (result OrganizationResourceListResult, err error)
ListByResourceGroupResponder handles the response to the ListByResourceGroup request. The method always closes the http.Response Body.
func (client OrganizationClient) ListByResourceGroupSender(req *http.Request) (*http.Response, error)
ListByResourceGroupSender sends the ListByResourceGroup request. The method will close the http.Response Body if it receives an error.
func (client OrganizationClient) ListBySubscription(ctx context.Context) (result OrganizationResourceListResultPage, err error)
ListBySubscription sends the list by subscription request.
func (client OrganizationClient) ListBySubscriptionComplete(ctx context.Context) (result OrganizationResourceListResultIterator, err error)
ListBySubscriptionComplete enumerates all values, automatically crossing page boundaries as required.
func (client OrganizationClient) ListBySubscriptionPreparer(ctx context.Context) (*http.Request, error)
ListBySubscriptionPreparer prepares the ListBySubscription request.
func (client OrganizationClient) ListBySubscriptionResponder(resp *http.Response) (result OrganizationResourceListResult, err error)
ListBySubscriptionResponder handles the response to the ListBySubscription request. The method always closes the http.Response Body.
func (client OrganizationClient) ListBySubscriptionSender(req *http.Request) (*http.Response, error)
ListBySubscriptionSender sends the ListBySubscription request. The method will close the http.Response Body if it receives an error.
func (client OrganizationClient) Update(ctx context.Context, resourceGroupName string, organizationName string, body *OrganizationResourceUpdate) (result OrganizationResource, err error)
Update sends the update request. Parameters: resourceGroupName - resource group name organizationName - organization resource name body - updated Organization resource
func (client OrganizationClient) UpdatePreparer(ctx context.Context, resourceGroupName string, organizationName string, body *OrganizationResourceUpdate) (*http.Request, error)
UpdatePreparer prepares the Update request.
func (client OrganizationClient) UpdateResponder(resp *http.Response) (result OrganizationResource, err error)
UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
type OrganizationCreateFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(OrganizationClient) (OrganizationResource, error) }
OrganizationCreateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type OrganizationDeleteFuture struct { azure.FutureAPI // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. Result func(OrganizationClient) (autorest.Response, error) }
OrganizationDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type OrganizationOperationsClient struct { BaseClient }
OrganizationOperationsClient is the client for the OrganizationOperations methods of the Confluent service.
func NewOrganizationOperationsClient(subscriptionID string) OrganizationOperationsClient
NewOrganizationOperationsClient creates an instance of the OrganizationOperationsClient client.
func NewOrganizationOperationsClientWithBaseURI(baseURI string, subscriptionID string) OrganizationOperationsClient
NewOrganizationOperationsClientWithBaseURI creates an instance of the OrganizationOperationsClient client using a custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
func (client OrganizationOperationsClient) List(ctx context.Context) (result OperationListResultPage, err error)
List sends the list request.
func (client OrganizationOperationsClient) ListComplete(ctx context.Context) (result OperationListResultIterator, err error)
ListComplete enumerates all values, automatically crossing page boundaries as required.
func (client OrganizationOperationsClient) ListPreparer(ctx context.Context) (*http.Request, error)
ListPreparer prepares the List request.
func (client OrganizationOperationsClient) ListResponder(resp *http.Response) (result OperationListResult, err error)
ListResponder handles the response to the List request. The method always closes the http.Response Body.
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
type OrganizationResource struct { autorest.Response `json:"-"` // ID - READ-ONLY; The ARM id of the resource. ID *string `json:"id,omitempty"` // Name - READ-ONLY; The name of the resource. Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. Type *string `json:"type,omitempty"` // OrganizationResourcePropertiesModel - Organization resource properties *OrganizationResourcePropertiesModel `json:"properties,omitempty"` // Tags - Organization resource tags Tags map[string]*string `json:"tags"` // Location - Location of Organization resource Location *string `json:"location,omitempty"` }
OrganizationResource organization resource.
func (or OrganizationResource) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for OrganizationResource.
func (or *OrganizationResource) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for OrganizationResource struct.
type OrganizationResourceListResult struct { autorest.Response `json:"-"` // Value - Result of a list operation. Value *[]OrganizationResource `json:"value,omitempty"` // NextLink - Link to the next set of results, if any. NextLink *string `json:"nextLink,omitempty"` }
OrganizationResourceListResult the response of a list operation.
func (orlr OrganizationResourceListResult) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
type OrganizationResourceListResultIterator struct {
// contains filtered or unexported fields
}
OrganizationResourceListResultIterator provides access to a complete listing of OrganizationResource values.
func NewOrganizationResourceListResultIterator(page OrganizationResourceListResultPage) OrganizationResourceListResultIterator
Creates a new instance of the OrganizationResourceListResultIterator type.
func (iter *OrganizationResourceListResultIterator) Next() error
Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (iter *OrganizationResourceListResultIterator) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.
func (iter OrganizationResourceListResultIterator) NotDone() bool
NotDone returns true if the enumeration should be started or is not yet complete.
func (iter OrganizationResourceListResultIterator) Response() OrganizationResourceListResult
Response returns the raw server response from the last page request.
func (iter OrganizationResourceListResultIterator) Value() OrganizationResource
Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.
type OrganizationResourceListResultPage struct {
// contains filtered or unexported fields
}
OrganizationResourceListResultPage contains a page of OrganizationResource values.
func NewOrganizationResourceListResultPage(cur OrganizationResourceListResult, getNextPage func(context.Context, OrganizationResourceListResult) (OrganizationResourceListResult, error)) OrganizationResourceListResultPage
Creates a new instance of the OrganizationResourceListResultPage type.
func (page *OrganizationResourceListResultPage) Next() error
Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned. Deprecated: Use NextWithContext() instead.
func (page *OrganizationResourceListResultPage) NextWithContext(ctx context.Context) (err error)
NextWithContext advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.
func (page OrganizationResourceListResultPage) NotDone() bool
NotDone returns true if the page enumeration should be started or is not yet complete.
func (page OrganizationResourceListResultPage) Response() OrganizationResourceListResult
Response returns the raw server response from the last page request.
func (page OrganizationResourceListResultPage) Values() []OrganizationResource
Values returns the slice of values for the current page or nil if there are no values.
type OrganizationResourceProperties struct { // CreatedTime - READ-ONLY; The creation time of the resource. CreatedTime *date.Time `json:"createdTime,omitempty"` // ProvisioningState - Provision states for confluent RP. Possible values include: 'Accepted', 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled', 'Deleted', 'NotSpecified' ProvisioningState ProvisionState `json:"provisioningState,omitempty"` // OrganizationID - READ-ONLY; Id of the Confluent organization. OrganizationID *string `json:"organizationId,omitempty"` // SsoURL - READ-ONLY; SSO url for the Confluent organization. SsoURL *string `json:"ssoUrl,omitempty"` // OfferDetail - Confluent offer detail OfferDetail *OrganizationResourcePropertiesOfferDetail `json:"offerDetail,omitempty"` // UserDetail - Subscriber detail UserDetail *OrganizationResourcePropertiesUserDetail `json:"userDetail,omitempty"` }
OrganizationResourceProperties organization resource property
func (orp OrganizationResourceProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for OrganizationResourceProperties.
type OrganizationResourcePropertiesModel struct { // CreatedTime - READ-ONLY; The creation time of the resource. CreatedTime *date.Time `json:"createdTime,omitempty"` // ProvisioningState - Provision states for confluent RP. Possible values include: 'Accepted', 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled', 'Deleted', 'NotSpecified' ProvisioningState ProvisionState `json:"provisioningState,omitempty"` // OrganizationID - READ-ONLY; Id of the Confluent organization. OrganizationID *string `json:"organizationId,omitempty"` // SsoURL - READ-ONLY; SSO url for the Confluent organization. SsoURL *string `json:"ssoUrl,omitempty"` // OfferDetail - Confluent offer detail OfferDetail *OrganizationResourcePropertiesOfferDetail `json:"offerDetail,omitempty"` // UserDetail - Subscriber detail UserDetail *OrganizationResourcePropertiesUserDetail `json:"userDetail,omitempty"` }
OrganizationResourcePropertiesModel organization resource properties
func (orpm OrganizationResourcePropertiesModel) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for OrganizationResourcePropertiesModel.
type OrganizationResourcePropertiesOfferDetail struct { // PublisherID - Publisher Id PublisherID *string `json:"publisherId,omitempty"` // ID - Offer Id ID *string `json:"id,omitempty"` // PlanID - Offer Plan Id PlanID *string `json:"planId,omitempty"` // PlanName - Offer Plan Name PlanName *string `json:"planName,omitempty"` // TermUnit - Offer Plan Term unit TermUnit *string `json:"termUnit,omitempty"` // Status - SaaS Offer Status. Possible values include: 'SaaSOfferStatusStarted', 'SaaSOfferStatusPendingFulfillmentStart', 'SaaSOfferStatusInProgress', 'SaaSOfferStatusSubscribed', 'SaaSOfferStatusSuspended', 'SaaSOfferStatusReinstated', 'SaaSOfferStatusSucceeded', 'SaaSOfferStatusFailed', 'SaaSOfferStatusUnsubscribed', 'SaaSOfferStatusUpdating' Status SaaSOfferStatus `json:"status,omitempty"` }
OrganizationResourcePropertiesOfferDetail confluent offer detail
type OrganizationResourcePropertiesUserDetail struct { // FirstName - First name FirstName *string `json:"firstName,omitempty"` // LastName - Last name LastName *string `json:"lastName,omitempty"` // EmailAddress - Email address EmailAddress *string `json:"emailAddress,omitempty"` }
OrganizationResourcePropertiesUserDetail subscriber detail
type OrganizationResourceUpdate struct { // Tags - ARM resource tags Tags map[string]*string `json:"tags"` }
OrganizationResourceUpdate organization Resource update
func (oru OrganizationResourceUpdate) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for OrganizationResourceUpdate.
ProvisionState enumerates the values for provision state.
const ( // Accepted ... Accepted ProvisionState = "Accepted" // Canceled ... Canceled ProvisionState = "Canceled" // Creating ... Creating ProvisionState = "Creating" // Deleted ... Deleted ProvisionState = "Deleted" // Deleting ... Deleting ProvisionState = "Deleting" // Failed ... Failed ProvisionState = "Failed" // NotSpecified ... NotSpecified ProvisionState = "NotSpecified" // Succeeded ... Succeeded ProvisionState = "Succeeded" // Updating ... Updating ProvisionState = "Updating" )
func PossibleProvisionStateValues() []ProvisionState
PossibleProvisionStateValues returns an array of possible values for the ProvisionState const type.
type ResourceProviderDefaultErrorResponse struct { // Error - READ-ONLY; Response body of Error Error *ErrorResponseBody `json:"error,omitempty"` }
ResourceProviderDefaultErrorResponse default error response for resource provider
SaaSOfferStatus enumerates the values for saa s offer status.
const ( // SaaSOfferStatusFailed ... SaaSOfferStatusFailed SaaSOfferStatus = "Failed" // SaaSOfferStatusInProgress ... SaaSOfferStatusInProgress SaaSOfferStatus = "InProgress" // SaaSOfferStatusPendingFulfillmentStart ... SaaSOfferStatusPendingFulfillmentStart SaaSOfferStatus = "PendingFulfillmentStart" // SaaSOfferStatusReinstated ... SaaSOfferStatusReinstated SaaSOfferStatus = "Reinstated" // SaaSOfferStatusStarted ... SaaSOfferStatusStarted SaaSOfferStatus = "Started" // SaaSOfferStatusSubscribed ... SaaSOfferStatusSubscribed SaaSOfferStatus = "Subscribed" // SaaSOfferStatusSucceeded ... SaaSOfferStatusSucceeded SaaSOfferStatus = "Succeeded" // SaaSOfferStatusSuspended ... SaaSOfferStatusSuspended SaaSOfferStatus = "Suspended" // SaaSOfferStatusUnsubscribed ... SaaSOfferStatusUnsubscribed SaaSOfferStatus = "Unsubscribed" // SaaSOfferStatusUpdating ... SaaSOfferStatusUpdating SaaSOfferStatus = "Updating" )
func PossibleSaaSOfferStatusValues() []SaaSOfferStatus
PossibleSaaSOfferStatusValues returns an array of possible values for the SaaSOfferStatus const type.
type UserDetail struct { // FirstName - First name FirstName *string `json:"firstName,omitempty"` // LastName - Last name LastName *string `json:"lastName,omitempty"` // EmailAddress - Email address EmailAddress *string `json:"emailAddress,omitempty"` }
UserDetail subscriber detail
Path | Synopsis |
---|---|
confluentapi |
Package confluent imports 9 packages (graph) and is imported by 1 packages. Updated 2021-01-26. Refresh now. Tools for package owners.