v1

package
v0.0.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 8, 2022 License: Apache-2.0 Imports: 22 Imported by: 2

README

Go API client for v1

Introduction

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import sw "./v1"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), sw.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), sw.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), sw.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sw.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://api.confluent.cloud

Class Method HTTP request Description
ConsumerSharedResourcesCdxV1Api GetCdxV1ConsumerSharedResource Get /cdx/v1/consumer-shared-resources/{id} Read a Consumer Shared Resource
ConsumerSharedResourcesCdxV1Api ImageCdxV1ConsumerSharedResource Get /cdx/v1/consumer-shared-resources/{id}/images/{file_name} Get image for shared resource
ConsumerSharedResourcesCdxV1Api ListCdxV1ConsumerSharedResources Get /cdx/v1/consumer-shared-resources List of Consumer Shared Resources
ConsumerSharedResourcesCdxV1Api NetworkCdxV1ConsumerSharedResource Get /cdx/v1/consumer-shared-resources/{id}:network Get shared resource's network configuration
ConsumerSharesCdxV1Api DeleteCdxV1ConsumerShare Delete /cdx/v1/consumer-shares/{id} Delete a Consumer Share
ConsumerSharesCdxV1Api GetCdxV1ConsumerShare Get /cdx/v1/consumer-shares/{id} Read a Consumer Share
ConsumerSharesCdxV1Api ListCdxV1ConsumerShares Get /cdx/v1/consumer-shares List of Consumer Shares
OptInsCdxV1Api GetCdxV1OptIn Get /cdx/v1/opt-in Read the organization's stream sharing opt-in settings
OptInsCdxV1Api UpdateCdxV1OptIn Patch /cdx/v1/opt-in Set the organization's stream sharing opt-in settings
ProviderSharedResourcesCdxV1Api DeleteImageCdxV1ProviderSharedResource Delete /cdx/v1/provider-shared-resources/{id}/images/{file_name} Delete_Image a Provider Shared Resource
ProviderSharedResourcesCdxV1Api GetCdxV1ProviderSharedResource Get /cdx/v1/provider-shared-resources/{id} Read a Provider Shared Resource
ProviderSharedResourcesCdxV1Api ListCdxV1ProviderSharedResources Get /cdx/v1/provider-shared-resources List of Provider Shared Resources
ProviderSharedResourcesCdxV1Api UpdateCdxV1ProviderSharedResource Patch /cdx/v1/provider-shared-resources/{id} Update a Provider Shared Resource
ProviderSharedResourcesCdxV1Api UploadImageCdxV1ProviderSharedResource Post /cdx/v1/provider-shared-resources/{id}/images/{file_name} Upload image for shared resource
ProviderSharedResourcesCdxV1Api ViewImageCdxV1ProviderSharedResource Get /cdx/v1/provider-shared-resources/{id}/images/{file_name} View_Image a Provider Shared Resource
ProviderSharesCdxV1Api CreateCdxV1ProviderShare Post /cdx/v1/provider-shares Create a provider share
ProviderSharesCdxV1Api DeleteCdxV1ProviderShare Delete /cdx/v1/provider-shares/{id} Delete a Provider Share
ProviderSharesCdxV1Api GetCdxV1ProviderShare Get /cdx/v1/provider-shares/{id} Read a Provider Share
ProviderSharesCdxV1Api ListCdxV1ProviderShares Get /cdx/v1/provider-shares List of Provider Shares
ProviderSharesCdxV1Api ResendCdxV1ProviderShare Post /cdx/v1/provider-shares/{id}:resend Resend
SharedTokensCdxV1Api RedeemCdxV1SharedToken Post /cdx/v1/shared-tokens:redeem Redeem token
SharedTokensCdxV1Api ResourcesCdxV1SharedToken Post /cdx/v1/shared-tokens:resources Validate token to view shared resources

Documentation For Models

Documentation For Authorization

api-key
  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAuth{
    UserName: "username",
    Password: "password",
})
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

cdx@confluent.io

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	ConsumerSharedResourcesCdxV1Api ConsumerSharedResourcesCdxV1Api

	ConsumerSharesCdxV1Api ConsumerSharesCdxV1Api

	OptInsCdxV1Api OptInsCdxV1Api

	ProviderSharedResourcesCdxV1Api ProviderSharedResourcesCdxV1Api

	ProviderSharesCdxV1Api ProviderSharesCdxV1Api

	SharedTokensCdxV1Api SharedTokensCdxV1Api
	// contains filtered or unexported fields
}

APIClient manages communication with the Stream Share APIs API v0.1.0-alpha0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiCreateCdxV1ProviderShareRequest

type ApiCreateCdxV1ProviderShareRequest struct {
	ApiService ProviderSharesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiCreateCdxV1ProviderShareRequest) CdxV1CreateProviderShareRequest added in v0.0.3

func (r ApiCreateCdxV1ProviderShareRequest) CdxV1CreateProviderShareRequest(cdxV1CreateProviderShareRequest CdxV1CreateProviderShareRequest) ApiCreateCdxV1ProviderShareRequest

func (ApiCreateCdxV1ProviderShareRequest) Execute

type ApiDeleteCdxV1ConsumerShareRequest

type ApiDeleteCdxV1ConsumerShareRequest struct {
	ApiService ConsumerSharesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiDeleteCdxV1ConsumerShareRequest) Execute

type ApiDeleteCdxV1ProviderShareRequest

type ApiDeleteCdxV1ProviderShareRequest struct {
	ApiService ProviderSharesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiDeleteCdxV1ProviderShareRequest) Execute

type ApiDeleteImageCdxV1ProviderSharedResourceRequest

type ApiDeleteImageCdxV1ProviderSharedResourceRequest struct {
	ApiService ProviderSharedResourcesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiDeleteImageCdxV1ProviderSharedResourceRequest) Execute

type ApiGetCdxV1ConsumerShareRequest

type ApiGetCdxV1ConsumerShareRequest struct {
	ApiService ConsumerSharesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiGetCdxV1ConsumerShareRequest) Execute

type ApiGetCdxV1ConsumerSharedResourceRequest

type ApiGetCdxV1ConsumerSharedResourceRequest struct {
	ApiService ConsumerSharedResourcesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiGetCdxV1ConsumerSharedResourceRequest) Execute

type ApiGetCdxV1OptInRequest added in v0.0.3

type ApiGetCdxV1OptInRequest struct {
	ApiService OptInsCdxV1Api
	// contains filtered or unexported fields
}

func (ApiGetCdxV1OptInRequest) Execute added in v0.0.3

type ApiGetCdxV1ProviderShareRequest

type ApiGetCdxV1ProviderShareRequest struct {
	ApiService ProviderSharesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiGetCdxV1ProviderShareRequest) Execute

type ApiGetCdxV1ProviderSharedResourceRequest

type ApiGetCdxV1ProviderSharedResourceRequest struct {
	ApiService ProviderSharedResourcesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiGetCdxV1ProviderSharedResourceRequest) Execute

type ApiImageCdxV1ConsumerSharedResourceRequest

type ApiImageCdxV1ConsumerSharedResourceRequest struct {
	ApiService ConsumerSharedResourcesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiImageCdxV1ConsumerSharedResourceRequest) Execute

type ApiListCdxV1ConsumerSharedResourcesRequest

type ApiListCdxV1ConsumerSharedResourcesRequest struct {
	ApiService ConsumerSharedResourcesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiListCdxV1ConsumerSharedResourcesRequest) Execute

func (ApiListCdxV1ConsumerSharedResourcesRequest) IncludeDeleted added in v0.0.3

Include deactivated shared resources

func (ApiListCdxV1ConsumerSharedResourcesRequest) PageSize

A pagination size for collection requests.

func (ApiListCdxV1ConsumerSharedResourcesRequest) PageToken

An opaque pagination token for collection requests.

func (ApiListCdxV1ConsumerSharedResourcesRequest) StreamShare added in v0.0.3

Filter the results by exact match for stream_share.

type ApiListCdxV1ConsumerSharesRequest

type ApiListCdxV1ConsumerSharesRequest struct {
	ApiService ConsumerSharesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiListCdxV1ConsumerSharesRequest) Execute

func (ApiListCdxV1ConsumerSharesRequest) IncludeDeleted added in v0.0.3

Include deactivated shares

func (ApiListCdxV1ConsumerSharesRequest) PageSize

A pagination size for collection requests.

func (ApiListCdxV1ConsumerSharesRequest) PageToken

An opaque pagination token for collection requests.

func (ApiListCdxV1ConsumerSharesRequest) SharedResource

Filter the results by exact match for shared_resource.

type ApiListCdxV1ProviderSharedResourcesRequest

type ApiListCdxV1ProviderSharedResourcesRequest struct {
	ApiService ProviderSharedResourcesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiListCdxV1ProviderSharedResourcesRequest) Crn

Filter the results by exact match for crn.

func (ApiListCdxV1ProviderSharedResourcesRequest) Execute

func (ApiListCdxV1ProviderSharedResourcesRequest) IncludeDeleted added in v0.0.3

Include deactivated shared resources

func (ApiListCdxV1ProviderSharedResourcesRequest) PageSize

A pagination size for collection requests.

func (ApiListCdxV1ProviderSharedResourcesRequest) PageToken

An opaque pagination token for collection requests.

func (ApiListCdxV1ProviderSharedResourcesRequest) StreamShare added in v0.0.3

Filter the results by exact match for stream_share.

type ApiListCdxV1ProviderSharesRequest

type ApiListCdxV1ProviderSharesRequest struct {
	ApiService ProviderSharesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiListCdxV1ProviderSharesRequest) Crn added in v0.0.4

Filter the results by exact match for crn.

func (ApiListCdxV1ProviderSharesRequest) Execute

func (ApiListCdxV1ProviderSharesRequest) IncludeDeleted added in v0.0.3

Include deactivated shares

func (ApiListCdxV1ProviderSharesRequest) PageSize

A pagination size for collection requests.

func (ApiListCdxV1ProviderSharesRequest) PageToken

An opaque pagination token for collection requests.

func (ApiListCdxV1ProviderSharesRequest) SharedResource

Filter the results by exact match for shared_resource.

type ApiNetworkCdxV1ConsumerSharedResourceRequest added in v0.0.2

type ApiNetworkCdxV1ConsumerSharedResourceRequest struct {
	ApiService ConsumerSharedResourcesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiNetworkCdxV1ConsumerSharedResourceRequest) Execute added in v0.0.2

type ApiRedeemCdxV1SharedTokenRequest

type ApiRedeemCdxV1SharedTokenRequest struct {
	ApiService SharedTokensCdxV1Api
	// contains filtered or unexported fields
}

func (ApiRedeemCdxV1SharedTokenRequest) CdxV1RedeemTokenRequest added in v0.0.2

func (r ApiRedeemCdxV1SharedTokenRequest) CdxV1RedeemTokenRequest(cdxV1RedeemTokenRequest CdxV1RedeemTokenRequest) ApiRedeemCdxV1SharedTokenRequest

func (ApiRedeemCdxV1SharedTokenRequest) Execute

type ApiResendCdxV1ProviderShareRequest

type ApiResendCdxV1ProviderShareRequest struct {
	ApiService ProviderSharesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiResendCdxV1ProviderShareRequest) Execute

type ApiResourcesCdxV1SharedTokenRequest

type ApiResourcesCdxV1SharedTokenRequest struct {
	ApiService SharedTokensCdxV1Api
	// contains filtered or unexported fields
}

func (ApiResourcesCdxV1SharedTokenRequest) CdxV1SharedToken

func (ApiResourcesCdxV1SharedTokenRequest) Execute

type ApiUpdateCdxV1OptInRequest added in v0.0.3

type ApiUpdateCdxV1OptInRequest struct {
	ApiService OptInsCdxV1Api
	// contains filtered or unexported fields
}

func (ApiUpdateCdxV1OptInRequest) CdxV1OptIn added in v0.0.3

func (ApiUpdateCdxV1OptInRequest) Execute added in v0.0.3

type ApiUpdateCdxV1ProviderSharedResourceRequest

type ApiUpdateCdxV1ProviderSharedResourceRequest struct {
	ApiService ProviderSharedResourcesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiUpdateCdxV1ProviderSharedResourceRequest) CdxV1ProviderSharedResourceUpdate

func (r ApiUpdateCdxV1ProviderSharedResourceRequest) CdxV1ProviderSharedResourceUpdate(cdxV1ProviderSharedResourceUpdate CdxV1ProviderSharedResourceUpdate) ApiUpdateCdxV1ProviderSharedResourceRequest

func (ApiUpdateCdxV1ProviderSharedResourceRequest) Execute

type ApiUploadImageCdxV1ProviderSharedResourceRequest

type ApiUploadImageCdxV1ProviderSharedResourceRequest struct {
	ApiService ProviderSharedResourcesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiUploadImageCdxV1ProviderSharedResourceRequest) Body added in v0.0.3

func (ApiUploadImageCdxV1ProviderSharedResourceRequest) Execute

type ApiViewImageCdxV1ProviderSharedResourceRequest

type ApiViewImageCdxV1ProviderSharedResourceRequest struct {
	ApiService ProviderSharedResourcesCdxV1Api
	// contains filtered or unexported fields
}

func (ApiViewImageCdxV1ProviderSharedResourceRequest) Execute

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type CdxV1AwsNetwork added in v0.0.2

type CdxV1AwsNetwork struct {
	// Network kind type.
	Kind string `json:"kind"`
	// The AWS VPC endpoint service for the network (used for PrivateLink) if available.
	PrivateLinkEndpointService *string `json:"private_link_endpoint_service,omitempty"`
}

CdxV1AwsNetwork The AWS network details.

func NewCdxV1AwsNetwork added in v0.0.2

func NewCdxV1AwsNetwork(kind string) *CdxV1AwsNetwork

NewCdxV1AwsNetwork instantiates a new CdxV1AwsNetwork object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1AwsNetworkWithDefaults added in v0.0.2

func NewCdxV1AwsNetworkWithDefaults() *CdxV1AwsNetwork

NewCdxV1AwsNetworkWithDefaults instantiates a new CdxV1AwsNetwork object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1AwsNetwork) GetKind added in v0.0.2

func (o *CdxV1AwsNetwork) GetKind() string

GetKind returns the Kind field value

func (*CdxV1AwsNetwork) GetKindOk added in v0.0.2

func (o *CdxV1AwsNetwork) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*CdxV1AwsNetwork) GetPrivateLinkEndpointService added in v0.0.2

func (o *CdxV1AwsNetwork) GetPrivateLinkEndpointService() string

GetPrivateLinkEndpointService returns the PrivateLinkEndpointService field value if set, zero value otherwise.

func (*CdxV1AwsNetwork) GetPrivateLinkEndpointServiceOk added in v0.0.2

func (o *CdxV1AwsNetwork) GetPrivateLinkEndpointServiceOk() (*string, bool)

GetPrivateLinkEndpointServiceOk returns a tuple with the PrivateLinkEndpointService field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1AwsNetwork) HasPrivateLinkEndpointService added in v0.0.2

func (o *CdxV1AwsNetwork) HasPrivateLinkEndpointService() bool

HasPrivateLinkEndpointService returns a boolean if a field has been set.

func (CdxV1AwsNetwork) MarshalJSON added in v0.0.2

func (o CdxV1AwsNetwork) MarshalJSON() ([]byte, error)

func (*CdxV1AwsNetwork) Redact added in v0.0.2

func (o *CdxV1AwsNetwork) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1AwsNetwork) SetKind added in v0.0.2

func (o *CdxV1AwsNetwork) SetKind(v string)

SetKind sets field value

func (*CdxV1AwsNetwork) SetPrivateLinkEndpointService added in v0.0.2

func (o *CdxV1AwsNetwork) SetPrivateLinkEndpointService(v string)

SetPrivateLinkEndpointService gets a reference to the given string and assigns it to the PrivateLinkEndpointService field.

type CdxV1AzureNetwork added in v0.0.2

type CdxV1AzureNetwork struct {
	// Network kind type.
	Kind string `json:"kind"`
	// The mapping of zones to PrivateLink Service Aliases if available.  Keys are zones and values are [Azure PrivateLink Service Aliases](https://docs.microsoft.com/en-us/azure/private-link/private-link-service-overview#share-your-service)
	PrivateLinkServiceAliases *map[string]string `json:"private_link_service_aliases,omitempty"`
}

CdxV1AzureNetwork The Azure network details.

func NewCdxV1AzureNetwork added in v0.0.2

func NewCdxV1AzureNetwork(kind string) *CdxV1AzureNetwork

NewCdxV1AzureNetwork instantiates a new CdxV1AzureNetwork object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1AzureNetworkWithDefaults added in v0.0.2

func NewCdxV1AzureNetworkWithDefaults() *CdxV1AzureNetwork

NewCdxV1AzureNetworkWithDefaults instantiates a new CdxV1AzureNetwork object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1AzureNetwork) GetKind added in v0.0.2

func (o *CdxV1AzureNetwork) GetKind() string

GetKind returns the Kind field value

func (*CdxV1AzureNetwork) GetKindOk added in v0.0.2

func (o *CdxV1AzureNetwork) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*CdxV1AzureNetwork) GetPrivateLinkServiceAliases added in v0.0.2

func (o *CdxV1AzureNetwork) GetPrivateLinkServiceAliases() map[string]string

GetPrivateLinkServiceAliases returns the PrivateLinkServiceAliases field value if set, zero value otherwise.

func (*CdxV1AzureNetwork) GetPrivateLinkServiceAliasesOk added in v0.0.2

func (o *CdxV1AzureNetwork) GetPrivateLinkServiceAliasesOk() (*map[string]string, bool)

GetPrivateLinkServiceAliasesOk returns a tuple with the PrivateLinkServiceAliases field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1AzureNetwork) HasPrivateLinkServiceAliases added in v0.0.2

func (o *CdxV1AzureNetwork) HasPrivateLinkServiceAliases() bool

HasPrivateLinkServiceAliases returns a boolean if a field has been set.

func (CdxV1AzureNetwork) MarshalJSON added in v0.0.2

func (o CdxV1AzureNetwork) MarshalJSON() ([]byte, error)

func (*CdxV1AzureNetwork) Redact added in v0.0.2

func (o *CdxV1AzureNetwork) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1AzureNetwork) SetKind added in v0.0.2

func (o *CdxV1AzureNetwork) SetKind(v string)

SetKind sets field value

func (*CdxV1AzureNetwork) SetPrivateLinkServiceAliases added in v0.0.2

func (o *CdxV1AzureNetwork) SetPrivateLinkServiceAliases(v map[string]string)

SetPrivateLinkServiceAliases gets a reference to the given map[string]string and assigns it to the PrivateLinkServiceAliases field.

type CdxV1ConnectionTypes added in v0.0.2

type CdxV1ConnectionTypes struct {
	Items []string
}

CdxV1ConnectionTypes The network connection types of the provider shared cluster. If the shared cluster is on public internet, then the list will be empty

func NewCdxV1ConnectionTypes added in v0.0.2

func NewCdxV1ConnectionTypes() *CdxV1ConnectionTypes

NewCdxV1ConnectionTypes instantiates a new CdxV1ConnectionTypes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ConnectionTypesWithDefaults added in v0.0.2

func NewCdxV1ConnectionTypesWithDefaults() *CdxV1ConnectionTypes

NewCdxV1ConnectionTypesWithDefaults instantiates a new CdxV1ConnectionTypes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (CdxV1ConnectionTypes) MarshalJSON added in v0.0.2

func (o CdxV1ConnectionTypes) MarshalJSON() ([]byte, error)

func (*CdxV1ConnectionTypes) Redact added in v0.0.2

func (o *CdxV1ConnectionTypes) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ConnectionTypes) UnmarshalJSON added in v0.0.2

func (o *CdxV1ConnectionTypes) UnmarshalJSON(bytes []byte) (err error)

type CdxV1ConsumerShare

type CdxV1ConsumerShare struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// ID is the \"natural identifier\" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted (\"time\"); however, it may collide with IDs for other object `kinds` or objects of the same `kind` within a different scope/namespace (\"space\").
	Id       *string     `json:"id,omitempty"`
	Metadata *ObjectMeta `json:"metadata,omitempty"`
	// Provider organization name
	ProviderOrganizationName *string `json:"provider_organization_name,omitempty"`
	// Name or email of the provider user
	ProviderUserName *string `json:"provider_user_name,omitempty"`
	// The date and time at which the invitation will expire. Only for invited shares
	InviteExpiresAt *time.Time `json:"invite_expires_at,omitempty"`
	// Consumer organization name. Deprecated
	ConsumerOrganizationName *string `json:"consumer_organization_name,omitempty"`
	// Name of the consumer. Deprecated
	ConsumerUserName *string `json:"consumer_user_name,omitempty"`
	// The consumer user/invitee
	ConsumerUser *GlobalObjectReference    `json:"consumer_user,omitempty"`
	Status       *CdxV1ConsumerShareStatus `json:"status,omitempty"`
}

CdxV1ConsumerShare Resources accessible by the consumer ## The Consumer Shared Resources Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.ConsumerSharedResource\" />

func NewCdxV1ConsumerShare

func NewCdxV1ConsumerShare() *CdxV1ConsumerShare

NewCdxV1ConsumerShare instantiates a new CdxV1ConsumerShare object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ConsumerShareWithDefaults

func NewCdxV1ConsumerShareWithDefaults() *CdxV1ConsumerShare

NewCdxV1ConsumerShareWithDefaults instantiates a new CdxV1ConsumerShare object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ConsumerShare) GetApiVersion

func (o *CdxV1ConsumerShare) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetApiVersionOk

func (o *CdxV1ConsumerShare) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) GetConsumerOrganizationName

func (o *CdxV1ConsumerShare) GetConsumerOrganizationName() string

GetConsumerOrganizationName returns the ConsumerOrganizationName field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetConsumerOrganizationNameOk

func (o *CdxV1ConsumerShare) GetConsumerOrganizationNameOk() (*string, bool)

GetConsumerOrganizationNameOk returns a tuple with the ConsumerOrganizationName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) GetConsumerUser added in v0.0.3

func (o *CdxV1ConsumerShare) GetConsumerUser() GlobalObjectReference

GetConsumerUser returns the ConsumerUser field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetConsumerUserName

func (o *CdxV1ConsumerShare) GetConsumerUserName() string

GetConsumerUserName returns the ConsumerUserName field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetConsumerUserNameOk

func (o *CdxV1ConsumerShare) GetConsumerUserNameOk() (*string, bool)

GetConsumerUserNameOk returns a tuple with the ConsumerUserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) GetConsumerUserOk added in v0.0.3

func (o *CdxV1ConsumerShare) GetConsumerUserOk() (*GlobalObjectReference, bool)

GetConsumerUserOk returns a tuple with the ConsumerUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) GetId

func (o *CdxV1ConsumerShare) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetIdOk

func (o *CdxV1ConsumerShare) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) GetInviteExpiresAt

func (o *CdxV1ConsumerShare) GetInviteExpiresAt() time.Time

GetInviteExpiresAt returns the InviteExpiresAt field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetInviteExpiresAtOk

func (o *CdxV1ConsumerShare) GetInviteExpiresAtOk() (*time.Time, bool)

GetInviteExpiresAtOk returns a tuple with the InviteExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) GetKind

func (o *CdxV1ConsumerShare) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetKindOk

func (o *CdxV1ConsumerShare) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) GetMetadata

func (o *CdxV1ConsumerShare) GetMetadata() ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetMetadataOk

func (o *CdxV1ConsumerShare) GetMetadataOk() (*ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) GetProviderOrganizationName added in v0.0.3

func (o *CdxV1ConsumerShare) GetProviderOrganizationName() string

GetProviderOrganizationName returns the ProviderOrganizationName field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetProviderOrganizationNameOk added in v0.0.3

func (o *CdxV1ConsumerShare) GetProviderOrganizationNameOk() (*string, bool)

GetProviderOrganizationNameOk returns a tuple with the ProviderOrganizationName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) GetProviderUserName

func (o *CdxV1ConsumerShare) GetProviderUserName() string

GetProviderUserName returns the ProviderUserName field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetProviderUserNameOk

func (o *CdxV1ConsumerShare) GetProviderUserNameOk() (*string, bool)

GetProviderUserNameOk returns a tuple with the ProviderUserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*CdxV1ConsumerShare) GetStatusOk

func (o *CdxV1ConsumerShare) GetStatusOk() (*CdxV1ConsumerShareStatus, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerShare) HasApiVersion

func (o *CdxV1ConsumerShare) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1ConsumerShare) HasConsumerOrganizationName

func (o *CdxV1ConsumerShare) HasConsumerOrganizationName() bool

HasConsumerOrganizationName returns a boolean if a field has been set.

func (*CdxV1ConsumerShare) HasConsumerUser added in v0.0.3

func (o *CdxV1ConsumerShare) HasConsumerUser() bool

HasConsumerUser returns a boolean if a field has been set.

func (*CdxV1ConsumerShare) HasConsumerUserName

func (o *CdxV1ConsumerShare) HasConsumerUserName() bool

HasConsumerUserName returns a boolean if a field has been set.

func (*CdxV1ConsumerShare) HasId

func (o *CdxV1ConsumerShare) HasId() bool

HasId returns a boolean if a field has been set.

func (*CdxV1ConsumerShare) HasInviteExpiresAt

func (o *CdxV1ConsumerShare) HasInviteExpiresAt() bool

HasInviteExpiresAt returns a boolean if a field has been set.

func (*CdxV1ConsumerShare) HasKind

func (o *CdxV1ConsumerShare) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CdxV1ConsumerShare) HasMetadata

func (o *CdxV1ConsumerShare) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CdxV1ConsumerShare) HasProviderOrganizationName added in v0.0.3

func (o *CdxV1ConsumerShare) HasProviderOrganizationName() bool

HasProviderOrganizationName returns a boolean if a field has been set.

func (*CdxV1ConsumerShare) HasProviderUserName

func (o *CdxV1ConsumerShare) HasProviderUserName() bool

HasProviderUserName returns a boolean if a field has been set.

func (*CdxV1ConsumerShare) HasStatus

func (o *CdxV1ConsumerShare) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CdxV1ConsumerShare) MarshalJSON

func (o CdxV1ConsumerShare) MarshalJSON() ([]byte, error)

func (*CdxV1ConsumerShare) Redact

func (o *CdxV1ConsumerShare) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ConsumerShare) SetApiVersion

func (o *CdxV1ConsumerShare) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1ConsumerShare) SetConsumerOrganizationName

func (o *CdxV1ConsumerShare) SetConsumerOrganizationName(v string)

SetConsumerOrganizationName gets a reference to the given string and assigns it to the ConsumerOrganizationName field.

func (*CdxV1ConsumerShare) SetConsumerUser added in v0.0.3

func (o *CdxV1ConsumerShare) SetConsumerUser(v GlobalObjectReference)

SetConsumerUser gets a reference to the given GlobalObjectReference and assigns it to the ConsumerUser field.

func (*CdxV1ConsumerShare) SetConsumerUserName

func (o *CdxV1ConsumerShare) SetConsumerUserName(v string)

SetConsumerUserName gets a reference to the given string and assigns it to the ConsumerUserName field.

func (*CdxV1ConsumerShare) SetId

func (o *CdxV1ConsumerShare) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CdxV1ConsumerShare) SetInviteExpiresAt

func (o *CdxV1ConsumerShare) SetInviteExpiresAt(v time.Time)

SetInviteExpiresAt gets a reference to the given time.Time and assigns it to the InviteExpiresAt field.

func (*CdxV1ConsumerShare) SetKind

func (o *CdxV1ConsumerShare) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1ConsumerShare) SetMetadata

func (o *CdxV1ConsumerShare) SetMetadata(v ObjectMeta)

SetMetadata gets a reference to the given ObjectMeta and assigns it to the Metadata field.

func (*CdxV1ConsumerShare) SetProviderOrganizationName added in v0.0.3

func (o *CdxV1ConsumerShare) SetProviderOrganizationName(v string)

SetProviderOrganizationName gets a reference to the given string and assigns it to the ProviderOrganizationName field.

func (*CdxV1ConsumerShare) SetProviderUserName

func (o *CdxV1ConsumerShare) SetProviderUserName(v string)

SetProviderUserName gets a reference to the given string and assigns it to the ProviderUserName field.

func (*CdxV1ConsumerShare) SetStatus

SetStatus gets a reference to the given CdxV1ConsumerShareStatus and assigns it to the Status field.

type CdxV1ConsumerShareList

type CdxV1ConsumerShareList struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion string `json:"api_version"`
	// Kind defines the object this REST resource represents.
	Kind     string   `json:"kind"`
	Metadata ListMeta `json:"metadata"`
	// A data property that contains an array of resource items. Each entry in the array is a separate resource.
	Data []CdxV1ConsumerShare `json:"data"`
}

