const ( // DefaultBaseURI is the default URI used for the service Confluent DefaultBaseURI = "https://management.azure.com" )
func UserAgent() string
UserAgent returns the UserAgent string to use when sending http.Requests.
func Version() string
Version returns the semantic version (see http://semver.org) of the client.
AgreementProperties terms properties for Marketplace and Confluent.
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"` }
AgreementResource confluent Agreements Resource.
type AgreementResource struct { autorest.Response `json:"-"` // ID - READ-ONLY; ARM id of the resource. ID *string `json:"id,omitempty"` // Name - READ-ONLY; Name of the agreement. Name *string `json:"name,omitempty"` // Type - READ-ONLY; The type of the resource. Type *string `json:"type,omitempty"` // AgreementProperties - Represents the properties of the resource. *AgreementProperties `json:"properties,omitempty"` }
func (ar AgreementResource) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for AgreementResource.
func (ar *AgreementResource) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaler for AgreementResource struct.
AgreementResourceListResponse response of a list operation.
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"` }
func (arlr AgreementResourceListResponse) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
AgreementResourceListResponseIterator provides access to a complete listing of AgreementResource values.
type AgreementResourceListResponseIterator struct {
// contains filtered or unexported fields
}
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.
AgreementResourceListResponsePage contains a page of AgreementResource values.
type AgreementResourceListResponsePage struct {
// contains filtered or unexported fields
}
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.
type BaseClient struct { autorest.Client BaseURI string SubscriptionID string }
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).
ErrorResponseBody response body of Error
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"` }
func (erb ErrorResponseBody) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ErrorResponseBody.
MarketplaceAgreementsClient is the client for the MarketplaceAgreements methods of the Confluent service.
type MarketplaceAgreementsClient struct { BaseClient }
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. Parameters: body - confluent Agreement resource
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.
func (client MarketplaceAgreementsClient) CreateSender(req *http.Request) (*http.Response, error)
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.
func (client MarketplaceAgreementsClient) ListPreparer(ctx context.Context) (*http.Request, error)
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.
func (client MarketplaceAgreementsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
OfferDetail confluent Offer detail
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"` }
OperationDisplay the object that represents the operation.
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"` }
OperationListResult result of GET request to list Confluent operations.
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"` }
func (olr OperationListResult) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
OperationListResultIterator provides access to a complete listing of OperationResult values.
type OperationListResultIterator struct {
// contains filtered or unexported fields
}
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.
OperationListResultPage contains a page of OperationResult values.
type OperationListResultPage struct {
// contains filtered or unexported fields
}
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.
OperationResult an Confluent REST API operation.
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"` // IsDataAction - Indicates whether the operation is a data action IsDataAction *bool `json:"isDataAction,omitempty"` }
OrganizationClient is the client for the Organization methods of the Confluent service.
type OrganizationClient struct { BaseClient }
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.
func (client OrganizationClient) GetSender(req *http.Request) (*http.Response, error)
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.
func (client OrganizationClient) UpdateSender(req *http.Request) (*http.Response, error)
UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.
OrganizationCreateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
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) }
func (future *OrganizationCreateFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
OrganizationDeleteFuture 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) }
func (future *OrganizationDeleteFuture) UnmarshalJSON(body []byte) error
UnmarshalJSON is the custom unmarshaller for CreateFuture.
OrganizationOperationsClient is the client for the OrganizationOperations methods of the Confluent service.
type OrganizationOperationsClient struct { BaseClient }
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.
func (client OrganizationOperationsClient) ListSender(req *http.Request) (*http.Response, error)
ListSender sends the List request. The method will close the http.Response Body if it receives an error.
OrganizationResource organization resource.
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"` }
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.
OrganizationResourceListResult the response of a list operation.
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"` }
func (orlr OrganizationResourceListResult) IsEmpty() bool
IsEmpty returns true if the ListResult contains no values.
OrganizationResourceListResultIterator provides access to a complete listing of OrganizationResource values.
type OrganizationResourceListResultIterator struct {
// contains filtered or unexported fields
}
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.
OrganizationResourceListResultPage contains a page of OrganizationResource values.
type OrganizationResourceListResultPage struct {
// contains filtered or unexported fields
}
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.
OrganizationResourceProperties organization resource property
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"` }
func (orp OrganizationResourceProperties) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for OrganizationResourceProperties.
OrganizationResourcePropertiesModel organization resource properties
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"` }
func (orpm OrganizationResourcePropertiesModel) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for OrganizationResourcePropertiesModel.
OrganizationResourcePropertiesOfferDetail confluent offer detail
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"` }
OrganizationResourcePropertiesUserDetail subscriber 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"` }
OrganizationResourceUpdate organization Resource update
type OrganizationResourceUpdate struct { // Tags - ARM resource tags Tags map[string]*string `json:"tags"` }
func (oru OrganizationResourceUpdate) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for OrganizationResourceUpdate.
ProvisionState enumerates the values for provision state.
type ProvisionState string
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.
ResourceProviderDefaultErrorResponse default error response for resource provider
type ResourceProviderDefaultErrorResponse struct { // Error - READ-ONLY; Response body of Error Error *ErrorResponseBody `json:"error,omitempty"` }
func (rpder ResourceProviderDefaultErrorResponse) MarshalJSON() ([]byte, error)
MarshalJSON is the custom marshaler for ResourceProviderDefaultErrorResponse.
SaaSOfferStatus enumerates the values for saa s offer status.
type SaaSOfferStatus string
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.
UserDetail subscriber detail
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"` }
Name | Synopsis |
---|---|
.. | |
confluentapi | Deprecated: Please note, this package has been deprecated. |