CdxV1ConsumerShareList Resources accessible by the consumer ## The Consumer Shared Resources Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.ConsumerSharedResource\" />

func NewCdxV1ConsumerShareList

func NewCdxV1ConsumerShareList(apiVersion string, kind string, metadata ListMeta, data []CdxV1ConsumerShare) *CdxV1ConsumerShareList

NewCdxV1ConsumerShareList instantiates a new CdxV1ConsumerShareList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ConsumerShareListWithDefaults

func NewCdxV1ConsumerShareListWithDefaults() *CdxV1ConsumerShareList

NewCdxV1ConsumerShareListWithDefaults instantiates a new CdxV1ConsumerShareList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ConsumerShareList) GetApiVersion

func (o *CdxV1ConsumerShareList) GetApiVersion() string

GetApiVersion returns the ApiVersion field value

func (*CdxV1ConsumerShareList) GetApiVersionOk

func (o *CdxV1ConsumerShareList) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value and a boolean to check if the value has been set.

func (*CdxV1ConsumerShareList) GetData

GetData returns the Data field value

func (*CdxV1ConsumerShareList) GetDataOk

func (o *CdxV1ConsumerShareList) GetDataOk() (*[]CdxV1ConsumerShare, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*CdxV1ConsumerShareList) GetKind

func (o *CdxV1ConsumerShareList) GetKind() string

GetKind returns the Kind field value

func (*CdxV1ConsumerShareList) GetKindOk

func (o *CdxV1ConsumerShareList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*CdxV1ConsumerShareList) GetMetadata

func (o *CdxV1ConsumerShareList) GetMetadata() ListMeta

GetMetadata returns the Metadata field value

func (*CdxV1ConsumerShareList) GetMetadataOk

func (o *CdxV1ConsumerShareList) GetMetadataOk() (*ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (CdxV1ConsumerShareList) MarshalJSON

func (o CdxV1ConsumerShareList) MarshalJSON() ([]byte, error)

func (*CdxV1ConsumerShareList) Redact

func (o *CdxV1ConsumerShareList) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ConsumerShareList) SetApiVersion

func (o *CdxV1ConsumerShareList) SetApiVersion(v string)

SetApiVersion sets field value

func (*CdxV1ConsumerShareList) SetData

SetData sets field value

func (*CdxV1ConsumerShareList) SetKind

func (o *CdxV1ConsumerShareList) SetKind(v string)

SetKind sets field value

func (*CdxV1ConsumerShareList) SetMetadata

func (o *CdxV1ConsumerShareList) SetMetadata(v ListMeta)

SetMetadata sets field value

type CdxV1ConsumerShareStatus added in v0.0.3

type CdxV1ConsumerShareStatus struct {
	// Status of share
	Phase string `json:"phase"`
}

CdxV1ConsumerShareStatus The status of the Consumer Share

func NewCdxV1ConsumerShareStatus added in v0.0.3

func NewCdxV1ConsumerShareStatus(phase string) *CdxV1ConsumerShareStatus

NewCdxV1ConsumerShareStatus instantiates a new CdxV1ConsumerShareStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ConsumerShareStatusWithDefaults added in v0.0.3

func NewCdxV1ConsumerShareStatusWithDefaults() *CdxV1ConsumerShareStatus

NewCdxV1ConsumerShareStatusWithDefaults instantiates a new CdxV1ConsumerShareStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ConsumerShareStatus) GetPhase added in v0.0.3

func (o *CdxV1ConsumerShareStatus) GetPhase() string

GetPhase returns the Phase field value

func (*CdxV1ConsumerShareStatus) GetPhaseOk added in v0.0.3

func (o *CdxV1ConsumerShareStatus) GetPhaseOk() (*string, bool)

GetPhaseOk returns a tuple with the Phase field value and a boolean to check if the value has been set.

func (CdxV1ConsumerShareStatus) MarshalJSON added in v0.0.3

func (o CdxV1ConsumerShareStatus) MarshalJSON() ([]byte, error)

func (*CdxV1ConsumerShareStatus) Redact added in v0.0.3

func (o *CdxV1ConsumerShareStatus) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ConsumerShareStatus) SetPhase added in v0.0.3

func (o *CdxV1ConsumerShareStatus) SetPhase(v string)

SetPhase sets field value

type CdxV1ConsumerSharedResource

type CdxV1ConsumerSharedResource struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// ID is the \"natural identifier\" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted (\"time\"); however, it may collide with IDs for other object `kinds` or objects of the same `kind` within a different scope/namespace (\"space\").
	Id                     *string               `json:"id,omitempty"`
	Metadata               *ObjectMeta           `json:"metadata,omitempty"`
	Cloud                  *string               `json:"cloud,omitempty"`
	NetworkConnectionTypes *CdxV1ConnectionTypes `json:"network_connection_types,omitempty"`
	// Consumer resource display name
	DisplayName *string `json:"display_name,omitempty"`
	// Description of consumer resource
	Description *string `json:"description,omitempty"`
	// list of tags
	Tags *[]string `json:"tags,omitempty"`
	// List of schemas in JSON format. This field is work in progress and subject to changes.
	Schemas *[]CdxV1Schema `json:"schemas,omitempty"`
	// Shared resource's organization name
	OrganizationName *string `json:"organization_name,omitempty"`
	// Shared resource's organization description
	OrganizationDescription *string `json:"organization_description,omitempty"`
	// Email of the shared resource's organization contact
	OrganizationContact *string `json:"organization_contact,omitempty"`
	// Resource logo url
	LogoUrl *string `json:"logo_url,omitempty"`
}

CdxV1ConsumerSharedResource Resources accessible by the consumer ## The Consumer Shared Resources Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.ConsumerSharedResource\" />

func NewCdxV1ConsumerSharedResource

func NewCdxV1ConsumerSharedResource() *CdxV1ConsumerSharedResource

NewCdxV1ConsumerSharedResource instantiates a new CdxV1ConsumerSharedResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ConsumerSharedResourceWithDefaults

func NewCdxV1ConsumerSharedResourceWithDefaults() *CdxV1ConsumerSharedResource

NewCdxV1ConsumerSharedResourceWithDefaults instantiates a new CdxV1ConsumerSharedResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ConsumerSharedResource) GetApiVersion

func (o *CdxV1ConsumerSharedResource) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetApiVersionOk

func (o *CdxV1ConsumerSharedResource) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetCloud added in v0.0.2

func (o *CdxV1ConsumerSharedResource) GetCloud() string

GetCloud returns the Cloud field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetCloudOk added in v0.0.2

func (o *CdxV1ConsumerSharedResource) GetCloudOk() (*string, bool)

GetCloudOk returns a tuple with the Cloud field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetDescription

func (o *CdxV1ConsumerSharedResource) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetDescriptionOk

func (o *CdxV1ConsumerSharedResource) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetDisplayName

func (o *CdxV1ConsumerSharedResource) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetDisplayNameOk

func (o *CdxV1ConsumerSharedResource) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetIdOk

func (o *CdxV1ConsumerSharedResource) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetKind

func (o *CdxV1ConsumerSharedResource) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetKindOk

func (o *CdxV1ConsumerSharedResource) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetLogoUrl

func (o *CdxV1ConsumerSharedResource) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetLogoUrlOk

func (o *CdxV1ConsumerSharedResource) GetLogoUrlOk() (*string, bool)

GetLogoUrlOk returns a tuple with the LogoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetMetadata

func (o *CdxV1ConsumerSharedResource) GetMetadata() ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetMetadataOk

func (o *CdxV1ConsumerSharedResource) GetMetadataOk() (*ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetNetworkConnectionTypes added in v0.0.2

func (o *CdxV1ConsumerSharedResource) GetNetworkConnectionTypes() CdxV1ConnectionTypes

GetNetworkConnectionTypes returns the NetworkConnectionTypes field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetNetworkConnectionTypesOk added in v0.0.2

func (o *CdxV1ConsumerSharedResource) GetNetworkConnectionTypesOk() (*CdxV1ConnectionTypes, bool)

GetNetworkConnectionTypesOk returns a tuple with the NetworkConnectionTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetOrganizationContact

func (o *CdxV1ConsumerSharedResource) GetOrganizationContact() string

GetOrganizationContact returns the OrganizationContact field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetOrganizationContactOk

func (o *CdxV1ConsumerSharedResource) GetOrganizationContactOk() (*string, bool)

GetOrganizationContactOk returns a tuple with the OrganizationContact field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetOrganizationDescription added in v0.0.3

func (o *CdxV1ConsumerSharedResource) GetOrganizationDescription() string

GetOrganizationDescription returns the OrganizationDescription field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetOrganizationDescriptionOk added in v0.0.3

func (o *CdxV1ConsumerSharedResource) GetOrganizationDescriptionOk() (*string, bool)

GetOrganizationDescriptionOk returns a tuple with the OrganizationDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetOrganizationName

func (o *CdxV1ConsumerSharedResource) GetOrganizationName() string

GetOrganizationName returns the OrganizationName field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetOrganizationNameOk

func (o *CdxV1ConsumerSharedResource) GetOrganizationNameOk() (*string, bool)

GetOrganizationNameOk returns a tuple with the OrganizationName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetSchemas

func (o *CdxV1ConsumerSharedResource) GetSchemas() []CdxV1Schema

GetSchemas returns the Schemas field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetSchemasOk

func (o *CdxV1ConsumerSharedResource) GetSchemasOk() (*[]CdxV1Schema, bool)

GetSchemasOk returns a tuple with the Schemas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) GetTags added in v0.0.5

func (o *CdxV1ConsumerSharedResource) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise.

func (*CdxV1ConsumerSharedResource) GetTagsOk added in v0.0.5

func (o *CdxV1ConsumerSharedResource) GetTagsOk() (*[]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResource) HasApiVersion

func (o *CdxV1ConsumerSharedResource) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasCloud added in v0.0.2

func (o *CdxV1ConsumerSharedResource) HasCloud() bool

HasCloud returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasDescription

func (o *CdxV1ConsumerSharedResource) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasDisplayName

func (o *CdxV1ConsumerSharedResource) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasId

func (o *CdxV1ConsumerSharedResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasKind

func (o *CdxV1ConsumerSharedResource) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasLogoUrl

func (o *CdxV1ConsumerSharedResource) HasLogoUrl() bool

HasLogoUrl returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasMetadata

func (o *CdxV1ConsumerSharedResource) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasNetworkConnectionTypes added in v0.0.2

func (o *CdxV1ConsumerSharedResource) HasNetworkConnectionTypes() bool

HasNetworkConnectionTypes returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasOrganizationContact

func (o *CdxV1ConsumerSharedResource) HasOrganizationContact() bool

HasOrganizationContact returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasOrganizationDescription added in v0.0.3

func (o *CdxV1ConsumerSharedResource) HasOrganizationDescription() bool

HasOrganizationDescription returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasOrganizationName

func (o *CdxV1ConsumerSharedResource) HasOrganizationName() bool

HasOrganizationName returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasSchemas

func (o *CdxV1ConsumerSharedResource) HasSchemas() bool

HasSchemas returns a boolean if a field has been set.

func (*CdxV1ConsumerSharedResource) HasTags added in v0.0.5

func (o *CdxV1ConsumerSharedResource) HasTags() bool

HasTags returns a boolean if a field has been set.

func (CdxV1ConsumerSharedResource) MarshalJSON

func (o CdxV1ConsumerSharedResource) MarshalJSON() ([]byte, error)

func (*CdxV1ConsumerSharedResource) Redact

func (o *CdxV1ConsumerSharedResource) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ConsumerSharedResource) SetApiVersion

func (o *CdxV1ConsumerSharedResource) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1ConsumerSharedResource) SetCloud added in v0.0.2

func (o *CdxV1ConsumerSharedResource) SetCloud(v string)

SetCloud gets a reference to the given string and assigns it to the Cloud field.

func (*CdxV1ConsumerSharedResource) SetDescription

func (o *CdxV1ConsumerSharedResource) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CdxV1ConsumerSharedResource) SetDisplayName

func (o *CdxV1ConsumerSharedResource) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*CdxV1ConsumerSharedResource) SetId

func (o *CdxV1ConsumerSharedResource) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CdxV1ConsumerSharedResource) SetKind

func (o *CdxV1ConsumerSharedResource) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1ConsumerSharedResource) SetLogoUrl

func (o *CdxV1ConsumerSharedResource) SetLogoUrl(v string)

SetLogoUrl gets a reference to the given string and assigns it to the LogoUrl field.

func (*CdxV1ConsumerSharedResource) SetMetadata

func (o *CdxV1ConsumerSharedResource) SetMetadata(v ObjectMeta)

SetMetadata gets a reference to the given ObjectMeta and assigns it to the Metadata field.

func (*CdxV1ConsumerSharedResource) SetNetworkConnectionTypes added in v0.0.2

func (o *CdxV1ConsumerSharedResource) SetNetworkConnectionTypes(v CdxV1ConnectionTypes)

SetNetworkConnectionTypes gets a reference to the given CdxV1ConnectionTypes and assigns it to the NetworkConnectionTypes field.

func (*CdxV1ConsumerSharedResource) SetOrganizationContact

func (o *CdxV1ConsumerSharedResource) SetOrganizationContact(v string)

SetOrganizationContact gets a reference to the given string and assigns it to the OrganizationContact field.

func (*CdxV1ConsumerSharedResource) SetOrganizationDescription added in v0.0.3

func (o *CdxV1ConsumerSharedResource) SetOrganizationDescription(v string)

SetOrganizationDescription gets a reference to the given string and assigns it to the OrganizationDescription field.

func (*CdxV1ConsumerSharedResource) SetOrganizationName

func (o *CdxV1ConsumerSharedResource) SetOrganizationName(v string)

SetOrganizationName gets a reference to the given string and assigns it to the OrganizationName field.

func (*CdxV1ConsumerSharedResource) SetSchemas

func (o *CdxV1ConsumerSharedResource) SetSchemas(v []CdxV1Schema)

SetSchemas gets a reference to the given []CdxV1Schema and assigns it to the Schemas field.

func (*CdxV1ConsumerSharedResource) SetTags added in v0.0.5

func (o *CdxV1ConsumerSharedResource) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

type CdxV1ConsumerSharedResourceList

type CdxV1ConsumerSharedResourceList struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion string `json:"api_version"`
	// Kind defines the object this REST resource represents.
	Kind     string   `json:"kind"`
	Metadata ListMeta `json:"metadata"`
	// A data property that contains an array of resource items. Each entry in the array is a separate resource.
	Data []CdxV1ConsumerSharedResource `json:"data"`
}

CdxV1ConsumerSharedResourceList Resources accessible by the consumer ## The Consumer Shared Resources Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.ConsumerSharedResource\" />

func NewCdxV1ConsumerSharedResourceList

func NewCdxV1ConsumerSharedResourceList(apiVersion string, kind string, metadata ListMeta, data []CdxV1ConsumerSharedResource) *CdxV1ConsumerSharedResourceList

NewCdxV1ConsumerSharedResourceList instantiates a new CdxV1ConsumerSharedResourceList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ConsumerSharedResourceListWithDefaults

func NewCdxV1ConsumerSharedResourceListWithDefaults() *CdxV1ConsumerSharedResourceList

NewCdxV1ConsumerSharedResourceListWithDefaults instantiates a new CdxV1ConsumerSharedResourceList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ConsumerSharedResourceList) GetApiVersion

func (o *CdxV1ConsumerSharedResourceList) GetApiVersion() string

GetApiVersion returns the ApiVersion field value

func (*CdxV1ConsumerSharedResourceList) GetApiVersionOk

func (o *CdxV1ConsumerSharedResourceList) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResourceList) GetData

GetData returns the Data field value

func (*CdxV1ConsumerSharedResourceList) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResourceList) GetKind

GetKind returns the Kind field value

func (*CdxV1ConsumerSharedResourceList) GetKindOk

func (o *CdxV1ConsumerSharedResourceList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*CdxV1ConsumerSharedResourceList) GetMetadata

func (o *CdxV1ConsumerSharedResourceList) GetMetadata() ListMeta

GetMetadata returns the Metadata field value

func (*CdxV1ConsumerSharedResourceList) GetMetadataOk

func (o *CdxV1ConsumerSharedResourceList) GetMetadataOk() (*ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (CdxV1ConsumerSharedResourceList) MarshalJSON

func (o CdxV1ConsumerSharedResourceList) MarshalJSON() ([]byte, error)

func (*CdxV1ConsumerSharedResourceList) Redact

func (o *CdxV1ConsumerSharedResourceList) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ConsumerSharedResourceList) SetApiVersion

func (o *CdxV1ConsumerSharedResourceList) SetApiVersion(v string)

SetApiVersion sets field value

func (*CdxV1ConsumerSharedResourceList) SetData

SetData sets field value

func (*CdxV1ConsumerSharedResourceList) SetKind

SetKind sets field value

func (*CdxV1ConsumerSharedResourceList) SetMetadata

func (o *CdxV1ConsumerSharedResourceList) SetMetadata(v ListMeta)

SetMetadata sets field value

type CdxV1CreateProviderShareRequest added in v0.0.3

type CdxV1CreateProviderShareRequest struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// ID is the \"natural identifier\" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted (\"time\"); however, it may collide with IDs for other object `kinds` or objects of the same `kind` within a different scope/namespace (\"space\").
	Id       *string     `json:"id,omitempty"`
	Metadata *ObjectMeta `json:"metadata,omitempty"`
	// Method by which the invite will be delivered
	DeliveryMethod *string `json:"delivery_method,omitempty"`
	// Restrictions on the consumer that can redeem this token
	ConsumerRestriction *CdxV1CreateProviderShareRequestConsumerRestrictionOneOf `json:"consumer_restriction,omitempty"`
	// List of resource crns to be shared
	Resources *[]string `json:"resources,omitempty"`
}

CdxV1CreateProviderShareRequest Create share request

func NewCdxV1CreateProviderShareRequest added in v0.0.3

func NewCdxV1CreateProviderShareRequest() *CdxV1CreateProviderShareRequest

NewCdxV1CreateProviderShareRequest instantiates a new CdxV1CreateProviderShareRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1CreateProviderShareRequestWithDefaults added in v0.0.3

func NewCdxV1CreateProviderShareRequestWithDefaults() *CdxV1CreateProviderShareRequest

NewCdxV1CreateProviderShareRequestWithDefaults instantiates a new CdxV1CreateProviderShareRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1CreateProviderShareRequest) GetApiVersion added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1CreateProviderShareRequest) GetApiVersionOk added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1CreateProviderShareRequest) GetConsumerRestriction added in v0.0.3

GetConsumerRestriction returns the ConsumerRestriction field value if set, zero value otherwise.

func (*CdxV1CreateProviderShareRequest) GetConsumerRestrictionOk added in v0.0.3

GetConsumerRestrictionOk returns a tuple with the ConsumerRestriction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1CreateProviderShareRequest) GetDeliveryMethod added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) GetDeliveryMethod() string

GetDeliveryMethod returns the DeliveryMethod field value if set, zero value otherwise.

func (*CdxV1CreateProviderShareRequest) GetDeliveryMethodOk added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) GetDeliveryMethodOk() (*string, bool)

GetDeliveryMethodOk returns a tuple with the DeliveryMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1CreateProviderShareRequest) GetId added in v0.0.3

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1CreateProviderShareRequest) GetIdOk added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1CreateProviderShareRequest) GetKind added in v0.0.3

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1CreateProviderShareRequest) GetKindOk added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1CreateProviderShareRequest) GetMetadata added in v0.0.3

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CdxV1CreateProviderShareRequest) GetMetadataOk added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) GetMetadataOk() (*ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1CreateProviderShareRequest) GetResources added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) GetResources() []string

GetResources returns the Resources field value if set, zero value otherwise.

func (*CdxV1CreateProviderShareRequest) GetResourcesOk added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) GetResourcesOk() (*[]string, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1CreateProviderShareRequest) HasApiVersion added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1CreateProviderShareRequest) HasConsumerRestriction added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) HasConsumerRestriction() bool

HasConsumerRestriction returns a boolean if a field has been set.

func (*CdxV1CreateProviderShareRequest) HasDeliveryMethod added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) HasDeliveryMethod() bool

HasDeliveryMethod returns a boolean if a field has been set.

func (*CdxV1CreateProviderShareRequest) HasId added in v0.0.3

HasId returns a boolean if a field has been set.

func (*CdxV1CreateProviderShareRequest) HasKind added in v0.0.3

HasKind returns a boolean if a field has been set.

func (*CdxV1CreateProviderShareRequest) HasMetadata added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CdxV1CreateProviderShareRequest) HasResources added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) HasResources() bool

HasResources returns a boolean if a field has been set.

func (CdxV1CreateProviderShareRequest) MarshalJSON added in v0.0.3

func (o CdxV1CreateProviderShareRequest) MarshalJSON() ([]byte, error)

func (*CdxV1CreateProviderShareRequest) Redact added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1CreateProviderShareRequest) SetApiVersion added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1CreateProviderShareRequest) SetConsumerRestriction added in v0.0.3

SetConsumerRestriction gets a reference to the given CdxV1CreateProviderShareRequestConsumerRestrictionOneOf and assigns it to the ConsumerRestriction field.

func (*CdxV1CreateProviderShareRequest) SetDeliveryMethod added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) SetDeliveryMethod(v string)

SetDeliveryMethod gets a reference to the given string and assigns it to the DeliveryMethod field.

func (*CdxV1CreateProviderShareRequest) SetId added in v0.0.3

SetId gets a reference to the given string and assigns it to the Id field.

func (*CdxV1CreateProviderShareRequest) SetKind added in v0.0.3

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1CreateProviderShareRequest) SetMetadata added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) SetMetadata(v ObjectMeta)

SetMetadata gets a reference to the given ObjectMeta and assigns it to the Metadata field.

func (*CdxV1CreateProviderShareRequest) SetResources added in v0.0.3

func (o *CdxV1CreateProviderShareRequest) SetResources(v []string)

SetResources gets a reference to the given []string and assigns it to the Resources field.

type CdxV1CreateProviderShareRequestConsumerRestrictionOneOf added in v0.0.3

type CdxV1CreateProviderShareRequestConsumerRestrictionOneOf struct {
	CdxV1EmailConsumerRestriction *CdxV1EmailConsumerRestriction
}

CdxV1CreateProviderShareRequestConsumerRestrictionOneOf - struct for CdxV1CreateProviderShareRequestConsumerRestrictionOneOf

func CdxV1EmailConsumerRestrictionAsCdxV1CreateProviderShareRequestConsumerRestrictionOneOf added in v0.0.3

func CdxV1EmailConsumerRestrictionAsCdxV1CreateProviderShareRequestConsumerRestrictionOneOf(v *CdxV1EmailConsumerRestriction) CdxV1CreateProviderShareRequestConsumerRestrictionOneOf

CdxV1EmailConsumerRestrictionAsCdxV1CreateProviderShareRequestConsumerRestrictionOneOf is a convenience function that returns CdxV1EmailConsumerRestriction wrapped in CdxV1CreateProviderShareRequestConsumerRestrictionOneOf

func (*CdxV1CreateProviderShareRequestConsumerRestrictionOneOf) GetActualInstance added in v0.0.3

func (obj *CdxV1CreateProviderShareRequestConsumerRestrictionOneOf) GetActualInstance() interface{}

Get the actual instance

func (CdxV1CreateProviderShareRequestConsumerRestrictionOneOf) MarshalJSON added in v0.0.3

Marshal data from the first non-nil pointers in the struct to JSON

func (*CdxV1CreateProviderShareRequestConsumerRestrictionOneOf) UnmarshalJSON added in v0.0.3

Unmarshal JSON data into one of the pointers in the struct

type CdxV1EmailConsumerRestriction

type CdxV1EmailConsumerRestriction struct {
	// The resource kind
	Kind string `json:"kind"`
	// Email based matching for the consumers
	Email string `json:"email"`
}

CdxV1EmailConsumerRestriction Consumer restrictions limits by authenticated user's email

func NewCdxV1EmailConsumerRestriction

func NewCdxV1EmailConsumerRestriction(kind string, email string) *CdxV1EmailConsumerRestriction

NewCdxV1EmailConsumerRestriction instantiates a new CdxV1EmailConsumerRestriction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1EmailConsumerRestrictionWithDefaults

func NewCdxV1EmailConsumerRestrictionWithDefaults() *CdxV1EmailConsumerRestriction

NewCdxV1EmailConsumerRestrictionWithDefaults instantiates a new CdxV1EmailConsumerRestriction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1EmailConsumerRestriction) GetEmail

func (o *CdxV1EmailConsumerRestriction) GetEmail() string

GetEmail returns the Email field value

func (*CdxV1EmailConsumerRestriction) GetEmailOk

func (o *CdxV1EmailConsumerRestriction) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*CdxV1EmailConsumerRestriction) GetKind

GetKind returns the Kind field value

func (*CdxV1EmailConsumerRestriction) GetKindOk

func (o *CdxV1EmailConsumerRestriction) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (CdxV1EmailConsumerRestriction) MarshalJSON

func (o CdxV1EmailConsumerRestriction) MarshalJSON() ([]byte, error)

func (*CdxV1EmailConsumerRestriction) Redact

func (o *CdxV1EmailConsumerRestriction) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1EmailConsumerRestriction) SetEmail

func (o *CdxV1EmailConsumerRestriction) SetEmail(v string)

SetEmail sets field value

func (*CdxV1EmailConsumerRestriction) SetKind

func (o *CdxV1EmailConsumerRestriction) SetKind(v string)

SetKind sets field value

type CdxV1GcpNetwork added in v0.0.3

type CdxV1GcpNetwork struct {
	// Network kind type.
	Kind string `json:"kind"`
	// The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect Service Attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7)
	PrivateServiceConnectServiceAttachments *map[string]string `json:"private_service_connect_service_attachments,omitempty"`
}

CdxV1GcpNetwork The GCP network details.

func NewCdxV1GcpNetwork added in v0.0.3

func NewCdxV1GcpNetwork(kind string) *CdxV1GcpNetwork

NewCdxV1GcpNetwork instantiates a new CdxV1GcpNetwork object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1GcpNetworkWithDefaults added in v0.0.3

func NewCdxV1GcpNetworkWithDefaults() *CdxV1GcpNetwork

NewCdxV1GcpNetworkWithDefaults instantiates a new CdxV1GcpNetwork object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1GcpNetwork) GetKind added in v0.0.3

func (o *CdxV1GcpNetwork) GetKind() string

GetKind returns the Kind field value

func (*CdxV1GcpNetwork) GetKindOk added in v0.0.3

func (o *CdxV1GcpNetwork) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*CdxV1GcpNetwork) GetPrivateServiceConnectServiceAttachments added in v0.0.3

func (o *CdxV1GcpNetwork) GetPrivateServiceConnectServiceAttachments() map[string]string

GetPrivateServiceConnectServiceAttachments returns the PrivateServiceConnectServiceAttachments field value if set, zero value otherwise.

func (*CdxV1GcpNetwork) GetPrivateServiceConnectServiceAttachmentsOk added in v0.0.3

func (o *CdxV1GcpNetwork) GetPrivateServiceConnectServiceAttachmentsOk() (*map[string]string, bool)

GetPrivateServiceConnectServiceAttachmentsOk returns a tuple with the PrivateServiceConnectServiceAttachments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1GcpNetwork) HasPrivateServiceConnectServiceAttachments added in v0.0.3

func (o *CdxV1GcpNetwork) HasPrivateServiceConnectServiceAttachments() bool

HasPrivateServiceConnectServiceAttachments returns a boolean if a field has been set.

func (CdxV1GcpNetwork) MarshalJSON added in v0.0.3

func (o CdxV1GcpNetwork) MarshalJSON() ([]byte, error)

func (*CdxV1GcpNetwork) Redact added in v0.0.3

func (o *CdxV1GcpNetwork) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1GcpNetwork) SetKind added in v0.0.3

func (o *CdxV1GcpNetwork) SetKind(v string)

SetKind sets field value

func (*CdxV1GcpNetwork) SetPrivateServiceConnectServiceAttachments added in v0.0.3

func (o *CdxV1GcpNetwork) SetPrivateServiceConnectServiceAttachments(v map[string]string)

SetPrivateServiceConnectServiceAttachments gets a reference to the given map[string]string and assigns it to the PrivateServiceConnectServiceAttachments field.

type CdxV1Network added in v0.0.2

type CdxV1Network struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// ID is the \"natural identifier\" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted (\"time\"); however, it may collide with IDs for other object `kinds` or objects of the same `kind` within a different scope/namespace (\"space\").
	Id       *string     `json:"id,omitempty"`
	Metadata *ObjectMeta `json:"metadata,omitempty"`
	// The kafka cluster bootstrap url
	KafkaBootstrapUrl *string `json:"kafka_bootstrap_url,omitempty"`
	// The 3 availability zones for this network. They can optionally be specified for AWS networks used with PrivateLink. Otherwise, they are automatically chosen by Confluent Cloud.  On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html)  (e.g. use1-az3)  On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones)  (e.g. us-central1-c).  On Azure, zones are Confluent-chosen names (e.g. 1, 2, 3) since Azure does not  have universal zone identifiers.
	Zones *[]string `json:"zones,omitempty"`
	// The root DNS domain for the network if applicable.
	DnsDomain *string `json:"dns_domain,omitempty"`
	// The DNS subdomain for each zone. Present on networks that support PrivateLink. Keys are zones and values are DNS domains.
	ZonalSubdomains *map[string]string `json:"zonal_subdomains,omitempty"`
	// The cloud-specific network details. These will be populated when the network reaches the READY state.
	Cloud *CdxV1NetworkCloudOneOf `json:"cloud,omitempty"`
}

CdxV1Network The shared cluster's network configurations for consumer to setup private link

func NewCdxV1Network added in v0.0.2

func NewCdxV1Network() *CdxV1Network

NewCdxV1Network instantiates a new CdxV1Network object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1NetworkWithDefaults added in v0.0.2

func NewCdxV1NetworkWithDefaults() *CdxV1Network

NewCdxV1NetworkWithDefaults instantiates a new CdxV1Network object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1Network) GetApiVersion added in v0.0.2

func (o *CdxV1Network) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1Network) GetApiVersionOk added in v0.0.2

func (o *CdxV1Network) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Network) GetCloud added in v0.0.2

func (o *CdxV1Network) GetCloud() CdxV1NetworkCloudOneOf

GetCloud returns the Cloud field value if set, zero value otherwise.

func (*CdxV1Network) GetCloudOk added in v0.0.2

func (o *CdxV1Network) GetCloudOk() (*CdxV1NetworkCloudOneOf, bool)

GetCloudOk returns a tuple with the Cloud field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Network) GetDnsDomain added in v0.0.2

func (o *CdxV1Network) GetDnsDomain() string

GetDnsDomain returns the DnsDomain field value if set, zero value otherwise.

func (*CdxV1Network) GetDnsDomainOk added in v0.0.2

func (o *CdxV1Network) GetDnsDomainOk() (*string, bool)

GetDnsDomainOk returns a tuple with the DnsDomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Network) GetId added in v0.0.2

func (o *CdxV1Network) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1Network) GetIdOk added in v0.0.2

func (o *CdxV1Network) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Network) GetKafkaBootstrapUrl added in v0.0.3

func (o *CdxV1Network) GetKafkaBootstrapUrl() string

GetKafkaBootstrapUrl returns the KafkaBootstrapUrl field value if set, zero value otherwise.

func (*CdxV1Network) GetKafkaBootstrapUrlOk added in v0.0.3

func (o *CdxV1Network) GetKafkaBootstrapUrlOk() (*string, bool)

GetKafkaBootstrapUrlOk returns a tuple with the KafkaBootstrapUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Network) GetKind added in v0.0.2

func (o *CdxV1Network) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1Network) GetKindOk added in v0.0.2

func (o *CdxV1Network) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Network) GetMetadata added in v0.0.2

func (o *CdxV1Network) GetMetadata() ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CdxV1Network) GetMetadataOk added in v0.0.2

func (o *CdxV1Network) GetMetadataOk() (*ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Network) GetZonalSubdomains added in v0.0.2

func (o *CdxV1Network) GetZonalSubdomains() map[string]string

GetZonalSubdomains returns the ZonalSubdomains field value if set, zero value otherwise.

func (*CdxV1Network) GetZonalSubdomainsOk added in v0.0.2

func (o *CdxV1Network) GetZonalSubdomainsOk() (*map[string]string, bool)

GetZonalSubdomainsOk returns a tuple with the ZonalSubdomains field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Network) GetZones added in v0.0.3

func (o *CdxV1Network) GetZones() []string

GetZones returns the Zones field value if set, zero value otherwise.

func (*CdxV1Network) GetZonesOk added in v0.0.3

func (o *CdxV1Network) GetZonesOk() (*[]string, bool)

GetZonesOk returns a tuple with the Zones field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Network) HasApiVersion added in v0.0.2

func (o *CdxV1Network) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1Network) HasCloud added in v0.0.2

func (o *CdxV1Network) HasCloud() bool

HasCloud returns a boolean if a field has been set.

func (*CdxV1Network) HasDnsDomain added in v0.0.2

func (o *CdxV1Network) HasDnsDomain() bool

HasDnsDomain returns a boolean if a field has been set.

func (*CdxV1Network) HasId added in v0.0.2

func (o *CdxV1Network) HasId() bool

HasId returns a boolean if a field has been set.

func (*CdxV1Network) HasKafkaBootstrapUrl added in v0.0.3

func (o *CdxV1Network) HasKafkaBootstrapUrl() bool

HasKafkaBootstrapUrl returns a boolean if a field has been set.

func (*CdxV1Network) HasKind added in v0.0.2

func (o *CdxV1Network) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CdxV1Network) HasMetadata added in v0.0.2

func (o *CdxV1Network) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CdxV1Network) HasZonalSubdomains added in v0.0.2

func (o *CdxV1Network) HasZonalSubdomains() bool

HasZonalSubdomains returns a boolean if a field has been set.

func (*CdxV1Network) HasZones added in v0.0.3

func (o *CdxV1Network) HasZones() bool

HasZones returns a boolean if a field has been set.

func (CdxV1Network) MarshalJSON added in v0.0.2

func (o CdxV1Network) MarshalJSON() ([]byte, error)

func (*CdxV1Network) Redact added in v0.0.2

func (o *CdxV1Network) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1Network) SetApiVersion added in v0.0.2

func (o *CdxV1Network) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1Network) SetCloud added in v0.0.2

func (o *CdxV1Network) SetCloud(v CdxV1NetworkCloudOneOf)

SetCloud gets a reference to the given CdxV1NetworkCloudOneOf and assigns it to the Cloud field.

func (*CdxV1Network) SetDnsDomain added in v0.0.2

func (o *CdxV1Network) SetDnsDomain(v string)

SetDnsDomain gets a reference to the given string and assigns it to the DnsDomain field.

func (*CdxV1Network) SetId added in v0.0.2

func (o *CdxV1Network) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CdxV1Network) SetKafkaBootstrapUrl added in v0.0.3

func (o *CdxV1Network) SetKafkaBootstrapUrl(v string)

SetKafkaBootstrapUrl gets a reference to the given string and assigns it to the KafkaBootstrapUrl field.

func (*CdxV1Network) SetKind added in v0.0.2

func (o *CdxV1Network) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1Network) SetMetadata added in v0.0.2

func (o *CdxV1Network) SetMetadata(v ObjectMeta)

SetMetadata gets a reference to the given ObjectMeta and assigns it to the Metadata field.

func (*CdxV1Network) SetZonalSubdomains added in v0.0.2

func (o *CdxV1Network) SetZonalSubdomains(v map[string]string)

SetZonalSubdomains gets a reference to the given map[string]string and assigns it to the ZonalSubdomains field.

func (*CdxV1Network) SetZones added in v0.0.3

func (o *CdxV1Network) SetZones(v []string)

SetZones gets a reference to the given []string and assigns it to the Zones field.

type CdxV1NetworkCloudOneOf added in v0.0.2

type CdxV1NetworkCloudOneOf struct {
	CdxV1AwsNetwork   *CdxV1AwsNetwork
	CdxV1AzureNetwork *CdxV1AzureNetwork
	CdxV1GcpNetwork   *CdxV1GcpNetwork
}

CdxV1NetworkCloudOneOf - struct for CdxV1NetworkCloudOneOf

func CdxV1AwsNetworkAsCdxV1NetworkCloudOneOf added in v0.0.2

func CdxV1AwsNetworkAsCdxV1NetworkCloudOneOf(v *CdxV1AwsNetwork) CdxV1NetworkCloudOneOf

CdxV1AwsNetworkAsCdxV1NetworkCloudOneOf is a convenience function that returns CdxV1AwsNetwork wrapped in CdxV1NetworkCloudOneOf

func CdxV1AzureNetworkAsCdxV1NetworkCloudOneOf added in v0.0.2

func CdxV1AzureNetworkAsCdxV1NetworkCloudOneOf(v *CdxV1AzureNetwork) CdxV1NetworkCloudOneOf

CdxV1AzureNetworkAsCdxV1NetworkCloudOneOf is a convenience function that returns CdxV1AzureNetwork wrapped in CdxV1NetworkCloudOneOf

func CdxV1GcpNetworkAsCdxV1NetworkCloudOneOf added in v0.0.3

func CdxV1GcpNetworkAsCdxV1NetworkCloudOneOf(v *CdxV1GcpNetwork) CdxV1NetworkCloudOneOf

CdxV1GcpNetworkAsCdxV1NetworkCloudOneOf is a convenience function that returns CdxV1GcpNetwork wrapped in CdxV1NetworkCloudOneOf

func (*CdxV1NetworkCloudOneOf) GetActualInstance added in v0.0.2

func (obj *CdxV1NetworkCloudOneOf) GetActualInstance() interface{}

Get the actual instance

func (CdxV1NetworkCloudOneOf) MarshalJSON added in v0.0.2

func (src CdxV1NetworkCloudOneOf) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CdxV1NetworkCloudOneOf) UnmarshalJSON added in v0.0.2

func (dst *CdxV1NetworkCloudOneOf) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type CdxV1OptIn added in v0.0.3

type CdxV1OptIn struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// Enable stream sharing for the organization
	StreamShareEnabled *bool `json:"stream_share_enabled,omitempty"`
}

CdxV1OptIn Stream sharing opt in options ## The Opt Ins Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.OptIn\" />

func NewCdxV1OptIn added in v0.0.3

func NewCdxV1OptIn() *CdxV1OptIn

NewCdxV1OptIn instantiates a new CdxV1OptIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1OptInWithDefaults added in v0.0.3

func NewCdxV1OptInWithDefaults() *CdxV1OptIn

NewCdxV1OptInWithDefaults instantiates a new CdxV1OptIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1OptIn) GetApiVersion added in v0.0.3

func (o *CdxV1OptIn) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1OptIn) GetApiVersionOk added in v0.0.3

func (o *CdxV1OptIn) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1OptIn) GetKind added in v0.0.3

func (o *CdxV1OptIn) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1OptIn) GetKindOk added in v0.0.3

func (o *CdxV1OptIn) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1OptIn) GetStreamShareEnabled added in v0.0.3

func (o *CdxV1OptIn) GetStreamShareEnabled() bool

GetStreamShareEnabled returns the StreamShareEnabled field value if set, zero value otherwise.

func (*CdxV1OptIn) GetStreamShareEnabledOk added in v0.0.3

func (o *CdxV1OptIn) GetStreamShareEnabledOk() (*bool, bool)

GetStreamShareEnabledOk returns a tuple with the StreamShareEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1OptIn) HasApiVersion added in v0.0.3

func (o *CdxV1OptIn) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1OptIn) HasKind added in v0.0.3

func (o *CdxV1OptIn) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CdxV1OptIn) HasStreamShareEnabled added in v0.0.3

func (o *CdxV1OptIn) HasStreamShareEnabled() bool

HasStreamShareEnabled returns a boolean if a field has been set.

func (CdxV1OptIn) MarshalJSON added in v0.0.3

func (o CdxV1OptIn) MarshalJSON() ([]byte, error)

func (*CdxV1OptIn) Redact added in v0.0.3

func (o *CdxV1OptIn) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1OptIn) SetApiVersion added in v0.0.3

func (o *CdxV1OptIn) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1OptIn) SetKind added in v0.0.3

func (o *CdxV1OptIn) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1OptIn) SetStreamShareEnabled added in v0.0.3

func (o *CdxV1OptIn) SetStreamShareEnabled(v bool)

SetStreamShareEnabled gets a reference to the given bool and assigns it to the StreamShareEnabled field.

type CdxV1ProviderShare

type CdxV1ProviderShare struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// ID is the \"natural identifier\" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted (\"time\"); however, it may collide with IDs for other object `kinds` or objects of the same `kind` within a different scope/namespace (\"space\").
	Id       *string     `json:"id,omitempty"`
	Metadata *ObjectMeta `json:"metadata,omitempty"`
	// Name of the consumer
	ConsumerUserName *string `json:"consumer_user_name,omitempty"`
	// Consumer organization name
	ConsumerOrganizationName *string `json:"consumer_organization_name,omitempty"`
	// Name or email of the provider user. Deprecated
	ProviderUserName *string `json:"provider_user_name,omitempty"`
	// Method by which the invite will be delivered
	DeliveryMethod *string `json:"delivery_method,omitempty"`
	// Restrictions on the consumer that can redeem this token
	ConsumerRestriction *CdxV1ProviderShareConsumerRestrictionOneOf `json:"consumer_restriction,omitempty"`
	// The date and time at which consumer was invited
	InvitedAt *time.Time `json:"invited_at,omitempty"`
	// The date and time at which the invitation will expire. Only for invited shares
	InviteExpiresAt *time.Time `json:"invite_expires_at,omitempty"`
	// The date and time at which the invite was redeemed
	RedeemedAt *time.Time `json:"redeemed_at,omitempty"`
	// The provider user/inviter
	ProviderUser *GlobalObjectReference `json:"provider_user,omitempty"`
	// The service account associated with this object.
	ServiceAccount *GlobalObjectReference `json:"service_account,omitempty"`
	// The cloud cluster to which this belongs.
	CloudCluster *EnvScopedObjectReference `json:"cloud_cluster,omitempty"`
	Status       *CdxV1ProviderShareStatus `json:"status,omitempty"`
}

CdxV1ProviderShare Resources shared by the provider ## The Provider Shared Resources Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.ProviderSharedResource\" />

func NewCdxV1ProviderShare

func NewCdxV1ProviderShare() *CdxV1ProviderShare

NewCdxV1ProviderShare instantiates a new CdxV1ProviderShare object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ProviderShareWithDefaults

func NewCdxV1ProviderShareWithDefaults() *CdxV1ProviderShare

NewCdxV1ProviderShareWithDefaults instantiates a new CdxV1ProviderShare object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ProviderShare) GetApiVersion

func (o *CdxV1ProviderShare) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetApiVersionOk

func (o *CdxV1ProviderShare) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetCloudCluster added in v0.0.3

func (o *CdxV1ProviderShare) GetCloudCluster() EnvScopedObjectReference

GetCloudCluster returns the CloudCluster field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetCloudClusterOk added in v0.0.3

func (o *CdxV1ProviderShare) GetCloudClusterOk() (*EnvScopedObjectReference, bool)

GetCloudClusterOk returns a tuple with the CloudCluster field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetConsumerOrganizationName

func (o *CdxV1ProviderShare) GetConsumerOrganizationName() string

GetConsumerOrganizationName returns the ConsumerOrganizationName field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetConsumerOrganizationNameOk

func (o *CdxV1ProviderShare) GetConsumerOrganizationNameOk() (*string, bool)

GetConsumerOrganizationNameOk returns a tuple with the ConsumerOrganizationName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetConsumerRestriction added in v0.0.3

GetConsumerRestriction returns the ConsumerRestriction field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetConsumerRestrictionOk added in v0.0.3

func (o *CdxV1ProviderShare) GetConsumerRestrictionOk() (*CdxV1ProviderShareConsumerRestrictionOneOf, bool)

GetConsumerRestrictionOk returns a tuple with the ConsumerRestriction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetConsumerUserName

func (o *CdxV1ProviderShare) GetConsumerUserName() string

GetConsumerUserName returns the ConsumerUserName field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetConsumerUserNameOk

func (o *CdxV1ProviderShare) GetConsumerUserNameOk() (*string, bool)

GetConsumerUserNameOk returns a tuple with the ConsumerUserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetDeliveryMethod

func (o *CdxV1ProviderShare) GetDeliveryMethod() string

GetDeliveryMethod returns the DeliveryMethod field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetDeliveryMethodOk

func (o *CdxV1ProviderShare) GetDeliveryMethodOk() (*string, bool)

GetDeliveryMethodOk returns a tuple with the DeliveryMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetId

func (o *CdxV1ProviderShare) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetIdOk

func (o *CdxV1ProviderShare) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetInviteExpiresAt

func (o *CdxV1ProviderShare) GetInviteExpiresAt() time.Time

GetInviteExpiresAt returns the InviteExpiresAt field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetInviteExpiresAtOk

func (o *CdxV1ProviderShare) GetInviteExpiresAtOk() (*time.Time, bool)

GetInviteExpiresAtOk returns a tuple with the InviteExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetInvitedAt

func (o *CdxV1ProviderShare) GetInvitedAt() time.Time

GetInvitedAt returns the InvitedAt field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetInvitedAtOk

func (o *CdxV1ProviderShare) GetInvitedAtOk() (*time.Time, bool)

GetInvitedAtOk returns a tuple with the InvitedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetKind

func (o *CdxV1ProviderShare) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetKindOk

func (o *CdxV1ProviderShare) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetMetadata

func (o *CdxV1ProviderShare) GetMetadata() ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetMetadataOk

func (o *CdxV1ProviderShare) GetMetadataOk() (*ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetProviderUser added in v0.0.3

func (o *CdxV1ProviderShare) GetProviderUser() GlobalObjectReference

GetProviderUser returns the ProviderUser field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetProviderUserName

func (o *CdxV1ProviderShare) GetProviderUserName() string

GetProviderUserName returns the ProviderUserName field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetProviderUserNameOk

func (o *CdxV1ProviderShare) GetProviderUserNameOk() (*string, bool)

GetProviderUserNameOk returns a tuple with the ProviderUserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetProviderUserOk added in v0.0.3

func (o *CdxV1ProviderShare) GetProviderUserOk() (*GlobalObjectReference, bool)

GetProviderUserOk returns a tuple with the ProviderUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetRedeemedAt

func (o *CdxV1ProviderShare) GetRedeemedAt() time.Time

GetRedeemedAt returns the RedeemedAt field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetRedeemedAtOk

func (o *CdxV1ProviderShare) GetRedeemedAtOk() (*time.Time, bool)

GetRedeemedAtOk returns a tuple with the RedeemedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetServiceAccount

func (o *CdxV1ProviderShare) GetServiceAccount() GlobalObjectReference

GetServiceAccount returns the ServiceAccount field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetServiceAccountOk

func (o *CdxV1ProviderShare) GetServiceAccountOk() (*GlobalObjectReference, bool)

GetServiceAccountOk returns a tuple with the ServiceAccount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*CdxV1ProviderShare) GetStatusOk

func (o *CdxV1ProviderShare) GetStatusOk() (*CdxV1ProviderShareStatus, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderShare) HasApiVersion

func (o *CdxV1ProviderShare) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasCloudCluster added in v0.0.3

func (o *CdxV1ProviderShare) HasCloudCluster() bool

HasCloudCluster returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasConsumerOrganizationName

func (o *CdxV1ProviderShare) HasConsumerOrganizationName() bool

HasConsumerOrganizationName returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasConsumerRestriction added in v0.0.3

func (o *CdxV1ProviderShare) HasConsumerRestriction() bool

HasConsumerRestriction returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasConsumerUserName

func (o *CdxV1ProviderShare) HasConsumerUserName() bool

HasConsumerUserName returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasDeliveryMethod

func (o *CdxV1ProviderShare) HasDeliveryMethod() bool

HasDeliveryMethod returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasId

func (o *CdxV1ProviderShare) HasId() bool

HasId returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasInviteExpiresAt

func (o *CdxV1ProviderShare) HasInviteExpiresAt() bool

HasInviteExpiresAt returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasInvitedAt

func (o *CdxV1ProviderShare) HasInvitedAt() bool

HasInvitedAt returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasKind

func (o *CdxV1ProviderShare) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasMetadata

func (o *CdxV1ProviderShare) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasProviderUser added in v0.0.3

func (o *CdxV1ProviderShare) HasProviderUser() bool

HasProviderUser returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasProviderUserName

func (o *CdxV1ProviderShare) HasProviderUserName() bool

HasProviderUserName returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasRedeemedAt

func (o *CdxV1ProviderShare) HasRedeemedAt() bool

HasRedeemedAt returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasServiceAccount

func (o *CdxV1ProviderShare) HasServiceAccount() bool

HasServiceAccount returns a boolean if a field has been set.

func (*CdxV1ProviderShare) HasStatus

func (o *CdxV1ProviderShare) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CdxV1ProviderShare) MarshalJSON

func (o CdxV1ProviderShare) MarshalJSON() ([]byte, error)

func (*CdxV1ProviderShare) Redact

func (o *CdxV1ProviderShare) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ProviderShare) SetApiVersion

func (o *CdxV1ProviderShare) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1ProviderShare) SetCloudCluster added in v0.0.3

func (o *CdxV1ProviderShare) SetCloudCluster(v EnvScopedObjectReference)

SetCloudCluster gets a reference to the given EnvScopedObjectReference and assigns it to the CloudCluster field.

func (*CdxV1ProviderShare) SetConsumerOrganizationName

func (o *CdxV1ProviderShare) SetConsumerOrganizationName(v string)

SetConsumerOrganizationName gets a reference to the given string and assigns it to the ConsumerOrganizationName field.

func (*CdxV1ProviderShare) SetConsumerRestriction added in v0.0.3

SetConsumerRestriction gets a reference to the given CdxV1ProviderShareConsumerRestrictionOneOf and assigns it to the ConsumerRestriction field.

func (*CdxV1ProviderShare) SetConsumerUserName

func (o *CdxV1ProviderShare) SetConsumerUserName(v string)

SetConsumerUserName gets a reference to the given string and assigns it to the ConsumerUserName field.

func (*CdxV1ProviderShare) SetDeliveryMethod

func (o *CdxV1ProviderShare) SetDeliveryMethod(v string)

SetDeliveryMethod gets a reference to the given string and assigns it to the DeliveryMethod field.

func (*CdxV1ProviderShare) SetId

func (o *CdxV1ProviderShare) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CdxV1ProviderShare) SetInviteExpiresAt

func (o *CdxV1ProviderShare) SetInviteExpiresAt(v time.Time)

SetInviteExpiresAt gets a reference to the given time.Time and assigns it to the InviteExpiresAt field.

func (*CdxV1ProviderShare) SetInvitedAt

func (o *CdxV1ProviderShare) SetInvitedAt(v time.Time)

SetInvitedAt gets a reference to the given time.Time and assigns it to the InvitedAt field.

func (*CdxV1ProviderShare) SetKind

func (o *CdxV1ProviderShare) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1ProviderShare) SetMetadata

func (o *CdxV1ProviderShare) SetMetadata(v ObjectMeta)

SetMetadata gets a reference to the given ObjectMeta and assigns it to the Metadata field.

func (*CdxV1ProviderShare) SetProviderUser added in v0.0.3

func (o *CdxV1ProviderShare) SetProviderUser(v GlobalObjectReference)

SetProviderUser gets a reference to the given GlobalObjectReference and assigns it to the ProviderUser field.

func (*CdxV1ProviderShare) SetProviderUserName

func (o *CdxV1ProviderShare) SetProviderUserName(v string)

SetProviderUserName gets a reference to the given string and assigns it to the ProviderUserName field.

func (*CdxV1ProviderShare) SetRedeemedAt

func (o *CdxV1ProviderShare) SetRedeemedAt(v time.Time)

SetRedeemedAt gets a reference to the given time.Time and assigns it to the RedeemedAt field.

func (*CdxV1ProviderShare) SetServiceAccount

func (o *CdxV1ProviderShare) SetServiceAccount(v GlobalObjectReference)

SetServiceAccount gets a reference to the given GlobalObjectReference and assigns it to the ServiceAccount field.

func (*CdxV1ProviderShare) SetStatus

SetStatus gets a reference to the given CdxV1ProviderShareStatus and assigns it to the Status field.

type CdxV1ProviderShareConsumerRestrictionOneOf added in v0.0.3

type CdxV1ProviderShareConsumerRestrictionOneOf struct {
	CdxV1EmailConsumerRestriction *CdxV1EmailConsumerRestriction
}

CdxV1ProviderShareConsumerRestrictionOneOf - struct for CdxV1ProviderShareConsumerRestrictionOneOf

func CdxV1EmailConsumerRestrictionAsCdxV1ProviderShareConsumerRestrictionOneOf added in v0.0.3

func CdxV1EmailConsumerRestrictionAsCdxV1ProviderShareConsumerRestrictionOneOf(v *CdxV1EmailConsumerRestriction) CdxV1ProviderShareConsumerRestrictionOneOf

CdxV1EmailConsumerRestrictionAsCdxV1ProviderShareConsumerRestrictionOneOf is a convenience function that returns CdxV1EmailConsumerRestriction wrapped in CdxV1ProviderShareConsumerRestrictionOneOf

func (*CdxV1ProviderShareConsumerRestrictionOneOf) GetActualInstance added in v0.0.3

func (obj *CdxV1ProviderShareConsumerRestrictionOneOf) GetActualInstance() interface{}

Get the actual instance

func (CdxV1ProviderShareConsumerRestrictionOneOf) MarshalJSON added in v0.0.3

func (src CdxV1ProviderShareConsumerRestrictionOneOf) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CdxV1ProviderShareConsumerRestrictionOneOf) UnmarshalJSON added in v0.0.3

func (dst *CdxV1ProviderShareConsumerRestrictionOneOf) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type CdxV1ProviderShareList

type CdxV1ProviderShareList struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion string `json:"api_version"`
	// Kind defines the object this REST resource represents.
	Kind     string   `json:"kind"`
	Metadata ListMeta `json:"metadata"`
	// A data property that contains an array of resource items. Each entry in the array is a separate resource.
	Data []CdxV1ProviderShare `json:"data"`
}

CdxV1ProviderShareList Resources shared by the provider ## The Provider Shared Resources Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.ProviderSharedResource\" />

func NewCdxV1ProviderShareList

func NewCdxV1ProviderShareList(apiVersion string, kind string, metadata ListMeta, data []CdxV1ProviderShare) *CdxV1ProviderShareList

NewCdxV1ProviderShareList instantiates a new CdxV1ProviderShareList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ProviderShareListWithDefaults

func NewCdxV1ProviderShareListWithDefaults() *CdxV1ProviderShareList

NewCdxV1ProviderShareListWithDefaults instantiates a new CdxV1ProviderShareList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ProviderShareList) GetApiVersion

func (o *CdxV1ProviderShareList) GetApiVersion() string

GetApiVersion returns the ApiVersion field value

func (*CdxV1ProviderShareList) GetApiVersionOk

func (o *CdxV1ProviderShareList) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value and a boolean to check if the value has been set.

func (*CdxV1ProviderShareList) GetData

GetData returns the Data field value

func (*CdxV1ProviderShareList) GetDataOk

func (o *CdxV1ProviderShareList) GetDataOk() (*[]CdxV1ProviderShare, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*CdxV1ProviderShareList) GetKind

func (o *CdxV1ProviderShareList) GetKind() string

GetKind returns the Kind field value

func (*CdxV1ProviderShareList) GetKindOk

func (o *CdxV1ProviderShareList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*CdxV1ProviderShareList) GetMetadata

func (o *CdxV1ProviderShareList) GetMetadata() ListMeta

GetMetadata returns the Metadata field value

func (*CdxV1ProviderShareList) GetMetadataOk

func (o *CdxV1ProviderShareList) GetMetadataOk() (*ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (CdxV1ProviderShareList) MarshalJSON

func (o CdxV1ProviderShareList) MarshalJSON() ([]byte, error)

func (*CdxV1ProviderShareList) Redact

func (o *CdxV1ProviderShareList) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ProviderShareList) SetApiVersion

func (o *CdxV1ProviderShareList) SetApiVersion(v string)

SetApiVersion sets field value

func (*CdxV1ProviderShareList) SetData

SetData sets field value

func (*CdxV1ProviderShareList) SetKind

func (o *CdxV1ProviderShareList) SetKind(v string)

SetKind sets field value

func (*CdxV1ProviderShareList) SetMetadata

func (o *CdxV1ProviderShareList) SetMetadata(v ListMeta)

SetMetadata sets field value

type CdxV1ProviderShareStatus added in v0.0.3

type CdxV1ProviderShareStatus struct {
	// Status of share
	Phase string `json:"phase"`
}

CdxV1ProviderShareStatus The status of the Provider Share

func NewCdxV1ProviderShareStatus added in v0.0.3

func NewCdxV1ProviderShareStatus(phase string) *CdxV1ProviderShareStatus

NewCdxV1ProviderShareStatus instantiates a new CdxV1ProviderShareStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ProviderShareStatusWithDefaults added in v0.0.3

func NewCdxV1ProviderShareStatusWithDefaults() *CdxV1ProviderShareStatus

NewCdxV1ProviderShareStatusWithDefaults instantiates a new CdxV1ProviderShareStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ProviderShareStatus) GetPhase added in v0.0.3

func (o *CdxV1ProviderShareStatus) GetPhase() string

GetPhase returns the Phase field value

func (*CdxV1ProviderShareStatus) GetPhaseOk added in v0.0.3

func (o *CdxV1ProviderShareStatus) GetPhaseOk() (*string, bool)

GetPhaseOk returns a tuple with the Phase field value and a boolean to check if the value has been set.

func (CdxV1ProviderShareStatus) MarshalJSON added in v0.0.3

func (o CdxV1ProviderShareStatus) MarshalJSON() ([]byte, error)

func (*CdxV1ProviderShareStatus) Redact added in v0.0.3

func (o *CdxV1ProviderShareStatus) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ProviderShareStatus) SetPhase added in v0.0.3

func (o *CdxV1ProviderShareStatus) SetPhase(v string)

SetPhase sets field value

type CdxV1ProviderSharedResource

type CdxV1ProviderSharedResource struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// ID is the \"natural identifier\" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted (\"time\"); however, it may collide with IDs for other object `kinds` or objects of the same `kind` within a different scope/namespace (\"space\").
	Id       *string     `json:"id,omitempty"`
	Metadata *ObjectMeta `json:"metadata,omitempty"`
	// Deprecated please use resources attribute.
	Crn *string `json:"crn,omitempty"`
	// List of resource crns that are shared together
	Resources *[]string `json:"resources,omitempty"`
	// Shared resource display name
	DisplayName *string `json:"display_name,omitempty"`
	// Description of shared resource
	Description *string `json:"description,omitempty"`
	// list of tags
	Tags *[]string `json:"tags,omitempty"`
	// List of schemas in JSON format. This field is work in progress and subject to changes.
	Schemas *[]CdxV1Schema `json:"schemas,omitempty"`
	// Shared resource's organization description
	OrganizationDescription *string `json:"organization_description,omitempty"`
	// Email of contact person from the organization
	OrganizationContact *string `json:"organization_contact,omitempty"`
	// Resource logo url
	LogoUrl *string `json:"logo_url,omitempty"`
	// Organization to which the shared resource belongs. Deprecated
	OrganizationName interface{} `json:"organization_name,omitempty"`
	// The environment name of the shared resource. Deprecated
	EnvironmentName *string `json:"environment_name,omitempty"`
	// The cluster display name of the shared resource. Deprecated
	ClusterName *string `json:"cluster_name,omitempty"`
	// The cloud cluster to which this belongs.
	CloudCluster *EnvScopedObjectReference `json:"cloud_cluster,omitempty"`
}

CdxV1ProviderSharedResource Resources shared by the provider ## The Provider Shared Resources Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.ProviderSharedResource\" />

func NewCdxV1ProviderSharedResource

func NewCdxV1ProviderSharedResource() *CdxV1ProviderSharedResource

NewCdxV1ProviderSharedResource instantiates a new CdxV1ProviderSharedResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ProviderSharedResourceWithDefaults

func NewCdxV1ProviderSharedResourceWithDefaults() *CdxV1ProviderSharedResource

NewCdxV1ProviderSharedResourceWithDefaults instantiates a new CdxV1ProviderSharedResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ProviderSharedResource) GetApiVersion

func (o *CdxV1ProviderSharedResource) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetApiVersionOk

func (o *CdxV1ProviderSharedResource) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetCloudCluster added in v0.0.3

GetCloudCluster returns the CloudCluster field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetCloudClusterOk added in v0.0.3

func (o *CdxV1ProviderSharedResource) GetCloudClusterOk() (*EnvScopedObjectReference, bool)

GetCloudClusterOk returns a tuple with the CloudCluster field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetClusterName

func (o *CdxV1ProviderSharedResource) GetClusterName() string

GetClusterName returns the ClusterName field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetClusterNameOk

func (o *CdxV1ProviderSharedResource) GetClusterNameOk() (*string, bool)

GetClusterNameOk returns a tuple with the ClusterName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetCrn

func (o *CdxV1ProviderSharedResource) GetCrn() string

GetCrn returns the Crn field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetCrnOk

func (o *CdxV1ProviderSharedResource) GetCrnOk() (*string, bool)

GetCrnOk returns a tuple with the Crn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetDescription

func (o *CdxV1ProviderSharedResource) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetDescriptionOk

func (o *CdxV1ProviderSharedResource) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetDisplayName

func (o *CdxV1ProviderSharedResource) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetDisplayNameOk

func (o *CdxV1ProviderSharedResource) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetEnvironmentName

func (o *CdxV1ProviderSharedResource) GetEnvironmentName() string

GetEnvironmentName returns the EnvironmentName field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetEnvironmentNameOk

func (o *CdxV1ProviderSharedResource) GetEnvironmentNameOk() (*string, bool)

GetEnvironmentNameOk returns a tuple with the EnvironmentName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetIdOk

func (o *CdxV1ProviderSharedResource) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetKind

func (o *CdxV1ProviderSharedResource) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetKindOk

func (o *CdxV1ProviderSharedResource) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetLogoUrl

func (o *CdxV1ProviderSharedResource) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetLogoUrlOk

func (o *CdxV1ProviderSharedResource) GetLogoUrlOk() (*string, bool)

GetLogoUrlOk returns a tuple with the LogoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetMetadata

func (o *CdxV1ProviderSharedResource) GetMetadata() ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetMetadataOk

func (o *CdxV1ProviderSharedResource) GetMetadataOk() (*ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetOrganizationContact

func (o *CdxV1ProviderSharedResource) GetOrganizationContact() string

GetOrganizationContact returns the OrganizationContact field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetOrganizationContactOk

func (o *CdxV1ProviderSharedResource) GetOrganizationContactOk() (*string, bool)

GetOrganizationContactOk returns a tuple with the OrganizationContact field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetOrganizationDescription added in v0.0.3

func (o *CdxV1ProviderSharedResource) GetOrganizationDescription() string

GetOrganizationDescription returns the OrganizationDescription field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetOrganizationDescriptionOk added in v0.0.3

func (o *CdxV1ProviderSharedResource) GetOrganizationDescriptionOk() (*string, bool)

GetOrganizationDescriptionOk returns a tuple with the OrganizationDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetOrganizationName

func (o *CdxV1ProviderSharedResource) GetOrganizationName() interface{}

GetOrganizationName returns the OrganizationName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CdxV1ProviderSharedResource) GetOrganizationNameOk

func (o *CdxV1ProviderSharedResource) GetOrganizationNameOk() (*interface{}, bool)

GetOrganizationNameOk returns a tuple with the OrganizationName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CdxV1ProviderSharedResource) GetResources added in v0.0.4

func (o *CdxV1ProviderSharedResource) GetResources() []string

GetResources returns the Resources field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetResourcesOk added in v0.0.4

func (o *CdxV1ProviderSharedResource) GetResourcesOk() (*[]string, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetSchemas

func (o *CdxV1ProviderSharedResource) GetSchemas() []CdxV1Schema

GetSchemas returns the Schemas field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetSchemasOk

func (o *CdxV1ProviderSharedResource) GetSchemasOk() (*[]CdxV1Schema, bool)

GetSchemasOk returns a tuple with the Schemas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) GetTags added in v0.0.5

func (o *CdxV1ProviderSharedResource) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResource) GetTagsOk added in v0.0.5

func (o *CdxV1ProviderSharedResource) GetTagsOk() (*[]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResource) HasApiVersion

func (o *CdxV1ProviderSharedResource) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasCloudCluster added in v0.0.3

func (o *CdxV1ProviderSharedResource) HasCloudCluster() bool

HasCloudCluster returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasClusterName

func (o *CdxV1ProviderSharedResource) HasClusterName() bool

HasClusterName returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasCrn

func (o *CdxV1ProviderSharedResource) HasCrn() bool

HasCrn returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasDescription

func (o *CdxV1ProviderSharedResource) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasDisplayName

func (o *CdxV1ProviderSharedResource) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasEnvironmentName

func (o *CdxV1ProviderSharedResource) HasEnvironmentName() bool

HasEnvironmentName returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasId

func (o *CdxV1ProviderSharedResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasKind

func (o *CdxV1ProviderSharedResource) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasLogoUrl

func (o *CdxV1ProviderSharedResource) HasLogoUrl() bool

HasLogoUrl returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasMetadata

func (o *CdxV1ProviderSharedResource) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasOrganizationContact

func (o *CdxV1ProviderSharedResource) HasOrganizationContact() bool

HasOrganizationContact returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasOrganizationDescription added in v0.0.3

func (o *CdxV1ProviderSharedResource) HasOrganizationDescription() bool

HasOrganizationDescription returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasOrganizationName

func (o *CdxV1ProviderSharedResource) HasOrganizationName() bool

HasOrganizationName returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasResources added in v0.0.4

func (o *CdxV1ProviderSharedResource) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasSchemas

func (o *CdxV1ProviderSharedResource) HasSchemas() bool

HasSchemas returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResource) HasTags added in v0.0.5

func (o *CdxV1ProviderSharedResource) HasTags() bool

HasTags returns a boolean if a field has been set.

func (CdxV1ProviderSharedResource) MarshalJSON

func (o CdxV1ProviderSharedResource) MarshalJSON() ([]byte, error)

func (*CdxV1ProviderSharedResource) Redact

func (o *CdxV1ProviderSharedResource) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ProviderSharedResource) SetApiVersion

func (o *CdxV1ProviderSharedResource) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1ProviderSharedResource) SetCloudCluster added in v0.0.3

SetCloudCluster gets a reference to the given EnvScopedObjectReference and assigns it to the CloudCluster field.

func (*CdxV1ProviderSharedResource) SetClusterName

func (o *CdxV1ProviderSharedResource) SetClusterName(v string)

SetClusterName gets a reference to the given string and assigns it to the ClusterName field.

func (*CdxV1ProviderSharedResource) SetCrn

func (o *CdxV1ProviderSharedResource) SetCrn(v string)

SetCrn gets a reference to the given string and assigns it to the Crn field.

func (*CdxV1ProviderSharedResource) SetDescription

func (o *CdxV1ProviderSharedResource) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CdxV1ProviderSharedResource) SetDisplayName

func (o *CdxV1ProviderSharedResource) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*CdxV1ProviderSharedResource) SetEnvironmentName

func (o *CdxV1ProviderSharedResource) SetEnvironmentName(v string)

SetEnvironmentName gets a reference to the given string and assigns it to the EnvironmentName field.

func (*CdxV1ProviderSharedResource) SetId

func (o *CdxV1ProviderSharedResource) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CdxV1ProviderSharedResource) SetKind

func (o *CdxV1ProviderSharedResource) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1ProviderSharedResource) SetLogoUrl

func (o *CdxV1ProviderSharedResource) SetLogoUrl(v string)

SetLogoUrl gets a reference to the given string and assigns it to the LogoUrl field.

func (*CdxV1ProviderSharedResource) SetMetadata

func (o *CdxV1ProviderSharedResource) SetMetadata(v ObjectMeta)

SetMetadata gets a reference to the given ObjectMeta and assigns it to the Metadata field.

func (*CdxV1ProviderSharedResource) SetOrganizationContact

func (o *CdxV1ProviderSharedResource) SetOrganizationContact(v string)

SetOrganizationContact gets a reference to the given string and assigns it to the OrganizationContact field.

func (*CdxV1ProviderSharedResource) SetOrganizationDescription added in v0.0.3

func (o *CdxV1ProviderSharedResource) SetOrganizationDescription(v string)

SetOrganizationDescription gets a reference to the given string and assigns it to the OrganizationDescription field.

func (*CdxV1ProviderSharedResource) SetOrganizationName

func (o *CdxV1ProviderSharedResource) SetOrganizationName(v interface{})

SetOrganizationName gets a reference to the given interface{} and assigns it to the OrganizationName field.

func (*CdxV1ProviderSharedResource) SetResources added in v0.0.4

func (o *CdxV1ProviderSharedResource) SetResources(v []string)

SetResources gets a reference to the given []string and assigns it to the Resources field.

func (*CdxV1ProviderSharedResource) SetSchemas

func (o *CdxV1ProviderSharedResource) SetSchemas(v []CdxV1Schema)

SetSchemas gets a reference to the given []CdxV1Schema and assigns it to the Schemas field.

func (*CdxV1ProviderSharedResource) SetTags added in v0.0.5

func (o *CdxV1ProviderSharedResource) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

type CdxV1ProviderSharedResourceList

type CdxV1ProviderSharedResourceList struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion string `json:"api_version"`
	// Kind defines the object this REST resource represents.
	Kind     string   `json:"kind"`
	Metadata ListMeta `json:"metadata"`
	// A data property that contains an array of resource items. Each entry in the array is a separate resource.
	Data []CdxV1ProviderSharedResource `json:"data"`
}

CdxV1ProviderSharedResourceList Resources shared by the provider ## The Provider Shared Resources Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.ProviderSharedResource\" />

func NewCdxV1ProviderSharedResourceList

func NewCdxV1ProviderSharedResourceList(apiVersion string, kind string, metadata ListMeta, data []CdxV1ProviderSharedResource) *CdxV1ProviderSharedResourceList

NewCdxV1ProviderSharedResourceList instantiates a new CdxV1ProviderSharedResourceList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ProviderSharedResourceListWithDefaults

func NewCdxV1ProviderSharedResourceListWithDefaults() *CdxV1ProviderSharedResourceList

NewCdxV1ProviderSharedResourceListWithDefaults instantiates a new CdxV1ProviderSharedResourceList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ProviderSharedResourceList) GetApiVersion

func (o *CdxV1ProviderSharedResourceList) GetApiVersion() string

GetApiVersion returns the ApiVersion field value

func (*CdxV1ProviderSharedResourceList) GetApiVersionOk

func (o *CdxV1ProviderSharedResourceList) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceList) GetData

GetData returns the Data field value

func (*CdxV1ProviderSharedResourceList) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceList) GetKind

GetKind returns the Kind field value

func (*CdxV1ProviderSharedResourceList) GetKindOk

func (o *CdxV1ProviderSharedResourceList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceList) GetMetadata

func (o *CdxV1ProviderSharedResourceList) GetMetadata() ListMeta

GetMetadata returns the Metadata field value

func (*CdxV1ProviderSharedResourceList) GetMetadataOk

func (o *CdxV1ProviderSharedResourceList) GetMetadataOk() (*ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (CdxV1ProviderSharedResourceList) MarshalJSON

func (o CdxV1ProviderSharedResourceList) MarshalJSON() ([]byte, error)

func (*CdxV1ProviderSharedResourceList) Redact

func (o *CdxV1ProviderSharedResourceList) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1ProviderSharedResourceList) SetApiVersion

func (o *CdxV1ProviderSharedResourceList) SetApiVersion(v string)

SetApiVersion sets field value

func (*CdxV1ProviderSharedResourceList) SetData

SetData sets field value

func (*CdxV1ProviderSharedResourceList) SetKind

SetKind sets field value

func (*CdxV1ProviderSharedResourceList) SetMetadata

func (o *CdxV1ProviderSharedResourceList) SetMetadata(v ListMeta)

SetMetadata sets field value

type CdxV1ProviderSharedResourceUpdate

type CdxV1ProviderSharedResourceUpdate struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// ID is the \"natural identifier\" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted (\"time\"); however, it may collide with IDs for other object `kinds` or objects of the same `kind` within a different scope/namespace (\"space\").
	Id       *string     `json:"id,omitempty"`
	Metadata *ObjectMeta `json:"metadata,omitempty"`
	// List of resource crns that are shared together
	Resources *[]string `json:"resources,omitempty"`
	// Shared resource display name
	DisplayName *string `json:"display_name,omitempty"`
	// Shared resource's organization description
	OrganizationDescription *string `json:"organization_description,omitempty"`
	// Email of contact person from the organization
	OrganizationContact *string `json:"organization_contact,omitempty"`
	// Resource logo url
	LogoUrl *string `json:"logo_url,omitempty"`
}

CdxV1ProviderSharedResourceUpdate Resources shared by the provider ## The Provider Shared Resources Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.ProviderSharedResource\" />

func NewCdxV1ProviderSharedResourceUpdate

func NewCdxV1ProviderSharedResourceUpdate() *CdxV1ProviderSharedResourceUpdate

NewCdxV1ProviderSharedResourceUpdate instantiates a new CdxV1ProviderSharedResourceUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1ProviderSharedResourceUpdateWithDefaults

func NewCdxV1ProviderSharedResourceUpdateWithDefaults() *CdxV1ProviderSharedResourceUpdate

NewCdxV1ProviderSharedResourceUpdateWithDefaults instantiates a new CdxV1ProviderSharedResourceUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1ProviderSharedResourceUpdate) GetApiVersion

func (o *CdxV1ProviderSharedResourceUpdate) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResourceUpdate) GetApiVersionOk

func (o *CdxV1ProviderSharedResourceUpdate) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceUpdate) GetDisplayName

func (o *CdxV1ProviderSharedResourceUpdate) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResourceUpdate) GetDisplayNameOk

func (o *CdxV1ProviderSharedResourceUpdate) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceUpdate) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResourceUpdate) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceUpdate) GetKind

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResourceUpdate) GetKindOk

func (o *CdxV1ProviderSharedResourceUpdate) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceUpdate) GetLogoUrl

func (o *CdxV1ProviderSharedResourceUpdate) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResourceUpdate) GetLogoUrlOk

func (o *CdxV1ProviderSharedResourceUpdate) GetLogoUrlOk() (*string, bool)

GetLogoUrlOk returns a tuple with the LogoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceUpdate) GetMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResourceUpdate) GetMetadataOk

func (o *CdxV1ProviderSharedResourceUpdate) GetMetadataOk() (*ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceUpdate) GetOrganizationContact

func (o *CdxV1ProviderSharedResourceUpdate) GetOrganizationContact() string

GetOrganizationContact returns the OrganizationContact field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResourceUpdate) GetOrganizationContactOk

func (o *CdxV1ProviderSharedResourceUpdate) GetOrganizationContactOk() (*string, bool)

GetOrganizationContactOk returns a tuple with the OrganizationContact field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceUpdate) GetOrganizationDescription added in v0.0.3

func (o *CdxV1ProviderSharedResourceUpdate) GetOrganizationDescription() string

GetOrganizationDescription returns the OrganizationDescription field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResourceUpdate) GetOrganizationDescriptionOk added in v0.0.3

func (o *CdxV1ProviderSharedResourceUpdate) GetOrganizationDescriptionOk() (*string, bool)

GetOrganizationDescriptionOk returns a tuple with the OrganizationDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceUpdate) GetResources added in v0.0.4

func (o *CdxV1ProviderSharedResourceUpdate) GetResources() []string

GetResources returns the Resources field value if set, zero value otherwise.

func (*CdxV1ProviderSharedResourceUpdate) GetResourcesOk added in v0.0.4

func (o *CdxV1ProviderSharedResourceUpdate) GetResourcesOk() (*[]string, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1ProviderSharedResourceUpdate) HasApiVersion

func (o *CdxV1ProviderSharedResourceUpdate) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResourceUpdate) HasDisplayName

func (o *CdxV1ProviderSharedResourceUpdate) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResourceUpdate) HasId

HasId returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResourceUpdate) HasKind

HasKind returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResourceUpdate) HasLogoUrl

func (o *CdxV1ProviderSharedResourceUpdate) HasLogoUrl() bool

HasLogoUrl returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResourceUpdate) HasMetadata

func (o *CdxV1ProviderSharedResourceUpdate) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResourceUpdate) HasOrganizationContact

func (o *CdxV1ProviderSharedResourceUpdate) HasOrganizationContact() bool

HasOrganizationContact returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResourceUpdate) HasOrganizationDescription added in v0.0.3

func (o *CdxV1ProviderSharedResourceUpdate) HasOrganizationDescription() bool

HasOrganizationDescription returns a boolean if a field has been set.

func (*CdxV1ProviderSharedResourceUpdate) HasResources added in v0.0.4

func (o *CdxV1ProviderSharedResourceUpdate) HasResources() bool

HasResources returns a boolean if a field has been set.

func (CdxV1ProviderSharedResourceUpdate) MarshalJSON

func (o CdxV1ProviderSharedResourceUpdate) MarshalJSON() ([]byte, error)

func (*CdxV1ProviderSharedResourceUpdate) Redact

Redact resets all sensitive fields to their zero value.

func (*CdxV1ProviderSharedResourceUpdate) SetApiVersion

func (o *CdxV1ProviderSharedResourceUpdate) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1ProviderSharedResourceUpdate) SetDisplayName

func (o *CdxV1ProviderSharedResourceUpdate) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*CdxV1ProviderSharedResourceUpdate) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*CdxV1ProviderSharedResourceUpdate) SetKind

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1ProviderSharedResourceUpdate) SetLogoUrl

func (o *CdxV1ProviderSharedResourceUpdate) SetLogoUrl(v string)

SetLogoUrl gets a reference to the given string and assigns it to the LogoUrl field.

func (*CdxV1ProviderSharedResourceUpdate) SetMetadata

SetMetadata gets a reference to the given ObjectMeta and assigns it to the Metadata field.

func (*CdxV1ProviderSharedResourceUpdate) SetOrganizationContact

func (o *CdxV1ProviderSharedResourceUpdate) SetOrganizationContact(v string)

SetOrganizationContact gets a reference to the given string and assigns it to the OrganizationContact field.

func (*CdxV1ProviderSharedResourceUpdate) SetOrganizationDescription added in v0.0.3

func (o *CdxV1ProviderSharedResourceUpdate) SetOrganizationDescription(v string)

SetOrganizationDescription gets a reference to the given string and assigns it to the OrganizationDescription field.

func (*CdxV1ProviderSharedResourceUpdate) SetResources added in v0.0.4

func (o *CdxV1ProviderSharedResourceUpdate) SetResources(v []string)

SetResources gets a reference to the given []string and assigns it to the Resources field.

type CdxV1RedeemTokenRequest added in v0.0.2

type CdxV1RedeemTokenRequest struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// ID is the \"natural identifier\" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted (\"time\"); however, it may collide with IDs for other object `kinds` or objects of the same `kind` within a different scope/namespace (\"space\").
	Id       *string     `json:"id,omitempty"`
	Metadata *ObjectMeta `json:"metadata,omitempty"`
	// The encrypted token
	Token *string `json:"token,omitempty"`
	// Consumer's AWS account ID for PrivateLink access.
	AwsAccount *string `json:"aws_account,omitempty"`
	// Consumer's Azure subscription ID for PrivateLink access.
	AzureSubscription *string `json:"azure_subscription,omitempty"`
	// Consumer's GCP project ID for Private Service Connect access.
	GcpProject *string `json:"gcp_project,omitempty"`
}

CdxV1RedeemTokenRequest Redeem share with token request parameters

func NewCdxV1RedeemTokenRequest added in v0.0.2

func NewCdxV1RedeemTokenRequest() *CdxV1RedeemTokenRequest

NewCdxV1RedeemTokenRequest instantiates a new CdxV1RedeemTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1RedeemTokenRequestWithDefaults added in v0.0.2

func NewCdxV1RedeemTokenRequestWithDefaults() *CdxV1RedeemTokenRequest

NewCdxV1RedeemTokenRequestWithDefaults instantiates a new CdxV1RedeemTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1RedeemTokenRequest) GetApiVersion added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1RedeemTokenRequest) GetApiVersionOk added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenRequest) GetAwsAccount added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetAwsAccount() string

GetAwsAccount returns the AwsAccount field value if set, zero value otherwise.

func (*CdxV1RedeemTokenRequest) GetAwsAccountOk added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetAwsAccountOk() (*string, bool)

GetAwsAccountOk returns a tuple with the AwsAccount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenRequest) GetAzureSubscription added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetAzureSubscription() string

GetAzureSubscription returns the AzureSubscription field value if set, zero value otherwise.

func (*CdxV1RedeemTokenRequest) GetAzureSubscriptionOk added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetAzureSubscriptionOk() (*string, bool)

GetAzureSubscriptionOk returns a tuple with the AzureSubscription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenRequest) GetGcpProject added in v0.0.3

func (o *CdxV1RedeemTokenRequest) GetGcpProject() string

GetGcpProject returns the GcpProject field value if set, zero value otherwise.

func (*CdxV1RedeemTokenRequest) GetGcpProjectOk added in v0.0.3

func (o *CdxV1RedeemTokenRequest) GetGcpProjectOk() (*string, bool)

GetGcpProjectOk returns a tuple with the GcpProject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenRequest) GetId added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1RedeemTokenRequest) GetIdOk added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenRequest) GetKind added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1RedeemTokenRequest) GetKindOk added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenRequest) GetMetadata added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetMetadata() ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CdxV1RedeemTokenRequest) GetMetadataOk added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetMetadataOk() (*ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenRequest) GetToken added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*CdxV1RedeemTokenRequest) GetTokenOk added in v0.0.2

func (o *CdxV1RedeemTokenRequest) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenRequest) HasApiVersion added in v0.0.2

func (o *CdxV1RedeemTokenRequest) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1RedeemTokenRequest) HasAwsAccount added in v0.0.2

func (o *CdxV1RedeemTokenRequest) HasAwsAccount() bool

HasAwsAccount returns a boolean if a field has been set.

func (*CdxV1RedeemTokenRequest) HasAzureSubscription added in v0.0.2

func (o *CdxV1RedeemTokenRequest) HasAzureSubscription() bool

HasAzureSubscription returns a boolean if a field has been set.

func (*CdxV1RedeemTokenRequest) HasGcpProject added in v0.0.3

func (o *CdxV1RedeemTokenRequest) HasGcpProject() bool

HasGcpProject returns a boolean if a field has been set.

func (*CdxV1RedeemTokenRequest) HasId added in v0.0.2

func (o *CdxV1RedeemTokenRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*CdxV1RedeemTokenRequest) HasKind added in v0.0.2

func (o *CdxV1RedeemTokenRequest) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CdxV1RedeemTokenRequest) HasMetadata added in v0.0.2

func (o *CdxV1RedeemTokenRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CdxV1RedeemTokenRequest) HasToken added in v0.0.2

func (o *CdxV1RedeemTokenRequest) HasToken() bool

HasToken returns a boolean if a field has been set.

func (CdxV1RedeemTokenRequest) MarshalJSON added in v0.0.2

func (o CdxV1RedeemTokenRequest) MarshalJSON() ([]byte, error)

func (*CdxV1RedeemTokenRequest) Redact added in v0.0.2

func (o *CdxV1RedeemTokenRequest) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1RedeemTokenRequest) SetApiVersion added in v0.0.2

func (o *CdxV1RedeemTokenRequest) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1RedeemTokenRequest) SetAwsAccount added in v0.0.2

func (o *CdxV1RedeemTokenRequest) SetAwsAccount(v string)

SetAwsAccount gets a reference to the given string and assigns it to the AwsAccount field.

func (*CdxV1RedeemTokenRequest) SetAzureSubscription added in v0.0.2

func (o *CdxV1RedeemTokenRequest) SetAzureSubscription(v string)

SetAzureSubscription gets a reference to the given string and assigns it to the AzureSubscription field.

func (*CdxV1RedeemTokenRequest) SetGcpProject added in v0.0.3

func (o *CdxV1RedeemTokenRequest) SetGcpProject(v string)

SetGcpProject gets a reference to the given string and assigns it to the GcpProject field.

func (*CdxV1RedeemTokenRequest) SetId added in v0.0.2

func (o *CdxV1RedeemTokenRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CdxV1RedeemTokenRequest) SetKind added in v0.0.2

func (o *CdxV1RedeemTokenRequest) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1RedeemTokenRequest) SetMetadata added in v0.0.2

func (o *CdxV1RedeemTokenRequest) SetMetadata(v ObjectMeta)

SetMetadata gets a reference to the given ObjectMeta and assigns it to the Metadata field.

func (*CdxV1RedeemTokenRequest) SetToken added in v0.0.2

func (o *CdxV1RedeemTokenRequest) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

type CdxV1RedeemTokenResponse added in v0.0.2

type CdxV1RedeemTokenResponse struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// ID is the \"natural identifier\" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted (\"time\"); however, it may collide with IDs for other object `kinds` or objects of the same `kind` within a different scope/namespace (\"space\").
	Id       *string     `json:"id,omitempty"`
	Metadata *ObjectMeta `json:"metadata,omitempty"`
	// The api key
	ApiKey *string `json:"api_key,omitempty"`
	// The api key secret
	Secret *string `json:"secret,omitempty"`
	// The kafka cluster bootstrap url
	KafkaBootstrapUrl *string `json:"kafka_bootstrap_url,omitempty"`
	// The api key for schema registry
	SchemaRegistryApiKey *string `json:"schema_registry_api_key,omitempty"`
	// The api key secret for schema registry
	SchemaRegistrySecret *string `json:"schema_registry_secret,omitempty"`
	// The schema registry endpoint url
	SchemaRegistryUrl *string `json:"schema_registry_url,omitempty"`
	// List of shared resources
	Resources *[]CdxV1RedeemTokenResponseResourcesOneOf `json:"resources,omitempty"`
}

CdxV1RedeemTokenResponse Share details for the consumer org or user

func NewCdxV1RedeemTokenResponse added in v0.0.2

func NewCdxV1RedeemTokenResponse() *CdxV1RedeemTokenResponse

NewCdxV1RedeemTokenResponse instantiates a new CdxV1RedeemTokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1RedeemTokenResponseWithDefaults added in v0.0.2

func NewCdxV1RedeemTokenResponseWithDefaults() *CdxV1RedeemTokenResponse

NewCdxV1RedeemTokenResponseWithDefaults instantiates a new CdxV1RedeemTokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1RedeemTokenResponse) GetApiKey added in v0.0.3

func (o *CdxV1RedeemTokenResponse) GetApiKey() string

GetApiKey returns the ApiKey field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetApiKeyOk added in v0.0.3

func (o *CdxV1RedeemTokenResponse) GetApiKeyOk() (*string, bool)

GetApiKeyOk returns a tuple with the ApiKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) GetApiVersion added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetApiVersionOk added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) GetId added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetIdOk added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) GetKafkaBootstrapUrl added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetKafkaBootstrapUrl() string

GetKafkaBootstrapUrl returns the KafkaBootstrapUrl field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetKafkaBootstrapUrlOk added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetKafkaBootstrapUrlOk() (*string, bool)

GetKafkaBootstrapUrlOk returns a tuple with the KafkaBootstrapUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) GetKind added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetKindOk added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) GetMetadata added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetMetadata() ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetMetadataOk added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetMetadataOk() (*ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) GetResources added in v0.0.2

GetResources returns the Resources field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetResourcesOk added in v0.0.2

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) GetSchemaRegistryApiKey added in v0.0.4

func (o *CdxV1RedeemTokenResponse) GetSchemaRegistryApiKey() string

GetSchemaRegistryApiKey returns the SchemaRegistryApiKey field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetSchemaRegistryApiKeyOk added in v0.0.4

func (o *CdxV1RedeemTokenResponse) GetSchemaRegistryApiKeyOk() (*string, bool)

GetSchemaRegistryApiKeyOk returns a tuple with the SchemaRegistryApiKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) GetSchemaRegistrySecret added in v0.0.4

func (o *CdxV1RedeemTokenResponse) GetSchemaRegistrySecret() string

GetSchemaRegistrySecret returns the SchemaRegistrySecret field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetSchemaRegistrySecretOk added in v0.0.4

func (o *CdxV1RedeemTokenResponse) GetSchemaRegistrySecretOk() (*string, bool)

GetSchemaRegistrySecretOk returns a tuple with the SchemaRegistrySecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) GetSchemaRegistryUrl added in v0.0.4

func (o *CdxV1RedeemTokenResponse) GetSchemaRegistryUrl() string

GetSchemaRegistryUrl returns the SchemaRegistryUrl field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetSchemaRegistryUrlOk added in v0.0.4

func (o *CdxV1RedeemTokenResponse) GetSchemaRegistryUrlOk() (*string, bool)

GetSchemaRegistryUrlOk returns a tuple with the SchemaRegistryUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) GetSecret added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetSecret() string

GetSecret returns the Secret field value if set, zero value otherwise.

func (*CdxV1RedeemTokenResponse) GetSecretOk added in v0.0.2

func (o *CdxV1RedeemTokenResponse) GetSecretOk() (*string, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1RedeemTokenResponse) HasApiKey added in v0.0.3

func (o *CdxV1RedeemTokenResponse) HasApiKey() bool

HasApiKey returns a boolean if a field has been set.

func (*CdxV1RedeemTokenResponse) HasApiVersion added in v0.0.2

func (o *CdxV1RedeemTokenResponse) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1RedeemTokenResponse) HasId added in v0.0.2

func (o *CdxV1RedeemTokenResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*CdxV1RedeemTokenResponse) HasKafkaBootstrapUrl added in v0.0.2

func (o *CdxV1RedeemTokenResponse) HasKafkaBootstrapUrl() bool

HasKafkaBootstrapUrl returns a boolean if a field has been set.

func (*CdxV1RedeemTokenResponse) HasKind added in v0.0.2

func (o *CdxV1RedeemTokenResponse) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CdxV1RedeemTokenResponse) HasMetadata added in v0.0.2

func (o *CdxV1RedeemTokenResponse) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CdxV1RedeemTokenResponse) HasResources added in v0.0.2

func (o *CdxV1RedeemTokenResponse) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*CdxV1RedeemTokenResponse) HasSchemaRegistryApiKey added in v0.0.4

func (o *CdxV1RedeemTokenResponse) HasSchemaRegistryApiKey() bool

HasSchemaRegistryApiKey returns a boolean if a field has been set.

func (*CdxV1RedeemTokenResponse) HasSchemaRegistrySecret added in v0.0.4

func (o *CdxV1RedeemTokenResponse) HasSchemaRegistrySecret() bool

HasSchemaRegistrySecret returns a boolean if a field has been set.

func (*CdxV1RedeemTokenResponse) HasSchemaRegistryUrl added in v0.0.4

func (o *CdxV1RedeemTokenResponse) HasSchemaRegistryUrl() bool

HasSchemaRegistryUrl returns a boolean if a field has been set.

func (*CdxV1RedeemTokenResponse) HasSecret added in v0.0.2

func (o *CdxV1RedeemTokenResponse) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (CdxV1RedeemTokenResponse) MarshalJSON added in v0.0.2

func (o CdxV1RedeemTokenResponse) MarshalJSON() ([]byte, error)

func (*CdxV1RedeemTokenResponse) Redact added in v0.0.2

func (o *CdxV1RedeemTokenResponse) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1RedeemTokenResponse) SetApiKey added in v0.0.3

func (o *CdxV1RedeemTokenResponse) SetApiKey(v string)

SetApiKey gets a reference to the given string and assigns it to the ApiKey field.

func (*CdxV1RedeemTokenResponse) SetApiVersion added in v0.0.2

func (o *CdxV1RedeemTokenResponse) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1RedeemTokenResponse) SetId added in v0.0.2

func (o *CdxV1RedeemTokenResponse) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CdxV1RedeemTokenResponse) SetKafkaBootstrapUrl added in v0.0.2

func (o *CdxV1RedeemTokenResponse) SetKafkaBootstrapUrl(v string)

SetKafkaBootstrapUrl gets a reference to the given string and assigns it to the KafkaBootstrapUrl field.

func (*CdxV1RedeemTokenResponse) SetKind added in v0.0.2

func (o *CdxV1RedeemTokenResponse) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1RedeemTokenResponse) SetMetadata added in v0.0.2

func (o *CdxV1RedeemTokenResponse) SetMetadata(v ObjectMeta)

SetMetadata gets a reference to the given ObjectMeta and assigns it to the Metadata field.

func (*CdxV1RedeemTokenResponse) SetResources added in v0.0.2

SetResources gets a reference to the given []CdxV1RedeemTokenResponseResourcesOneOf and assigns it to the Resources field.

func (*CdxV1RedeemTokenResponse) SetSchemaRegistryApiKey added in v0.0.4

func (o *CdxV1RedeemTokenResponse) SetSchemaRegistryApiKey(v string)

SetSchemaRegistryApiKey gets a reference to the given string and assigns it to the SchemaRegistryApiKey field.

func (*CdxV1RedeemTokenResponse) SetSchemaRegistrySecret added in v0.0.4

func (o *CdxV1RedeemTokenResponse) SetSchemaRegistrySecret(v string)

SetSchemaRegistrySecret gets a reference to the given string and assigns it to the SchemaRegistrySecret field.

func (*CdxV1RedeemTokenResponse) SetSchemaRegistryUrl added in v0.0.4

func (o *CdxV1RedeemTokenResponse) SetSchemaRegistryUrl(v string)

SetSchemaRegistryUrl gets a reference to the given string and assigns it to the SchemaRegistryUrl field.

func (*CdxV1RedeemTokenResponse) SetSecret added in v0.0.2

func (o *CdxV1RedeemTokenResponse) SetSecret(v string)

SetSecret gets a reference to the given string and assigns it to the Secret field.

type CdxV1RedeemTokenResponseResourcesOneOf added in v0.0.2

type CdxV1RedeemTokenResponseResourcesOneOf struct {
	CdxV1SharedGroup   *CdxV1SharedGroup
	CdxV1SharedSubject *CdxV1SharedSubject
	CdxV1SharedTopic   *CdxV1SharedTopic
}

CdxV1RedeemTokenResponseResourcesOneOf - struct for CdxV1RedeemTokenResponseResourcesOneOf

func CdxV1SharedGroupAsCdxV1RedeemTokenResponseResourcesOneOf added in v0.0.2

func CdxV1SharedGroupAsCdxV1RedeemTokenResponseResourcesOneOf(v *CdxV1SharedGroup) CdxV1RedeemTokenResponseResourcesOneOf

CdxV1SharedGroupAsCdxV1RedeemTokenResponseResourcesOneOf is a convenience function that returns CdxV1SharedGroup wrapped in CdxV1RedeemTokenResponseResourcesOneOf

func CdxV1SharedSubjectAsCdxV1RedeemTokenResponseResourcesOneOf added in v0.0.4

func CdxV1SharedSubjectAsCdxV1RedeemTokenResponseResourcesOneOf(v *CdxV1SharedSubject) CdxV1RedeemTokenResponseResourcesOneOf

CdxV1SharedSubjectAsCdxV1RedeemTokenResponseResourcesOneOf is a convenience function that returns CdxV1SharedSubject wrapped in CdxV1RedeemTokenResponseResourcesOneOf

func CdxV1SharedTopicAsCdxV1RedeemTokenResponseResourcesOneOf added in v0.0.2

func CdxV1SharedTopicAsCdxV1RedeemTokenResponseResourcesOneOf(v *CdxV1SharedTopic) CdxV1RedeemTokenResponseResourcesOneOf

CdxV1SharedTopicAsCdxV1RedeemTokenResponseResourcesOneOf is a convenience function that returns CdxV1SharedTopic wrapped in CdxV1RedeemTokenResponseResourcesOneOf

func (*CdxV1RedeemTokenResponseResourcesOneOf) GetActualInstance added in v0.0.2

func (obj *CdxV1RedeemTokenResponseResourcesOneOf) GetActualInstance() interface{}

Get the actual instance

func (CdxV1RedeemTokenResponseResourcesOneOf) MarshalJSON added in v0.0.2

func (src CdxV1RedeemTokenResponseResourcesOneOf) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CdxV1RedeemTokenResponseResourcesOneOf) UnmarshalJSON added in v0.0.2

func (dst *CdxV1RedeemTokenResponseResourcesOneOf) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type CdxV1Schema added in v0.0.5

type CdxV1Schema struct {
	// Name of the subject
	Subject *string `json:"subject,omitempty"`
	// Version number
	Version *int32 `json:"version,omitempty"`
	// Globally unique identifier of the schema
	Id *int32 `json:"id,omitempty"`
	// Schema type
	SchemaType *string `json:"schema_type,omitempty"`
	// Schema definition string
	Schema *string `json:"schema,omitempty"`
}

CdxV1Schema Schema

func NewCdxV1Schema added in v0.0.5

func NewCdxV1Schema() *CdxV1Schema

NewCdxV1Schema instantiates a new CdxV1Schema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1SchemaWithDefaults added in v0.0.5

func NewCdxV1SchemaWithDefaults() *CdxV1Schema

NewCdxV1SchemaWithDefaults instantiates a new CdxV1Schema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1Schema) GetId added in v0.0.5

func (o *CdxV1Schema) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1Schema) GetIdOk added in v0.0.5

func (o *CdxV1Schema) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Schema) GetSchema added in v0.0.5

func (o *CdxV1Schema) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*CdxV1Schema) GetSchemaOk added in v0.0.5

func (o *CdxV1Schema) GetSchemaOk() (*string, bool)

GetSchemaOk returns a tuple with the Schema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Schema) GetSchemaType added in v0.0.5

func (o *CdxV1Schema) GetSchemaType() string

GetSchemaType returns the SchemaType field value if set, zero value otherwise.

func (*CdxV1Schema) GetSchemaTypeOk added in v0.0.5

func (o *CdxV1Schema) GetSchemaTypeOk() (*string, bool)

GetSchemaTypeOk returns a tuple with the SchemaType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Schema) GetSubject added in v0.0.5

func (o *CdxV1Schema) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*CdxV1Schema) GetSubjectOk added in v0.0.5

func (o *CdxV1Schema) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Schema) GetVersion added in v0.0.5

func (o *CdxV1Schema) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*CdxV1Schema) GetVersionOk added in v0.0.5

func (o *CdxV1Schema) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1Schema) HasId added in v0.0.5

func (o *CdxV1Schema) HasId() bool

HasId returns a boolean if a field has been set.

func (*CdxV1Schema) HasSchema added in v0.0.5

func (o *CdxV1Schema) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*CdxV1Schema) HasSchemaType added in v0.0.5

func (o *CdxV1Schema) HasSchemaType() bool

HasSchemaType returns a boolean if a field has been set.

func (*CdxV1Schema) HasSubject added in v0.0.5

func (o *CdxV1Schema) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*CdxV1Schema) HasVersion added in v0.0.5

func (o *CdxV1Schema) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (CdxV1Schema) MarshalJSON added in v0.0.5

func (o CdxV1Schema) MarshalJSON() ([]byte, error)

func (*CdxV1Schema) Redact added in v0.0.5

func (o *CdxV1Schema) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1Schema) SetId added in v0.0.5

func (o *CdxV1Schema) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*CdxV1Schema) SetSchema added in v0.0.5

func (o *CdxV1Schema) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*CdxV1Schema) SetSchemaType added in v0.0.5

func (o *CdxV1Schema) SetSchemaType(v string)

SetSchemaType gets a reference to the given string and assigns it to the SchemaType field.

func (*CdxV1Schema) SetSubject added in v0.0.5

func (o *CdxV1Schema) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*CdxV1Schema) SetVersion added in v0.0.5

func (o *CdxV1Schema) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

type CdxV1SharedGroup

type CdxV1SharedGroup struct {
	// The resource kind
	Kind string `json:"kind"`
	// The consumer group prefix
	GroupPrefix string `json:"group_prefix"`
}

CdxV1SharedGroup The shared consumer group

func NewCdxV1SharedGroup

func NewCdxV1SharedGroup(kind string, groupPrefix string) *CdxV1SharedGroup

NewCdxV1SharedGroup instantiates a new CdxV1SharedGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1SharedGroupWithDefaults

func NewCdxV1SharedGroupWithDefaults() *CdxV1SharedGroup

NewCdxV1SharedGroupWithDefaults instantiates a new CdxV1SharedGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1SharedGroup) GetGroupPrefix

func (o *CdxV1SharedGroup) GetGroupPrefix() string

GetGroupPrefix returns the GroupPrefix field value

func (*CdxV1SharedGroup) GetGroupPrefixOk

func (o *CdxV1SharedGroup) GetGroupPrefixOk() (*string, bool)

GetGroupPrefixOk returns a tuple with the GroupPrefix field value and a boolean to check if the value has been set.

func (*CdxV1SharedGroup) GetKind

func (o *CdxV1SharedGroup) GetKind() string

GetKind returns the Kind field value

func (*CdxV1SharedGroup) GetKindOk

func (o *CdxV1SharedGroup) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (CdxV1SharedGroup) MarshalJSON

func (o CdxV1SharedGroup) MarshalJSON() ([]byte, error)

func (*CdxV1SharedGroup) Redact

func (o *CdxV1SharedGroup) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1SharedGroup) SetGroupPrefix

func (o *CdxV1SharedGroup) SetGroupPrefix(v string)

SetGroupPrefix sets field value

func (*CdxV1SharedGroup) SetKind

func (o *CdxV1SharedGroup) SetKind(v string)

SetKind sets field value

type CdxV1SharedSubject added in v0.0.4

type CdxV1SharedSubject struct {
	// The shared resource kind
	Kind string `json:"kind"`
	// The subject name
	Subject string `json:"subject"`
}

CdxV1SharedSubject The shared resource details

func NewCdxV1SharedSubject added in v0.0.4

func NewCdxV1SharedSubject(kind string, subject string) *CdxV1SharedSubject

NewCdxV1SharedSubject instantiates a new CdxV1SharedSubject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1SharedSubjectWithDefaults added in v0.0.4

func NewCdxV1SharedSubjectWithDefaults() *CdxV1SharedSubject

NewCdxV1SharedSubjectWithDefaults instantiates a new CdxV1SharedSubject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1SharedSubject) GetKind added in v0.0.4

func (o *CdxV1SharedSubject) GetKind() string

GetKind returns the Kind field value

func (*CdxV1SharedSubject) GetKindOk added in v0.0.4

func (o *CdxV1SharedSubject) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*CdxV1SharedSubject) GetSubject added in v0.0.4

func (o *CdxV1SharedSubject) GetSubject() string

GetSubject returns the Subject field value

func (*CdxV1SharedSubject) GetSubjectOk added in v0.0.4

func (o *CdxV1SharedSubject) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (CdxV1SharedSubject) MarshalJSON added in v0.0.4

func (o CdxV1SharedSubject) MarshalJSON() ([]byte, error)

func (*CdxV1SharedSubject) Redact added in v0.0.4

func (o *CdxV1SharedSubject) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1SharedSubject) SetKind added in v0.0.4

func (o *CdxV1SharedSubject) SetKind(v string)

SetKind sets field value

func (*CdxV1SharedSubject) SetSubject added in v0.0.4

func (o *CdxV1SharedSubject) SetSubject(v string)

SetSubject sets field value

type CdxV1SharedToken

type CdxV1SharedToken struct {
	// APIVersion defines the schema version of this representation of a resource.
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind defines the object this REST resource represents.
	Kind *string `json:"kind,omitempty"`
	// ID is the \"natural identifier\" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted (\"time\"); however, it may collide with IDs for other object `kinds` or objects of the same `kind` within a different scope/namespace (\"space\").
	Id       *string     `json:"id,omitempty"`
	Metadata *ObjectMeta `json:"metadata,omitempty"`
	// The encrypted token
	Token *string `json:"token,omitempty"`
}

CdxV1SharedToken Encrypted Token shared with consumer ## The Shared Tokens Model <SchemaDefinition schemaRef=\"#/components/schemas/cdx.v1.SharedToken\" />

func NewCdxV1SharedToken

func NewCdxV1SharedToken() *CdxV1SharedToken

NewCdxV1SharedToken instantiates a new CdxV1SharedToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1SharedTokenWithDefaults

func NewCdxV1SharedTokenWithDefaults() *CdxV1SharedToken

NewCdxV1SharedTokenWithDefaults instantiates a new CdxV1SharedToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1SharedToken) GetApiVersion

func (o *CdxV1SharedToken) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*CdxV1SharedToken) GetApiVersionOk

func (o *CdxV1SharedToken) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1SharedToken) GetId

func (o *CdxV1SharedToken) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CdxV1SharedToken) GetIdOk

func (o *CdxV1SharedToken) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1SharedToken) GetKind

func (o *CdxV1SharedToken) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*CdxV1SharedToken) GetKindOk

func (o *CdxV1SharedToken) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1SharedToken) GetMetadata

func (o *CdxV1SharedToken) GetMetadata() ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CdxV1SharedToken) GetMetadataOk

func (o *CdxV1SharedToken) GetMetadataOk() (*ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1SharedToken) GetToken

func (o *CdxV1SharedToken) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*CdxV1SharedToken) GetTokenOk

func (o *CdxV1SharedToken) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CdxV1SharedToken) HasApiVersion

func (o *CdxV1SharedToken) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*CdxV1SharedToken) HasId

func (o *CdxV1SharedToken) HasId() bool

HasId returns a boolean if a field has been set.

func (*CdxV1SharedToken) HasKind

func (o *CdxV1SharedToken) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CdxV1SharedToken) HasMetadata

func (o *CdxV1SharedToken) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CdxV1SharedToken) HasToken

func (o *CdxV1SharedToken) HasToken() bool

HasToken returns a boolean if a field has been set.

func (CdxV1SharedToken) MarshalJSON

func (o CdxV1SharedToken) MarshalJSON() ([]byte, error)

func (*CdxV1SharedToken) Redact

func (o *CdxV1SharedToken) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1SharedToken) SetApiVersion

func (o *CdxV1SharedToken) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*CdxV1SharedToken) SetId

func (o *CdxV1SharedToken) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CdxV1SharedToken) SetKind

func (o *CdxV1SharedToken) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*CdxV1SharedToken) SetMetadata

func (o *CdxV1SharedToken) SetMetadata(v ObjectMeta)

SetMetadata gets a reference to the given ObjectMeta and assigns it to the Metadata field.

func (*CdxV1SharedToken) SetToken

func (o *CdxV1SharedToken) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

type CdxV1SharedTopic

type CdxV1SharedTopic struct {
	// The shared resource kind
	Kind string `json:"kind"`
	// The topic name
	Topic string `json:"topic"`
}

CdxV1SharedTopic The shared resource details

func NewCdxV1SharedTopic

func NewCdxV1SharedTopic(kind string, topic string) *CdxV1SharedTopic

NewCdxV1SharedTopic instantiates a new CdxV1SharedTopic object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCdxV1SharedTopicWithDefaults

func NewCdxV1SharedTopicWithDefaults() *CdxV1SharedTopic

NewCdxV1SharedTopicWithDefaults instantiates a new CdxV1SharedTopic object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CdxV1SharedTopic) GetKind

func (o *CdxV1SharedTopic) GetKind() string

GetKind returns the Kind field value

func (*CdxV1SharedTopic) GetKindOk

func (o *CdxV1SharedTopic) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*CdxV1SharedTopic) GetTopic

func (o *CdxV1SharedTopic) GetTopic() string

GetTopic returns the Topic field value

func (*CdxV1SharedTopic) GetTopicOk

func (o *CdxV1SharedTopic) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value and a boolean to check if the value has been set.

func (CdxV1SharedTopic) MarshalJSON

func (o CdxV1SharedTopic) MarshalJSON() ([]byte, error)

func (*CdxV1SharedTopic) Redact

func (o *CdxV1SharedTopic) Redact()

Redact resets all sensitive fields to their zero value.

func (*CdxV1SharedTopic) SetKind

func (o *CdxV1SharedTopic) SetKind(v string)

SetKind sets field value

func (*CdxV1SharedTopic) SetTopic

func (o *CdxV1SharedTopic) SetTopic(v string)

SetTopic sets field value

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type ConsumerSharedResourcesCdxV1Api

type ConsumerSharedResourcesCdxV1Api interface {

	/*
		GetCdxV1ConsumerSharedResource Read a Consumer Shared Resource

		Make a request to read a consumer shared resource.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the consumer shared resource.
		 @return ApiGetCdxV1ConsumerSharedResourceRequest
	*/
	GetCdxV1ConsumerSharedResource(ctx _context.Context, id string) ApiGetCdxV1ConsumerSharedResourceRequest

	// GetCdxV1ConsumerSharedResourceExecute executes the request
	//  @return CdxV1ConsumerSharedResource
	GetCdxV1ConsumerSharedResourceExecute(r ApiGetCdxV1ConsumerSharedResourceRequest) (CdxV1ConsumerSharedResource, *_nethttp.Response, error)

	/*
		ImageCdxV1ConsumerSharedResource Get image for shared resource

		Returns the image file for the shared resource

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the consumer shared resource.
		 @param fileName The File Name
		 @return ApiImageCdxV1ConsumerSharedResourceRequest
	*/
	ImageCdxV1ConsumerSharedResource(ctx _context.Context, id string, fileName string) ApiImageCdxV1ConsumerSharedResourceRequest

	// ImageCdxV1ConsumerSharedResourceExecute executes the request
	//  @return *os.File
	ImageCdxV1ConsumerSharedResourceExecute(r ApiImageCdxV1ConsumerSharedResourceRequest) (*os.File, *_nethttp.Response, error)

	/*
		ListCdxV1ConsumerSharedResources List of Consumer Shared Resources

		Retrieve a sorted, filtered, paginated list of all consumer shared resources.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @return ApiListCdxV1ConsumerSharedResourcesRequest
	*/
	ListCdxV1ConsumerSharedResources(ctx _context.Context) ApiListCdxV1ConsumerSharedResourcesRequest

	// ListCdxV1ConsumerSharedResourcesExecute executes the request
	//  @return CdxV1ConsumerSharedResourceList
	ListCdxV1ConsumerSharedResourcesExecute(r ApiListCdxV1ConsumerSharedResourcesRequest) (CdxV1ConsumerSharedResourceList, *_nethttp.Response, error)

	/*
		NetworkCdxV1ConsumerSharedResource Get shared resource's network configuration

		Returns network information of the shared resource

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the consumer shared resource.
		 @return ApiNetworkCdxV1ConsumerSharedResourceRequest
	*/
	NetworkCdxV1ConsumerSharedResource(ctx _context.Context, id string) ApiNetworkCdxV1ConsumerSharedResourceRequest

	// NetworkCdxV1ConsumerSharedResourceExecute executes the request
	//  @return CdxV1Network
	NetworkCdxV1ConsumerSharedResourceExecute(r ApiNetworkCdxV1ConsumerSharedResourceRequest) (CdxV1Network, *_nethttp.Response, error)
}

type ConsumerSharedResourcesCdxV1ApiService

type ConsumerSharedResourcesCdxV1ApiService service

ConsumerSharedResourcesCdxV1ApiService ConsumerSharedResourcesCdxV1Api service

func (*ConsumerSharedResourcesCdxV1ApiService) GetCdxV1ConsumerSharedResource

GetCdxV1ConsumerSharedResource Read a Consumer Shared Resource

Make a request to read a consumer shared resource.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the consumer shared resource.
@return ApiGetCdxV1ConsumerSharedResourceRequest

func (*ConsumerSharedResourcesCdxV1ApiService) GetCdxV1ConsumerSharedResourceExecute

Execute executes the request

@return CdxV1ConsumerSharedResource

func (*ConsumerSharedResourcesCdxV1ApiService) ImageCdxV1ConsumerSharedResource

ImageCdxV1ConsumerSharedResource Get image for shared resource

Returns the image file for the shared resource

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the consumer shared resource.
@param fileName The File Name
@return ApiImageCdxV1ConsumerSharedResourceRequest

func (*ConsumerSharedResourcesCdxV1ApiService) ImageCdxV1ConsumerSharedResourceExecute

Execute executes the request

@return *os.File

func (*ConsumerSharedResourcesCdxV1ApiService) ListCdxV1ConsumerSharedResources

ListCdxV1ConsumerSharedResources List of Consumer Shared Resources

Retrieve a sorted, filtered, paginated list of all consumer shared resources.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListCdxV1ConsumerSharedResourcesRequest

func (*ConsumerSharedResourcesCdxV1ApiService) ListCdxV1ConsumerSharedResourcesExecute

Execute executes the request

@return CdxV1ConsumerSharedResourceList

func (*ConsumerSharedResourcesCdxV1ApiService) NetworkCdxV1ConsumerSharedResource added in v0.0.2

NetworkCdxV1ConsumerSharedResource Get shared resource's network configuration

Returns network information of the shared resource

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the consumer shared resource.
@return ApiNetworkCdxV1ConsumerSharedResourceRequest

func (*ConsumerSharedResourcesCdxV1ApiService) NetworkCdxV1ConsumerSharedResourceExecute added in v0.0.2

Execute executes the request

@return CdxV1Network

type ConsumerSharesCdxV1Api

type ConsumerSharesCdxV1Api interface {

	/*
		DeleteCdxV1ConsumerShare Delete a Consumer Share

		Make a request to delete a consumer share.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the consumer share.
		 @return ApiDeleteCdxV1ConsumerShareRequest
	*/
	DeleteCdxV1ConsumerShare(ctx _context.Context, id string) ApiDeleteCdxV1ConsumerShareRequest

	// DeleteCdxV1ConsumerShareExecute executes the request
	DeleteCdxV1ConsumerShareExecute(r ApiDeleteCdxV1ConsumerShareRequest) (*_nethttp.Response, error)

	/*
		GetCdxV1ConsumerShare Read a Consumer Share

		Make a request to read a consumer share.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the consumer share.
		 @return ApiGetCdxV1ConsumerShareRequest
	*/
	GetCdxV1ConsumerShare(ctx _context.Context, id string) ApiGetCdxV1ConsumerShareRequest

	// GetCdxV1ConsumerShareExecute executes the request
	//  @return CdxV1ConsumerShare
	GetCdxV1ConsumerShareExecute(r ApiGetCdxV1ConsumerShareRequest) (CdxV1ConsumerShare, *_nethttp.Response, error)

	/*
		ListCdxV1ConsumerShares List of Consumer Shares

		Retrieve a sorted, filtered, paginated list of all consumer shares.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @return ApiListCdxV1ConsumerSharesRequest
	*/
	ListCdxV1ConsumerShares(ctx _context.Context) ApiListCdxV1ConsumerSharesRequest

	// ListCdxV1ConsumerSharesExecute executes the request
	//  @return CdxV1ConsumerShareList
	ListCdxV1ConsumerSharesExecute(r ApiListCdxV1ConsumerSharesRequest) (CdxV1ConsumerShareList, *_nethttp.Response, error)
}

type ConsumerSharesCdxV1ApiService

type ConsumerSharesCdxV1ApiService service

ConsumerSharesCdxV1ApiService ConsumerSharesCdxV1Api service

func (*ConsumerSharesCdxV1ApiService) DeleteCdxV1ConsumerShare

DeleteCdxV1ConsumerShare Delete a Consumer Share

Make a request to delete a consumer share.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the consumer share.
@return ApiDeleteCdxV1ConsumerShareRequest

func (*ConsumerSharesCdxV1ApiService) DeleteCdxV1ConsumerShareExecute

Execute executes the request

func (*ConsumerSharesCdxV1ApiService) GetCdxV1ConsumerShare

GetCdxV1ConsumerShare Read a Consumer Share

Make a request to read a consumer share.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the consumer share.
@return ApiGetCdxV1ConsumerShareRequest

func (*ConsumerSharesCdxV1ApiService) GetCdxV1ConsumerShareExecute

Execute executes the request

@return CdxV1ConsumerShare

func (*ConsumerSharesCdxV1ApiService) ListCdxV1ConsumerShares

ListCdxV1ConsumerShares List of Consumer Shares

Retrieve a sorted, filtered, paginated list of all consumer shares.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListCdxV1ConsumerSharesRequest

func (*ConsumerSharesCdxV1ApiService) ListCdxV1ConsumerSharesExecute

Execute executes the request

@return CdxV1ConsumerShareList

type EnvScopedObjectReference added in v0.0.3

type EnvScopedObjectReference struct {
	// ID of the referred resource
	Id string `json:"id"`
	// Environment of the referred resource, if env-scoped
	Environment *string `json:"environment,omitempty"`
	// API URL for accessing or modifying the referred object
	Related string `json:"related"`
	// CRN reference to the referred resource
	ResourceName string `json:"resource_name"`
}

EnvScopedObjectReference ObjectReference provides information for you to locate the referred object

func NewEnvScopedObjectReference added in v0.0.3

func NewEnvScopedObjectReference(id string, related string, resourceName string) *EnvScopedObjectReference

NewEnvScopedObjectReference instantiates a new EnvScopedObjectReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEnvScopedObjectReferenceWithDefaults added in v0.0.3

func NewEnvScopedObjectReferenceWithDefaults() *EnvScopedObjectReference

NewEnvScopedObjectReferenceWithDefaults instantiates a new EnvScopedObjectReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EnvScopedObjectReference) GetEnvironment added in v0.0.3

func (o *EnvScopedObjectReference) GetEnvironment() string

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*EnvScopedObjectReference) GetEnvironmentOk added in v0.0.3

func (o *EnvScopedObjectReference) GetEnvironmentOk() (*string, bool)

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvScopedObjectReference) GetId added in v0.0.3

func (o *EnvScopedObjectReference) GetId() string

GetId returns the Id field value

func (*EnvScopedObjectReference) GetIdOk added in v0.0.3

func (o *EnvScopedObjectReference) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*EnvScopedObjectReference) GetRelated added in v0.0.3

func (o *EnvScopedObjectReference) GetRelated() string

GetRelated returns the Related field value

func (*EnvScopedObjectReference) GetRelatedOk added in v0.0.3

func (o *EnvScopedObjectReference) GetRelatedOk() (*string, bool)

GetRelatedOk returns a tuple with the Related field value and a boolean to check if the value has been set.

func (*EnvScopedObjectReference) GetResourceName added in v0.0.3

func (o *EnvScopedObjectReference) GetResourceName() string

GetResourceName returns the ResourceName field value

func (*EnvScopedObjectReference) GetResourceNameOk added in v0.0.3

func (o *EnvScopedObjectReference) GetResourceNameOk() (*string, bool)

GetResourceNameOk returns a tuple with the ResourceName field value and a boolean to check if the value has been set.

func (*EnvScopedObjectReference) HasEnvironment added in v0.0.3

func (o *EnvScopedObjectReference) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (EnvScopedObjectReference) MarshalJSON added in v0.0.3

func (o EnvScopedObjectReference) MarshalJSON() ([]byte, error)

func (*EnvScopedObjectReference) Redact added in v0.0.3

func (o *EnvScopedObjectReference) Redact()

Redact resets all sensitive fields to their zero value.

func (*EnvScopedObjectReference) SetEnvironment added in v0.0.3

func (o *EnvScopedObjectReference) SetEnvironment(v string)

SetEnvironment gets a reference to the given string and assigns it to the Environment field.

func (*EnvScopedObjectReference) SetId added in v0.0.3

func (o *EnvScopedObjectReference) SetId(v string)

SetId sets field value

func (*EnvScopedObjectReference) SetRelated added in v0.0.3

func (o *EnvScopedObjectReference) SetRelated(v string)

SetRelated sets field value

func (*EnvScopedObjectReference) SetResourceName added in v0.0.3

func (o *EnvScopedObjectReference) SetResourceName(v string)

SetResourceName sets field value

type Error

type Error struct {
	// A unique identifier for this particular occurrence of the problem.
	Id *string `json:"id,omitempty"`
	// The HTTP status code applicable to this problem, expressed as a string value.
	Status *string `json:"status,omitempty"`
	// An application-specific error code, expressed as a string value.
	Code *string `json:"code,omitempty"`
	// A short, human-readable summary of the problem. It **SHOULD NOT** change from occurrence to occurrence of the problem, except for purposes of localization.
	Title *string `json:"title,omitempty"`
	// A human-readable explanation specific to this occurrence of the problem.
	Detail *string      `json:"detail,omitempty"`
	Source *ErrorSource `json:"source,omitempty"`
}

Error Describes a particular error encountered while performing an operation.

func NewError

func NewError() *Error

NewError instantiates a new Error object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Error) GetCode

func (o *Error) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*Error) GetCodeOk

func (o *Error) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetDetail

func (o *Error) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*Error) GetDetailOk

func (o *Error) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetId

func (o *Error) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Error) GetIdOk

func (o *Error) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetSource

func (o *Error) GetSource() ErrorSource

GetSource returns the Source field value if set, zero value otherwise.

func (*Error) GetSourceOk

func (o *Error) GetSourceOk() (*ErrorSource, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetStatus

func (o *Error) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Error) GetStatusOk

func (o *Error) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetTitle

func (o *Error) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*Error) GetTitleOk

func (o *Error) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasDetail

func (o *Error) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*Error) HasId

func (o *Error) HasId() bool

HasId returns a boolean if a field has been set.

func (*Error) HasSource

func (o *Error) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*Error) HasStatus

func (o *Error) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Error) HasTitle

func (o *Error) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (Error) MarshalJSON

func (o Error) MarshalJSON() ([]byte, error)

func (*Error) Redact

func (o *Error) Redact()

Redact resets all sensitive fields to their zero value.

func (*Error) SetCode

func (o *Error) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*Error) SetDetail

func (o *Error) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*Error) SetId

func (o *Error) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Error) SetSource

func (o *Error) SetSource(v ErrorSource)

SetSource gets a reference to the given ErrorSource and assigns it to the Source field.

func (*Error) SetStatus

func (o *Error) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*Error) SetTitle

func (o *Error) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

type ErrorSource

type ErrorSource struct {
	// A JSON Pointer [RFC6901] to the associated entity in the request document [e.g. \"/spec\" for a spec object, or \"/spec/title\" for a specific field].
	Pointer *string `json:"pointer,omitempty"`
	// A string indicating which query parameter caused the error.
	Parameter *string `json:"parameter,omitempty"`
}

ErrorSource If this error was caused by a particular part of the API request, the source will point to the query string parameter or request body property that caused it.

func NewErrorSource

func NewErrorSource() *ErrorSource

NewErrorSource instantiates a new ErrorSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorSourceWithDefaults

func NewErrorSourceWithDefaults() *ErrorSource

NewErrorSourceWithDefaults instantiates a new ErrorSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ErrorSource) GetParameter

func (o *ErrorSource) GetParameter() string

GetParameter returns the Parameter field value if set, zero value otherwise.

func (*ErrorSource) GetParameterOk

func (o *ErrorSource) GetParameterOk() (*string, bool)

GetParameterOk returns a tuple with the Parameter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorSource) GetPointer

func (o *ErrorSource) GetPointer() string

GetPointer returns the Pointer field value if set, zero value otherwise.

func (*ErrorSource) GetPointerOk

func (o *ErrorSource) GetPointerOk() (*string, bool)

GetPointerOk returns a tuple with the Pointer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorSource) HasParameter

func (o *ErrorSource) HasParameter() bool

HasParameter returns a boolean if a field has been set.

func (*ErrorSource) HasPointer

func (o *ErrorSource) HasPointer() bool

HasPointer returns a boolean if a field has been set.

func (ErrorSource) MarshalJSON

func (o ErrorSource) MarshalJSON() ([]byte, error)

func (*ErrorSource) Redact

func (o *ErrorSource) Redact()

Redact resets all sensitive fields to their zero value.

func (*ErrorSource) SetParameter

func (o *ErrorSource) SetParameter(v string)

SetParameter gets a reference to the given string and assigns it to the Parameter field.

func (*ErrorSource) SetPointer

func (o *ErrorSource) SetPointer(v string)

SetPointer gets a reference to the given string and assigns it to the Pointer field.

type Failure

type Failure struct {
	// List of errors which caused this operation to fail
	Errors []Error `json:"errors"`
}

Failure Provides information about problems encountered while performing an operation.

func NewFailure

func NewFailure(errors []Error) *Failure

NewFailure instantiates a new Failure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFailureWithDefaults

func NewFailureWithDefaults() *Failure

NewFailureWithDefaults instantiates a new Failure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Failure) GetErrors

func (o *Failure) GetErrors() []Error

GetErrors returns the Errors field value

func (*Failure) GetErrorsOk

func (o *Failure) GetErrorsOk() (*[]Error, bool)

GetErrorsOk returns a tuple with the Errors field value and a boolean to check if the value has been set.

func (Failure) MarshalJSON

func (o Failure) MarshalJSON() ([]byte, error)

func (*Failure) Redact

func (o *Failure) Redact()

Redact resets all sensitive fields to their zero value.

func (*Failure) SetErrors

func (o *Failure) SetErrors(v []Error)

SetErrors sets field value

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GlobalObjectReference added in v0.0.3

type GlobalObjectReference struct {
	// ID of the referred resource
	Id string `json:"id"`
	// API URL for accessing or modifying the referred object
	Related string `json:"related"`
	// CRN reference to the referred resource
	ResourceName string `json:"resource_name"`
}

GlobalObjectReference ObjectReference provides information for you to locate the referred object

func NewGlobalObjectReference added in v0.0.3

func NewGlobalObjectReference(id string, related string, resourceName string) *GlobalObjectReference

NewGlobalObjectReference instantiates a new GlobalObjectReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGlobalObjectReferenceWithDefaults added in v0.0.3

func NewGlobalObjectReferenceWithDefaults() *GlobalObjectReference

NewGlobalObjectReferenceWithDefaults instantiates a new GlobalObjectReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GlobalObjectReference) GetId added in v0.0.3

func (o *GlobalObjectReference) GetId() string

GetId returns the Id field value

func (*GlobalObjectReference) GetIdOk added in v0.0.3

func (o *GlobalObjectReference) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*GlobalObjectReference) GetRelated added in v0.0.3

func (o *GlobalObjectReference) GetRelated() string

GetRelated returns the Related field value

func (*GlobalObjectReference) GetRelatedOk added in v0.0.3

func (o *GlobalObjectReference) GetRelatedOk() (*string, bool)

GetRelatedOk returns a tuple with the Related field value and a boolean to check if the value has been set.

func (*GlobalObjectReference) GetResourceName added in v0.0.3

func (o *GlobalObjectReference) GetResourceName() string

GetResourceName returns the ResourceName field value

func (*GlobalObjectReference) GetResourceNameOk added in v0.0.3

func (o *GlobalObjectReference) GetResourceNameOk() (*string, bool)

GetResourceNameOk returns a tuple with the ResourceName field value and a boolean to check if the value has been set.

func (GlobalObjectReference) MarshalJSON added in v0.0.3

func (o GlobalObjectReference) MarshalJSON() ([]byte, error)

func (*GlobalObjectReference) Redact added in v0.0.3

func (o *GlobalObjectReference) Redact()

Redact resets all sensitive fields to their zero value.

func (*GlobalObjectReference) SetId added in v0.0.3

func (o *GlobalObjectReference) SetId(v string)

SetId sets field value

func (*GlobalObjectReference) SetRelated added in v0.0.3

func (o *GlobalObjectReference) SetRelated(v string)

SetRelated sets field value

func (*GlobalObjectReference) SetResourceName added in v0.0.3

func (o *GlobalObjectReference) SetResourceName(v string)

SetResourceName sets field value

type InlineResponse200

type InlineResponse200 struct {
	ConsumerSharedResources *[]CdxV1ConsumerSharedResource `json:"consumer_shared_resources,omitempty"`
}

InlineResponse200 struct for InlineResponse200

func NewInlineResponse200

func NewInlineResponse200() *InlineResponse200

NewInlineResponse200 instantiates a new InlineResponse200 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInlineResponse200WithDefaults

func NewInlineResponse200WithDefaults() *InlineResponse200

NewInlineResponse200WithDefaults instantiates a new InlineResponse200 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InlineResponse200) GetConsumerSharedResources added in v0.0.3

func (o *InlineResponse200) GetConsumerSharedResources() []CdxV1ConsumerSharedResource

GetConsumerSharedResources returns the ConsumerSharedResources field value if set, zero value otherwise.

func (*InlineResponse200) GetConsumerSharedResourcesOk added in v0.0.3

func (o *InlineResponse200) GetConsumerSharedResourcesOk() (*[]CdxV1ConsumerSharedResource, bool)

GetConsumerSharedResourcesOk returns a tuple with the ConsumerSharedResources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InlineResponse200) HasConsumerSharedResources added in v0.0.3

func (o *InlineResponse200) HasConsumerSharedResources() bool

HasConsumerSharedResources returns a boolean if a field has been set.

func (InlineResponse200) MarshalJSON

func (o InlineResponse200) MarshalJSON() ([]byte, error)

func (*InlineResponse200) Redact

func (o *InlineResponse200) Redact()

Redact resets all sensitive fields to their zero value.

func (*InlineResponse200) SetConsumerSharedResources added in v0.0.3

func (o *InlineResponse200) SetConsumerSharedResources(v []CdxV1ConsumerSharedResource)

SetConsumerSharedResources gets a reference to the given []CdxV1ConsumerSharedResource and assigns it to the ConsumerSharedResources field.

type ListMeta

type ListMeta struct {
	// A link to the first page of results. If a response does not contain a first link, then direct navigation to the first page is not supported.
	First NullableString `json:"first,omitempty"`
	// A link to the last page of results. If a response does not contain a last link, then direct navigation to the last page is not supported.
	Last NullableString `json:"last,omitempty"`
	// A link to the previous page of results. If a response does not contain a prev link, then either there is no previous data or backwards traversal through the result set is not supported.
	Prev NullableString `json:"prev,omitempty"`
	// A link to the next page of results. If a response does not contain a next link, then there is no more data available.
	Next NullableString `json:"next,omitempty"`
	// Number of records in the full result set. This response may be paginated and have a smaller number of records.
	TotalSize *int32 `json:"total_size,omitempty"`
}

ListMeta ListMeta describes metadata that resource collections may have

func NewListMeta

func NewListMeta() *ListMeta

NewListMeta instantiates a new ListMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListMetaWithDefaults

func NewListMetaWithDefaults() *ListMeta

NewListMetaWithDefaults instantiates a new ListMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListMeta) GetFirst

func (o *ListMeta) GetFirst() string

GetFirst returns the First field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListMeta) GetFirstOk

func (o *ListMeta) GetFirstOk() (*string, bool)

GetFirstOk returns a tuple with the First field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListMeta) GetLast

func (o *ListMeta) GetLast() string

GetLast returns the Last field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListMeta) GetLastOk

func (o *ListMeta) GetLastOk() (*string, bool)

GetLastOk returns a tuple with the Last field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListMeta) GetNext

func (o *ListMeta) GetNext() string

GetNext returns the Next field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListMeta) GetNextOk

func (o *ListMeta) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListMeta) GetPrev

func (o *ListMeta) GetPrev() string

GetPrev returns the Prev field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListMeta) GetPrevOk

func (o *ListMeta) GetPrevOk() (*string, bool)

GetPrevOk returns a tuple with the Prev field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListMeta) GetTotalSize

func (o *ListMeta) GetTotalSize() int32

GetTotalSize returns the TotalSize field value if set, zero value otherwise.

func (*ListMeta) GetTotalSizeOk

func (o *ListMeta) GetTotalSizeOk() (*int32, bool)

GetTotalSizeOk returns a tuple with the TotalSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMeta) HasFirst

func (o *ListMeta) HasFirst() bool

HasFirst returns a boolean if a field has been set.

func (*ListMeta) HasLast

func (o *ListMeta) HasLast() bool

HasLast returns a boolean if a field has been set.

func (*ListMeta) HasNext

func (o *ListMeta) HasNext() bool

HasNext returns a boolean if a field has been set.

func (*ListMeta) HasPrev

func (o *ListMeta) HasPrev() bool

HasPrev returns a boolean if a field has been set.

func (*ListMeta) HasTotalSize

func (o *ListMeta) HasTotalSize() bool

HasTotalSize returns a boolean if a field has been set.

func (ListMeta) MarshalJSON

func (o ListMeta) MarshalJSON() ([]byte, error)

func (*ListMeta) Redact

func (o *ListMeta) Redact()

Redact resets all sensitive fields to their zero value.

func (*ListMeta) SetFirst

func (o *ListMeta) SetFirst(v string)

SetFirst gets a reference to the given NullableString and assigns it to the First field.

func (*ListMeta) SetFirstNil

func (o *ListMeta) SetFirstNil()

SetFirstNil sets the value for First to be an explicit nil

func (*ListMeta) SetLast

func (o *ListMeta) SetLast(v string)

SetLast gets a reference to the given NullableString and assigns it to the Last field.

func (*ListMeta) SetLastNil

func (o *ListMeta) SetLastNil()

SetLastNil sets the value for Last to be an explicit nil

func (*ListMeta) SetNext

func (o *ListMeta) SetNext(v string)

SetNext gets a reference to the given NullableString and assigns it to the Next field.

func (*ListMeta) SetNextNil

func (o *ListMeta) SetNextNil()

SetNextNil sets the value for Next to be an explicit nil

func (*ListMeta) SetPrev

func (o *ListMeta) SetPrev(v string)

SetPrev gets a reference to the given NullableString and assigns it to the Prev field.

func (*ListMeta) SetPrevNil

func (o *ListMeta) SetPrevNil()

SetPrevNil sets the value for Prev to be an explicit nil

func (*ListMeta) SetTotalSize

func (o *ListMeta) SetTotalSize(v int32)

SetTotalSize gets a reference to the given int32 and assigns it to the TotalSize field.

func (*ListMeta) UnsetFirst

func (o *ListMeta) UnsetFirst()

UnsetFirst ensures that no value is present for First, not even an explicit nil

func (*ListMeta) UnsetLast

func (o *ListMeta) UnsetLast()

UnsetLast ensures that no value is present for Last, not even an explicit nil

func (*ListMeta) UnsetNext

func (o *ListMeta) UnsetNext()

UnsetNext ensures that no value is present for Next, not even an explicit nil

func (*ListMeta) UnsetPrev

func (o *ListMeta) UnsetPrev()

UnsetPrev ensures that no value is present for Prev, not even an explicit nil

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCdxV1AwsNetwork added in v0.0.2

type NullableCdxV1AwsNetwork struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1AwsNetwork added in v0.0.2

func NewNullableCdxV1AwsNetwork(val *CdxV1AwsNetwork) *NullableCdxV1AwsNetwork

func (NullableCdxV1AwsNetwork) Get added in v0.0.2

func (NullableCdxV1AwsNetwork) IsSet added in v0.0.2

func (v NullableCdxV1AwsNetwork) IsSet() bool

func (NullableCdxV1AwsNetwork) MarshalJSON added in v0.0.2

func (v NullableCdxV1AwsNetwork) MarshalJSON() ([]byte, error)

func (*NullableCdxV1AwsNetwork) Set added in v0.0.2

func (*NullableCdxV1AwsNetwork) UnmarshalJSON added in v0.0.2

func (v *NullableCdxV1AwsNetwork) UnmarshalJSON(src []byte) error

func (*NullableCdxV1AwsNetwork) Unset added in v0.0.2

func (v *NullableCdxV1AwsNetwork) Unset()

type NullableCdxV1AzureNetwork added in v0.0.2

type NullableCdxV1AzureNetwork struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1AzureNetwork added in v0.0.2

func NewNullableCdxV1AzureNetwork(val *CdxV1AzureNetwork) *NullableCdxV1AzureNetwork

func (NullableCdxV1AzureNetwork) Get added in v0.0.2

func (NullableCdxV1AzureNetwork) IsSet added in v0.0.2

func (v NullableCdxV1AzureNetwork) IsSet() bool

func (NullableCdxV1AzureNetwork) MarshalJSON added in v0.0.2

func (v NullableCdxV1AzureNetwork) MarshalJSON() ([]byte, error)

func (*NullableCdxV1AzureNetwork) Set added in v0.0.2

func (*NullableCdxV1AzureNetwork) UnmarshalJSON added in v0.0.2

func (v *NullableCdxV1AzureNetwork) UnmarshalJSON(src []byte) error

func (*NullableCdxV1AzureNetwork) Unset added in v0.0.2

func (v *NullableCdxV1AzureNetwork) Unset()

type NullableCdxV1ConnectionTypes added in v0.0.2

type NullableCdxV1ConnectionTypes struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1ConnectionTypes added in v0.0.2

func NewNullableCdxV1ConnectionTypes(val *CdxV1ConnectionTypes) *NullableCdxV1ConnectionTypes

func (NullableCdxV1ConnectionTypes) Get added in v0.0.2

func (NullableCdxV1ConnectionTypes) IsSet added in v0.0.2

func (NullableCdxV1ConnectionTypes) MarshalJSON added in v0.0.2

func (v NullableCdxV1ConnectionTypes) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ConnectionTypes) Set added in v0.0.2

func (*NullableCdxV1ConnectionTypes) UnmarshalJSON added in v0.0.2

func (v *NullableCdxV1ConnectionTypes) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ConnectionTypes) Unset added in v0.0.2

func (v *NullableCdxV1ConnectionTypes) Unset()

type NullableCdxV1ConsumerShare

type NullableCdxV1ConsumerShare struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1ConsumerShare

func NewNullableCdxV1ConsumerShare(val *CdxV1ConsumerShare) *NullableCdxV1ConsumerShare

func (NullableCdxV1ConsumerShare) Get

func (NullableCdxV1ConsumerShare) IsSet

func (v NullableCdxV1ConsumerShare) IsSet() bool

func (NullableCdxV1ConsumerShare) MarshalJSON

func (v NullableCdxV1ConsumerShare) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ConsumerShare) Set

func (*NullableCdxV1ConsumerShare) UnmarshalJSON

func (v *NullableCdxV1ConsumerShare) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ConsumerShare) Unset

func (v *NullableCdxV1ConsumerShare) Unset()

type NullableCdxV1ConsumerShareList

type NullableCdxV1ConsumerShareList struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1ConsumerShareList) Get

func (NullableCdxV1ConsumerShareList) IsSet

func (NullableCdxV1ConsumerShareList) MarshalJSON

func (v NullableCdxV1ConsumerShareList) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ConsumerShareList) Set

func (*NullableCdxV1ConsumerShareList) UnmarshalJSON

func (v *NullableCdxV1ConsumerShareList) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ConsumerShareList) Unset

func (v *NullableCdxV1ConsumerShareList) Unset()

type NullableCdxV1ConsumerShareStatus added in v0.0.3

type NullableCdxV1ConsumerShareStatus struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1ConsumerShareStatus added in v0.0.3

func NewNullableCdxV1ConsumerShareStatus(val *CdxV1ConsumerShareStatus) *NullableCdxV1ConsumerShareStatus

func (NullableCdxV1ConsumerShareStatus) Get added in v0.0.3

func (NullableCdxV1ConsumerShareStatus) IsSet added in v0.0.3

func (NullableCdxV1ConsumerShareStatus) MarshalJSON added in v0.0.3

func (v NullableCdxV1ConsumerShareStatus) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ConsumerShareStatus) Set added in v0.0.3

func (*NullableCdxV1ConsumerShareStatus) UnmarshalJSON added in v0.0.3

func (v *NullableCdxV1ConsumerShareStatus) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ConsumerShareStatus) Unset added in v0.0.3

type NullableCdxV1ConsumerSharedResource

type NullableCdxV1ConsumerSharedResource struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1ConsumerSharedResource) Get

func (NullableCdxV1ConsumerSharedResource) IsSet

func (NullableCdxV1ConsumerSharedResource) MarshalJSON

func (v NullableCdxV1ConsumerSharedResource) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ConsumerSharedResource) Set

func (*NullableCdxV1ConsumerSharedResource) UnmarshalJSON

func (v *NullableCdxV1ConsumerSharedResource) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ConsumerSharedResource) Unset

type NullableCdxV1ConsumerSharedResourceList

type NullableCdxV1ConsumerSharedResourceList struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1ConsumerSharedResourceList) Get

func (NullableCdxV1ConsumerSharedResourceList) IsSet

func (NullableCdxV1ConsumerSharedResourceList) MarshalJSON

func (v NullableCdxV1ConsumerSharedResourceList) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ConsumerSharedResourceList) Set

func (*NullableCdxV1ConsumerSharedResourceList) UnmarshalJSON

func (v *NullableCdxV1ConsumerSharedResourceList) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ConsumerSharedResourceList) Unset

type NullableCdxV1CreateProviderShareRequest added in v0.0.3

type NullableCdxV1CreateProviderShareRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1CreateProviderShareRequest added in v0.0.3

func NewNullableCdxV1CreateProviderShareRequest(val *CdxV1CreateProviderShareRequest) *NullableCdxV1CreateProviderShareRequest

func (NullableCdxV1CreateProviderShareRequest) Get added in v0.0.3

func (NullableCdxV1CreateProviderShareRequest) IsSet added in v0.0.3

func (NullableCdxV1CreateProviderShareRequest) MarshalJSON added in v0.0.3

func (v NullableCdxV1CreateProviderShareRequest) MarshalJSON() ([]byte, error)

func (*NullableCdxV1CreateProviderShareRequest) Set added in v0.0.3

func (*NullableCdxV1CreateProviderShareRequest) UnmarshalJSON added in v0.0.3

func (v *NullableCdxV1CreateProviderShareRequest) UnmarshalJSON(src []byte) error

func (*NullableCdxV1CreateProviderShareRequest) Unset added in v0.0.3

type NullableCdxV1CreateProviderShareRequestConsumerRestrictionOneOf added in v0.0.3

type NullableCdxV1CreateProviderShareRequestConsumerRestrictionOneOf struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1CreateProviderShareRequestConsumerRestrictionOneOf) Get added in v0.0.3

func (NullableCdxV1CreateProviderShareRequestConsumerRestrictionOneOf) IsSet added in v0.0.3

func (NullableCdxV1CreateProviderShareRequestConsumerRestrictionOneOf) MarshalJSON added in v0.0.3

func (*NullableCdxV1CreateProviderShareRequestConsumerRestrictionOneOf) Set added in v0.0.3

func (*NullableCdxV1CreateProviderShareRequestConsumerRestrictionOneOf) UnmarshalJSON added in v0.0.3

func (*NullableCdxV1CreateProviderShareRequestConsumerRestrictionOneOf) Unset added in v0.0.3

type NullableCdxV1EmailConsumerRestriction

type NullableCdxV1EmailConsumerRestriction struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1EmailConsumerRestriction) Get

func (NullableCdxV1EmailConsumerRestriction) IsSet

func (NullableCdxV1EmailConsumerRestriction) MarshalJSON

func (v NullableCdxV1EmailConsumerRestriction) MarshalJSON() ([]byte, error)

func (*NullableCdxV1EmailConsumerRestriction) Set

func (*NullableCdxV1EmailConsumerRestriction) UnmarshalJSON

func (v *NullableCdxV1EmailConsumerRestriction) UnmarshalJSON(src []byte) error

func (*NullableCdxV1EmailConsumerRestriction) Unset

type NullableCdxV1GcpNetwork added in v0.0.3

type NullableCdxV1GcpNetwork struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1GcpNetwork added in v0.0.3

func NewNullableCdxV1GcpNetwork(val *CdxV1GcpNetwork) *NullableCdxV1GcpNetwork

func (NullableCdxV1GcpNetwork) Get added in v0.0.3

func (NullableCdxV1GcpNetwork) IsSet added in v0.0.3

func (v NullableCdxV1GcpNetwork) IsSet() bool

func (NullableCdxV1GcpNetwork) MarshalJSON added in v0.0.3

func (v NullableCdxV1GcpNetwork) MarshalJSON() ([]byte, error)

func (*NullableCdxV1GcpNetwork) Set added in v0.0.3

func (*NullableCdxV1GcpNetwork) UnmarshalJSON added in v0.0.3

func (v *NullableCdxV1GcpNetwork) UnmarshalJSON(src []byte) error

func (*NullableCdxV1GcpNetwork) Unset added in v0.0.3

func (v *NullableCdxV1GcpNetwork) Unset()

type NullableCdxV1Network added in v0.0.2

type NullableCdxV1Network struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1Network added in v0.0.2

func NewNullableCdxV1Network(val *CdxV1Network) *NullableCdxV1Network

func (NullableCdxV1Network) Get added in v0.0.2

func (NullableCdxV1Network) IsSet added in v0.0.2

func (v NullableCdxV1Network) IsSet() bool

func (NullableCdxV1Network) MarshalJSON added in v0.0.2

func (v NullableCdxV1Network) MarshalJSON() ([]byte, error)

func (*NullableCdxV1Network) Set added in v0.0.2

func (v *NullableCdxV1Network) Set(val *CdxV1Network)

func (*NullableCdxV1Network) UnmarshalJSON added in v0.0.2

func (v *NullableCdxV1Network) UnmarshalJSON(src []byte) error

func (*NullableCdxV1Network) Unset added in v0.0.2

func (v *NullableCdxV1Network) Unset()

type NullableCdxV1NetworkCloudOneOf added in v0.0.2

type NullableCdxV1NetworkCloudOneOf struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1NetworkCloudOneOf added in v0.0.2

func NewNullableCdxV1NetworkCloudOneOf(val *CdxV1NetworkCloudOneOf) *NullableCdxV1NetworkCloudOneOf

func (NullableCdxV1NetworkCloudOneOf) Get added in v0.0.2

func (NullableCdxV1NetworkCloudOneOf) IsSet added in v0.0.2

func (NullableCdxV1NetworkCloudOneOf) MarshalJSON added in v0.0.2

func (v NullableCdxV1NetworkCloudOneOf) MarshalJSON() ([]byte, error)

func (*NullableCdxV1NetworkCloudOneOf) Set added in v0.0.2

func (*NullableCdxV1NetworkCloudOneOf) UnmarshalJSON added in v0.0.2

func (v *NullableCdxV1NetworkCloudOneOf) UnmarshalJSON(src []byte) error

func (*NullableCdxV1NetworkCloudOneOf) Unset added in v0.0.2

func (v *NullableCdxV1NetworkCloudOneOf) Unset()

type NullableCdxV1OptIn added in v0.0.3

type NullableCdxV1OptIn struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1OptIn added in v0.0.3

func NewNullableCdxV1OptIn(val *CdxV1OptIn) *NullableCdxV1OptIn

func (NullableCdxV1OptIn) Get added in v0.0.3

func (v NullableCdxV1OptIn) Get() *CdxV1OptIn

func (NullableCdxV1OptIn) IsSet added in v0.0.3

func (v NullableCdxV1OptIn) IsSet() bool

func (NullableCdxV1OptIn) MarshalJSON added in v0.0.3

func (v NullableCdxV1OptIn) MarshalJSON() ([]byte, error)

func (*NullableCdxV1OptIn) Set added in v0.0.3

func (v *NullableCdxV1OptIn) Set(val *CdxV1OptIn)

func (*NullableCdxV1OptIn) UnmarshalJSON added in v0.0.3

func (v *NullableCdxV1OptIn) UnmarshalJSON(src []byte) error

func (*NullableCdxV1OptIn) Unset added in v0.0.3

func (v *NullableCdxV1OptIn) Unset()

type NullableCdxV1ProviderShare

type NullableCdxV1ProviderShare struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1ProviderShare

func NewNullableCdxV1ProviderShare(val *CdxV1ProviderShare) *NullableCdxV1ProviderShare

func (NullableCdxV1ProviderShare) Get

func (NullableCdxV1ProviderShare) IsSet

func (v NullableCdxV1ProviderShare) IsSet() bool

func (NullableCdxV1ProviderShare) MarshalJSON

func (v NullableCdxV1ProviderShare) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ProviderShare) Set

func (*NullableCdxV1ProviderShare) UnmarshalJSON

func (v *NullableCdxV1ProviderShare) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ProviderShare) Unset

func (v *NullableCdxV1ProviderShare) Unset()

type NullableCdxV1ProviderShareConsumerRestrictionOneOf added in v0.0.3

type NullableCdxV1ProviderShareConsumerRestrictionOneOf struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1ProviderShareConsumerRestrictionOneOf) Get added in v0.0.3

func (NullableCdxV1ProviderShareConsumerRestrictionOneOf) IsSet added in v0.0.3

func (NullableCdxV1ProviderShareConsumerRestrictionOneOf) MarshalJSON added in v0.0.3

func (*NullableCdxV1ProviderShareConsumerRestrictionOneOf) Set added in v0.0.3

func (*NullableCdxV1ProviderShareConsumerRestrictionOneOf) UnmarshalJSON added in v0.0.3

func (*NullableCdxV1ProviderShareConsumerRestrictionOneOf) Unset added in v0.0.3

type NullableCdxV1ProviderShareList

type NullableCdxV1ProviderShareList struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1ProviderShareList) Get

func (NullableCdxV1ProviderShareList) IsSet

func (NullableCdxV1ProviderShareList) MarshalJSON

func (v NullableCdxV1ProviderShareList) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ProviderShareList) Set

func (*NullableCdxV1ProviderShareList) UnmarshalJSON

func (v *NullableCdxV1ProviderShareList) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ProviderShareList) Unset

func (v *NullableCdxV1ProviderShareList) Unset()

type NullableCdxV1ProviderShareStatus added in v0.0.3

type NullableCdxV1ProviderShareStatus struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1ProviderShareStatus added in v0.0.3

func NewNullableCdxV1ProviderShareStatus(val *CdxV1ProviderShareStatus) *NullableCdxV1ProviderShareStatus

func (NullableCdxV1ProviderShareStatus) Get added in v0.0.3

func (NullableCdxV1ProviderShareStatus) IsSet added in v0.0.3

func (NullableCdxV1ProviderShareStatus) MarshalJSON added in v0.0.3

func (v NullableCdxV1ProviderShareStatus) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ProviderShareStatus) Set added in v0.0.3

func (*NullableCdxV1ProviderShareStatus) UnmarshalJSON added in v0.0.3

func (v *NullableCdxV1ProviderShareStatus) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ProviderShareStatus) Unset added in v0.0.3

type NullableCdxV1ProviderSharedResource

type NullableCdxV1ProviderSharedResource struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1ProviderSharedResource) Get

func (NullableCdxV1ProviderSharedResource) IsSet

func (NullableCdxV1ProviderSharedResource) MarshalJSON

func (v NullableCdxV1ProviderSharedResource) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ProviderSharedResource) Set

func (*NullableCdxV1ProviderSharedResource) UnmarshalJSON

func (v *NullableCdxV1ProviderSharedResource) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ProviderSharedResource) Unset

type NullableCdxV1ProviderSharedResourceList

type NullableCdxV1ProviderSharedResourceList struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1ProviderSharedResourceList) Get

func (NullableCdxV1ProviderSharedResourceList) IsSet

func (NullableCdxV1ProviderSharedResourceList) MarshalJSON

func (v NullableCdxV1ProviderSharedResourceList) MarshalJSON() ([]byte, error)

func (*NullableCdxV1ProviderSharedResourceList) Set

func (*NullableCdxV1ProviderSharedResourceList) UnmarshalJSON

func (v *NullableCdxV1ProviderSharedResourceList) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ProviderSharedResourceList) Unset

type NullableCdxV1ProviderSharedResourceUpdate

type NullableCdxV1ProviderSharedResourceUpdate struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1ProviderSharedResourceUpdate) Get

func (NullableCdxV1ProviderSharedResourceUpdate) IsSet

func (NullableCdxV1ProviderSharedResourceUpdate) MarshalJSON

func (*NullableCdxV1ProviderSharedResourceUpdate) Set

func (*NullableCdxV1ProviderSharedResourceUpdate) UnmarshalJSON

func (v *NullableCdxV1ProviderSharedResourceUpdate) UnmarshalJSON(src []byte) error

func (*NullableCdxV1ProviderSharedResourceUpdate) Unset

type NullableCdxV1RedeemTokenRequest added in v0.0.2

type NullableCdxV1RedeemTokenRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1RedeemTokenRequest added in v0.0.2

func NewNullableCdxV1RedeemTokenRequest(val *CdxV1RedeemTokenRequest) *NullableCdxV1RedeemTokenRequest

func (NullableCdxV1RedeemTokenRequest) Get added in v0.0.2

func (NullableCdxV1RedeemTokenRequest) IsSet added in v0.0.2

func (NullableCdxV1RedeemTokenRequest) MarshalJSON added in v0.0.2

func (v NullableCdxV1RedeemTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableCdxV1RedeemTokenRequest) Set added in v0.0.2

func (*NullableCdxV1RedeemTokenRequest) UnmarshalJSON added in v0.0.2

func (v *NullableCdxV1RedeemTokenRequest) UnmarshalJSON(src []byte) error

func (*NullableCdxV1RedeemTokenRequest) Unset added in v0.0.2

type NullableCdxV1RedeemTokenResponse added in v0.0.2

type NullableCdxV1RedeemTokenResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1RedeemTokenResponse added in v0.0.2

func NewNullableCdxV1RedeemTokenResponse(val *CdxV1RedeemTokenResponse) *NullableCdxV1RedeemTokenResponse

func (NullableCdxV1RedeemTokenResponse) Get added in v0.0.2

func (NullableCdxV1RedeemTokenResponse) IsSet added in v0.0.2

func (NullableCdxV1RedeemTokenResponse) MarshalJSON added in v0.0.2

func (v NullableCdxV1RedeemTokenResponse) MarshalJSON() ([]byte, error)

func (*NullableCdxV1RedeemTokenResponse) Set added in v0.0.2

func (*NullableCdxV1RedeemTokenResponse) UnmarshalJSON added in v0.0.2

func (v *NullableCdxV1RedeemTokenResponse) UnmarshalJSON(src []byte) error

func (*NullableCdxV1RedeemTokenResponse) Unset added in v0.0.2

type NullableCdxV1RedeemTokenResponseResourcesOneOf added in v0.0.2

type NullableCdxV1RedeemTokenResponseResourcesOneOf struct {
	// contains filtered or unexported fields
}

func (NullableCdxV1RedeemTokenResponseResourcesOneOf) Get added in v0.0.2

func (NullableCdxV1RedeemTokenResponseResourcesOneOf) IsSet added in v0.0.2

func (NullableCdxV1RedeemTokenResponseResourcesOneOf) MarshalJSON added in v0.0.2

func (*NullableCdxV1RedeemTokenResponseResourcesOneOf) Set added in v0.0.2

func (*NullableCdxV1RedeemTokenResponseResourcesOneOf) UnmarshalJSON added in v0.0.2

func (*NullableCdxV1RedeemTokenResponseResourcesOneOf) Unset added in v0.0.2

type NullableCdxV1Schema added in v0.0.5

type NullableCdxV1Schema struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1Schema added in v0.0.5

func NewNullableCdxV1Schema(val *CdxV1Schema) *NullableCdxV1Schema

func (NullableCdxV1Schema) Get added in v0.0.5

func (NullableCdxV1Schema) IsSet added in v0.0.5

func (v NullableCdxV1Schema) IsSet() bool

func (NullableCdxV1Schema) MarshalJSON added in v0.0.5

func (v NullableCdxV1Schema) MarshalJSON() ([]byte, error)

func (*NullableCdxV1Schema) Set added in v0.0.5

func (v *NullableCdxV1Schema) Set(val *CdxV1Schema)

func (*NullableCdxV1Schema) UnmarshalJSON added in v0.0.5

func (v *NullableCdxV1Schema) UnmarshalJSON(src []byte) error

func (*NullableCdxV1Schema) Unset added in v0.0.5

func (v *NullableCdxV1Schema) Unset()

type NullableCdxV1SharedGroup

type NullableCdxV1SharedGroup struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1SharedGroup

func NewNullableCdxV1SharedGroup(val *CdxV1SharedGroup) *NullableCdxV1SharedGroup

func (NullableCdxV1SharedGroup) Get

func (NullableCdxV1SharedGroup) IsSet

func (v NullableCdxV1SharedGroup) IsSet() bool

func (NullableCdxV1SharedGroup) MarshalJSON

func (v NullableCdxV1SharedGroup) MarshalJSON() ([]byte, error)

func (*NullableCdxV1SharedGroup) Set

func (*NullableCdxV1SharedGroup) UnmarshalJSON

func (v *NullableCdxV1SharedGroup) UnmarshalJSON(src []byte) error

func (*NullableCdxV1SharedGroup) Unset

func (v *NullableCdxV1SharedGroup) Unset()

type NullableCdxV1SharedSubject added in v0.0.4

type NullableCdxV1SharedSubject struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1SharedSubject added in v0.0.4

func NewNullableCdxV1SharedSubject(val *CdxV1SharedSubject) *NullableCdxV1SharedSubject

func (NullableCdxV1SharedSubject) Get added in v0.0.4

func (NullableCdxV1SharedSubject) IsSet added in v0.0.4

func (v NullableCdxV1SharedSubject) IsSet() bool

func (NullableCdxV1SharedSubject) MarshalJSON added in v0.0.4

func (v NullableCdxV1SharedSubject) MarshalJSON() ([]byte, error)

func (*NullableCdxV1SharedSubject) Set added in v0.0.4

func (*NullableCdxV1SharedSubject) UnmarshalJSON added in v0.0.4

func (v *NullableCdxV1SharedSubject) UnmarshalJSON(src []byte) error

func (*NullableCdxV1SharedSubject) Unset added in v0.0.4

func (v *NullableCdxV1SharedSubject) Unset()

type NullableCdxV1SharedToken

type NullableCdxV1SharedToken struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1SharedToken

func NewNullableCdxV1SharedToken(val *CdxV1SharedToken) *NullableCdxV1SharedToken

func (NullableCdxV1SharedToken) Get

func (NullableCdxV1SharedToken) IsSet

func (v NullableCdxV1SharedToken) IsSet() bool

func (NullableCdxV1SharedToken) MarshalJSON

func (v NullableCdxV1SharedToken) MarshalJSON() ([]byte, error)

func (*NullableCdxV1SharedToken) Set

func (*NullableCdxV1SharedToken) UnmarshalJSON

func (v *NullableCdxV1SharedToken) UnmarshalJSON(src []byte) error

func (*NullableCdxV1SharedToken) Unset

func (v *NullableCdxV1SharedToken) Unset()

type NullableCdxV1SharedTopic

type NullableCdxV1SharedTopic struct {
	// contains filtered or unexported fields
}

func NewNullableCdxV1SharedTopic

func NewNullableCdxV1SharedTopic(val *CdxV1SharedTopic) *NullableCdxV1SharedTopic

func (NullableCdxV1SharedTopic) Get

func (NullableCdxV1SharedTopic) IsSet

func (v NullableCdxV1SharedTopic) IsSet() bool

func (NullableCdxV1SharedTopic) MarshalJSON

func (v NullableCdxV1SharedTopic) MarshalJSON() ([]byte, error)

func (*NullableCdxV1SharedTopic) Set

func (*NullableCdxV1SharedTopic) UnmarshalJSON

func (v *NullableCdxV1SharedTopic) UnmarshalJSON(src []byte) error

func (*NullableCdxV1SharedTopic) Unset

func (v *NullableCdxV1SharedTopic) Unset()

type NullableEnvScopedObjectReference added in v0.0.3

type NullableEnvScopedObjectReference struct {
	// contains filtered or unexported fields
}

func NewNullableEnvScopedObjectReference added in v0.0.3

func NewNullableEnvScopedObjectReference(val *EnvScopedObjectReference) *NullableEnvScopedObjectReference

func (NullableEnvScopedObjectReference) Get added in v0.0.3

func (NullableEnvScopedObjectReference) IsSet added in v0.0.3

func (NullableEnvScopedObjectReference) MarshalJSON added in v0.0.3

func (v NullableEnvScopedObjectReference) MarshalJSON() ([]byte, error)

func (*NullableEnvScopedObjectReference) Set added in v0.0.3

func (*NullableEnvScopedObjectReference) UnmarshalJSON added in v0.0.3

func (v *NullableEnvScopedObjectReference) UnmarshalJSON(src []byte) error

func (*NullableEnvScopedObjectReference) Unset added in v0.0.3

type NullableError

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableErrorSource

type NullableErrorSource struct {
	// contains filtered or unexported fields
}

func NewNullableErrorSource

func NewNullableErrorSource(val *ErrorSource) *NullableErrorSource

func (NullableErrorSource) Get

func (NullableErrorSource) IsSet

func (v NullableErrorSource) IsSet() bool

func (NullableErrorSource) MarshalJSON

func (v NullableErrorSource) MarshalJSON() ([]byte, error)

func (*NullableErrorSource) Set

func (v *NullableErrorSource) Set(val *ErrorSource)

func (*NullableErrorSource) UnmarshalJSON

func (v *NullableErrorSource) UnmarshalJSON(src []byte) error

func (*NullableErrorSource) Unset

func (v *NullableErrorSource) Unset()

type NullableFailure

type NullableFailure struct {
	// contains filtered or unexported fields
}

func NewNullableFailure

func NewNullableFailure(val *Failure) *NullableFailure

func (NullableFailure) Get

func (v NullableFailure) Get() *Failure

func (NullableFailure) IsSet

func (v NullableFailure) IsSet() bool

func (NullableFailure) MarshalJSON

func (v NullableFailure) MarshalJSON() ([]byte, error)

func (*NullableFailure) Set

func (v *NullableFailure) Set(val *Failure)

func (*NullableFailure) UnmarshalJSON

func (v *NullableFailure) UnmarshalJSON(src []byte) error

func (*NullableFailure) Unset

func (v *NullableFailure) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGlobalObjectReference added in v0.0.3

type NullableGlobalObjectReference struct {
	// contains filtered or unexported fields
}

func NewNullableGlobalObjectReference added in v0.0.3

func NewNullableGlobalObjectReference(val *GlobalObjectReference) *NullableGlobalObjectReference

func (NullableGlobalObjectReference) Get added in v0.0.3

func (NullableGlobalObjectReference) IsSet added in v0.0.3

func (NullableGlobalObjectReference) MarshalJSON added in v0.0.3

func (v NullableGlobalObjectReference) MarshalJSON() ([]byte, error)

func (*NullableGlobalObjectReference) Set added in v0.0.3

func (*NullableGlobalObjectReference) UnmarshalJSON added in v0.0.3

func (v *NullableGlobalObjectReference) UnmarshalJSON(src []byte) error

func (*NullableGlobalObjectReference) Unset added in v0.0.3

func (v *NullableGlobalObjectReference) Unset()

type NullableInlineResponse200

type NullableInlineResponse200 struct {
	// contains filtered or unexported fields
}

func NewNullableInlineResponse200

func NewNullableInlineResponse200(val *InlineResponse200) *NullableInlineResponse200

func (NullableInlineResponse200) Get

func (NullableInlineResponse200) IsSet

func (v NullableInlineResponse200) IsSet() bool

func (NullableInlineResponse200) MarshalJSON

func (v NullableInlineResponse200) MarshalJSON() ([]byte, error)

func (*NullableInlineResponse200) Set

func (*NullableInlineResponse200) UnmarshalJSON

func (v *NullableInlineResponse200) UnmarshalJSON(src []byte) error

func (*NullableInlineResponse200) Unset

func (v *NullableInlineResponse200) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableListMeta

type NullableListMeta struct {
	// contains filtered or unexported fields
}

func NewNullableListMeta

func NewNullableListMeta(val *ListMeta) *NullableListMeta

func (NullableListMeta) Get

func (v NullableListMeta) Get() *ListMeta

func (NullableListMeta) IsSet

func (v NullableListMeta) IsSet() bool

func (NullableListMeta) MarshalJSON

func (v NullableListMeta) MarshalJSON() ([]byte, error)

func (*NullableListMeta) Set

func (v *NullableListMeta) Set(val *ListMeta)

func (*NullableListMeta) UnmarshalJSON

func (v *NullableListMeta) UnmarshalJSON(src []byte) error

func (*NullableListMeta) Unset

func (v *NullableListMeta) Unset()

type NullableObjectMeta

type NullableObjectMeta struct {
	// contains filtered or unexported fields
}

func NewNullableObjectMeta

func NewNullableObjectMeta(val *ObjectMeta) *NullableObjectMeta

func (NullableObjectMeta) Get

func (v NullableObjectMeta) Get() *ObjectMeta

func (NullableObjectMeta) IsSet

func (v NullableObjectMeta) IsSet() bool

func (NullableObjectMeta) MarshalJSON

func (v NullableObjectMeta) MarshalJSON() ([]byte, error)

func (*NullableObjectMeta) Set

func (v *NullableObjectMeta) Set(val *ObjectMeta)

func (*NullableObjectMeta) UnmarshalJSON

func (v *NullableObjectMeta) UnmarshalJSON(src []byte) error

func (*NullableObjectMeta) Unset

func (v *NullableObjectMeta) Unset()

type NullableObjectReference

type NullableObjectReference struct {
	// contains filtered or unexported fields
}

func NewNullableObjectReference

func NewNullableObjectReference(val *ObjectReference) *NullableObjectReference

func (NullableObjectReference) Get

func (NullableObjectReference) IsSet

func (v NullableObjectReference) IsSet() bool

func (NullableObjectReference) MarshalJSON

func (v NullableObjectReference) MarshalJSON() ([]byte, error)

func (*NullableObjectReference) Set

func (*NullableObjectReference) UnmarshalJSON

func (v *NullableObjectReference) UnmarshalJSON(src []byte) error

func (*NullableObjectReference) Unset

func (v *NullableObjectReference) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTypedEnvScopedObjectReference added in v0.0.3

type NullableTypedEnvScopedObjectReference struct {
	// contains filtered or unexported fields
}

func NewNullableTypedEnvScopedObjectReference added in v0.0.3

func NewNullableTypedEnvScopedObjectReference(val *TypedEnvScopedObjectReference) *NullableTypedEnvScopedObjectReference

func (NullableTypedEnvScopedObjectReference) Get added in v0.0.3

func (NullableTypedEnvScopedObjectReference) IsSet added in v0.0.3

func (NullableTypedEnvScopedObjectReference) MarshalJSON added in v0.0.3

func (v NullableTypedEnvScopedObjectReference) MarshalJSON() ([]byte, error)

func (*NullableTypedEnvScopedObjectReference) Set added in v0.0.3

func (*NullableTypedEnvScopedObjectReference) UnmarshalJSON added in v0.0.3

func (v *NullableTypedEnvScopedObjectReference) UnmarshalJSON(src []byte) error

func (*NullableTypedEnvScopedObjectReference) Unset added in v0.0.3

type NullableTypedGlobalObjectReference added in v0.0.3

type NullableTypedGlobalObjectReference struct {
	// contains filtered or unexported fields
}

func NewNullableTypedGlobalObjectReference added in v0.0.3

func NewNullableTypedGlobalObjectReference(val *TypedGlobalObjectReference) *NullableTypedGlobalObjectReference

func (NullableTypedGlobalObjectReference) Get added in v0.0.3

func (NullableTypedGlobalObjectReference) IsSet added in v0.0.3

func (NullableTypedGlobalObjectReference) MarshalJSON added in v0.0.3

func (v NullableTypedGlobalObjectReference) MarshalJSON() ([]byte, error)

func (*NullableTypedGlobalObjectReference) Set added in v0.0.3

func (*NullableTypedGlobalObjectReference) UnmarshalJSON added in v0.0.3

func (v *NullableTypedGlobalObjectReference) UnmarshalJSON(src []byte) error

func (*NullableTypedGlobalObjectReference) Unset added in v0.0.3

type ObjectMeta

type ObjectMeta struct {
	// Self is a Uniform Resource Locator (URL) at which an object can be addressed. This URL encodes the service location, API version, and other particulars necessary to locate the resource at a point in time
	Self string `json:"self"`
	// Resource Name is a Uniform Resource Identifier (URI) that is globally unique across space and time. It is represented as a Confluent Resource Name
	ResourceName *string `json:"resource_name,omitempty"`
	// The date and time at which this object was created. It is represented in RFC3339 format and is in UTC.
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// The date and time at which this object was last updated. It is represented in RFC3339 format and is in UTC.
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
	// The date and time at which this object was (or will be) deleted. It is represented in RFC3339 format and is in UTC.
	DeletedAt *time.Time `json:"deleted_at,omitempty"`
}

ObjectMeta ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.

func NewObjectMeta

func NewObjectMeta(self string) *ObjectMeta

NewObjectMeta instantiates a new ObjectMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewObjectMetaWithDefaults

func NewObjectMetaWithDefaults() *ObjectMeta

NewObjectMetaWithDefaults instantiates a new ObjectMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ObjectMeta) GetCreatedAt

func (o *ObjectMeta) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ObjectMeta) GetCreatedAtOk

func (o *ObjectMeta) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectMeta) GetDeletedAt

func (o *ObjectMeta) GetDeletedAt() time.Time

GetDeletedAt returns the DeletedAt field value if set, zero value otherwise.

func (*ObjectMeta) GetDeletedAtOk

func (o *ObjectMeta) GetDeletedAtOk() (*time.Time, bool)

GetDeletedAtOk returns a tuple with the DeletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectMeta) GetResourceName

func (o *ObjectMeta) GetResourceName() string

GetResourceName returns the ResourceName field value if set, zero value otherwise.

func (*ObjectMeta) GetResourceNameOk

func (o *ObjectMeta) GetResourceNameOk() (*string, bool)

GetResourceNameOk returns a tuple with the ResourceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectMeta) GetSelf

func (o *ObjectMeta) GetSelf() string

GetSelf returns the Self field value

func (*ObjectMeta) GetSelfOk

func (o *ObjectMeta) GetSelfOk() (*string, bool)

GetSelfOk returns a tuple with the Self field value and a boolean to check if the value has been set.

func (*ObjectMeta) GetUpdatedAt

func (o *ObjectMeta) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ObjectMeta) GetUpdatedAtOk

func (o *ObjectMeta) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectMeta) HasCreatedAt

func (o *ObjectMeta) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ObjectMeta) HasDeletedAt

func (o *ObjectMeta) HasDeletedAt() bool

HasDeletedAt returns a boolean if a field has been set.

func (*ObjectMeta) HasResourceName

func (o *ObjectMeta) HasResourceName() bool

HasResourceName returns a boolean if a field has been set.

func (*ObjectMeta) HasUpdatedAt

func (o *ObjectMeta) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (ObjectMeta) MarshalJSON

func (o ObjectMeta) MarshalJSON() ([]byte, error)

func (*ObjectMeta) Redact

func (o *ObjectMeta) Redact()

Redact resets all sensitive fields to their zero value.

func (*ObjectMeta) SetCreatedAt

func (o *ObjectMeta) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*ObjectMeta) SetDeletedAt

func (o *ObjectMeta) SetDeletedAt(v time.Time)

SetDeletedAt gets a reference to the given time.Time and assigns it to the DeletedAt field.

func (*ObjectMeta) SetResourceName

func (o *ObjectMeta) SetResourceName(v string)

SetResourceName gets a reference to the given string and assigns it to the ResourceName field.

func (*ObjectMeta) SetSelf

func (o *ObjectMeta) SetSelf(v string)

SetSelf sets field value

func (*ObjectMeta) SetUpdatedAt

func (o *ObjectMeta) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

type ObjectReference

type ObjectReference struct {
	// ID of the referred resource
	Id string `json:"id"`
	// Environment of the referred resource, if env-scoped
	Environment *string `json:"environment,omitempty"`
	// API URL for accessing or modifying the referred object
	Related string `json:"related"`
	// CRN reference to the referred resource
	ResourceName string `json:"resource_name"`
	// API group and version of the referred resource
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind of the referred resource
	Kind *string `json:"kind,omitempty"`
}

ObjectReference ObjectReference provides information for you to locate the referred object

func NewObjectReference

func NewObjectReference(id string, related string, resourceName string) *ObjectReference

NewObjectReference instantiates a new ObjectReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewObjectReferenceWithDefaults

func NewObjectReferenceWithDefaults() *ObjectReference

NewObjectReferenceWithDefaults instantiates a new ObjectReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ObjectReference) GetApiVersion

func (o *ObjectReference) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*ObjectReference) GetApiVersionOk

func (o *ObjectReference) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectReference) GetEnvironment

func (o *ObjectReference) GetEnvironment() string

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*ObjectReference) GetEnvironmentOk

func (o *ObjectReference) GetEnvironmentOk() (*string, bool)

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectReference) GetId

func (o *ObjectReference) GetId() string

GetId returns the Id field value

func (*ObjectReference) GetIdOk

func (o *ObjectReference) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ObjectReference) GetKind

func (o *ObjectReference) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ObjectReference) GetKindOk

func (o *ObjectReference) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectReference) GetRelated

func (o *ObjectReference) GetRelated() string

GetRelated returns the Related field value

func (*ObjectReference) GetRelatedOk

func (o *ObjectReference) GetRelatedOk() (*string, bool)

GetRelatedOk returns a tuple with the Related field value and a boolean to check if the value has been set.

func (*ObjectReference) GetResourceName

func (o *ObjectReference) GetResourceName() string

GetResourceName returns the ResourceName field value

func (*ObjectReference) GetResourceNameOk

func (o *ObjectReference) GetResourceNameOk() (*string, bool)

GetResourceNameOk returns a tuple with the ResourceName field value and a boolean to check if the value has been set.

func (*ObjectReference) HasApiVersion

func (o *ObjectReference) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*ObjectReference) HasEnvironment

func (o *ObjectReference) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*ObjectReference) HasKind

func (o *ObjectReference) HasKind() bool

HasKind returns a boolean if a field has been set.

func (ObjectReference) MarshalJSON

func (o ObjectReference) MarshalJSON() ([]byte, error)

func (*ObjectReference) Redact

func (o *ObjectReference) Redact()

Redact resets all sensitive fields to their zero value.

func (*ObjectReference) SetApiVersion

func (o *ObjectReference) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*ObjectReference) SetEnvironment

func (o *ObjectReference) SetEnvironment(v string)

SetEnvironment gets a reference to the given string and assigns it to the Environment field.

func (*ObjectReference) SetId

func (o *ObjectReference) SetId(v string)

SetId sets field value

func (*ObjectReference) SetKind

func (o *ObjectReference) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*ObjectReference) SetRelated

func (o *ObjectReference) SetRelated(v string)

SetRelated sets field value

func (*ObjectReference) SetResourceName

func (o *ObjectReference) SetResourceName(v string)

SetResourceName sets field value

type OptInsCdxV1Api added in v0.0.3

type OptInsCdxV1Api interface {

	/*
		GetCdxV1OptIn Read the organization's stream sharing opt-in settings

		Returns the organization's stream sharing opt-in settings.


		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @return ApiGetCdxV1OptInRequest
	*/
	GetCdxV1OptIn(ctx _context.Context) ApiGetCdxV1OptInRequest

	// GetCdxV1OptInExecute executes the request
	//  @return CdxV1OptIn
	GetCdxV1OptInExecute(r ApiGetCdxV1OptInRequest) (CdxV1OptIn, *_nethttp.Response, error)

	/*
		UpdateCdxV1OptIn Set the organization's stream sharing opt-in settings

		Updates the organization's stream sharing opt-in settings.




		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @return ApiUpdateCdxV1OptInRequest
	*/
	UpdateCdxV1OptIn(ctx _context.Context) ApiUpdateCdxV1OptInRequest

	// UpdateCdxV1OptInExecute executes the request
	//  @return CdxV1OptIn
	UpdateCdxV1OptInExecute(r ApiUpdateCdxV1OptInRequest) (CdxV1OptIn, *_nethttp.Response, error)
}

type OptInsCdxV1ApiService added in v0.0.3

type OptInsCdxV1ApiService service

OptInsCdxV1ApiService OptInsCdxV1Api service

func (*OptInsCdxV1ApiService) GetCdxV1OptIn added in v0.0.3

GetCdxV1OptIn Read the organization's stream sharing opt-in settings

Returns the organization's stream sharing opt-in settings.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCdxV1OptInRequest

func (*OptInsCdxV1ApiService) GetCdxV1OptInExecute added in v0.0.3

Execute executes the request

@return CdxV1OptIn

func (*OptInsCdxV1ApiService) UpdateCdxV1OptIn added in v0.0.3

UpdateCdxV1OptIn Set the organization's stream sharing opt-in settings

Updates the organization's stream sharing opt-in settings.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateCdxV1OptInRequest

func (*OptInsCdxV1ApiService) UpdateCdxV1OptInExecute added in v0.0.3

Execute executes the request

@return CdxV1OptIn

type ProviderSharedResourcesCdxV1Api

type ProviderSharedResourcesCdxV1Api interface {

	/*
		DeleteImageCdxV1ProviderSharedResource Delete_Image a Provider Shared Resource

		Deletes the image file for the shared resource

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the provider shared resource.
		 @param fileName The File Name
		 @return ApiDeleteImageCdxV1ProviderSharedResourceRequest
	*/
	DeleteImageCdxV1ProviderSharedResource(ctx _context.Context, id string, fileName string) ApiDeleteImageCdxV1ProviderSharedResourceRequest

	// DeleteImageCdxV1ProviderSharedResourceExecute executes the request
	DeleteImageCdxV1ProviderSharedResourceExecute(r ApiDeleteImageCdxV1ProviderSharedResourceRequest) (*_nethttp.Response, error)

	/*
		GetCdxV1ProviderSharedResource Read a Provider Shared Resource

		Make a request to read a provider shared resource.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the provider shared resource.
		 @return ApiGetCdxV1ProviderSharedResourceRequest
	*/
	GetCdxV1ProviderSharedResource(ctx _context.Context, id string) ApiGetCdxV1ProviderSharedResourceRequest

	// GetCdxV1ProviderSharedResourceExecute executes the request
	//  @return CdxV1ProviderSharedResource
	GetCdxV1ProviderSharedResourceExecute(r ApiGetCdxV1ProviderSharedResourceRequest) (CdxV1ProviderSharedResource, *_nethttp.Response, error)

	/*
		ListCdxV1ProviderSharedResources List of Provider Shared Resources

		Retrieve a sorted, filtered, paginated list of all provider shared resources.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @return ApiListCdxV1ProviderSharedResourcesRequest
	*/
	ListCdxV1ProviderSharedResources(ctx _context.Context) ApiListCdxV1ProviderSharedResourcesRequest

	// ListCdxV1ProviderSharedResourcesExecute executes the request
	//  @return CdxV1ProviderSharedResourceList
	ListCdxV1ProviderSharedResourcesExecute(r ApiListCdxV1ProviderSharedResourcesRequest) (CdxV1ProviderSharedResourceList, *_nethttp.Response, error)

	/*
		UpdateCdxV1ProviderSharedResource Update a Provider Shared Resource

		Make a request to update a provider shared resource.



		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the provider shared resource.
		 @return ApiUpdateCdxV1ProviderSharedResourceRequest
	*/
	UpdateCdxV1ProviderSharedResource(ctx _context.Context, id string) ApiUpdateCdxV1ProviderSharedResourceRequest

	// UpdateCdxV1ProviderSharedResourceExecute executes the request
	//  @return CdxV1ProviderSharedResource
	UpdateCdxV1ProviderSharedResourceExecute(r ApiUpdateCdxV1ProviderSharedResourceRequest) (CdxV1ProviderSharedResource, *_nethttp.Response, error)

	/*
		UploadImageCdxV1ProviderSharedResource Upload image for shared resource

		Upload the image file for the shared resource

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the provider shared resource.
		 @param fileName The File Name
		 @return ApiUploadImageCdxV1ProviderSharedResourceRequest
	*/
	UploadImageCdxV1ProviderSharedResource(ctx _context.Context, id string, fileName string) ApiUploadImageCdxV1ProviderSharedResourceRequest

	// UploadImageCdxV1ProviderSharedResourceExecute executes the request
	UploadImageCdxV1ProviderSharedResourceExecute(r ApiUploadImageCdxV1ProviderSharedResourceRequest) (*_nethttp.Response, error)

	/*
		ViewImageCdxV1ProviderSharedResource View_Image a Provider Shared Resource

		Returns the image file for the shared resource

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the provider shared resource.
		 @param fileName The File Name
		 @return ApiViewImageCdxV1ProviderSharedResourceRequest
	*/
	ViewImageCdxV1ProviderSharedResource(ctx _context.Context, id string, fileName string) ApiViewImageCdxV1ProviderSharedResourceRequest

	// ViewImageCdxV1ProviderSharedResourceExecute executes the request
	//  @return *os.File
	ViewImageCdxV1ProviderSharedResourceExecute(r ApiViewImageCdxV1ProviderSharedResourceRequest) (*os.File, *_nethttp.Response, error)
}

type ProviderSharedResourcesCdxV1ApiService

type ProviderSharedResourcesCdxV1ApiService service

ProviderSharedResourcesCdxV1ApiService ProviderSharedResourcesCdxV1Api service

func (*ProviderSharedResourcesCdxV1ApiService) DeleteImageCdxV1ProviderSharedResource

DeleteImageCdxV1ProviderSharedResource Delete_Image a Provider Shared Resource

Deletes the image file for the shared resource

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the provider shared resource.
@param fileName The File Name
@return ApiDeleteImageCdxV1ProviderSharedResourceRequest

func (*ProviderSharedResourcesCdxV1ApiService) DeleteImageCdxV1ProviderSharedResourceExecute

Execute executes the request

func (*ProviderSharedResourcesCdxV1ApiService) GetCdxV1ProviderSharedResource

GetCdxV1ProviderSharedResource Read a Provider Shared Resource

Make a request to read a provider shared resource.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the provider shared resource.
@return ApiGetCdxV1ProviderSharedResourceRequest

func (*ProviderSharedResourcesCdxV1ApiService) GetCdxV1ProviderSharedResourceExecute

Execute executes the request

@return CdxV1ProviderSharedResource

func (*ProviderSharedResourcesCdxV1ApiService) ListCdxV1ProviderSharedResources

ListCdxV1ProviderSharedResources List of Provider Shared Resources

Retrieve a sorted, filtered, paginated list of all provider shared resources.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListCdxV1ProviderSharedResourcesRequest

func (*ProviderSharedResourcesCdxV1ApiService) ListCdxV1ProviderSharedResourcesExecute

Execute executes the request

@return CdxV1ProviderSharedResourceList

func (*ProviderSharedResourcesCdxV1ApiService) UpdateCdxV1ProviderSharedResource

UpdateCdxV1ProviderSharedResource Update a Provider Shared Resource

Make a request to update a provider shared resource.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the provider shared resource.
@return ApiUpdateCdxV1ProviderSharedResourceRequest

func (*ProviderSharedResourcesCdxV1ApiService) UpdateCdxV1ProviderSharedResourceExecute

Execute executes the request

@return CdxV1ProviderSharedResource

func (*ProviderSharedResourcesCdxV1ApiService) UploadImageCdxV1ProviderSharedResource

UploadImageCdxV1ProviderSharedResource Upload image for shared resource

Upload the image file for the shared resource

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the provider shared resource.
@param fileName The File Name
@return ApiUploadImageCdxV1ProviderSharedResourceRequest

func (*ProviderSharedResourcesCdxV1ApiService) UploadImageCdxV1ProviderSharedResourceExecute

Execute executes the request

func (*ProviderSharedResourcesCdxV1ApiService) ViewImageCdxV1ProviderSharedResource

ViewImageCdxV1ProviderSharedResource View_Image a Provider Shared Resource

Returns the image file for the shared resource

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the provider shared resource.
@param fileName The File Name
@return ApiViewImageCdxV1ProviderSharedResourceRequest

func (*ProviderSharedResourcesCdxV1ApiService) ViewImageCdxV1ProviderSharedResourceExecute

Execute executes the request

@return *os.File

type ProviderSharesCdxV1Api

type ProviderSharesCdxV1Api interface {

	/*
		CreateCdxV1ProviderShare Create a provider share

		Creates a share based on delivery method.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @return ApiCreateCdxV1ProviderShareRequest
	*/
	CreateCdxV1ProviderShare(ctx _context.Context) ApiCreateCdxV1ProviderShareRequest

	// CreateCdxV1ProviderShareExecute executes the request
	//  @return CdxV1ProviderShare
	CreateCdxV1ProviderShareExecute(r ApiCreateCdxV1ProviderShareRequest) (CdxV1ProviderShare, *_nethttp.Response, error)

	/*
		DeleteCdxV1ProviderShare Delete a Provider Share

		Make a request to delete a provider share.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the provider share.
		 @return ApiDeleteCdxV1ProviderShareRequest
	*/
	DeleteCdxV1ProviderShare(ctx _context.Context, id string) ApiDeleteCdxV1ProviderShareRequest

	// DeleteCdxV1ProviderShareExecute executes the request
	DeleteCdxV1ProviderShareExecute(r ApiDeleteCdxV1ProviderShareRequest) (*_nethttp.Response, error)

	/*
		GetCdxV1ProviderShare Read a Provider Share

		Make a request to read a provider share.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the provider share.
		 @return ApiGetCdxV1ProviderShareRequest
	*/
	GetCdxV1ProviderShare(ctx _context.Context, id string) ApiGetCdxV1ProviderShareRequest

	// GetCdxV1ProviderShareExecute executes the request
	//  @return CdxV1ProviderShare
	GetCdxV1ProviderShareExecute(r ApiGetCdxV1ProviderShareRequest) (CdxV1ProviderShare, *_nethttp.Response, error)

	/*
		ListCdxV1ProviderShares List of Provider Shares

		Retrieve a sorted, filtered, paginated list of all provider shares.

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @return ApiListCdxV1ProviderSharesRequest
	*/
	ListCdxV1ProviderShares(ctx _context.Context) ApiListCdxV1ProviderSharesRequest

	// ListCdxV1ProviderSharesExecute executes the request
	//  @return CdxV1ProviderShareList
	ListCdxV1ProviderSharesExecute(r ApiListCdxV1ProviderSharesRequest) (CdxV1ProviderShareList, *_nethttp.Response, error)

	/*
		ResendCdxV1ProviderShare Resend

		Resend provider share

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param id The unique identifier for the provider share.
		 @return ApiResendCdxV1ProviderShareRequest
	*/
	ResendCdxV1ProviderShare(ctx _context.Context, id string) ApiResendCdxV1ProviderShareRequest

	// ResendCdxV1ProviderShareExecute executes the request
	ResendCdxV1ProviderShareExecute(r ApiResendCdxV1ProviderShareRequest) (*_nethttp.Response, error)
}

type ProviderSharesCdxV1ApiService

type ProviderSharesCdxV1ApiService service

ProviderSharesCdxV1ApiService ProviderSharesCdxV1Api service

func (*ProviderSharesCdxV1ApiService) CreateCdxV1ProviderShare

CreateCdxV1ProviderShare Create a provider share

Creates a share based on delivery method.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateCdxV1ProviderShareRequest

func (*ProviderSharesCdxV1ApiService) CreateCdxV1ProviderShareExecute

Execute executes the request

@return CdxV1ProviderShare

func (*ProviderSharesCdxV1ApiService) DeleteCdxV1ProviderShare

DeleteCdxV1ProviderShare Delete a Provider Share

Make a request to delete a provider share.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the provider share.
@return ApiDeleteCdxV1ProviderShareRequest

func (*ProviderSharesCdxV1ApiService) DeleteCdxV1ProviderShareExecute

Execute executes the request

func (*ProviderSharesCdxV1ApiService) GetCdxV1ProviderShare

GetCdxV1ProviderShare Read a Provider Share

Make a request to read a provider share.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the provider share.
@return ApiGetCdxV1ProviderShareRequest

func (*ProviderSharesCdxV1ApiService) GetCdxV1ProviderShareExecute

Execute executes the request

@return CdxV1ProviderShare

func (*ProviderSharesCdxV1ApiService) ListCdxV1ProviderShares

ListCdxV1ProviderShares List of Provider Shares

Retrieve a sorted, filtered, paginated list of all provider shares.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListCdxV1ProviderSharesRequest

func (*ProviderSharesCdxV1ApiService) ListCdxV1ProviderSharesExecute

Execute executes the request

@return CdxV1ProviderShareList

func (*ProviderSharesCdxV1ApiService) ResendCdxV1ProviderShare

ResendCdxV1ProviderShare Resend

Resend provider share

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique identifier for the provider share.
@return ApiResendCdxV1ProviderShareRequest

func (*ProviderSharesCdxV1ApiService) ResendCdxV1ProviderShareExecute

Execute executes the request

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SharedTokensCdxV1Api

type SharedTokensCdxV1Api interface {

	/*
		RedeemCdxV1SharedToken Redeem token

		Redeem the shared token for shared topic and cluster access information

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @return ApiRedeemCdxV1SharedTokenRequest
	*/
	RedeemCdxV1SharedToken(ctx _context.Context) ApiRedeemCdxV1SharedTokenRequest

	// RedeemCdxV1SharedTokenExecute executes the request
	//  @return CdxV1RedeemTokenResponse
	RedeemCdxV1SharedTokenExecute(r ApiRedeemCdxV1SharedTokenRequest) (CdxV1RedeemTokenResponse, *_nethttp.Response, error)

	/*
		ResourcesCdxV1SharedToken Validate token to view shared resources

		Validate and decrypt the shared token and view token's shared resources

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @return ApiResourcesCdxV1SharedTokenRequest
	*/
	ResourcesCdxV1SharedToken(ctx _context.Context) ApiResourcesCdxV1SharedTokenRequest

	// ResourcesCdxV1SharedTokenExecute executes the request
	//  @return InlineResponse200
	ResourcesCdxV1SharedTokenExecute(r ApiResourcesCdxV1SharedTokenRequest) (InlineResponse200, *_nethttp.Response, error)
}

type SharedTokensCdxV1ApiService

type SharedTokensCdxV1ApiService service

SharedTokensCdxV1ApiService SharedTokensCdxV1Api service

func (*SharedTokensCdxV1ApiService) RedeemCdxV1SharedToken

RedeemCdxV1SharedToken Redeem token

Redeem the shared token for shared topic and cluster access information

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRedeemCdxV1SharedTokenRequest

func (*SharedTokensCdxV1ApiService) RedeemCdxV1SharedTokenExecute

Execute executes the request

@return CdxV1RedeemTokenResponse

func (*SharedTokensCdxV1ApiService) ResourcesCdxV1SharedToken

ResourcesCdxV1SharedToken Validate token to view shared resources

Validate and decrypt the shared token and view token's shared resources

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiResourcesCdxV1SharedTokenRequest

func (*SharedTokensCdxV1ApiService) ResourcesCdxV1SharedTokenExecute

Execute executes the request

@return InlineResponse200

type TypedEnvScopedObjectReference added in v0.0.3

type TypedEnvScopedObjectReference struct {
	// ID of the referred resource
	Id string `json:"id"`
	// Environment of the referred resource, if env-scoped
	Environment *string `json:"environment,omitempty"`
	// API URL for accessing or modifying the referred object
	Related string `json:"related"`
	// CRN reference to the referred resource
	ResourceName string `json:"resource_name"`
	// API group and version of the referred resource
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind of the referred resource
	Kind *string `json:"kind,omitempty"`
}

TypedEnvScopedObjectReference ObjectReference provides information for you to locate the referred object

func NewTypedEnvScopedObjectReference added in v0.0.3

func NewTypedEnvScopedObjectReference(id string, related string, resourceName string) *TypedEnvScopedObjectReference

NewTypedEnvScopedObjectReference instantiates a new TypedEnvScopedObjectReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTypedEnvScopedObjectReferenceWithDefaults added in v0.0.3

func NewTypedEnvScopedObjectReferenceWithDefaults() *TypedEnvScopedObjectReference

NewTypedEnvScopedObjectReferenceWithDefaults instantiates a new TypedEnvScopedObjectReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TypedEnvScopedObjectReference) GetApiVersion added in v0.0.3

func (o *TypedEnvScopedObjectReference) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*TypedEnvScopedObjectReference) GetApiVersionOk added in v0.0.3

func (o *TypedEnvScopedObjectReference) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TypedEnvScopedObjectReference) GetEnvironment added in v0.0.3

func (o *TypedEnvScopedObjectReference) GetEnvironment() string

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*TypedEnvScopedObjectReference) GetEnvironmentOk added in v0.0.3

func (o *TypedEnvScopedObjectReference) GetEnvironmentOk() (*string, bool)

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TypedEnvScopedObjectReference) GetId added in v0.0.3

GetId returns the Id field value

func (*TypedEnvScopedObjectReference) GetIdOk added in v0.0.3

func (o *TypedEnvScopedObjectReference) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*TypedEnvScopedObjectReference) GetKind added in v0.0.3

GetKind returns the Kind field value if set, zero value otherwise.

func (*TypedEnvScopedObjectReference) GetKindOk added in v0.0.3

func (o *TypedEnvScopedObjectReference) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TypedEnvScopedObjectReference) GetRelated added in v0.0.3

func (o *TypedEnvScopedObjectReference) GetRelated() string

GetRelated returns the Related field value

func (*TypedEnvScopedObjectReference) GetRelatedOk added in v0.0.3

func (o *TypedEnvScopedObjectReference) GetRelatedOk() (*string, bool)

GetRelatedOk returns a tuple with the Related field value and a boolean to check if the value has been set.

func (*TypedEnvScopedObjectReference) GetResourceName added in v0.0.3

func (o *TypedEnvScopedObjectReference) GetResourceName() string

GetResourceName returns the ResourceName field value

func (*TypedEnvScopedObjectReference) GetResourceNameOk added in v0.0.3

func (o *TypedEnvScopedObjectReference) GetResourceNameOk() (*string, bool)

GetResourceNameOk returns a tuple with the ResourceName field value and a boolean to check if the value has been set.

func (*TypedEnvScopedObjectReference) HasApiVersion added in v0.0.3

func (o *TypedEnvScopedObjectReference) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*TypedEnvScopedObjectReference) HasEnvironment added in v0.0.3

func (o *TypedEnvScopedObjectReference) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*TypedEnvScopedObjectReference) HasKind added in v0.0.3

func (o *TypedEnvScopedObjectReference) HasKind() bool

HasKind returns a boolean if a field has been set.

func (TypedEnvScopedObjectReference) MarshalJSON added in v0.0.3

func (o TypedEnvScopedObjectReference) MarshalJSON() ([]byte, error)

func (*TypedEnvScopedObjectReference) Redact added in v0.0.3

func (o *TypedEnvScopedObjectReference) Redact()

Redact resets all sensitive fields to their zero value.

func (*TypedEnvScopedObjectReference) SetApiVersion added in v0.0.3

func (o *TypedEnvScopedObjectReference) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*TypedEnvScopedObjectReference) SetEnvironment added in v0.0.3

func (o *TypedEnvScopedObjectReference) SetEnvironment(v string)

SetEnvironment gets a reference to the given string and assigns it to the Environment field.

func (*TypedEnvScopedObjectReference) SetId added in v0.0.3

SetId sets field value

func (*TypedEnvScopedObjectReference) SetKind added in v0.0.3

func (o *TypedEnvScopedObjectReference) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*TypedEnvScopedObjectReference) SetRelated added in v0.0.3

func (o *TypedEnvScopedObjectReference) SetRelated(v string)

SetRelated sets field value

func (*TypedEnvScopedObjectReference) SetResourceName added in v0.0.3

func (o *TypedEnvScopedObjectReference) SetResourceName(v string)

SetResourceName sets field value

type TypedGlobalObjectReference added in v0.0.3

type TypedGlobalObjectReference struct {
	// ID of the referred resource
	Id string `json:"id"`
	// API URL for accessing or modifying the referred object
	Related string `json:"related"`
	// CRN reference to the referred resource
	ResourceName string `json:"resource_name"`
	// API group and version of the referred resource
	ApiVersion *string `json:"api_version,omitempty"`
	// Kind of the referred resource
	Kind *string `json:"kind,omitempty"`
}

TypedGlobalObjectReference ObjectReference provides information for you to locate the referred object

func NewTypedGlobalObjectReference added in v0.0.3

func NewTypedGlobalObjectReference(id string, related string, resourceName string) *TypedGlobalObjectReference

NewTypedGlobalObjectReference instantiates a new TypedGlobalObjectReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTypedGlobalObjectReferenceWithDefaults added in v0.0.3

func NewTypedGlobalObjectReferenceWithDefaults() *TypedGlobalObjectReference

NewTypedGlobalObjectReferenceWithDefaults instantiates a new TypedGlobalObjectReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TypedGlobalObjectReference) GetApiVersion added in v0.0.3

func (o *TypedGlobalObjectReference) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*TypedGlobalObjectReference) GetApiVersionOk added in v0.0.3

func (o *TypedGlobalObjectReference) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TypedGlobalObjectReference) GetId added in v0.0.3

GetId returns the Id field value

func (*TypedGlobalObjectReference) GetIdOk added in v0.0.3

func (o *TypedGlobalObjectReference) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*TypedGlobalObjectReference) GetKind added in v0.0.3

func (o *TypedGlobalObjectReference) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*TypedGlobalObjectReference) GetKindOk added in v0.0.3

func (o *TypedGlobalObjectReference) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TypedGlobalObjectReference) GetRelated added in v0.0.3

func (o *TypedGlobalObjectReference) GetRelated() string

GetRelated returns the Related field value

func (*TypedGlobalObjectReference) GetRelatedOk added in v0.0.3

func (o *TypedGlobalObjectReference) GetRelatedOk() (*string, bool)

GetRelatedOk returns a tuple with the Related field value and a boolean to check if the value has been set.

func (*TypedGlobalObjectReference) GetResourceName added in v0.0.3

func (o *TypedGlobalObjectReference) GetResourceName() string

GetResourceName returns the ResourceName field value

func (*TypedGlobalObjectReference) GetResourceNameOk added in v0.0.3

func (o *TypedGlobalObjectReference) GetResourceNameOk() (*string, bool)

GetResourceNameOk returns a tuple with the ResourceName field value and a boolean to check if the value has been set.

func (*TypedGlobalObjectReference) HasApiVersion added in v0.0.3

func (o *TypedGlobalObjectReference) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*TypedGlobalObjectReference) HasKind added in v0.0.3

func (o *TypedGlobalObjectReference) HasKind() bool

HasKind returns a boolean if a field has been set.

func (TypedGlobalObjectReference) MarshalJSON added in v0.0.3

func (o TypedGlobalObjectReference) MarshalJSON() ([]byte, error)

func (*TypedGlobalObjectReference) Redact added in v0.0.3

func (o *TypedGlobalObjectReference) Redact()

Redact resets all sensitive fields to their zero value.

func (*TypedGlobalObjectReference) SetApiVersion added in v0.0.3

func (o *TypedGlobalObjectReference) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*TypedGlobalObjectReference) SetId added in v0.0.3

func (o *TypedGlobalObjectReference) SetId(v string)

SetId sets field value

func (*TypedGlobalObjectReference) SetKind added in v0.0.3

func (o *TypedGlobalObjectReference) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*TypedGlobalObjectReference) SetRelated added in v0.0.3

func (o *TypedGlobalObjectReference) SetRelated(v string)

SetRelated sets field value

func (*TypedGlobalObjectReference) SetResourceName added in v0.0.3

func (o *TypedGlobalObjectReference) SetResourceName(v string)

SetResourceName sets field value

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL