openapi_client

package
v0.8.0 Latest Latest
Warning

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

Go to latest
Published: Feb 15, 2026 License: Apache-2.0 Imports: 20 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// 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")
)
View Source
var AllowedAuthorizationDomainTypeEnumValues = []AuthorizationDomainType{
	"DOMAIN_TYPE_UNSPECIFIED",
	"DOMAIN_TYPE_ORGANIZATION",
}

All allowed values of AuthorizationDomainType enum

View Source
var AllowedCanvasNodeExecutionResultEnumValues = []CanvasNodeExecutionResult{
	"RESULT_UNKNOWN",
	"RESULT_PASSED",
	"RESULT_FAILED",
	"RESULT_CANCELLED",
}

All allowed values of CanvasNodeExecutionResult enum

View Source
var AllowedCanvasNodeExecutionResultReasonEnumValues = []CanvasNodeExecutionResultReason{
	"RESULT_REASON_OK",
	"RESULT_REASON_ERROR",
	"RESULT_REASON_ERROR_RESOLVED",
}

All allowed values of CanvasNodeExecutionResultReason enum

View Source
var AllowedCanvasNodeExecutionStateEnumValues = []CanvasNodeExecutionState{
	"STATE_UNKNOWN",
	"STATE_PENDING",
	"STATE_STARTED",
	"STATE_FINISHED",
}

All allowed values of CanvasNodeExecutionState enum

View Source
var AllowedComponentsNodeTypeEnumValues = []ComponentsNodeType{
	"TYPE_COMPONENT",
	"TYPE_BLUEPRINT",
	"TYPE_TRIGGER",
	"TYPE_WIDGET",
}

All allowed values of ComponentsNodeType enum

View Source
var AllowedProtobufNullValueEnumValues = []ProtobufNullValue{
	"NULL_VALUE",
}

All allowed values of ProtobufNullValue enum

View Source
var AllowedSecretProviderEnumValues = []SecretProvider{
	"PROVIDER_UNKNOWN",
	"PROVIDER_LOCAL",
}

All allowed values of SecretProvider enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

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 {
	BlueprintAPI *BlueprintAPIService

	CanvasAPI *CanvasAPIService

	CanvasEventAPI *CanvasEventAPIService

	CanvasNodeAPI *CanvasNodeAPIService

	CanvasNodeExecutionAPI *CanvasNodeExecutionAPIService

	ComponentAPI *ComponentAPIService

	GroupsAPI *GroupsAPIService

	IntegrationAPI *IntegrationAPIService

	MeAPI *MeAPIService

	OrganizationAPI *OrganizationAPIService

	RolesAPI *RolesAPIService

	SecretAPI *SecretAPIService

	TriggerAPI *TriggerAPIService

	UsersAPI *UsersAPIService

	WidgetAPI *WidgetAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Superplane Organizations API API v1.0 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 ApiBlueprintsCreateBlueprintRequest

type ApiBlueprintsCreateBlueprintRequest struct {
	ApiService *BlueprintAPIService
	// contains filtered or unexported fields
}

func (ApiBlueprintsCreateBlueprintRequest) Execute

type ApiBlueprintsDeleteBlueprintRequest

type ApiBlueprintsDeleteBlueprintRequest struct {
	ApiService *BlueprintAPIService
	// contains filtered or unexported fields
}

func (ApiBlueprintsDeleteBlueprintRequest) Execute

func (r ApiBlueprintsDeleteBlueprintRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiBlueprintsDescribeBlueprintRequest

type ApiBlueprintsDescribeBlueprintRequest struct {
	ApiService *BlueprintAPIService
	// contains filtered or unexported fields
}

func (ApiBlueprintsDescribeBlueprintRequest) Execute

type ApiBlueprintsListBlueprintsRequest

type ApiBlueprintsListBlueprintsRequest struct {
	ApiService *BlueprintAPIService
	// contains filtered or unexported fields
}

func (ApiBlueprintsListBlueprintsRequest) Execute

type ApiBlueprintsUpdateBlueprintRequest

type ApiBlueprintsUpdateBlueprintRequest struct {
	ApiService *BlueprintAPIService
	// contains filtered or unexported fields
}

func (ApiBlueprintsUpdateBlueprintRequest) Execute

type ApiCanvasesCancelExecutionRequest added in v0.6.0

type ApiCanvasesCancelExecutionRequest struct {
	ApiService *CanvasNodeExecutionAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesCancelExecutionRequest) Body added in v0.6.0

func (ApiCanvasesCancelExecutionRequest) Execute added in v0.6.0

func (r ApiCanvasesCancelExecutionRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiCanvasesCreateCanvasRequest added in v0.6.0

type ApiCanvasesCreateCanvasRequest struct {
	ApiService *CanvasAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesCreateCanvasRequest) Body added in v0.6.0

func (ApiCanvasesCreateCanvasRequest) Execute added in v0.6.0

type ApiCanvasesDeleteCanvasRequest added in v0.6.0

type ApiCanvasesDeleteCanvasRequest struct {
	ApiService *CanvasAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesDeleteCanvasRequest) Execute added in v0.6.0

func (r ApiCanvasesDeleteCanvasRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiCanvasesDeleteNodeQueueItemRequest added in v0.6.0

type ApiCanvasesDeleteNodeQueueItemRequest struct {
	ApiService *CanvasNodeAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesDeleteNodeQueueItemRequest) Execute added in v0.6.0

func (r ApiCanvasesDeleteNodeQueueItemRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiCanvasesDescribeCanvasRequest added in v0.6.0

type ApiCanvasesDescribeCanvasRequest struct {
	ApiService *CanvasAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesDescribeCanvasRequest) Execute added in v0.6.0

type ApiCanvasesEmitNodeEventRequest added in v0.6.0

type ApiCanvasesEmitNodeEventRequest struct {
	ApiService *CanvasNodeAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesEmitNodeEventRequest) Body added in v0.6.0

func (ApiCanvasesEmitNodeEventRequest) Execute added in v0.6.0

type ApiCanvasesInvokeNodeExecutionActionRequest added in v0.6.0

type ApiCanvasesInvokeNodeExecutionActionRequest struct {
	ApiService *CanvasNodeExecutionAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesInvokeNodeExecutionActionRequest) Body added in v0.6.0

func (ApiCanvasesInvokeNodeExecutionActionRequest) Execute added in v0.6.0

func (r ApiCanvasesInvokeNodeExecutionActionRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiCanvasesInvokeNodeTriggerActionRequest added in v0.6.0

type ApiCanvasesInvokeNodeTriggerActionRequest struct {
	ApiService *CanvasNodeAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesInvokeNodeTriggerActionRequest) Body added in v0.6.0

func (ApiCanvasesInvokeNodeTriggerActionRequest) Execute added in v0.6.0

type ApiCanvasesListCanvasEventsRequest added in v0.6.0

type ApiCanvasesListCanvasEventsRequest struct {
	ApiService *CanvasEventAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesListCanvasEventsRequest) Before added in v0.6.0

func (ApiCanvasesListCanvasEventsRequest) Execute added in v0.6.0

func (ApiCanvasesListCanvasEventsRequest) Limit added in v0.6.0

type ApiCanvasesListCanvasesRequest added in v0.6.0

type ApiCanvasesListCanvasesRequest struct {
	ApiService *CanvasAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesListCanvasesRequest) Execute added in v0.6.0

func (ApiCanvasesListCanvasesRequest) IncludeTemplates added in v0.6.0

func (r ApiCanvasesListCanvasesRequest) IncludeTemplates(includeTemplates bool) ApiCanvasesListCanvasesRequest

type ApiCanvasesListChildExecutionsRequest added in v0.6.0

type ApiCanvasesListChildExecutionsRequest struct {
	ApiService *CanvasNodeExecutionAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesListChildExecutionsRequest) Body added in v0.6.0

func (ApiCanvasesListChildExecutionsRequest) Execute added in v0.6.0

type ApiCanvasesListEventExecutionsRequest added in v0.6.0

type ApiCanvasesListEventExecutionsRequest struct {
	ApiService *CanvasEventAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesListEventExecutionsRequest) Execute added in v0.6.0

type ApiCanvasesListNodeEventsRequest added in v0.6.0

type ApiCanvasesListNodeEventsRequest struct {
	ApiService *CanvasNodeAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesListNodeEventsRequest) Before added in v0.6.0

func (ApiCanvasesListNodeEventsRequest) Execute added in v0.6.0

func (ApiCanvasesListNodeEventsRequest) Limit added in v0.6.0

type ApiCanvasesListNodeExecutionsRequest added in v0.6.0

type ApiCanvasesListNodeExecutionsRequest struct {
	ApiService *CanvasNodeAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesListNodeExecutionsRequest) Before added in v0.6.0

func (ApiCanvasesListNodeExecutionsRequest) Execute added in v0.6.0

func (ApiCanvasesListNodeExecutionsRequest) Limit added in v0.6.0

func (ApiCanvasesListNodeExecutionsRequest) Results added in v0.6.0

func (ApiCanvasesListNodeExecutionsRequest) States added in v0.6.0

type ApiCanvasesListNodeQueueItemsRequest added in v0.6.0

type ApiCanvasesListNodeQueueItemsRequest struct {
	ApiService *CanvasNodeAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesListNodeQueueItemsRequest) Before added in v0.6.0

func (ApiCanvasesListNodeQueueItemsRequest) Execute added in v0.6.0

func (ApiCanvasesListNodeQueueItemsRequest) Limit added in v0.6.0

type ApiCanvasesResolveExecutionErrorsRequest added in v0.6.0

type ApiCanvasesResolveExecutionErrorsRequest struct {
	ApiService *CanvasNodeExecutionAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesResolveExecutionErrorsRequest) Body added in v0.6.0

func (ApiCanvasesResolveExecutionErrorsRequest) Execute added in v0.6.0

func (r ApiCanvasesResolveExecutionErrorsRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiCanvasesUpdateCanvasRequest added in v0.6.0

type ApiCanvasesUpdateCanvasRequest struct {
	ApiService *CanvasAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesUpdateCanvasRequest) Body added in v0.6.0

func (ApiCanvasesUpdateCanvasRequest) Execute added in v0.6.0

type ApiCanvasesUpdateNodePauseRequest added in v0.6.0

type ApiCanvasesUpdateNodePauseRequest struct {
	ApiService *CanvasNodeAPIService
	// contains filtered or unexported fields
}

func (ApiCanvasesUpdateNodePauseRequest) Body added in v0.6.0

func (ApiCanvasesUpdateNodePauseRequest) Execute added in v0.6.0

type ApiComponentsDescribeComponentRequest

type ApiComponentsDescribeComponentRequest struct {
	ApiService *ComponentAPIService
	// contains filtered or unexported fields
}

func (ApiComponentsDescribeComponentRequest) Execute

type ApiComponentsListComponentActionsRequest

type ApiComponentsListComponentActionsRequest struct {
	ApiService *ComponentAPIService
	// contains filtered or unexported fields
}

func (ApiComponentsListComponentActionsRequest) Execute

type ApiComponentsListComponentsRequest

type ApiComponentsListComponentsRequest struct {
	ApiService *ComponentAPIService
	// contains filtered or unexported fields
}

func (ApiComponentsListComponentsRequest) Execute

type ApiGroupsAddUserToGroupRequest

type ApiGroupsAddUserToGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsAddUserToGroupRequest) Body

func (ApiGroupsAddUserToGroupRequest) Execute

func (r ApiGroupsAddUserToGroupRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiGroupsCreateGroupRequest

type ApiGroupsCreateGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsCreateGroupRequest) Body

func (ApiGroupsCreateGroupRequest) Execute

type ApiGroupsDeleteGroupRequest

type ApiGroupsDeleteGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsDeleteGroupRequest) DomainId

func (ApiGroupsDeleteGroupRequest) DomainType

func (ApiGroupsDeleteGroupRequest) Execute

func (r ApiGroupsDeleteGroupRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiGroupsDescribeGroupRequest

type ApiGroupsDescribeGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsDescribeGroupRequest) DomainId

func (ApiGroupsDescribeGroupRequest) DomainType

func (ApiGroupsDescribeGroupRequest) Execute

type ApiGroupsListGroupUsersRequest

type ApiGroupsListGroupUsersRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsListGroupUsersRequest) DomainId

func (ApiGroupsListGroupUsersRequest) DomainType

func (ApiGroupsListGroupUsersRequest) Execute

type ApiGroupsListGroupsRequest

type ApiGroupsListGroupsRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsListGroupsRequest) DomainId

func (ApiGroupsListGroupsRequest) DomainType

func (ApiGroupsListGroupsRequest) Execute

type ApiGroupsRemoveUserFromGroupRequest

type ApiGroupsRemoveUserFromGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsRemoveUserFromGroupRequest) Execute

func (r ApiGroupsRemoveUserFromGroupRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiGroupsUpdateGroupRequest

type ApiGroupsUpdateGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsUpdateGroupRequest) Body

func (ApiGroupsUpdateGroupRequest) Execute

type ApiIntegrationsListIntegrationsRequest

type ApiIntegrationsListIntegrationsRequest struct {
	ApiService *IntegrationAPIService
	// contains filtered or unexported fields
}

func (ApiIntegrationsListIntegrationsRequest) Execute

type ApiMeMeRequest

type ApiMeMeRequest struct {
	ApiService *MeAPIService
	// contains filtered or unexported fields
}

func (ApiMeMeRequest) Execute

type ApiMeRegenerateTokenRequest

type ApiMeRegenerateTokenRequest struct {
	ApiService *MeAPIService
	// contains filtered or unexported fields
}

func (ApiMeRegenerateTokenRequest) Execute

type ApiOrganizationsAcceptInviteLinkRequest added in v0.0.43

type ApiOrganizationsAcceptInviteLinkRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsAcceptInviteLinkRequest) CreatedAt added in v0.0.43

func (ApiOrganizationsAcceptInviteLinkRequest) Enabled added in v0.0.43

func (ApiOrganizationsAcceptInviteLinkRequest) Execute added in v0.0.43

func (r ApiOrganizationsAcceptInviteLinkRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiOrganizationsAcceptInviteLinkRequest) Id added in v0.0.43

func (ApiOrganizationsAcceptInviteLinkRequest) OrganizationId added in v0.0.43

func (ApiOrganizationsAcceptInviteLinkRequest) UpdatedAt added in v0.0.43

type ApiOrganizationsCreateIntegrationRequest added in v0.5.0

type ApiOrganizationsCreateIntegrationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsCreateIntegrationRequest) Body added in v0.5.0

func (ApiOrganizationsCreateIntegrationRequest) Execute added in v0.5.0

type ApiOrganizationsCreateInvitationRequest

type ApiOrganizationsCreateInvitationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsCreateInvitationRequest) Execute

type ApiOrganizationsDeleteIntegrationRequest added in v0.5.0

type ApiOrganizationsDeleteIntegrationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsDeleteIntegrationRequest) Execute added in v0.5.0

func (r ApiOrganizationsDeleteIntegrationRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiOrganizationsDeleteOrganizationRequest

type ApiOrganizationsDeleteOrganizationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsDeleteOrganizationRequest) Execute

func (r ApiOrganizationsDeleteOrganizationRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiOrganizationsDescribeIntegrationRequest added in v0.5.0

type ApiOrganizationsDescribeIntegrationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsDescribeIntegrationRequest) Execute added in v0.5.0

type ApiOrganizationsDescribeOrganizationRequest

type ApiOrganizationsDescribeOrganizationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsDescribeOrganizationRequest) Execute

type ApiOrganizationsGetInviteLinkRequest added in v0.0.43

type ApiOrganizationsGetInviteLinkRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsGetInviteLinkRequest) Execute added in v0.0.43

type ApiOrganizationsListIntegrationResourcesRequest added in v0.5.0

type ApiOrganizationsListIntegrationResourcesRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsListIntegrationResourcesRequest) Execute added in v0.5.0

func (ApiOrganizationsListIntegrationResourcesRequest) Parameters added in v0.7.0

type ApiOrganizationsListIntegrationsRequest added in v0.5.0

type ApiOrganizationsListIntegrationsRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsListIntegrationsRequest) Execute added in v0.5.0

type ApiOrganizationsListInvitationsRequest

type ApiOrganizationsListInvitationsRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsListInvitationsRequest) Execute

type ApiOrganizationsRemoveInvitationRequest

type ApiOrganizationsRemoveInvitationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsRemoveInvitationRequest) Execute

func (r ApiOrganizationsRemoveInvitationRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiOrganizationsRemoveUserRequest

type ApiOrganizationsRemoveUserRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsRemoveUserRequest) Execute

func (r ApiOrganizationsRemoveUserRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiOrganizationsResetInviteLinkRequest added in v0.0.43

type ApiOrganizationsResetInviteLinkRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsResetInviteLinkRequest) Execute added in v0.0.43

type ApiOrganizationsUpdateIntegrationRequest added in v0.5.0

type ApiOrganizationsUpdateIntegrationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsUpdateIntegrationRequest) Body added in v0.5.0

func (ApiOrganizationsUpdateIntegrationRequest) Execute added in v0.5.0

type ApiOrganizationsUpdateInviteLinkRequest added in v0.0.43

type ApiOrganizationsUpdateInviteLinkRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsUpdateInviteLinkRequest) Body added in v0.0.43

func (ApiOrganizationsUpdateInviteLinkRequest) Execute added in v0.0.43

type ApiOrganizationsUpdateOrganizationRequest

type ApiOrganizationsUpdateOrganizationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsUpdateOrganizationRequest) Execute

type ApiRolesAssignRoleRequest

type ApiRolesAssignRoleRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesAssignRoleRequest) Body

func (ApiRolesAssignRoleRequest) Execute

func (r ApiRolesAssignRoleRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiRolesCreateRoleRequest

type ApiRolesCreateRoleRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesCreateRoleRequest) Body

func (ApiRolesCreateRoleRequest) Execute

type ApiRolesDeleteRoleRequest

type ApiRolesDeleteRoleRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesDeleteRoleRequest) DomainId

func (ApiRolesDeleteRoleRequest) DomainType

func (ApiRolesDeleteRoleRequest) Execute

func (r ApiRolesDeleteRoleRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiRolesDescribeRoleRequest

type ApiRolesDescribeRoleRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesDescribeRoleRequest) DomainId

func (ApiRolesDescribeRoleRequest) DomainType

func (ApiRolesDescribeRoleRequest) Execute

type ApiRolesListRolesRequest

type ApiRolesListRolesRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesListRolesRequest) DomainId

func (ApiRolesListRolesRequest) DomainType

func (r ApiRolesListRolesRequest) DomainType(domainType string) ApiRolesListRolesRequest

func (ApiRolesListRolesRequest) Execute

type ApiRolesUpdateRoleRequest

type ApiRolesUpdateRoleRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesUpdateRoleRequest) Body

func (ApiRolesUpdateRoleRequest) Execute

type ApiSecretsCreateSecretRequest

type ApiSecretsCreateSecretRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsCreateSecretRequest) Body

func (ApiSecretsCreateSecretRequest) Execute

type ApiSecretsDeleteSecretKeyRequest added in v0.7.0

type ApiSecretsDeleteSecretKeyRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsDeleteSecretKeyRequest) DomainId added in v0.7.0

func (ApiSecretsDeleteSecretKeyRequest) DomainType added in v0.7.0

func (ApiSecretsDeleteSecretKeyRequest) Execute added in v0.7.0

type ApiSecretsDeleteSecretRequest

type ApiSecretsDeleteSecretRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsDeleteSecretRequest) DomainId

func (ApiSecretsDeleteSecretRequest) DomainType

func (ApiSecretsDeleteSecretRequest) Execute

func (r ApiSecretsDeleteSecretRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiSecretsDescribeSecretRequest

type ApiSecretsDescribeSecretRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsDescribeSecretRequest) DomainId

func (ApiSecretsDescribeSecretRequest) DomainType

func (ApiSecretsDescribeSecretRequest) Execute

type ApiSecretsListSecretsRequest

type ApiSecretsListSecretsRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsListSecretsRequest) DomainId

func (ApiSecretsListSecretsRequest) DomainType

func (ApiSecretsListSecretsRequest) Execute

type ApiSecretsSetSecretKeyRequest added in v0.7.0

type ApiSecretsSetSecretKeyRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsSetSecretKeyRequest) Body added in v0.7.0

func (ApiSecretsSetSecretKeyRequest) Execute added in v0.7.0

type ApiSecretsUpdateSecretNameRequest added in v0.7.0

type ApiSecretsUpdateSecretNameRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsUpdateSecretNameRequest) Body added in v0.7.0

func (ApiSecretsUpdateSecretNameRequest) Execute added in v0.7.0

type ApiSecretsUpdateSecretRequest

type ApiSecretsUpdateSecretRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsUpdateSecretRequest) Body

func (ApiSecretsUpdateSecretRequest) Execute

type ApiTriggersDescribeTriggerRequest

type ApiTriggersDescribeTriggerRequest struct {
	ApiService *TriggerAPIService
	// contains filtered or unexported fields
}

func (ApiTriggersDescribeTriggerRequest) Execute

type ApiTriggersListTriggersRequest

type ApiTriggersListTriggersRequest struct {
	ApiService *TriggerAPIService
	// contains filtered or unexported fields
}

func (ApiTriggersListTriggersRequest) Execute

type ApiUsersListUserPermissionsRequest

type ApiUsersListUserPermissionsRequest struct {
	ApiService *UsersAPIService
	// contains filtered or unexported fields
}

func (ApiUsersListUserPermissionsRequest) DomainId

func (ApiUsersListUserPermissionsRequest) DomainType

func (ApiUsersListUserPermissionsRequest) Execute

type ApiUsersListUserRolesRequest

type ApiUsersListUserRolesRequest struct {
	ApiService *UsersAPIService
	// contains filtered or unexported fields
}

func (ApiUsersListUserRolesRequest) DomainId

func (ApiUsersListUserRolesRequest) DomainType

func (ApiUsersListUserRolesRequest) Execute

type ApiUsersListUsersRequest

type ApiUsersListUsersRequest struct {
	ApiService *UsersAPIService
	// contains filtered or unexported fields
}

func (ApiUsersListUsersRequest) DomainId

func (ApiUsersListUsersRequest) DomainType

func (r ApiUsersListUsersRequest) DomainType(domainType string) ApiUsersListUsersRequest

func (ApiUsersListUsersRequest) Execute

type ApiWidgetsDescribeWidgetRequest added in v0.0.18

type ApiWidgetsDescribeWidgetRequest struct {
	ApiService *WidgetAPIService
	// contains filtered or unexported fields
}

func (ApiWidgetsDescribeWidgetRequest) Execute added in v0.0.18

type ApiWidgetsListWidgetsRequest added in v0.0.18

type ApiWidgetsListWidgetsRequest struct {
	ApiService *WidgetAPIService
	// contains filtered or unexported fields
}

func (ApiWidgetsListWidgetsRequest) Execute added in v0.0.18

type AuthorizationDomainType

type AuthorizationDomainType string

AuthorizationDomainType the model 'AuthorizationDomainType'

const (
	AUTHORIZATIONDOMAINTYPE_DOMAIN_TYPE_UNSPECIFIED  AuthorizationDomainType = "DOMAIN_TYPE_UNSPECIFIED"
	AUTHORIZATIONDOMAINTYPE_DOMAIN_TYPE_ORGANIZATION AuthorizationDomainType = "DOMAIN_TYPE_ORGANIZATION"
)

List of AuthorizationDomainType

func NewAuthorizationDomainTypeFromValue

func NewAuthorizationDomainTypeFromValue(v string) (*AuthorizationDomainType, error)

NewAuthorizationDomainTypeFromValue returns a pointer to a valid AuthorizationDomainType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (AuthorizationDomainType) IsValid

func (v AuthorizationDomainType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (AuthorizationDomainType) Ptr

Ptr returns reference to AuthorizationDomainType value

func (*AuthorizationDomainType) UnmarshalJSON

func (v *AuthorizationDomainType) UnmarshalJSON(src []byte) error

type AuthorizationPermission

type AuthorizationPermission struct {
	Resource   *string                  `json:"resource,omitempty"`
	Action     *string                  `json:"action,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
}

AuthorizationPermission struct for AuthorizationPermission

func NewAuthorizationPermission

func NewAuthorizationPermission() *AuthorizationPermission

NewAuthorizationPermission instantiates a new AuthorizationPermission 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 NewAuthorizationPermissionWithDefaults

func NewAuthorizationPermissionWithDefaults() *AuthorizationPermission

NewAuthorizationPermissionWithDefaults instantiates a new AuthorizationPermission 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 (*AuthorizationPermission) GetAction

func (o *AuthorizationPermission) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*AuthorizationPermission) GetActionOk

func (o *AuthorizationPermission) GetActionOk() (*string, bool)

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

func (*AuthorizationPermission) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*AuthorizationPermission) GetDomainTypeOk

func (o *AuthorizationPermission) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*AuthorizationPermission) GetResource

func (o *AuthorizationPermission) GetResource() string

GetResource returns the Resource field value if set, zero value otherwise.

func (*AuthorizationPermission) GetResourceOk

func (o *AuthorizationPermission) GetResourceOk() (*string, bool)

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

func (*AuthorizationPermission) HasAction

func (o *AuthorizationPermission) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*AuthorizationPermission) HasDomainType

func (o *AuthorizationPermission) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*AuthorizationPermission) HasResource

func (o *AuthorizationPermission) HasResource() bool

HasResource returns a boolean if a field has been set.

func (AuthorizationPermission) MarshalJSON

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

func (*AuthorizationPermission) SetAction

func (o *AuthorizationPermission) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*AuthorizationPermission) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*AuthorizationPermission) SetResource

func (o *AuthorizationPermission) SetResource(v string)

SetResource gets a reference to the given string and assigns it to the Resource field.

func (AuthorizationPermission) ToMap

func (o AuthorizationPermission) ToMap() (map[string]interface{}, error)

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 BlueprintAPIService

type BlueprintAPIService service

BlueprintAPIService BlueprintAPI service

func (*BlueprintAPIService) BlueprintsCreateBlueprint

func (a *BlueprintAPIService) BlueprintsCreateBlueprint(ctx context.Context) ApiBlueprintsCreateBlueprintRequest

BlueprintsCreateBlueprint Create blueprint

Creates a new blueprint

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

func (*BlueprintAPIService) BlueprintsCreateBlueprintExecute

Execute executes the request

@return BlueprintsCreateBlueprintResponse

func (*BlueprintAPIService) BlueprintsDeleteBlueprint

func (a *BlueprintAPIService) BlueprintsDeleteBlueprint(ctx context.Context, id string) ApiBlueprintsDeleteBlueprintRequest

BlueprintsDeleteBlueprint Delete blueprint

Deletes an existing blueprint

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

func (*BlueprintAPIService) BlueprintsDeleteBlueprintExecute

func (a *BlueprintAPIService) BlueprintsDeleteBlueprintExecute(r ApiBlueprintsDeleteBlueprintRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*BlueprintAPIService) BlueprintsDescribeBlueprint

func (a *BlueprintAPIService) BlueprintsDescribeBlueprint(ctx context.Context, id string) ApiBlueprintsDescribeBlueprintRequest

BlueprintsDescribeBlueprint Describe blueprint

Returns a blueprint

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

func (*BlueprintAPIService) BlueprintsDescribeBlueprintExecute

Execute executes the request

@return BlueprintsDescribeBlueprintResponse

func (*BlueprintAPIService) BlueprintsListBlueprints

func (a *BlueprintAPIService) BlueprintsListBlueprints(ctx context.Context) ApiBlueprintsListBlueprintsRequest

BlueprintsListBlueprints List blueprints

Returns a list of all blueprints

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

func (*BlueprintAPIService) BlueprintsListBlueprintsExecute

Execute executes the request

@return BlueprintsListBlueprintsResponse

func (*BlueprintAPIService) BlueprintsUpdateBlueprint

func (a *BlueprintAPIService) BlueprintsUpdateBlueprint(ctx context.Context, id string) ApiBlueprintsUpdateBlueprintRequest

BlueprintsUpdateBlueprint Update blueprint

Updates an existing blueprint

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

func (*BlueprintAPIService) BlueprintsUpdateBlueprintExecute

Execute executes the request

@return BlueprintsUpdateBlueprintResponse

type BlueprintsBlueprint

type BlueprintsBlueprint struct {
	Id             *string                             `json:"id,omitempty"`
	OrganizationId *string                             `json:"organizationId,omitempty"`
	Name           *string                             `json:"name,omitempty"`
	Description    *string                             `json:"description,omitempty"`
	CreatedAt      *time.Time                          `json:"createdAt,omitempty"`
	UpdatedAt      *time.Time                          `json:"updatedAt,omitempty"`
	Nodes          []ComponentsNode                    `json:"nodes,omitempty"`
	Edges          []ComponentsEdge                    `json:"edges,omitempty"`
	Configuration  []ConfigurationField                `json:"configuration,omitempty"`
	OutputChannels []SuperplaneBlueprintsOutputChannel `json:"outputChannels,omitempty"`
	Icon           *string                             `json:"icon,omitempty"`
	Color          *string                             `json:"color,omitempty"`
	CreatedBy      *SuperplaneBlueprintsUserRef        `json:"createdBy,omitempty"`
}

BlueprintsBlueprint struct for BlueprintsBlueprint

func NewBlueprintsBlueprint

func NewBlueprintsBlueprint() *BlueprintsBlueprint

NewBlueprintsBlueprint instantiates a new BlueprintsBlueprint 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 NewBlueprintsBlueprintWithDefaults

func NewBlueprintsBlueprintWithDefaults() *BlueprintsBlueprint

NewBlueprintsBlueprintWithDefaults instantiates a new BlueprintsBlueprint 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 (*BlueprintsBlueprint) GetColor

func (o *BlueprintsBlueprint) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetColorOk

func (o *BlueprintsBlueprint) GetColorOk() (*string, bool)

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

func (*BlueprintsBlueprint) GetConfiguration

func (o *BlueprintsBlueprint) GetConfiguration() []ConfigurationField

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetConfigurationOk

func (o *BlueprintsBlueprint) GetConfigurationOk() ([]ConfigurationField, bool)

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

func (*BlueprintsBlueprint) GetCreatedAt

func (o *BlueprintsBlueprint) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetCreatedAtOk

func (o *BlueprintsBlueprint) 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 (*BlueprintsBlueprint) GetCreatedBy

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetCreatedByOk

func (o *BlueprintsBlueprint) GetCreatedByOk() (*SuperplaneBlueprintsUserRef, bool)

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

func (*BlueprintsBlueprint) GetDescription

func (o *BlueprintsBlueprint) GetDescription() string

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

func (*BlueprintsBlueprint) GetDescriptionOk

func (o *BlueprintsBlueprint) 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 (*BlueprintsBlueprint) GetEdges

func (o *BlueprintsBlueprint) GetEdges() []ComponentsEdge

GetEdges returns the Edges field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetEdgesOk

func (o *BlueprintsBlueprint) GetEdgesOk() ([]ComponentsEdge, bool)

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

func (*BlueprintsBlueprint) GetIcon

func (o *BlueprintsBlueprint) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetIconOk

func (o *BlueprintsBlueprint) GetIconOk() (*string, bool)

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

func (*BlueprintsBlueprint) GetId

func (o *BlueprintsBlueprint) GetId() string

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

func (*BlueprintsBlueprint) GetIdOk

func (o *BlueprintsBlueprint) 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 (*BlueprintsBlueprint) GetName

func (o *BlueprintsBlueprint) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetNameOk

func (o *BlueprintsBlueprint) GetNameOk() (*string, bool)

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

func (*BlueprintsBlueprint) GetNodes

func (o *BlueprintsBlueprint) GetNodes() []ComponentsNode

GetNodes returns the Nodes field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetNodesOk

func (o *BlueprintsBlueprint) GetNodesOk() ([]ComponentsNode, bool)

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

func (*BlueprintsBlueprint) GetOrganizationId

func (o *BlueprintsBlueprint) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetOrganizationIdOk

func (o *BlueprintsBlueprint) GetOrganizationIdOk() (*string, bool)

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

func (*BlueprintsBlueprint) GetOutputChannels

func (o *BlueprintsBlueprint) GetOutputChannels() []SuperplaneBlueprintsOutputChannel

GetOutputChannels returns the OutputChannels field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetOutputChannelsOk

func (o *BlueprintsBlueprint) GetOutputChannelsOk() ([]SuperplaneBlueprintsOutputChannel, bool)

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

func (*BlueprintsBlueprint) GetUpdatedAt

func (o *BlueprintsBlueprint) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetUpdatedAtOk

func (o *BlueprintsBlueprint) 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 (*BlueprintsBlueprint) HasColor

func (o *BlueprintsBlueprint) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasConfiguration

func (o *BlueprintsBlueprint) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasCreatedAt

func (o *BlueprintsBlueprint) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasCreatedBy

func (o *BlueprintsBlueprint) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasDescription

func (o *BlueprintsBlueprint) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasEdges

func (o *BlueprintsBlueprint) HasEdges() bool

HasEdges returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasIcon

func (o *BlueprintsBlueprint) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasId

func (o *BlueprintsBlueprint) HasId() bool

HasId returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasName

func (o *BlueprintsBlueprint) HasName() bool

HasName returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasNodes

func (o *BlueprintsBlueprint) HasNodes() bool

HasNodes returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasOrganizationId

func (o *BlueprintsBlueprint) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasOutputChannels

func (o *BlueprintsBlueprint) HasOutputChannels() bool

HasOutputChannels returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasUpdatedAt

func (o *BlueprintsBlueprint) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (BlueprintsBlueprint) MarshalJSON

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

func (*BlueprintsBlueprint) SetColor

func (o *BlueprintsBlueprint) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*BlueprintsBlueprint) SetConfiguration

func (o *BlueprintsBlueprint) SetConfiguration(v []ConfigurationField)

SetConfiguration gets a reference to the given []ConfigurationField and assigns it to the Configuration field.

func (*BlueprintsBlueprint) SetCreatedAt

func (o *BlueprintsBlueprint) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*BlueprintsBlueprint) SetCreatedBy

SetCreatedBy gets a reference to the given SuperplaneBlueprintsUserRef and assigns it to the CreatedBy field.

func (*BlueprintsBlueprint) SetDescription

func (o *BlueprintsBlueprint) SetDescription(v string)

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

func (*BlueprintsBlueprint) SetEdges

func (o *BlueprintsBlueprint) SetEdges(v []ComponentsEdge)

SetEdges gets a reference to the given []ComponentsEdge and assigns it to the Edges field.

func (*BlueprintsBlueprint) SetIcon

func (o *BlueprintsBlueprint) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*BlueprintsBlueprint) SetId

func (o *BlueprintsBlueprint) SetId(v string)

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

func (*BlueprintsBlueprint) SetName

func (o *BlueprintsBlueprint) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*BlueprintsBlueprint) SetNodes

func (o *BlueprintsBlueprint) SetNodes(v []ComponentsNode)

SetNodes gets a reference to the given []ComponentsNode and assigns it to the Nodes field.

func (*BlueprintsBlueprint) SetOrganizationId

func (o *BlueprintsBlueprint) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*BlueprintsBlueprint) SetOutputChannels

func (o *BlueprintsBlueprint) SetOutputChannels(v []SuperplaneBlueprintsOutputChannel)

SetOutputChannels gets a reference to the given []SuperplaneBlueprintsOutputChannel and assigns it to the OutputChannels field.

func (*BlueprintsBlueprint) SetUpdatedAt

func (o *BlueprintsBlueprint) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (BlueprintsBlueprint) ToMap

func (o BlueprintsBlueprint) ToMap() (map[string]interface{}, error)

type BlueprintsCreateBlueprintRequest

type BlueprintsCreateBlueprintRequest struct {
	Blueprint *BlueprintsBlueprint `json:"blueprint,omitempty"`
}

BlueprintsCreateBlueprintRequest struct for BlueprintsCreateBlueprintRequest

func NewBlueprintsCreateBlueprintRequest

func NewBlueprintsCreateBlueprintRequest() *BlueprintsCreateBlueprintRequest

NewBlueprintsCreateBlueprintRequest instantiates a new BlueprintsCreateBlueprintRequest 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 NewBlueprintsCreateBlueprintRequestWithDefaults

func NewBlueprintsCreateBlueprintRequestWithDefaults() *BlueprintsCreateBlueprintRequest

NewBlueprintsCreateBlueprintRequestWithDefaults instantiates a new BlueprintsCreateBlueprintRequest 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 (*BlueprintsCreateBlueprintRequest) GetBlueprint

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*BlueprintsCreateBlueprintRequest) GetBlueprintOk

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

func (*BlueprintsCreateBlueprintRequest) HasBlueprint

func (o *BlueprintsCreateBlueprintRequest) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (BlueprintsCreateBlueprintRequest) MarshalJSON

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

func (*BlueprintsCreateBlueprintRequest) SetBlueprint

SetBlueprint gets a reference to the given BlueprintsBlueprint and assigns it to the Blueprint field.

func (BlueprintsCreateBlueprintRequest) ToMap

func (o BlueprintsCreateBlueprintRequest) ToMap() (map[string]interface{}, error)

type BlueprintsCreateBlueprintResponse

type BlueprintsCreateBlueprintResponse struct {
	Blueprint *BlueprintsBlueprint `json:"blueprint,omitempty"`
}

BlueprintsCreateBlueprintResponse struct for BlueprintsCreateBlueprintResponse

func NewBlueprintsCreateBlueprintResponse

func NewBlueprintsCreateBlueprintResponse() *BlueprintsCreateBlueprintResponse

NewBlueprintsCreateBlueprintResponse instantiates a new BlueprintsCreateBlueprintResponse 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 NewBlueprintsCreateBlueprintResponseWithDefaults

func NewBlueprintsCreateBlueprintResponseWithDefaults() *BlueprintsCreateBlueprintResponse

NewBlueprintsCreateBlueprintResponseWithDefaults instantiates a new BlueprintsCreateBlueprintResponse 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 (*BlueprintsCreateBlueprintResponse) GetBlueprint

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*BlueprintsCreateBlueprintResponse) GetBlueprintOk

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

func (*BlueprintsCreateBlueprintResponse) HasBlueprint

func (o *BlueprintsCreateBlueprintResponse) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (BlueprintsCreateBlueprintResponse) MarshalJSON

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

func (*BlueprintsCreateBlueprintResponse) SetBlueprint

SetBlueprint gets a reference to the given BlueprintsBlueprint and assigns it to the Blueprint field.

func (BlueprintsCreateBlueprintResponse) ToMap

func (o BlueprintsCreateBlueprintResponse) ToMap() (map[string]interface{}, error)

type BlueprintsDescribeBlueprintResponse

type BlueprintsDescribeBlueprintResponse struct {
	Blueprint *BlueprintsBlueprint `json:"blueprint,omitempty"`
}

BlueprintsDescribeBlueprintResponse struct for BlueprintsDescribeBlueprintResponse

func NewBlueprintsDescribeBlueprintResponse

func NewBlueprintsDescribeBlueprintResponse() *BlueprintsDescribeBlueprintResponse

NewBlueprintsDescribeBlueprintResponse instantiates a new BlueprintsDescribeBlueprintResponse 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 NewBlueprintsDescribeBlueprintResponseWithDefaults

func NewBlueprintsDescribeBlueprintResponseWithDefaults() *BlueprintsDescribeBlueprintResponse

NewBlueprintsDescribeBlueprintResponseWithDefaults instantiates a new BlueprintsDescribeBlueprintResponse 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 (*BlueprintsDescribeBlueprintResponse) GetBlueprint

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*BlueprintsDescribeBlueprintResponse) GetBlueprintOk

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

func (*BlueprintsDescribeBlueprintResponse) HasBlueprint

func (o *BlueprintsDescribeBlueprintResponse) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (BlueprintsDescribeBlueprintResponse) MarshalJSON

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

func (*BlueprintsDescribeBlueprintResponse) SetBlueprint

SetBlueprint gets a reference to the given BlueprintsBlueprint and assigns it to the Blueprint field.

func (BlueprintsDescribeBlueprintResponse) ToMap

func (o BlueprintsDescribeBlueprintResponse) ToMap() (map[string]interface{}, error)

type BlueprintsListBlueprintsResponse

type BlueprintsListBlueprintsResponse struct {
	Blueprints []BlueprintsBlueprint `json:"blueprints,omitempty"`
}

BlueprintsListBlueprintsResponse struct for BlueprintsListBlueprintsResponse

func NewBlueprintsListBlueprintsResponse

func NewBlueprintsListBlueprintsResponse() *BlueprintsListBlueprintsResponse

NewBlueprintsListBlueprintsResponse instantiates a new BlueprintsListBlueprintsResponse 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 NewBlueprintsListBlueprintsResponseWithDefaults

func NewBlueprintsListBlueprintsResponseWithDefaults() *BlueprintsListBlueprintsResponse

NewBlueprintsListBlueprintsResponseWithDefaults instantiates a new BlueprintsListBlueprintsResponse 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 (*BlueprintsListBlueprintsResponse) GetBlueprints

GetBlueprints returns the Blueprints field value if set, zero value otherwise.

func (*BlueprintsListBlueprintsResponse) GetBlueprintsOk

func (o *BlueprintsListBlueprintsResponse) GetBlueprintsOk() ([]BlueprintsBlueprint, bool)

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

func (*BlueprintsListBlueprintsResponse) HasBlueprints

func (o *BlueprintsListBlueprintsResponse) HasBlueprints() bool

HasBlueprints returns a boolean if a field has been set.

func (BlueprintsListBlueprintsResponse) MarshalJSON

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

func (*BlueprintsListBlueprintsResponse) SetBlueprints

SetBlueprints gets a reference to the given []BlueprintsBlueprint and assigns it to the Blueprints field.

func (BlueprintsListBlueprintsResponse) ToMap

func (o BlueprintsListBlueprintsResponse) ToMap() (map[string]interface{}, error)

type BlueprintsUpdateBlueprintBody

type BlueprintsUpdateBlueprintBody struct {
	Blueprint *BlueprintsBlueprint `json:"blueprint,omitempty"`
}

BlueprintsUpdateBlueprintBody struct for BlueprintsUpdateBlueprintBody

func NewBlueprintsUpdateBlueprintBody

func NewBlueprintsUpdateBlueprintBody() *BlueprintsUpdateBlueprintBody

NewBlueprintsUpdateBlueprintBody instantiates a new BlueprintsUpdateBlueprintBody 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 NewBlueprintsUpdateBlueprintBodyWithDefaults

func NewBlueprintsUpdateBlueprintBodyWithDefaults() *BlueprintsUpdateBlueprintBody

NewBlueprintsUpdateBlueprintBodyWithDefaults instantiates a new BlueprintsUpdateBlueprintBody 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 (*BlueprintsUpdateBlueprintBody) GetBlueprint

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*BlueprintsUpdateBlueprintBody) GetBlueprintOk

func (o *BlueprintsUpdateBlueprintBody) GetBlueprintOk() (*BlueprintsBlueprint, bool)

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

func (*BlueprintsUpdateBlueprintBody) HasBlueprint

func (o *BlueprintsUpdateBlueprintBody) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (BlueprintsUpdateBlueprintBody) MarshalJSON

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

func (*BlueprintsUpdateBlueprintBody) SetBlueprint

SetBlueprint gets a reference to the given BlueprintsBlueprint and assigns it to the Blueprint field.

func (BlueprintsUpdateBlueprintBody) ToMap

func (o BlueprintsUpdateBlueprintBody) ToMap() (map[string]interface{}, error)

type BlueprintsUpdateBlueprintResponse

type BlueprintsUpdateBlueprintResponse struct {
	Blueprint *BlueprintsBlueprint `json:"blueprint,omitempty"`
}

BlueprintsUpdateBlueprintResponse struct for BlueprintsUpdateBlueprintResponse

func NewBlueprintsUpdateBlueprintResponse

func NewBlueprintsUpdateBlueprintResponse() *BlueprintsUpdateBlueprintResponse

NewBlueprintsUpdateBlueprintResponse instantiates a new BlueprintsUpdateBlueprintResponse 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 NewBlueprintsUpdateBlueprintResponseWithDefaults

func NewBlueprintsUpdateBlueprintResponseWithDefaults() *BlueprintsUpdateBlueprintResponse

NewBlueprintsUpdateBlueprintResponseWithDefaults instantiates a new BlueprintsUpdateBlueprintResponse 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 (*BlueprintsUpdateBlueprintResponse) GetBlueprint

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*BlueprintsUpdateBlueprintResponse) GetBlueprintOk

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

func (*BlueprintsUpdateBlueprintResponse) HasBlueprint

func (o *BlueprintsUpdateBlueprintResponse) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (BlueprintsUpdateBlueprintResponse) MarshalJSON

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

func (*BlueprintsUpdateBlueprintResponse) SetBlueprint

SetBlueprint gets a reference to the given BlueprintsBlueprint and assigns it to the Blueprint field.

func (BlueprintsUpdateBlueprintResponse) ToMap

func (o BlueprintsUpdateBlueprintResponse) ToMap() (map[string]interface{}, error)

type CanvasAPIService added in v0.6.0

type CanvasAPIService service

CanvasAPIService CanvasAPI service

func (*CanvasAPIService) CanvasesCreateCanvas added in v0.6.0

func (a *CanvasAPIService) CanvasesCreateCanvas(ctx context.Context) ApiCanvasesCreateCanvasRequest

CanvasesCreateCanvas Create canvas

Creates a new canvas

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

func (*CanvasAPIService) CanvasesCreateCanvasExecute added in v0.6.0

Execute executes the request

@return CanvasesCreateCanvasResponse

func (*CanvasAPIService) CanvasesDeleteCanvas added in v0.6.0

func (a *CanvasAPIService) CanvasesDeleteCanvas(ctx context.Context, id string) ApiCanvasesDeleteCanvasRequest

CanvasesDeleteCanvas Delete canvas

Deletes an existing canvas

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

func (*CanvasAPIService) CanvasesDeleteCanvasExecute added in v0.6.0

func (a *CanvasAPIService) CanvasesDeleteCanvasExecute(r ApiCanvasesDeleteCanvasRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*CanvasAPIService) CanvasesDescribeCanvas added in v0.6.0

func (a *CanvasAPIService) CanvasesDescribeCanvas(ctx context.Context, id string) ApiCanvasesDescribeCanvasRequest

CanvasesDescribeCanvas Describe canvas

Returns a canvas by ID

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

func (*CanvasAPIService) CanvasesDescribeCanvasExecute added in v0.6.0

Execute executes the request

@return CanvasesDescribeCanvasResponse

func (*CanvasAPIService) CanvasesListCanvases added in v0.6.0

func (a *CanvasAPIService) CanvasesListCanvases(ctx context.Context) ApiCanvasesListCanvasesRequest

CanvasesListCanvases List canvases

Returns a list of all canvases

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

func (*CanvasAPIService) CanvasesListCanvasesExecute added in v0.6.0

Execute executes the request

@return CanvasesListCanvasesResponse

func (*CanvasAPIService) CanvasesUpdateCanvas added in v0.6.0

func (a *CanvasAPIService) CanvasesUpdateCanvas(ctx context.Context, id string) ApiCanvasesUpdateCanvasRequest

CanvasesUpdateCanvas Update canvas

Updates an existing canvas

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

func (*CanvasAPIService) CanvasesUpdateCanvasExecute added in v0.6.0

Execute executes the request

@return CanvasesUpdateCanvasResponse

type CanvasEventAPIService added in v0.6.0

type CanvasEventAPIService service

CanvasEventAPIService CanvasEventAPI service

func (*CanvasEventAPIService) CanvasesListCanvasEvents added in v0.6.0

func (a *CanvasEventAPIService) CanvasesListCanvasEvents(ctx context.Context, canvasId string) ApiCanvasesListCanvasEventsRequest

CanvasesListCanvasEvents List canvas events

Returns a list of root events that triggered executions in a canvas

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

func (*CanvasEventAPIService) CanvasesListCanvasEventsExecute added in v0.6.0

Execute executes the request

@return CanvasesListCanvasEventsResponse

func (*CanvasEventAPIService) CanvasesListEventExecutions added in v0.6.0

func (a *CanvasEventAPIService) CanvasesListEventExecutions(ctx context.Context, canvasId string, eventId string) ApiCanvasesListEventExecutionsRequest

CanvasesListEventExecutions List event executions

Returns a list of all node executions triggered by a root event

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

func (*CanvasEventAPIService) CanvasesListEventExecutionsExecute added in v0.6.0

Execute executes the request

@return CanvasesListEventExecutionsResponse

type CanvasNodeAPIService added in v0.6.0

type CanvasNodeAPIService service

CanvasNodeAPIService CanvasNodeAPI service

func (*CanvasNodeAPIService) CanvasesDeleteNodeQueueItem added in v0.6.0

func (a *CanvasNodeAPIService) CanvasesDeleteNodeQueueItem(ctx context.Context, canvasId string, nodeId string, itemId string) ApiCanvasesDeleteNodeQueueItemRequest

CanvasesDeleteNodeQueueItem Delete item from a node's queue

Deletes a specific item in a node's queue

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

func (*CanvasNodeAPIService) CanvasesDeleteNodeQueueItemExecute added in v0.6.0

func (a *CanvasNodeAPIService) CanvasesDeleteNodeQueueItemExecute(r ApiCanvasesDeleteNodeQueueItemRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*CanvasNodeAPIService) CanvasesEmitNodeEvent added in v0.6.0

func (a *CanvasNodeAPIService) CanvasesEmitNodeEvent(ctx context.Context, canvasId string, nodeId string) ApiCanvasesEmitNodeEventRequest

CanvasesEmitNodeEvent Emit output event for canvas node

Emit output event for canvas node

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

func (*CanvasNodeAPIService) CanvasesEmitNodeEventExecute added in v0.6.0

Execute executes the request

@return CanvasesEmitNodeEventResponse

func (*CanvasNodeAPIService) CanvasesInvokeNodeTriggerAction added in v0.6.0

func (a *CanvasNodeAPIService) CanvasesInvokeNodeTriggerAction(ctx context.Context, canvasId string, nodeId string, actionName string) ApiCanvasesInvokeNodeTriggerActionRequest

CanvasesInvokeNodeTriggerAction Invoke trigger action

Invokes a custom action on a canvas node trigger

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

func (*CanvasNodeAPIService) CanvasesInvokeNodeTriggerActionExecute added in v0.6.0

Execute executes the request

@return CanvasesInvokeNodeTriggerActionResponse

func (*CanvasNodeAPIService) CanvasesListNodeEvents added in v0.6.0

func (a *CanvasNodeAPIService) CanvasesListNodeEvents(ctx context.Context, canvasId string, nodeId string) ApiCanvasesListNodeEventsRequest

CanvasesListNodeEvents List node events

Returns a list of events for a specific canvas node

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

func (*CanvasNodeAPIService) CanvasesListNodeEventsExecute added in v0.6.0

Execute executes the request

@return CanvasesListNodeEventsResponse

func (*CanvasNodeAPIService) CanvasesListNodeExecutions added in v0.6.0

func (a *CanvasNodeAPIService) CanvasesListNodeExecutions(ctx context.Context, canvasId string, nodeId string) ApiCanvasesListNodeExecutionsRequest

CanvasesListNodeExecutions List node executions

Returns a list of executions for a specific canvas node

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

func (*CanvasNodeAPIService) CanvasesListNodeExecutionsExecute added in v0.6.0

Execute executes the request

@return CanvasesListNodeExecutionsResponse

func (*CanvasNodeAPIService) CanvasesListNodeQueueItems added in v0.6.0

func (a *CanvasNodeAPIService) CanvasesListNodeQueueItems(ctx context.Context, canvasId string, nodeId string) ApiCanvasesListNodeQueueItemsRequest

CanvasesListNodeQueueItems List items in a node's queue

Returns a list of items in a node's queue

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

func (*CanvasNodeAPIService) CanvasesListNodeQueueItemsExecute added in v0.6.0

Execute executes the request

@return CanvasesListNodeQueueItemsResponse

func (*CanvasNodeAPIService) CanvasesUpdateNodePause added in v0.6.0

func (a *CanvasNodeAPIService) CanvasesUpdateNodePause(ctx context.Context, canvasId string, nodeId string) ApiCanvasesUpdateNodePauseRequest

CanvasesUpdateNodePause Pause or resume node processing

Pauses or resumes processing for a canvas node while continuing to queue incoming items

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

func (*CanvasNodeAPIService) CanvasesUpdateNodePauseExecute added in v0.6.0

Execute executes the request

@return CanvasesUpdateNodePauseResponse

type CanvasNodeExecutionAPIService added in v0.6.0

type CanvasNodeExecutionAPIService service

CanvasNodeExecutionAPIService CanvasNodeExecutionAPI service

func (*CanvasNodeExecutionAPIService) CanvasesCancelExecution added in v0.6.0

func (a *CanvasNodeExecutionAPIService) CanvasesCancelExecution(ctx context.Context, canvasId string, executionId string) ApiCanvasesCancelExecutionRequest

CanvasesCancelExecution Cancel execution

Cancels a running canvas node execution

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

func (*CanvasNodeExecutionAPIService) CanvasesCancelExecutionExecute added in v0.6.0

func (a *CanvasNodeExecutionAPIService) CanvasesCancelExecutionExecute(r ApiCanvasesCancelExecutionRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*CanvasNodeExecutionAPIService) CanvasesInvokeNodeExecutionAction added in v0.6.0

func (a *CanvasNodeExecutionAPIService) CanvasesInvokeNodeExecutionAction(ctx context.Context, canvasId string, executionId string, actionName string) ApiCanvasesInvokeNodeExecutionActionRequest

CanvasesInvokeNodeExecutionAction Invoke execution action

Invokes a custom action on a canvas node execution

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

func (*CanvasNodeExecutionAPIService) CanvasesInvokeNodeExecutionActionExecute added in v0.6.0

func (a *CanvasNodeExecutionAPIService) CanvasesInvokeNodeExecutionActionExecute(r ApiCanvasesInvokeNodeExecutionActionRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*CanvasNodeExecutionAPIService) CanvasesListChildExecutions added in v0.6.0

func (a *CanvasNodeExecutionAPIService) CanvasesListChildExecutions(ctx context.Context, canvasId string, executionId string) ApiCanvasesListChildExecutionsRequest

CanvasesListChildExecutions List child executions for an execution

List child executions for an execution

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

func (*CanvasNodeExecutionAPIService) CanvasesListChildExecutionsExecute added in v0.6.0

Execute executes the request

@return CanvasesListChildExecutionsResponse

func (*CanvasNodeExecutionAPIService) CanvasesResolveExecutionErrors added in v0.6.0

func (a *CanvasNodeExecutionAPIService) CanvasesResolveExecutionErrors(ctx context.Context, canvasId string) ApiCanvasesResolveExecutionErrorsRequest

CanvasesResolveExecutionErrors Resolve execution errors

Marks canvas node execution errors as resolved

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

func (*CanvasNodeExecutionAPIService) CanvasesResolveExecutionErrorsExecute added in v0.6.0

func (a *CanvasNodeExecutionAPIService) CanvasesResolveExecutionErrorsExecute(r ApiCanvasesResolveExecutionErrorsRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type CanvasNodeExecutionResult added in v0.6.0

type CanvasNodeExecutionResult string

CanvasNodeExecutionResult the model 'CanvasNodeExecutionResult'

const (
	CANVASNODEEXECUTIONRESULT_RESULT_UNKNOWN   CanvasNodeExecutionResult = "RESULT_UNKNOWN"
	CANVASNODEEXECUTIONRESULT_RESULT_PASSED    CanvasNodeExecutionResult = "RESULT_PASSED"
	CANVASNODEEXECUTIONRESULT_RESULT_FAILED    CanvasNodeExecutionResult = "RESULT_FAILED"
	CANVASNODEEXECUTIONRESULT_RESULT_CANCELLED CanvasNodeExecutionResult = "RESULT_CANCELLED"
)

List of CanvasNodeExecutionResult

func NewCanvasNodeExecutionResultFromValue added in v0.6.0

func NewCanvasNodeExecutionResultFromValue(v string) (*CanvasNodeExecutionResult, error)

NewCanvasNodeExecutionResultFromValue returns a pointer to a valid CanvasNodeExecutionResult for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CanvasNodeExecutionResult) IsValid added in v0.6.0

func (v CanvasNodeExecutionResult) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CanvasNodeExecutionResult) Ptr added in v0.6.0

Ptr returns reference to CanvasNodeExecutionResult value

func (*CanvasNodeExecutionResult) UnmarshalJSON added in v0.6.0

func (v *CanvasNodeExecutionResult) UnmarshalJSON(src []byte) error

type CanvasNodeExecutionResultReason added in v0.6.0

type CanvasNodeExecutionResultReason string

CanvasNodeExecutionResultReason the model 'CanvasNodeExecutionResultReason'

const (
	CANVASNODEEXECUTIONRESULTREASON_RESULT_REASON_OK             CanvasNodeExecutionResultReason = "RESULT_REASON_OK"
	CANVASNODEEXECUTIONRESULTREASON_RESULT_REASON_ERROR          CanvasNodeExecutionResultReason = "RESULT_REASON_ERROR"
	CANVASNODEEXECUTIONRESULTREASON_RESULT_REASON_ERROR_RESOLVED CanvasNodeExecutionResultReason = "RESULT_REASON_ERROR_RESOLVED"
)

List of CanvasNodeExecutionResultReason

func NewCanvasNodeExecutionResultReasonFromValue added in v0.6.0

func NewCanvasNodeExecutionResultReasonFromValue(v string) (*CanvasNodeExecutionResultReason, error)

NewCanvasNodeExecutionResultReasonFromValue returns a pointer to a valid CanvasNodeExecutionResultReason for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CanvasNodeExecutionResultReason) IsValid added in v0.6.0

IsValid return true if the value is valid for the enum, false otherwise

func (CanvasNodeExecutionResultReason) Ptr added in v0.6.0

Ptr returns reference to CanvasNodeExecutionResultReason value

func (*CanvasNodeExecutionResultReason) UnmarshalJSON added in v0.6.0

func (v *CanvasNodeExecutionResultReason) UnmarshalJSON(src []byte) error

type CanvasNodeExecutionState added in v0.6.0

type CanvasNodeExecutionState string

CanvasNodeExecutionState the model 'CanvasNodeExecutionState'

const (
	CANVASNODEEXECUTIONSTATE_STATE_UNKNOWN  CanvasNodeExecutionState = "STATE_UNKNOWN"
	CANVASNODEEXECUTIONSTATE_STATE_PENDING  CanvasNodeExecutionState = "STATE_PENDING"
	CANVASNODEEXECUTIONSTATE_STATE_STARTED  CanvasNodeExecutionState = "STATE_STARTED"
	CANVASNODEEXECUTIONSTATE_STATE_FINISHED CanvasNodeExecutionState = "STATE_FINISHED"
)

List of CanvasNodeExecutionState

func NewCanvasNodeExecutionStateFromValue added in v0.6.0

func NewCanvasNodeExecutionStateFromValue(v string) (*CanvasNodeExecutionState, error)

NewCanvasNodeExecutionStateFromValue returns a pointer to a valid CanvasNodeExecutionState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CanvasNodeExecutionState) IsValid added in v0.6.0

func (v CanvasNodeExecutionState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CanvasNodeExecutionState) Ptr added in v0.6.0

Ptr returns reference to CanvasNodeExecutionState value

func (*CanvasNodeExecutionState) UnmarshalJSON added in v0.6.0

func (v *CanvasNodeExecutionState) UnmarshalJSON(src []byte) error

type CanvasesCanvas added in v0.6.0

type CanvasesCanvas struct {
	Metadata *CanvasesCanvasMetadata `json:"metadata,omitempty"`
	Spec     *CanvasesCanvasSpec     `json:"spec,omitempty"`
	Status   *CanvasesCanvasStatus   `json:"status,omitempty"`
}

CanvasesCanvas struct for CanvasesCanvas

func NewCanvasesCanvas added in v0.6.0

func NewCanvasesCanvas() *CanvasesCanvas

NewCanvasesCanvas instantiates a new CanvasesCanvas 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 NewCanvasesCanvasWithDefaults added in v0.6.0

func NewCanvasesCanvasWithDefaults() *CanvasesCanvas

NewCanvasesCanvasWithDefaults instantiates a new CanvasesCanvas 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 (*CanvasesCanvas) GetMetadata added in v0.6.0

func (o *CanvasesCanvas) GetMetadata() CanvasesCanvasMetadata

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

func (*CanvasesCanvas) GetMetadataOk added in v0.6.0

func (o *CanvasesCanvas) GetMetadataOk() (*CanvasesCanvasMetadata, 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 (*CanvasesCanvas) GetSpec added in v0.6.0

func (o *CanvasesCanvas) GetSpec() CanvasesCanvasSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*CanvasesCanvas) GetSpecOk added in v0.6.0

func (o *CanvasesCanvas) GetSpecOk() (*CanvasesCanvasSpec, bool)

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

func (*CanvasesCanvas) GetStatus added in v0.6.0

func (o *CanvasesCanvas) GetStatus() CanvasesCanvasStatus

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

func (*CanvasesCanvas) GetStatusOk added in v0.6.0

func (o *CanvasesCanvas) GetStatusOk() (*CanvasesCanvasStatus, 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 (*CanvasesCanvas) HasMetadata added in v0.6.0

func (o *CanvasesCanvas) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CanvasesCanvas) HasSpec added in v0.6.0

func (o *CanvasesCanvas) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*CanvasesCanvas) HasStatus added in v0.6.0

func (o *CanvasesCanvas) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CanvasesCanvas) MarshalJSON added in v0.6.0

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

func (*CanvasesCanvas) SetMetadata added in v0.6.0

func (o *CanvasesCanvas) SetMetadata(v CanvasesCanvasMetadata)

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

func (*CanvasesCanvas) SetSpec added in v0.6.0

func (o *CanvasesCanvas) SetSpec(v CanvasesCanvasSpec)

SetSpec gets a reference to the given CanvasesCanvasSpec and assigns it to the Spec field.

func (*CanvasesCanvas) SetStatus added in v0.6.0

func (o *CanvasesCanvas) SetStatus(v CanvasesCanvasStatus)

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

func (CanvasesCanvas) ToMap added in v0.6.0

func (o CanvasesCanvas) ToMap() (map[string]interface{}, error)

type CanvasesCanvasEvent added in v0.6.0

type CanvasesCanvasEvent struct {
	Id         *string                `json:"id,omitempty"`
	CanvasId   *string                `json:"canvasId,omitempty"`
	NodeId     *string                `json:"nodeId,omitempty"`
	Channel    *string                `json:"channel,omitempty"`
	CustomName *string                `json:"customName,omitempty"`
	Data       map[string]interface{} `json:"data,omitempty"`
	CreatedAt  *time.Time             `json:"createdAt,omitempty"`
}

CanvasesCanvasEvent struct for CanvasesCanvasEvent

func NewCanvasesCanvasEvent added in v0.6.0

func NewCanvasesCanvasEvent() *CanvasesCanvasEvent

NewCanvasesCanvasEvent instantiates a new CanvasesCanvasEvent 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 NewCanvasesCanvasEventWithDefaults added in v0.6.0

func NewCanvasesCanvasEventWithDefaults() *CanvasesCanvasEvent

NewCanvasesCanvasEventWithDefaults instantiates a new CanvasesCanvasEvent 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 (*CanvasesCanvasEvent) GetCanvasId added in v0.6.0

func (o *CanvasesCanvasEvent) GetCanvasId() string

GetCanvasId returns the CanvasId field value if set, zero value otherwise.

func (*CanvasesCanvasEvent) GetCanvasIdOk added in v0.6.0

func (o *CanvasesCanvasEvent) GetCanvasIdOk() (*string, bool)

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

func (*CanvasesCanvasEvent) GetChannel added in v0.6.0

func (o *CanvasesCanvasEvent) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*CanvasesCanvasEvent) GetChannelOk added in v0.6.0

func (o *CanvasesCanvasEvent) GetChannelOk() (*string, bool)

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

func (*CanvasesCanvasEvent) GetCreatedAt added in v0.6.0

func (o *CanvasesCanvasEvent) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*CanvasesCanvasEvent) GetCreatedAtOk added in v0.6.0

func (o *CanvasesCanvasEvent) 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 (*CanvasesCanvasEvent) GetCustomName added in v0.6.0

func (o *CanvasesCanvasEvent) GetCustomName() string

GetCustomName returns the CustomName field value if set, zero value otherwise.

func (*CanvasesCanvasEvent) GetCustomNameOk added in v0.6.0

func (o *CanvasesCanvasEvent) GetCustomNameOk() (*string, bool)

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

func (*CanvasesCanvasEvent) GetData added in v0.6.0

func (o *CanvasesCanvasEvent) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*CanvasesCanvasEvent) GetDataOk added in v0.6.0

func (o *CanvasesCanvasEvent) GetDataOk() (map[string]interface{}, bool)

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

func (*CanvasesCanvasEvent) GetId added in v0.6.0

func (o *CanvasesCanvasEvent) GetId() string

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

func (*CanvasesCanvasEvent) GetIdOk added in v0.6.0

func (o *CanvasesCanvasEvent) 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 (*CanvasesCanvasEvent) GetNodeId added in v0.6.0

func (o *CanvasesCanvasEvent) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*CanvasesCanvasEvent) GetNodeIdOk added in v0.6.0

func (o *CanvasesCanvasEvent) GetNodeIdOk() (*string, bool)

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

func (*CanvasesCanvasEvent) HasCanvasId added in v0.6.0

func (o *CanvasesCanvasEvent) HasCanvasId() bool

HasCanvasId returns a boolean if a field has been set.

func (*CanvasesCanvasEvent) HasChannel added in v0.6.0

func (o *CanvasesCanvasEvent) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*CanvasesCanvasEvent) HasCreatedAt added in v0.6.0

func (o *CanvasesCanvasEvent) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CanvasesCanvasEvent) HasCustomName added in v0.6.0

func (o *CanvasesCanvasEvent) HasCustomName() bool

HasCustomName returns a boolean if a field has been set.

func (*CanvasesCanvasEvent) HasData added in v0.6.0

func (o *CanvasesCanvasEvent) HasData() bool

HasData returns a boolean if a field has been set.

func (*CanvasesCanvasEvent) HasId added in v0.6.0

func (o *CanvasesCanvasEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*CanvasesCanvasEvent) HasNodeId added in v0.6.0

func (o *CanvasesCanvasEvent) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (CanvasesCanvasEvent) MarshalJSON added in v0.6.0

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

func (*CanvasesCanvasEvent) SetCanvasId added in v0.6.0

func (o *CanvasesCanvasEvent) SetCanvasId(v string)

SetCanvasId gets a reference to the given string and assigns it to the CanvasId field.

func (*CanvasesCanvasEvent) SetChannel added in v0.6.0

func (o *CanvasesCanvasEvent) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*CanvasesCanvasEvent) SetCreatedAt added in v0.6.0

func (o *CanvasesCanvasEvent) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*CanvasesCanvasEvent) SetCustomName added in v0.6.0

func (o *CanvasesCanvasEvent) SetCustomName(v string)

SetCustomName gets a reference to the given string and assigns it to the CustomName field.

func (*CanvasesCanvasEvent) SetData added in v0.6.0

func (o *CanvasesCanvasEvent) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*CanvasesCanvasEvent) SetId added in v0.6.0

func (o *CanvasesCanvasEvent) SetId(v string)

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

func (*CanvasesCanvasEvent) SetNodeId added in v0.6.0

func (o *CanvasesCanvasEvent) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (CanvasesCanvasEvent) ToMap added in v0.6.0

func (o CanvasesCanvasEvent) ToMap() (map[string]interface{}, error)

type CanvasesCanvasEventWithExecutions added in v0.6.0

type CanvasesCanvasEventWithExecutions struct {
	Id         *string                       `json:"id,omitempty"`
	CanvasId   *string                       `json:"canvasId,omitempty"`
	NodeId     *string                       `json:"nodeId,omitempty"`
	Channel    *string                       `json:"channel,omitempty"`
	Data       map[string]interface{}        `json:"data,omitempty"`
	CreatedAt  *time.Time                    `json:"createdAt,omitempty"`
	Executions []CanvasesCanvasNodeExecution `json:"executions,omitempty"`
	CustomName *string                       `json:"customName,omitempty"`
}

CanvasesCanvasEventWithExecutions struct for CanvasesCanvasEventWithExecutions

func NewCanvasesCanvasEventWithExecutions added in v0.6.0

func NewCanvasesCanvasEventWithExecutions() *CanvasesCanvasEventWithExecutions

NewCanvasesCanvasEventWithExecutions instantiates a new CanvasesCanvasEventWithExecutions 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 NewCanvasesCanvasEventWithExecutionsWithDefaults added in v0.6.0

func NewCanvasesCanvasEventWithExecutionsWithDefaults() *CanvasesCanvasEventWithExecutions

NewCanvasesCanvasEventWithExecutionsWithDefaults instantiates a new CanvasesCanvasEventWithExecutions 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 (*CanvasesCanvasEventWithExecutions) GetCanvasId added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) GetCanvasId() string

GetCanvasId returns the CanvasId field value if set, zero value otherwise.

func (*CanvasesCanvasEventWithExecutions) GetCanvasIdOk added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) GetCanvasIdOk() (*string, bool)

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

func (*CanvasesCanvasEventWithExecutions) GetChannel added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*CanvasesCanvasEventWithExecutions) GetChannelOk added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) GetChannelOk() (*string, bool)

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

func (*CanvasesCanvasEventWithExecutions) GetCreatedAt added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*CanvasesCanvasEventWithExecutions) GetCreatedAtOk added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) 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 (*CanvasesCanvasEventWithExecutions) GetCustomName added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) GetCustomName() string

GetCustomName returns the CustomName field value if set, zero value otherwise.

func (*CanvasesCanvasEventWithExecutions) GetCustomNameOk added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) GetCustomNameOk() (*string, bool)

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

func (*CanvasesCanvasEventWithExecutions) GetData added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*CanvasesCanvasEventWithExecutions) GetDataOk added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) GetDataOk() (map[string]interface{}, bool)

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

func (*CanvasesCanvasEventWithExecutions) GetExecutions added in v0.6.0

GetExecutions returns the Executions field value if set, zero value otherwise.

func (*CanvasesCanvasEventWithExecutions) GetExecutionsOk added in v0.6.0

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

func (*CanvasesCanvasEventWithExecutions) GetId added in v0.6.0

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

func (*CanvasesCanvasEventWithExecutions) GetIdOk added in v0.6.0

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 (*CanvasesCanvasEventWithExecutions) GetNodeId added in v0.6.0

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*CanvasesCanvasEventWithExecutions) GetNodeIdOk added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) GetNodeIdOk() (*string, bool)

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

func (*CanvasesCanvasEventWithExecutions) HasCanvasId added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) HasCanvasId() bool

HasCanvasId returns a boolean if a field has been set.

func (*CanvasesCanvasEventWithExecutions) HasChannel added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*CanvasesCanvasEventWithExecutions) HasCreatedAt added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CanvasesCanvasEventWithExecutions) HasCustomName added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) HasCustomName() bool

HasCustomName returns a boolean if a field has been set.

func (*CanvasesCanvasEventWithExecutions) HasData added in v0.6.0

HasData returns a boolean if a field has been set.

func (*CanvasesCanvasEventWithExecutions) HasExecutions added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) HasExecutions() bool

HasExecutions returns a boolean if a field has been set.

func (*CanvasesCanvasEventWithExecutions) HasId added in v0.6.0

HasId returns a boolean if a field has been set.

func (*CanvasesCanvasEventWithExecutions) HasNodeId added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (CanvasesCanvasEventWithExecutions) MarshalJSON added in v0.6.0

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

func (*CanvasesCanvasEventWithExecutions) SetCanvasId added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) SetCanvasId(v string)

SetCanvasId gets a reference to the given string and assigns it to the CanvasId field.

func (*CanvasesCanvasEventWithExecutions) SetChannel added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*CanvasesCanvasEventWithExecutions) SetCreatedAt added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*CanvasesCanvasEventWithExecutions) SetCustomName added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) SetCustomName(v string)

SetCustomName gets a reference to the given string and assigns it to the CustomName field.

func (*CanvasesCanvasEventWithExecutions) SetData added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*CanvasesCanvasEventWithExecutions) SetExecutions added in v0.6.0

SetExecutions gets a reference to the given []CanvasesCanvasNodeExecution and assigns it to the Executions field.

func (*CanvasesCanvasEventWithExecutions) SetId added in v0.6.0

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

func (*CanvasesCanvasEventWithExecutions) SetNodeId added in v0.6.0

func (o *CanvasesCanvasEventWithExecutions) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (CanvasesCanvasEventWithExecutions) ToMap added in v0.6.0

func (o CanvasesCanvasEventWithExecutions) ToMap() (map[string]interface{}, error)

type CanvasesCanvasMetadata added in v0.6.0

type CanvasesCanvasMetadata struct {
	Id             *string                    `json:"id,omitempty"`
	OrganizationId *string                    `json:"organizationId,omitempty"`
	Name           *string                    `json:"name,omitempty"`
	Description    *string                    `json:"description,omitempty"`
	CreatedAt      *time.Time                 `json:"createdAt,omitempty"`
	UpdatedAt      *time.Time                 `json:"updatedAt,omitempty"`
	CreatedBy      *SuperplaneCanvasesUserRef `json:"createdBy,omitempty"`
	IsTemplate     *bool                      `json:"isTemplate,omitempty"`
}

CanvasesCanvasMetadata struct for CanvasesCanvasMetadata

func NewCanvasesCanvasMetadata added in v0.6.0

func NewCanvasesCanvasMetadata() *CanvasesCanvasMetadata

NewCanvasesCanvasMetadata instantiates a new CanvasesCanvasMetadata 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 NewCanvasesCanvasMetadataWithDefaults added in v0.6.0

func NewCanvasesCanvasMetadataWithDefaults() *CanvasesCanvasMetadata

NewCanvasesCanvasMetadataWithDefaults instantiates a new CanvasesCanvasMetadata 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 (*CanvasesCanvasMetadata) GetCreatedAt added in v0.6.0

func (o *CanvasesCanvasMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*CanvasesCanvasMetadata) GetCreatedAtOk added in v0.6.0

func (o *CanvasesCanvasMetadata) 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 (*CanvasesCanvasMetadata) GetCreatedBy added in v0.6.0

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*CanvasesCanvasMetadata) GetCreatedByOk added in v0.6.0

func (o *CanvasesCanvasMetadata) GetCreatedByOk() (*SuperplaneCanvasesUserRef, bool)

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

func (*CanvasesCanvasMetadata) GetDescription added in v0.6.0

func (o *CanvasesCanvasMetadata) GetDescription() string

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

func (*CanvasesCanvasMetadata) GetDescriptionOk added in v0.6.0

func (o *CanvasesCanvasMetadata) 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 (*CanvasesCanvasMetadata) GetId added in v0.6.0

func (o *CanvasesCanvasMetadata) GetId() string

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

func (*CanvasesCanvasMetadata) GetIdOk added in v0.6.0

func (o *CanvasesCanvasMetadata) 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 (*CanvasesCanvasMetadata) GetIsTemplate added in v0.6.0

func (o *CanvasesCanvasMetadata) GetIsTemplate() bool

GetIsTemplate returns the IsTemplate field value if set, zero value otherwise.

func (*CanvasesCanvasMetadata) GetIsTemplateOk added in v0.6.0

func (o *CanvasesCanvasMetadata) GetIsTemplateOk() (*bool, bool)

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

func (*CanvasesCanvasMetadata) GetName added in v0.6.0

func (o *CanvasesCanvasMetadata) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*CanvasesCanvasMetadata) GetNameOk added in v0.6.0

func (o *CanvasesCanvasMetadata) GetNameOk() (*string, bool)

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

func (*CanvasesCanvasMetadata) GetOrganizationId added in v0.6.0

func (o *CanvasesCanvasMetadata) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*CanvasesCanvasMetadata) GetOrganizationIdOk added in v0.6.0

func (o *CanvasesCanvasMetadata) GetOrganizationIdOk() (*string, bool)

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

func (*CanvasesCanvasMetadata) GetUpdatedAt added in v0.6.0

func (o *CanvasesCanvasMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*CanvasesCanvasMetadata) GetUpdatedAtOk added in v0.6.0

func (o *CanvasesCanvasMetadata) 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 (*CanvasesCanvasMetadata) HasCreatedAt added in v0.6.0

func (o *CanvasesCanvasMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CanvasesCanvasMetadata) HasCreatedBy added in v0.6.0

func (o *CanvasesCanvasMetadata) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*CanvasesCanvasMetadata) HasDescription added in v0.6.0

func (o *CanvasesCanvasMetadata) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CanvasesCanvasMetadata) HasId added in v0.6.0

func (o *CanvasesCanvasMetadata) HasId() bool

HasId returns a boolean if a field has been set.

func (*CanvasesCanvasMetadata) HasIsTemplate added in v0.6.0

func (o *CanvasesCanvasMetadata) HasIsTemplate() bool

HasIsTemplate returns a boolean if a field has been set.

func (*CanvasesCanvasMetadata) HasName added in v0.6.0

func (o *CanvasesCanvasMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (*CanvasesCanvasMetadata) HasOrganizationId added in v0.6.0

func (o *CanvasesCanvasMetadata) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*CanvasesCanvasMetadata) HasUpdatedAt added in v0.6.0

func (o *CanvasesCanvasMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (CanvasesCanvasMetadata) MarshalJSON added in v0.6.0

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

func (*CanvasesCanvasMetadata) SetCreatedAt added in v0.6.0

func (o *CanvasesCanvasMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*CanvasesCanvasMetadata) SetCreatedBy added in v0.6.0

SetCreatedBy gets a reference to the given SuperplaneCanvasesUserRef and assigns it to the CreatedBy field.

func (*CanvasesCanvasMetadata) SetDescription added in v0.6.0

func (o *CanvasesCanvasMetadata) SetDescription(v string)

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

func (*CanvasesCanvasMetadata) SetId added in v0.6.0

func (o *CanvasesCanvasMetadata) SetId(v string)

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

func (*CanvasesCanvasMetadata) SetIsTemplate added in v0.6.0

func (o *CanvasesCanvasMetadata) SetIsTemplate(v bool)

SetIsTemplate gets a reference to the given bool and assigns it to the IsTemplate field.

func (*CanvasesCanvasMetadata) SetName added in v0.6.0

func (o *CanvasesCanvasMetadata) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*CanvasesCanvasMetadata) SetOrganizationId added in v0.6.0

func (o *CanvasesCanvasMetadata) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*CanvasesCanvasMetadata) SetUpdatedAt added in v0.6.0

func (o *CanvasesCanvasMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (CanvasesCanvasMetadata) ToMap added in v0.6.0

func (o CanvasesCanvasMetadata) ToMap() (map[string]interface{}, error)

type CanvasesCanvasNodeExecution added in v0.6.0

type CanvasesCanvasNodeExecution struct {
	Id                  *string                          `json:"id,omitempty"`
	CanvasId            *string                          `json:"canvasId,omitempty"`
	NodeId              *string                          `json:"nodeId,omitempty"`
	ParentExecutionId   *string                          `json:"parentExecutionId,omitempty"`
	PreviousExecutionId *string                          `json:"previousExecutionId,omitempty"`
	State               *CanvasNodeExecutionState        `json:"state,omitempty"`
	Result              *CanvasNodeExecutionResult       `json:"result,omitempty"`
	ResultReason        *CanvasNodeExecutionResultReason `json:"resultReason,omitempty"`
	ResultMessage       *string                          `json:"resultMessage,omitempty"`
	Input               map[string]interface{}           `json:"input,omitempty"`
	Outputs             map[string]interface{}           `json:"outputs,omitempty"`
	CreatedAt           *time.Time                       `json:"createdAt,omitempty"`
	UpdatedAt           *time.Time                       `json:"updatedAt,omitempty"`
	Metadata            map[string]interface{}           `json:"metadata,omitempty"`
	Configuration       map[string]interface{}           `json:"configuration,omitempty"`
	ChildExecutions     []CanvasesCanvasNodeExecution    `json:"childExecutions,omitempty"`
	RootEvent           *CanvasesCanvasEvent             `json:"rootEvent,omitempty"`
	CancelledBy         *SuperplaneCanvasesUserRef       `json:"cancelledBy,omitempty"`
}

CanvasesCanvasNodeExecution struct for CanvasesCanvasNodeExecution

func NewCanvasesCanvasNodeExecution added in v0.6.0

func NewCanvasesCanvasNodeExecution() *CanvasesCanvasNodeExecution

NewCanvasesCanvasNodeExecution instantiates a new CanvasesCanvasNodeExecution 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 NewCanvasesCanvasNodeExecutionWithDefaults added in v0.6.0

func NewCanvasesCanvasNodeExecutionWithDefaults() *CanvasesCanvasNodeExecution

NewCanvasesCanvasNodeExecutionWithDefaults instantiates a new CanvasesCanvasNodeExecution 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 (*CanvasesCanvasNodeExecution) GetCancelledBy added in v0.6.0

GetCancelledBy returns the CancelledBy field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetCancelledByOk added in v0.6.0

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

func (*CanvasesCanvasNodeExecution) GetCanvasId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetCanvasId() string

GetCanvasId returns the CanvasId field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetCanvasIdOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetCanvasIdOk() (*string, bool)

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

func (*CanvasesCanvasNodeExecution) GetChildExecutions added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetChildExecutions() []CanvasesCanvasNodeExecution

GetChildExecutions returns the ChildExecutions field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetChildExecutionsOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetChildExecutionsOk() ([]CanvasesCanvasNodeExecution, bool)

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

func (*CanvasesCanvasNodeExecution) GetConfiguration added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetConfiguration() map[string]interface{}

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetConfigurationOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetConfigurationOk() (map[string]interface{}, bool)

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

func (*CanvasesCanvasNodeExecution) GetCreatedAt added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetCreatedAtOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) 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 (*CanvasesCanvasNodeExecution) GetId added in v0.6.0

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

func (*CanvasesCanvasNodeExecution) GetIdOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) 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 (*CanvasesCanvasNodeExecution) GetInput added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetInput() map[string]interface{}

GetInput returns the Input field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetInputOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetInputOk() (map[string]interface{}, bool)

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

func (*CanvasesCanvasNodeExecution) GetMetadata added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetMetadata() map[string]interface{}

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

func (*CanvasesCanvasNodeExecution) GetMetadataOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetMetadataOk() (map[string]interface{}, 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 (*CanvasesCanvasNodeExecution) GetNodeId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetNodeIdOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetNodeIdOk() (*string, bool)

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

func (*CanvasesCanvasNodeExecution) GetOutputs added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetOutputs() map[string]interface{}

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetOutputsOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetOutputsOk() (map[string]interface{}, bool)

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

func (*CanvasesCanvasNodeExecution) GetParentExecutionId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetParentExecutionId() string

GetParentExecutionId returns the ParentExecutionId field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetParentExecutionIdOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetParentExecutionIdOk() (*string, bool)

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

func (*CanvasesCanvasNodeExecution) GetPreviousExecutionId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetPreviousExecutionId() string

GetPreviousExecutionId returns the PreviousExecutionId field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetPreviousExecutionIdOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetPreviousExecutionIdOk() (*string, bool)

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

func (*CanvasesCanvasNodeExecution) GetResult added in v0.6.0

GetResult returns the Result field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetResultMessage added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetResultMessage() string

GetResultMessage returns the ResultMessage field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetResultMessageOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetResultMessageOk() (*string, bool)

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

func (*CanvasesCanvasNodeExecution) GetResultOk added in v0.6.0

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

func (*CanvasesCanvasNodeExecution) GetResultReason added in v0.6.0

GetResultReason returns the ResultReason field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetResultReasonOk added in v0.6.0

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

func (*CanvasesCanvasNodeExecution) GetRootEvent added in v0.6.0

GetRootEvent returns the RootEvent field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetRootEventOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetRootEventOk() (*CanvasesCanvasEvent, bool)

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

func (*CanvasesCanvasNodeExecution) GetState added in v0.6.0

GetState returns the State field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetStateOk added in v0.6.0

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

func (*CanvasesCanvasNodeExecution) GetUpdatedAt added in v0.6.0

func (o *CanvasesCanvasNodeExecution) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*CanvasesCanvasNodeExecution) GetUpdatedAtOk added in v0.6.0

func (o *CanvasesCanvasNodeExecution) 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 (*CanvasesCanvasNodeExecution) HasCancelledBy added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasCancelledBy() bool

HasCancelledBy returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasCanvasId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasCanvasId() bool

HasCanvasId returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasChildExecutions added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasChildExecutions() bool

HasChildExecutions returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasConfiguration added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasCreatedAt added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasId() bool

HasId returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasInput added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasInput() bool

HasInput returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasMetadata added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasNodeId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasOutputs added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasParentExecutionId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasParentExecutionId() bool

HasParentExecutionId returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasPreviousExecutionId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasPreviousExecutionId() bool

HasPreviousExecutionId returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasResult added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasResultMessage added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasResultMessage() bool

HasResultMessage returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasResultReason added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasResultReason() bool

HasResultReason returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasRootEvent added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasRootEvent() bool

HasRootEvent returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasState added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasState() bool

HasState returns a boolean if a field has been set.

func (*CanvasesCanvasNodeExecution) HasUpdatedAt added in v0.6.0

func (o *CanvasesCanvasNodeExecution) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (CanvasesCanvasNodeExecution) MarshalJSON added in v0.6.0

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

func (*CanvasesCanvasNodeExecution) SetCancelledBy added in v0.6.0

SetCancelledBy gets a reference to the given SuperplaneCanvasesUserRef and assigns it to the CancelledBy field.

func (*CanvasesCanvasNodeExecution) SetCanvasId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetCanvasId(v string)

SetCanvasId gets a reference to the given string and assigns it to the CanvasId field.

func (*CanvasesCanvasNodeExecution) SetChildExecutions added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetChildExecutions(v []CanvasesCanvasNodeExecution)

SetChildExecutions gets a reference to the given []CanvasesCanvasNodeExecution and assigns it to the ChildExecutions field.

func (*CanvasesCanvasNodeExecution) SetConfiguration added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetConfiguration(v map[string]interface{})

SetConfiguration gets a reference to the given map[string]interface{} and assigns it to the Configuration field.

func (*CanvasesCanvasNodeExecution) SetCreatedAt added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*CanvasesCanvasNodeExecution) SetId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetId(v string)

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

func (*CanvasesCanvasNodeExecution) SetInput added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetInput(v map[string]interface{})

SetInput gets a reference to the given map[string]interface{} and assigns it to the Input field.

func (*CanvasesCanvasNodeExecution) SetMetadata added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*CanvasesCanvasNodeExecution) SetNodeId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*CanvasesCanvasNodeExecution) SetOutputs added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetOutputs(v map[string]interface{})

SetOutputs gets a reference to the given map[string]interface{} and assigns it to the Outputs field.

func (*CanvasesCanvasNodeExecution) SetParentExecutionId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetParentExecutionId(v string)

SetParentExecutionId gets a reference to the given string and assigns it to the ParentExecutionId field.

func (*CanvasesCanvasNodeExecution) SetPreviousExecutionId added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetPreviousExecutionId(v string)

SetPreviousExecutionId gets a reference to the given string and assigns it to the PreviousExecutionId field.

func (*CanvasesCanvasNodeExecution) SetResult added in v0.6.0

SetResult gets a reference to the given CanvasNodeExecutionResult and assigns it to the Result field.

func (*CanvasesCanvasNodeExecution) SetResultMessage added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetResultMessage(v string)

SetResultMessage gets a reference to the given string and assigns it to the ResultMessage field.

func (*CanvasesCanvasNodeExecution) SetResultReason added in v0.6.0

SetResultReason gets a reference to the given CanvasNodeExecutionResultReason and assigns it to the ResultReason field.

func (*CanvasesCanvasNodeExecution) SetRootEvent added in v0.6.0

SetRootEvent gets a reference to the given CanvasesCanvasEvent and assigns it to the RootEvent field.

func (*CanvasesCanvasNodeExecution) SetState added in v0.6.0

SetState gets a reference to the given CanvasNodeExecutionState and assigns it to the State field.

func (*CanvasesCanvasNodeExecution) SetUpdatedAt added in v0.6.0

func (o *CanvasesCanvasNodeExecution) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (CanvasesCanvasNodeExecution) ToMap added in v0.6.0

func (o CanvasesCanvasNodeExecution) ToMap() (map[string]interface{}, error)

type CanvasesCanvasNodeQueueItem added in v0.6.0

type CanvasesCanvasNodeQueueItem struct {
	Id        *string                `json:"id,omitempty"`
	CanvasId  *string                `json:"canvasId,omitempty"`
	NodeId    *string                `json:"nodeId,omitempty"`
	Input     map[string]interface{} `json:"input,omitempty"`
	RootEvent *CanvasesCanvasEvent   `json:"rootEvent,omitempty"`
	CreatedAt *time.Time             `json:"createdAt,omitempty"`
}

CanvasesCanvasNodeQueueItem struct for CanvasesCanvasNodeQueueItem

func NewCanvasesCanvasNodeQueueItem added in v0.6.0

func NewCanvasesCanvasNodeQueueItem() *CanvasesCanvasNodeQueueItem

NewCanvasesCanvasNodeQueueItem instantiates a new CanvasesCanvasNodeQueueItem 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 NewCanvasesCanvasNodeQueueItemWithDefaults added in v0.6.0

func NewCanvasesCanvasNodeQueueItemWithDefaults() *CanvasesCanvasNodeQueueItem

NewCanvasesCanvasNodeQueueItemWithDefaults instantiates a new CanvasesCanvasNodeQueueItem 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 (*CanvasesCanvasNodeQueueItem) GetCanvasId added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) GetCanvasId() string

GetCanvasId returns the CanvasId field value if set, zero value otherwise.

func (*CanvasesCanvasNodeQueueItem) GetCanvasIdOk added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) GetCanvasIdOk() (*string, bool)

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

func (*CanvasesCanvasNodeQueueItem) GetCreatedAt added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*CanvasesCanvasNodeQueueItem) GetCreatedAtOk added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) 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 (*CanvasesCanvasNodeQueueItem) GetId added in v0.6.0

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

func (*CanvasesCanvasNodeQueueItem) GetIdOk added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) 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 (*CanvasesCanvasNodeQueueItem) GetInput added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) GetInput() map[string]interface{}

GetInput returns the Input field value if set, zero value otherwise.

func (*CanvasesCanvasNodeQueueItem) GetInputOk added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) GetInputOk() (map[string]interface{}, bool)

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

func (*CanvasesCanvasNodeQueueItem) GetNodeId added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*CanvasesCanvasNodeQueueItem) GetNodeIdOk added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) GetNodeIdOk() (*string, bool)

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

func (*CanvasesCanvasNodeQueueItem) GetRootEvent added in v0.6.0

GetRootEvent returns the RootEvent field value if set, zero value otherwise.

func (*CanvasesCanvasNodeQueueItem) GetRootEventOk added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) GetRootEventOk() (*CanvasesCanvasEvent, bool)

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

func (*CanvasesCanvasNodeQueueItem) HasCanvasId added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) HasCanvasId() bool

HasCanvasId returns a boolean if a field has been set.

func (*CanvasesCanvasNodeQueueItem) HasCreatedAt added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CanvasesCanvasNodeQueueItem) HasId added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*CanvasesCanvasNodeQueueItem) HasInput added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) HasInput() bool

HasInput returns a boolean if a field has been set.

func (*CanvasesCanvasNodeQueueItem) HasNodeId added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*CanvasesCanvasNodeQueueItem) HasRootEvent added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) HasRootEvent() bool

HasRootEvent returns a boolean if a field has been set.

func (CanvasesCanvasNodeQueueItem) MarshalJSON added in v0.6.0

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

func (*CanvasesCanvasNodeQueueItem) SetCanvasId added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) SetCanvasId(v string)

SetCanvasId gets a reference to the given string and assigns it to the CanvasId field.

func (*CanvasesCanvasNodeQueueItem) SetCreatedAt added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*CanvasesCanvasNodeQueueItem) SetId added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) SetId(v string)

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

func (*CanvasesCanvasNodeQueueItem) SetInput added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) SetInput(v map[string]interface{})

SetInput gets a reference to the given map[string]interface{} and assigns it to the Input field.

func (*CanvasesCanvasNodeQueueItem) SetNodeId added in v0.6.0

func (o *CanvasesCanvasNodeQueueItem) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*CanvasesCanvasNodeQueueItem) SetRootEvent added in v0.6.0

SetRootEvent gets a reference to the given CanvasesCanvasEvent and assigns it to the RootEvent field.

func (CanvasesCanvasNodeQueueItem) ToMap added in v0.6.0

func (o CanvasesCanvasNodeQueueItem) ToMap() (map[string]interface{}, error)

type CanvasesCanvasSpec added in v0.6.0

type CanvasesCanvasSpec struct {
	Nodes []ComponentsNode `json:"nodes,omitempty"`
	Edges []ComponentsEdge `json:"edges,omitempty"`
}

CanvasesCanvasSpec struct for CanvasesCanvasSpec

func NewCanvasesCanvasSpec added in v0.6.0

func NewCanvasesCanvasSpec() *CanvasesCanvasSpec

NewCanvasesCanvasSpec instantiates a new CanvasesCanvasSpec 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 NewCanvasesCanvasSpecWithDefaults added in v0.6.0

func NewCanvasesCanvasSpecWithDefaults() *CanvasesCanvasSpec

NewCanvasesCanvasSpecWithDefaults instantiates a new CanvasesCanvasSpec 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 (*CanvasesCanvasSpec) GetEdges added in v0.6.0

func (o *CanvasesCanvasSpec) GetEdges() []ComponentsEdge

GetEdges returns the Edges field value if set, zero value otherwise.

func (*CanvasesCanvasSpec) GetEdgesOk added in v0.6.0

func (o *CanvasesCanvasSpec) GetEdgesOk() ([]ComponentsEdge, bool)

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

func (*CanvasesCanvasSpec) GetNodes added in v0.6.0

func (o *CanvasesCanvasSpec) GetNodes() []ComponentsNode

GetNodes returns the Nodes field value if set, zero value otherwise.

func (*CanvasesCanvasSpec) GetNodesOk added in v0.6.0

func (o *CanvasesCanvasSpec) GetNodesOk() ([]ComponentsNode, bool)

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

func (*CanvasesCanvasSpec) HasEdges added in v0.6.0

func (o *CanvasesCanvasSpec) HasEdges() bool

HasEdges returns a boolean if a field has been set.

func (*CanvasesCanvasSpec) HasNodes added in v0.6.0

func (o *CanvasesCanvasSpec) HasNodes() bool

HasNodes returns a boolean if a field has been set.

func (CanvasesCanvasSpec) MarshalJSON added in v0.6.0

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

func (*CanvasesCanvasSpec) SetEdges added in v0.6.0

func (o *CanvasesCanvasSpec) SetEdges(v []ComponentsEdge)

SetEdges gets a reference to the given []ComponentsEdge and assigns it to the Edges field.

func (*CanvasesCanvasSpec) SetNodes added in v0.6.0

func (o *CanvasesCanvasSpec) SetNodes(v []ComponentsNode)

SetNodes gets a reference to the given []ComponentsNode and assigns it to the Nodes field.

func (CanvasesCanvasSpec) ToMap added in v0.6.0

func (o CanvasesCanvasSpec) ToMap() (map[string]interface{}, error)

type CanvasesCanvasStatus added in v0.6.0

type CanvasesCanvasStatus struct {
	LastExecutions []CanvasesCanvasNodeExecution `json:"lastExecutions,omitempty"`
	NextQueueItems []CanvasesCanvasNodeQueueItem `json:"nextQueueItems,omitempty"`
	LastEvents     []CanvasesCanvasEvent         `json:"lastEvents,omitempty"`
}

CanvasesCanvasStatus struct for CanvasesCanvasStatus

func NewCanvasesCanvasStatus added in v0.6.0

func NewCanvasesCanvasStatus() *CanvasesCanvasStatus

NewCanvasesCanvasStatus instantiates a new CanvasesCanvasStatus 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 NewCanvasesCanvasStatusWithDefaults added in v0.6.0

func NewCanvasesCanvasStatusWithDefaults() *CanvasesCanvasStatus

NewCanvasesCanvasStatusWithDefaults instantiates a new CanvasesCanvasStatus 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 (*CanvasesCanvasStatus) GetLastEvents added in v0.6.0

func (o *CanvasesCanvasStatus) GetLastEvents() []CanvasesCanvasEvent

GetLastEvents returns the LastEvents field value if set, zero value otherwise.

func (*CanvasesCanvasStatus) GetLastEventsOk added in v0.6.0

func (o *CanvasesCanvasStatus) GetLastEventsOk() ([]CanvasesCanvasEvent, bool)

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

func (*CanvasesCanvasStatus) GetLastExecutions added in v0.6.0

func (o *CanvasesCanvasStatus) GetLastExecutions() []CanvasesCanvasNodeExecution

GetLastExecutions returns the LastExecutions field value if set, zero value otherwise.

func (*CanvasesCanvasStatus) GetLastExecutionsOk added in v0.6.0

func (o *CanvasesCanvasStatus) GetLastExecutionsOk() ([]CanvasesCanvasNodeExecution, bool)

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

func (*CanvasesCanvasStatus) GetNextQueueItems added in v0.6.0

func (o *CanvasesCanvasStatus) GetNextQueueItems() []CanvasesCanvasNodeQueueItem

GetNextQueueItems returns the NextQueueItems field value if set, zero value otherwise.

func (*CanvasesCanvasStatus) GetNextQueueItemsOk added in v0.6.0

func (o *CanvasesCanvasStatus) GetNextQueueItemsOk() ([]CanvasesCanvasNodeQueueItem, bool)

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

func (*CanvasesCanvasStatus) HasLastEvents added in v0.6.0

func (o *CanvasesCanvasStatus) HasLastEvents() bool

HasLastEvents returns a boolean if a field has been set.

func (*CanvasesCanvasStatus) HasLastExecutions added in v0.6.0

func (o *CanvasesCanvasStatus) HasLastExecutions() bool

HasLastExecutions returns a boolean if a field has been set.

func (*CanvasesCanvasStatus) HasNextQueueItems added in v0.6.0

func (o *CanvasesCanvasStatus) HasNextQueueItems() bool

HasNextQueueItems returns a boolean if a field has been set.

func (CanvasesCanvasStatus) MarshalJSON added in v0.6.0

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

func (*CanvasesCanvasStatus) SetLastEvents added in v0.6.0

func (o *CanvasesCanvasStatus) SetLastEvents(v []CanvasesCanvasEvent)

SetLastEvents gets a reference to the given []CanvasesCanvasEvent and assigns it to the LastEvents field.

func (*CanvasesCanvasStatus) SetLastExecutions added in v0.6.0

func (o *CanvasesCanvasStatus) SetLastExecutions(v []CanvasesCanvasNodeExecution)

SetLastExecutions gets a reference to the given []CanvasesCanvasNodeExecution and assigns it to the LastExecutions field.

func (*CanvasesCanvasStatus) SetNextQueueItems added in v0.6.0

func (o *CanvasesCanvasStatus) SetNextQueueItems(v []CanvasesCanvasNodeQueueItem)

SetNextQueueItems gets a reference to the given []CanvasesCanvasNodeQueueItem and assigns it to the NextQueueItems field.

func (CanvasesCanvasStatus) ToMap added in v0.6.0

func (o CanvasesCanvasStatus) ToMap() (map[string]interface{}, error)

type CanvasesCreateCanvasRequest added in v0.6.0

type CanvasesCreateCanvasRequest struct {
	Canvas *CanvasesCanvas `json:"canvas,omitempty"`
}

CanvasesCreateCanvasRequest struct for CanvasesCreateCanvasRequest

func NewCanvasesCreateCanvasRequest added in v0.6.0

func NewCanvasesCreateCanvasRequest() *CanvasesCreateCanvasRequest

NewCanvasesCreateCanvasRequest instantiates a new CanvasesCreateCanvasRequest 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 NewCanvasesCreateCanvasRequestWithDefaults added in v0.6.0

func NewCanvasesCreateCanvasRequestWithDefaults() *CanvasesCreateCanvasRequest

NewCanvasesCreateCanvasRequestWithDefaults instantiates a new CanvasesCreateCanvasRequest 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 (*CanvasesCreateCanvasRequest) GetCanvas added in v0.6.0

GetCanvas returns the Canvas field value if set, zero value otherwise.

func (*CanvasesCreateCanvasRequest) GetCanvasOk added in v0.6.0

func (o *CanvasesCreateCanvasRequest) GetCanvasOk() (*CanvasesCanvas, bool)

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

func (*CanvasesCreateCanvasRequest) HasCanvas added in v0.6.0

func (o *CanvasesCreateCanvasRequest) HasCanvas() bool

HasCanvas returns a boolean if a field has been set.

func (CanvasesCreateCanvasRequest) MarshalJSON added in v0.6.0

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

func (*CanvasesCreateCanvasRequest) SetCanvas added in v0.6.0

SetCanvas gets a reference to the given CanvasesCanvas and assigns it to the Canvas field.

func (CanvasesCreateCanvasRequest) ToMap added in v0.6.0

func (o CanvasesCreateCanvasRequest) ToMap() (map[string]interface{}, error)

type CanvasesCreateCanvasResponse added in v0.6.0

type CanvasesCreateCanvasResponse struct {
	Canvas *CanvasesCanvas `json:"canvas,omitempty"`
}

CanvasesCreateCanvasResponse struct for CanvasesCreateCanvasResponse

func NewCanvasesCreateCanvasResponse added in v0.6.0

func NewCanvasesCreateCanvasResponse() *CanvasesCreateCanvasResponse

NewCanvasesCreateCanvasResponse instantiates a new CanvasesCreateCanvasResponse 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 NewCanvasesCreateCanvasResponseWithDefaults added in v0.6.0

func NewCanvasesCreateCanvasResponseWithDefaults() *CanvasesCreateCanvasResponse

NewCanvasesCreateCanvasResponseWithDefaults instantiates a new CanvasesCreateCanvasResponse 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 (*CanvasesCreateCanvasResponse) GetCanvas added in v0.6.0

GetCanvas returns the Canvas field value if set, zero value otherwise.

func (*CanvasesCreateCanvasResponse) GetCanvasOk added in v0.6.0

func (o *CanvasesCreateCanvasResponse) GetCanvasOk() (*CanvasesCanvas, bool)

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

func (*CanvasesCreateCanvasResponse) HasCanvas added in v0.6.0

func (o *CanvasesCreateCanvasResponse) HasCanvas() bool

HasCanvas returns a boolean if a field has been set.

func (CanvasesCreateCanvasResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesCreateCanvasResponse) SetCanvas added in v0.6.0

SetCanvas gets a reference to the given CanvasesCanvas and assigns it to the Canvas field.

func (CanvasesCreateCanvasResponse) ToMap added in v0.6.0

func (o CanvasesCreateCanvasResponse) ToMap() (map[string]interface{}, error)

type CanvasesDescribeCanvasResponse added in v0.6.0

type CanvasesDescribeCanvasResponse struct {
	Canvas *CanvasesCanvas `json:"canvas,omitempty"`
}

CanvasesDescribeCanvasResponse struct for CanvasesDescribeCanvasResponse

func NewCanvasesDescribeCanvasResponse added in v0.6.0

func NewCanvasesDescribeCanvasResponse() *CanvasesDescribeCanvasResponse

NewCanvasesDescribeCanvasResponse instantiates a new CanvasesDescribeCanvasResponse 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 NewCanvasesDescribeCanvasResponseWithDefaults added in v0.6.0

func NewCanvasesDescribeCanvasResponseWithDefaults() *CanvasesDescribeCanvasResponse

NewCanvasesDescribeCanvasResponseWithDefaults instantiates a new CanvasesDescribeCanvasResponse 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 (*CanvasesDescribeCanvasResponse) GetCanvas added in v0.6.0

GetCanvas returns the Canvas field value if set, zero value otherwise.

func (*CanvasesDescribeCanvasResponse) GetCanvasOk added in v0.6.0

func (o *CanvasesDescribeCanvasResponse) GetCanvasOk() (*CanvasesCanvas, bool)

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

func (*CanvasesDescribeCanvasResponse) HasCanvas added in v0.6.0

func (o *CanvasesDescribeCanvasResponse) HasCanvas() bool

HasCanvas returns a boolean if a field has been set.

func (CanvasesDescribeCanvasResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesDescribeCanvasResponse) SetCanvas added in v0.6.0

SetCanvas gets a reference to the given CanvasesCanvas and assigns it to the Canvas field.

func (CanvasesDescribeCanvasResponse) ToMap added in v0.6.0

func (o CanvasesDescribeCanvasResponse) ToMap() (map[string]interface{}, error)

type CanvasesEmitNodeEventBody added in v0.6.0

type CanvasesEmitNodeEventBody struct {
	Channel *string                `json:"channel,omitempty"`
	Data    map[string]interface{} `json:"data,omitempty"`
}

CanvasesEmitNodeEventBody struct for CanvasesEmitNodeEventBody

func NewCanvasesEmitNodeEventBody added in v0.6.0

func NewCanvasesEmitNodeEventBody() *CanvasesEmitNodeEventBody

NewCanvasesEmitNodeEventBody instantiates a new CanvasesEmitNodeEventBody 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 NewCanvasesEmitNodeEventBodyWithDefaults added in v0.6.0

func NewCanvasesEmitNodeEventBodyWithDefaults() *CanvasesEmitNodeEventBody

NewCanvasesEmitNodeEventBodyWithDefaults instantiates a new CanvasesEmitNodeEventBody 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 (*CanvasesEmitNodeEventBody) GetChannel added in v0.6.0

func (o *CanvasesEmitNodeEventBody) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*CanvasesEmitNodeEventBody) GetChannelOk added in v0.6.0

func (o *CanvasesEmitNodeEventBody) GetChannelOk() (*string, bool)

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

func (*CanvasesEmitNodeEventBody) GetData added in v0.6.0

func (o *CanvasesEmitNodeEventBody) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*CanvasesEmitNodeEventBody) GetDataOk added in v0.6.0

func (o *CanvasesEmitNodeEventBody) GetDataOk() (map[string]interface{}, bool)

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

func (*CanvasesEmitNodeEventBody) HasChannel added in v0.6.0

func (o *CanvasesEmitNodeEventBody) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*CanvasesEmitNodeEventBody) HasData added in v0.6.0

func (o *CanvasesEmitNodeEventBody) HasData() bool

HasData returns a boolean if a field has been set.

func (CanvasesEmitNodeEventBody) MarshalJSON added in v0.6.0

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

func (*CanvasesEmitNodeEventBody) SetChannel added in v0.6.0

func (o *CanvasesEmitNodeEventBody) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*CanvasesEmitNodeEventBody) SetData added in v0.6.0

func (o *CanvasesEmitNodeEventBody) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (CanvasesEmitNodeEventBody) ToMap added in v0.6.0

func (o CanvasesEmitNodeEventBody) ToMap() (map[string]interface{}, error)

type CanvasesEmitNodeEventResponse added in v0.6.0

type CanvasesEmitNodeEventResponse struct {
	EventId *string `json:"eventId,omitempty"`
}

CanvasesEmitNodeEventResponse struct for CanvasesEmitNodeEventResponse

func NewCanvasesEmitNodeEventResponse added in v0.6.0

func NewCanvasesEmitNodeEventResponse() *CanvasesEmitNodeEventResponse

NewCanvasesEmitNodeEventResponse instantiates a new CanvasesEmitNodeEventResponse 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 NewCanvasesEmitNodeEventResponseWithDefaults added in v0.6.0

func NewCanvasesEmitNodeEventResponseWithDefaults() *CanvasesEmitNodeEventResponse

NewCanvasesEmitNodeEventResponseWithDefaults instantiates a new CanvasesEmitNodeEventResponse 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 (*CanvasesEmitNodeEventResponse) GetEventId added in v0.6.0

func (o *CanvasesEmitNodeEventResponse) GetEventId() string

GetEventId returns the EventId field value if set, zero value otherwise.

func (*CanvasesEmitNodeEventResponse) GetEventIdOk added in v0.6.0

func (o *CanvasesEmitNodeEventResponse) GetEventIdOk() (*string, bool)

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

func (*CanvasesEmitNodeEventResponse) HasEventId added in v0.6.0

func (o *CanvasesEmitNodeEventResponse) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (CanvasesEmitNodeEventResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesEmitNodeEventResponse) SetEventId added in v0.6.0

func (o *CanvasesEmitNodeEventResponse) SetEventId(v string)

SetEventId gets a reference to the given string and assigns it to the EventId field.

func (CanvasesEmitNodeEventResponse) ToMap added in v0.6.0

func (o CanvasesEmitNodeEventResponse) ToMap() (map[string]interface{}, error)

type CanvasesInvokeNodeExecutionActionBody added in v0.6.0

type CanvasesInvokeNodeExecutionActionBody struct {
	Parameters map[string]interface{} `json:"parameters,omitempty"`
}

CanvasesInvokeNodeExecutionActionBody struct for CanvasesInvokeNodeExecutionActionBody

func NewCanvasesInvokeNodeExecutionActionBody added in v0.6.0

func NewCanvasesInvokeNodeExecutionActionBody() *CanvasesInvokeNodeExecutionActionBody

NewCanvasesInvokeNodeExecutionActionBody instantiates a new CanvasesInvokeNodeExecutionActionBody 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 NewCanvasesInvokeNodeExecutionActionBodyWithDefaults added in v0.6.0

func NewCanvasesInvokeNodeExecutionActionBodyWithDefaults() *CanvasesInvokeNodeExecutionActionBody

NewCanvasesInvokeNodeExecutionActionBodyWithDefaults instantiates a new CanvasesInvokeNodeExecutionActionBody 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 (*CanvasesInvokeNodeExecutionActionBody) GetParameters added in v0.6.0

func (o *CanvasesInvokeNodeExecutionActionBody) GetParameters() map[string]interface{}

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*CanvasesInvokeNodeExecutionActionBody) GetParametersOk added in v0.6.0

func (o *CanvasesInvokeNodeExecutionActionBody) GetParametersOk() (map[string]interface{}, bool)

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

func (*CanvasesInvokeNodeExecutionActionBody) HasParameters added in v0.6.0

func (o *CanvasesInvokeNodeExecutionActionBody) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (CanvasesInvokeNodeExecutionActionBody) MarshalJSON added in v0.6.0

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

func (*CanvasesInvokeNodeExecutionActionBody) SetParameters added in v0.6.0

func (o *CanvasesInvokeNodeExecutionActionBody) SetParameters(v map[string]interface{})

SetParameters gets a reference to the given map[string]interface{} and assigns it to the Parameters field.

func (CanvasesInvokeNodeExecutionActionBody) ToMap added in v0.6.0

func (o CanvasesInvokeNodeExecutionActionBody) ToMap() (map[string]interface{}, error)

type CanvasesInvokeNodeTriggerActionBody added in v0.6.0

type CanvasesInvokeNodeTriggerActionBody struct {
	Parameters map[string]interface{} `json:"parameters,omitempty"`
}

CanvasesInvokeNodeTriggerActionBody struct for CanvasesInvokeNodeTriggerActionBody

func NewCanvasesInvokeNodeTriggerActionBody added in v0.6.0

func NewCanvasesInvokeNodeTriggerActionBody() *CanvasesInvokeNodeTriggerActionBody

NewCanvasesInvokeNodeTriggerActionBody instantiates a new CanvasesInvokeNodeTriggerActionBody 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 NewCanvasesInvokeNodeTriggerActionBodyWithDefaults added in v0.6.0

func NewCanvasesInvokeNodeTriggerActionBodyWithDefaults() *CanvasesInvokeNodeTriggerActionBody

NewCanvasesInvokeNodeTriggerActionBodyWithDefaults instantiates a new CanvasesInvokeNodeTriggerActionBody 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 (*CanvasesInvokeNodeTriggerActionBody) GetParameters added in v0.6.0

func (o *CanvasesInvokeNodeTriggerActionBody) GetParameters() map[string]interface{}

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*CanvasesInvokeNodeTriggerActionBody) GetParametersOk added in v0.6.0

func (o *CanvasesInvokeNodeTriggerActionBody) GetParametersOk() (map[string]interface{}, bool)

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

func (*CanvasesInvokeNodeTriggerActionBody) HasParameters added in v0.6.0

func (o *CanvasesInvokeNodeTriggerActionBody) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (CanvasesInvokeNodeTriggerActionBody) MarshalJSON added in v0.6.0

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

func (*CanvasesInvokeNodeTriggerActionBody) SetParameters added in v0.6.0

func (o *CanvasesInvokeNodeTriggerActionBody) SetParameters(v map[string]interface{})

SetParameters gets a reference to the given map[string]interface{} and assigns it to the Parameters field.

func (CanvasesInvokeNodeTriggerActionBody) ToMap added in v0.6.0

func (o CanvasesInvokeNodeTriggerActionBody) ToMap() (map[string]interface{}, error)

type CanvasesInvokeNodeTriggerActionResponse added in v0.6.0

type CanvasesInvokeNodeTriggerActionResponse struct {
	Result map[string]interface{} `json:"result,omitempty"`
}

CanvasesInvokeNodeTriggerActionResponse struct for CanvasesInvokeNodeTriggerActionResponse

func NewCanvasesInvokeNodeTriggerActionResponse added in v0.6.0

func NewCanvasesInvokeNodeTriggerActionResponse() *CanvasesInvokeNodeTriggerActionResponse

NewCanvasesInvokeNodeTriggerActionResponse instantiates a new CanvasesInvokeNodeTriggerActionResponse 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 NewCanvasesInvokeNodeTriggerActionResponseWithDefaults added in v0.6.0

func NewCanvasesInvokeNodeTriggerActionResponseWithDefaults() *CanvasesInvokeNodeTriggerActionResponse

NewCanvasesInvokeNodeTriggerActionResponseWithDefaults instantiates a new CanvasesInvokeNodeTriggerActionResponse 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 (*CanvasesInvokeNodeTriggerActionResponse) GetResult added in v0.6.0

func (o *CanvasesInvokeNodeTriggerActionResponse) GetResult() map[string]interface{}

GetResult returns the Result field value if set, zero value otherwise.

func (*CanvasesInvokeNodeTriggerActionResponse) GetResultOk added in v0.6.0

func (o *CanvasesInvokeNodeTriggerActionResponse) GetResultOk() (map[string]interface{}, bool)

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

func (*CanvasesInvokeNodeTriggerActionResponse) HasResult added in v0.6.0

HasResult returns a boolean if a field has been set.

func (CanvasesInvokeNodeTriggerActionResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesInvokeNodeTriggerActionResponse) SetResult added in v0.6.0

func (o *CanvasesInvokeNodeTriggerActionResponse) SetResult(v map[string]interface{})

SetResult gets a reference to the given map[string]interface{} and assigns it to the Result field.

func (CanvasesInvokeNodeTriggerActionResponse) ToMap added in v0.6.0

func (o CanvasesInvokeNodeTriggerActionResponse) ToMap() (map[string]interface{}, error)

type CanvasesListCanvasEventsResponse added in v0.6.0

type CanvasesListCanvasEventsResponse struct {
	Events        []CanvasesCanvasEventWithExecutions `json:"events,omitempty"`
	TotalCount    *int64                              `json:"totalCount,omitempty"`
	HasNextPage   *bool                               `json:"hasNextPage,omitempty"`
	LastTimestamp *time.Time                          `json:"lastTimestamp,omitempty"`
}

CanvasesListCanvasEventsResponse struct for CanvasesListCanvasEventsResponse

func NewCanvasesListCanvasEventsResponse added in v0.6.0

func NewCanvasesListCanvasEventsResponse() *CanvasesListCanvasEventsResponse

NewCanvasesListCanvasEventsResponse instantiates a new CanvasesListCanvasEventsResponse 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 NewCanvasesListCanvasEventsResponseWithDefaults added in v0.6.0

func NewCanvasesListCanvasEventsResponseWithDefaults() *CanvasesListCanvasEventsResponse

NewCanvasesListCanvasEventsResponseWithDefaults instantiates a new CanvasesListCanvasEventsResponse 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 (*CanvasesListCanvasEventsResponse) GetEvents added in v0.6.0

GetEvents returns the Events field value if set, zero value otherwise.

func (*CanvasesListCanvasEventsResponse) GetEventsOk added in v0.6.0

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

func (*CanvasesListCanvasEventsResponse) GetHasNextPage added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field value if set, zero value otherwise.

func (*CanvasesListCanvasEventsResponse) GetHasNextPageOk added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) GetHasNextPageOk() (*bool, bool)

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

func (*CanvasesListCanvasEventsResponse) GetLastTimestamp added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) GetLastTimestamp() time.Time

GetLastTimestamp returns the LastTimestamp field value if set, zero value otherwise.

func (*CanvasesListCanvasEventsResponse) GetLastTimestampOk added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) GetLastTimestampOk() (*time.Time, bool)

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

func (*CanvasesListCanvasEventsResponse) GetTotalCount added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) GetTotalCount() int64

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*CanvasesListCanvasEventsResponse) GetTotalCountOk added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) GetTotalCountOk() (*int64, bool)

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

func (*CanvasesListCanvasEventsResponse) HasEvents added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*CanvasesListCanvasEventsResponse) HasHasNextPage added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) HasHasNextPage() bool

HasHasNextPage returns a boolean if a field has been set.

func (*CanvasesListCanvasEventsResponse) HasLastTimestamp added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) HasLastTimestamp() bool

HasLastTimestamp returns a boolean if a field has been set.

func (*CanvasesListCanvasEventsResponse) HasTotalCount added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (CanvasesListCanvasEventsResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesListCanvasEventsResponse) SetEvents added in v0.6.0

SetEvents gets a reference to the given []CanvasesCanvasEventWithExecutions and assigns it to the Events field.

func (*CanvasesListCanvasEventsResponse) SetHasNextPage added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) SetHasNextPage(v bool)

SetHasNextPage gets a reference to the given bool and assigns it to the HasNextPage field.

func (*CanvasesListCanvasEventsResponse) SetLastTimestamp added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) SetLastTimestamp(v time.Time)

SetLastTimestamp gets a reference to the given time.Time and assigns it to the LastTimestamp field.

func (*CanvasesListCanvasEventsResponse) SetTotalCount added in v0.6.0

func (o *CanvasesListCanvasEventsResponse) SetTotalCount(v int64)

SetTotalCount gets a reference to the given int64 and assigns it to the TotalCount field.

func (CanvasesListCanvasEventsResponse) ToMap added in v0.6.0

func (o CanvasesListCanvasEventsResponse) ToMap() (map[string]interface{}, error)

type CanvasesListCanvasesResponse added in v0.6.0

type CanvasesListCanvasesResponse struct {
	Canvases []CanvasesCanvas `json:"canvases,omitempty"`
}

CanvasesListCanvasesResponse struct for CanvasesListCanvasesResponse

func NewCanvasesListCanvasesResponse added in v0.6.0

func NewCanvasesListCanvasesResponse() *CanvasesListCanvasesResponse

NewCanvasesListCanvasesResponse instantiates a new CanvasesListCanvasesResponse 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 NewCanvasesListCanvasesResponseWithDefaults added in v0.6.0

func NewCanvasesListCanvasesResponseWithDefaults() *CanvasesListCanvasesResponse

NewCanvasesListCanvasesResponseWithDefaults instantiates a new CanvasesListCanvasesResponse 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 (*CanvasesListCanvasesResponse) GetCanvases added in v0.6.0

func (o *CanvasesListCanvasesResponse) GetCanvases() []CanvasesCanvas

GetCanvases returns the Canvases field value if set, zero value otherwise.

func (*CanvasesListCanvasesResponse) GetCanvasesOk added in v0.6.0

func (o *CanvasesListCanvasesResponse) GetCanvasesOk() ([]CanvasesCanvas, bool)

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

func (*CanvasesListCanvasesResponse) HasCanvases added in v0.6.0

func (o *CanvasesListCanvasesResponse) HasCanvases() bool

HasCanvases returns a boolean if a field has been set.

func (CanvasesListCanvasesResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesListCanvasesResponse) SetCanvases added in v0.6.0

func (o *CanvasesListCanvasesResponse) SetCanvases(v []CanvasesCanvas)

SetCanvases gets a reference to the given []CanvasesCanvas and assigns it to the Canvases field.

func (CanvasesListCanvasesResponse) ToMap added in v0.6.0

func (o CanvasesListCanvasesResponse) ToMap() (map[string]interface{}, error)

type CanvasesListChildExecutionsResponse added in v0.6.0

type CanvasesListChildExecutionsResponse struct {
	Executions []CanvasesCanvasNodeExecution `json:"executions,omitempty"`
}

CanvasesListChildExecutionsResponse struct for CanvasesListChildExecutionsResponse

func NewCanvasesListChildExecutionsResponse added in v0.6.0

func NewCanvasesListChildExecutionsResponse() *CanvasesListChildExecutionsResponse

NewCanvasesListChildExecutionsResponse instantiates a new CanvasesListChildExecutionsResponse 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 NewCanvasesListChildExecutionsResponseWithDefaults added in v0.6.0

func NewCanvasesListChildExecutionsResponseWithDefaults() *CanvasesListChildExecutionsResponse

NewCanvasesListChildExecutionsResponseWithDefaults instantiates a new CanvasesListChildExecutionsResponse 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 (*CanvasesListChildExecutionsResponse) GetExecutions added in v0.6.0

GetExecutions returns the Executions field value if set, zero value otherwise.

func (*CanvasesListChildExecutionsResponse) GetExecutionsOk added in v0.6.0

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

func (*CanvasesListChildExecutionsResponse) HasExecutions added in v0.6.0

func (o *CanvasesListChildExecutionsResponse) HasExecutions() bool

HasExecutions returns a boolean if a field has been set.

func (CanvasesListChildExecutionsResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesListChildExecutionsResponse) SetExecutions added in v0.6.0

SetExecutions gets a reference to the given []CanvasesCanvasNodeExecution and assigns it to the Executions field.

func (CanvasesListChildExecutionsResponse) ToMap added in v0.6.0

func (o CanvasesListChildExecutionsResponse) ToMap() (map[string]interface{}, error)

type CanvasesListEventExecutionsResponse added in v0.6.0

type CanvasesListEventExecutionsResponse struct {
	Executions []CanvasesCanvasNodeExecution `json:"executions,omitempty"`
}

CanvasesListEventExecutionsResponse struct for CanvasesListEventExecutionsResponse

func NewCanvasesListEventExecutionsResponse added in v0.6.0

func NewCanvasesListEventExecutionsResponse() *CanvasesListEventExecutionsResponse

NewCanvasesListEventExecutionsResponse instantiates a new CanvasesListEventExecutionsResponse 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 NewCanvasesListEventExecutionsResponseWithDefaults added in v0.6.0

func NewCanvasesListEventExecutionsResponseWithDefaults() *CanvasesListEventExecutionsResponse

NewCanvasesListEventExecutionsResponseWithDefaults instantiates a new CanvasesListEventExecutionsResponse 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 (*CanvasesListEventExecutionsResponse) GetExecutions added in v0.6.0

GetExecutions returns the Executions field value if set, zero value otherwise.

func (*CanvasesListEventExecutionsResponse) GetExecutionsOk added in v0.6.0

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

func (*CanvasesListEventExecutionsResponse) HasExecutions added in v0.6.0

func (o *CanvasesListEventExecutionsResponse) HasExecutions() bool

HasExecutions returns a boolean if a field has been set.

func (CanvasesListEventExecutionsResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesListEventExecutionsResponse) SetExecutions added in v0.6.0

SetExecutions gets a reference to the given []CanvasesCanvasNodeExecution and assigns it to the Executions field.

func (CanvasesListEventExecutionsResponse) ToMap added in v0.6.0

func (o CanvasesListEventExecutionsResponse) ToMap() (map[string]interface{}, error)

type CanvasesListNodeEventsResponse added in v0.6.0

type CanvasesListNodeEventsResponse struct {
	Events        []CanvasesCanvasEvent `json:"events,omitempty"`
	TotalCount    *int64                `json:"totalCount,omitempty"`
	HasNextPage   *bool                 `json:"hasNextPage,omitempty"`
	LastTimestamp *time.Time            `json:"lastTimestamp,omitempty"`
}

CanvasesListNodeEventsResponse struct for CanvasesListNodeEventsResponse

func NewCanvasesListNodeEventsResponse added in v0.6.0

func NewCanvasesListNodeEventsResponse() *CanvasesListNodeEventsResponse

NewCanvasesListNodeEventsResponse instantiates a new CanvasesListNodeEventsResponse 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 NewCanvasesListNodeEventsResponseWithDefaults added in v0.6.0

func NewCanvasesListNodeEventsResponseWithDefaults() *CanvasesListNodeEventsResponse

NewCanvasesListNodeEventsResponseWithDefaults instantiates a new CanvasesListNodeEventsResponse 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 (*CanvasesListNodeEventsResponse) GetEvents added in v0.6.0

GetEvents returns the Events field value if set, zero value otherwise.

func (*CanvasesListNodeEventsResponse) GetEventsOk added in v0.6.0

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

func (*CanvasesListNodeEventsResponse) GetHasNextPage added in v0.6.0

func (o *CanvasesListNodeEventsResponse) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field value if set, zero value otherwise.

func (*CanvasesListNodeEventsResponse) GetHasNextPageOk added in v0.6.0

func (o *CanvasesListNodeEventsResponse) GetHasNextPageOk() (*bool, bool)

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

func (*CanvasesListNodeEventsResponse) GetLastTimestamp added in v0.6.0

func (o *CanvasesListNodeEventsResponse) GetLastTimestamp() time.Time

GetLastTimestamp returns the LastTimestamp field value if set, zero value otherwise.

func (*CanvasesListNodeEventsResponse) GetLastTimestampOk added in v0.6.0

func (o *CanvasesListNodeEventsResponse) GetLastTimestampOk() (*time.Time, bool)

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

func (*CanvasesListNodeEventsResponse) GetTotalCount added in v0.6.0

func (o *CanvasesListNodeEventsResponse) GetTotalCount() int64

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*CanvasesListNodeEventsResponse) GetTotalCountOk added in v0.6.0

func (o *CanvasesListNodeEventsResponse) GetTotalCountOk() (*int64, bool)

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

func (*CanvasesListNodeEventsResponse) HasEvents added in v0.6.0

func (o *CanvasesListNodeEventsResponse) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*CanvasesListNodeEventsResponse) HasHasNextPage added in v0.6.0

func (o *CanvasesListNodeEventsResponse) HasHasNextPage() bool

HasHasNextPage returns a boolean if a field has been set.

func (*CanvasesListNodeEventsResponse) HasLastTimestamp added in v0.6.0

func (o *CanvasesListNodeEventsResponse) HasLastTimestamp() bool

HasLastTimestamp returns a boolean if a field has been set.

func (*CanvasesListNodeEventsResponse) HasTotalCount added in v0.6.0

func (o *CanvasesListNodeEventsResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (CanvasesListNodeEventsResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesListNodeEventsResponse) SetEvents added in v0.6.0

SetEvents gets a reference to the given []CanvasesCanvasEvent and assigns it to the Events field.

func (*CanvasesListNodeEventsResponse) SetHasNextPage added in v0.6.0

func (o *CanvasesListNodeEventsResponse) SetHasNextPage(v bool)

SetHasNextPage gets a reference to the given bool and assigns it to the HasNextPage field.

func (*CanvasesListNodeEventsResponse) SetLastTimestamp added in v0.6.0

func (o *CanvasesListNodeEventsResponse) SetLastTimestamp(v time.Time)

SetLastTimestamp gets a reference to the given time.Time and assigns it to the LastTimestamp field.

func (*CanvasesListNodeEventsResponse) SetTotalCount added in v0.6.0

func (o *CanvasesListNodeEventsResponse) SetTotalCount(v int64)

SetTotalCount gets a reference to the given int64 and assigns it to the TotalCount field.

func (CanvasesListNodeEventsResponse) ToMap added in v0.6.0

func (o CanvasesListNodeEventsResponse) ToMap() (map[string]interface{}, error)

type CanvasesListNodeExecutionsResponse added in v0.6.0

type CanvasesListNodeExecutionsResponse struct {
	Executions    []CanvasesCanvasNodeExecution `json:"executions,omitempty"`
	TotalCount    *int64                        `json:"totalCount,omitempty"`
	HasNextPage   *bool                         `json:"hasNextPage,omitempty"`
	LastTimestamp *time.Time                    `json:"lastTimestamp,omitempty"`
}

CanvasesListNodeExecutionsResponse struct for CanvasesListNodeExecutionsResponse

func NewCanvasesListNodeExecutionsResponse added in v0.6.0

func NewCanvasesListNodeExecutionsResponse() *CanvasesListNodeExecutionsResponse

NewCanvasesListNodeExecutionsResponse instantiates a new CanvasesListNodeExecutionsResponse 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 NewCanvasesListNodeExecutionsResponseWithDefaults added in v0.6.0

func NewCanvasesListNodeExecutionsResponseWithDefaults() *CanvasesListNodeExecutionsResponse

NewCanvasesListNodeExecutionsResponseWithDefaults instantiates a new CanvasesListNodeExecutionsResponse 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 (*CanvasesListNodeExecutionsResponse) GetExecutions added in v0.6.0

GetExecutions returns the Executions field value if set, zero value otherwise.

func (*CanvasesListNodeExecutionsResponse) GetExecutionsOk added in v0.6.0

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

func (*CanvasesListNodeExecutionsResponse) GetHasNextPage added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field value if set, zero value otherwise.

func (*CanvasesListNodeExecutionsResponse) GetHasNextPageOk added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) GetHasNextPageOk() (*bool, bool)

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

func (*CanvasesListNodeExecutionsResponse) GetLastTimestamp added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) GetLastTimestamp() time.Time

GetLastTimestamp returns the LastTimestamp field value if set, zero value otherwise.

func (*CanvasesListNodeExecutionsResponse) GetLastTimestampOk added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) GetLastTimestampOk() (*time.Time, bool)

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

func (*CanvasesListNodeExecutionsResponse) GetTotalCount added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) GetTotalCount() int64

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*CanvasesListNodeExecutionsResponse) GetTotalCountOk added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) GetTotalCountOk() (*int64, bool)

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

func (*CanvasesListNodeExecutionsResponse) HasExecutions added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) HasExecutions() bool

HasExecutions returns a boolean if a field has been set.

func (*CanvasesListNodeExecutionsResponse) HasHasNextPage added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) HasHasNextPage() bool

HasHasNextPage returns a boolean if a field has been set.

func (*CanvasesListNodeExecutionsResponse) HasLastTimestamp added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) HasLastTimestamp() bool

HasLastTimestamp returns a boolean if a field has been set.

func (*CanvasesListNodeExecutionsResponse) HasTotalCount added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (CanvasesListNodeExecutionsResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesListNodeExecutionsResponse) SetExecutions added in v0.6.0

SetExecutions gets a reference to the given []CanvasesCanvasNodeExecution and assigns it to the Executions field.

func (*CanvasesListNodeExecutionsResponse) SetHasNextPage added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) SetHasNextPage(v bool)

SetHasNextPage gets a reference to the given bool and assigns it to the HasNextPage field.

func (*CanvasesListNodeExecutionsResponse) SetLastTimestamp added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) SetLastTimestamp(v time.Time)

SetLastTimestamp gets a reference to the given time.Time and assigns it to the LastTimestamp field.

func (*CanvasesListNodeExecutionsResponse) SetTotalCount added in v0.6.0

func (o *CanvasesListNodeExecutionsResponse) SetTotalCount(v int64)

SetTotalCount gets a reference to the given int64 and assigns it to the TotalCount field.

func (CanvasesListNodeExecutionsResponse) ToMap added in v0.6.0

func (o CanvasesListNodeExecutionsResponse) ToMap() (map[string]interface{}, error)

type CanvasesListNodeQueueItemsResponse added in v0.6.0

type CanvasesListNodeQueueItemsResponse struct {
	Items         []CanvasesCanvasNodeQueueItem `json:"items,omitempty"`
	TotalCount    *int64                        `json:"totalCount,omitempty"`
	HasNextPage   *bool                         `json:"hasNextPage,omitempty"`
	LastTimestamp *time.Time                    `json:"lastTimestamp,omitempty"`
}

CanvasesListNodeQueueItemsResponse struct for CanvasesListNodeQueueItemsResponse

func NewCanvasesListNodeQueueItemsResponse added in v0.6.0

func NewCanvasesListNodeQueueItemsResponse() *CanvasesListNodeQueueItemsResponse

NewCanvasesListNodeQueueItemsResponse instantiates a new CanvasesListNodeQueueItemsResponse 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 NewCanvasesListNodeQueueItemsResponseWithDefaults added in v0.6.0

func NewCanvasesListNodeQueueItemsResponseWithDefaults() *CanvasesListNodeQueueItemsResponse

NewCanvasesListNodeQueueItemsResponseWithDefaults instantiates a new CanvasesListNodeQueueItemsResponse 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 (*CanvasesListNodeQueueItemsResponse) GetHasNextPage added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field value if set, zero value otherwise.

func (*CanvasesListNodeQueueItemsResponse) GetHasNextPageOk added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) GetHasNextPageOk() (*bool, bool)

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

func (*CanvasesListNodeQueueItemsResponse) GetItems added in v0.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*CanvasesListNodeQueueItemsResponse) GetItemsOk added in v0.6.0

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

func (*CanvasesListNodeQueueItemsResponse) GetLastTimestamp added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) GetLastTimestamp() time.Time

GetLastTimestamp returns the LastTimestamp field value if set, zero value otherwise.

func (*CanvasesListNodeQueueItemsResponse) GetLastTimestampOk added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) GetLastTimestampOk() (*time.Time, bool)

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

func (*CanvasesListNodeQueueItemsResponse) GetTotalCount added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) GetTotalCount() int64

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*CanvasesListNodeQueueItemsResponse) GetTotalCountOk added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) GetTotalCountOk() (*int64, bool)

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

func (*CanvasesListNodeQueueItemsResponse) HasHasNextPage added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) HasHasNextPage() bool

HasHasNextPage returns a boolean if a field has been set.

func (*CanvasesListNodeQueueItemsResponse) HasItems added in v0.6.0

HasItems returns a boolean if a field has been set.

func (*CanvasesListNodeQueueItemsResponse) HasLastTimestamp added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) HasLastTimestamp() bool

HasLastTimestamp returns a boolean if a field has been set.

func (*CanvasesListNodeQueueItemsResponse) HasTotalCount added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (CanvasesListNodeQueueItemsResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesListNodeQueueItemsResponse) SetHasNextPage added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) SetHasNextPage(v bool)

SetHasNextPage gets a reference to the given bool and assigns it to the HasNextPage field.

func (*CanvasesListNodeQueueItemsResponse) SetItems added in v0.6.0

SetItems gets a reference to the given []CanvasesCanvasNodeQueueItem and assigns it to the Items field.

func (*CanvasesListNodeQueueItemsResponse) SetLastTimestamp added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) SetLastTimestamp(v time.Time)

SetLastTimestamp gets a reference to the given time.Time and assigns it to the LastTimestamp field.

func (*CanvasesListNodeQueueItemsResponse) SetTotalCount added in v0.6.0

func (o *CanvasesListNodeQueueItemsResponse) SetTotalCount(v int64)

SetTotalCount gets a reference to the given int64 and assigns it to the TotalCount field.

func (CanvasesListNodeQueueItemsResponse) ToMap added in v0.6.0

func (o CanvasesListNodeQueueItemsResponse) ToMap() (map[string]interface{}, error)

type CanvasesResolveExecutionErrorsBody added in v0.6.0

type CanvasesResolveExecutionErrorsBody struct {
	ExecutionIds []string `json:"executionIds,omitempty"`
}

CanvasesResolveExecutionErrorsBody struct for CanvasesResolveExecutionErrorsBody

func NewCanvasesResolveExecutionErrorsBody added in v0.6.0

func NewCanvasesResolveExecutionErrorsBody() *CanvasesResolveExecutionErrorsBody

NewCanvasesResolveExecutionErrorsBody instantiates a new CanvasesResolveExecutionErrorsBody 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 NewCanvasesResolveExecutionErrorsBodyWithDefaults added in v0.6.0

func NewCanvasesResolveExecutionErrorsBodyWithDefaults() *CanvasesResolveExecutionErrorsBody

NewCanvasesResolveExecutionErrorsBodyWithDefaults instantiates a new CanvasesResolveExecutionErrorsBody 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 (*CanvasesResolveExecutionErrorsBody) GetExecutionIds added in v0.6.0

func (o *CanvasesResolveExecutionErrorsBody) GetExecutionIds() []string

GetExecutionIds returns the ExecutionIds field value if set, zero value otherwise.

func (*CanvasesResolveExecutionErrorsBody) GetExecutionIdsOk added in v0.6.0

func (o *CanvasesResolveExecutionErrorsBody) GetExecutionIdsOk() ([]string, bool)

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

func (*CanvasesResolveExecutionErrorsBody) HasExecutionIds added in v0.6.0

func (o *CanvasesResolveExecutionErrorsBody) HasExecutionIds() bool

HasExecutionIds returns a boolean if a field has been set.

func (CanvasesResolveExecutionErrorsBody) MarshalJSON added in v0.6.0

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

func (*CanvasesResolveExecutionErrorsBody) SetExecutionIds added in v0.6.0

func (o *CanvasesResolveExecutionErrorsBody) SetExecutionIds(v []string)

SetExecutionIds gets a reference to the given []string and assigns it to the ExecutionIds field.

func (CanvasesResolveExecutionErrorsBody) ToMap added in v0.6.0

func (o CanvasesResolveExecutionErrorsBody) ToMap() (map[string]interface{}, error)

type CanvasesUpdateCanvasBody added in v0.6.0

type CanvasesUpdateCanvasBody struct {
	Canvas *CanvasesCanvas `json:"canvas,omitempty"`
}

CanvasesUpdateCanvasBody struct for CanvasesUpdateCanvasBody

func NewCanvasesUpdateCanvasBody added in v0.6.0

func NewCanvasesUpdateCanvasBody() *CanvasesUpdateCanvasBody

NewCanvasesUpdateCanvasBody instantiates a new CanvasesUpdateCanvasBody 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 NewCanvasesUpdateCanvasBodyWithDefaults added in v0.6.0

func NewCanvasesUpdateCanvasBodyWithDefaults() *CanvasesUpdateCanvasBody

NewCanvasesUpdateCanvasBodyWithDefaults instantiates a new CanvasesUpdateCanvasBody 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 (*CanvasesUpdateCanvasBody) GetCanvas added in v0.6.0

GetCanvas returns the Canvas field value if set, zero value otherwise.

func (*CanvasesUpdateCanvasBody) GetCanvasOk added in v0.6.0

func (o *CanvasesUpdateCanvasBody) GetCanvasOk() (*CanvasesCanvas, bool)

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

func (*CanvasesUpdateCanvasBody) HasCanvas added in v0.6.0

func (o *CanvasesUpdateCanvasBody) HasCanvas() bool

HasCanvas returns a boolean if a field has been set.

func (CanvasesUpdateCanvasBody) MarshalJSON added in v0.6.0

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

func (*CanvasesUpdateCanvasBody) SetCanvas added in v0.6.0

func (o *CanvasesUpdateCanvasBody) SetCanvas(v CanvasesCanvas)

SetCanvas gets a reference to the given CanvasesCanvas and assigns it to the Canvas field.

func (CanvasesUpdateCanvasBody) ToMap added in v0.6.0

func (o CanvasesUpdateCanvasBody) ToMap() (map[string]interface{}, error)

type CanvasesUpdateCanvasResponse added in v0.6.0

type CanvasesUpdateCanvasResponse struct {
	Canvas *CanvasesCanvas `json:"canvas,omitempty"`
}

CanvasesUpdateCanvasResponse struct for CanvasesUpdateCanvasResponse

func NewCanvasesUpdateCanvasResponse added in v0.6.0

func NewCanvasesUpdateCanvasResponse() *CanvasesUpdateCanvasResponse

NewCanvasesUpdateCanvasResponse instantiates a new CanvasesUpdateCanvasResponse 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 NewCanvasesUpdateCanvasResponseWithDefaults added in v0.6.0

func NewCanvasesUpdateCanvasResponseWithDefaults() *CanvasesUpdateCanvasResponse

NewCanvasesUpdateCanvasResponseWithDefaults instantiates a new CanvasesUpdateCanvasResponse 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 (*CanvasesUpdateCanvasResponse) GetCanvas added in v0.6.0

GetCanvas returns the Canvas field value if set, zero value otherwise.

func (*CanvasesUpdateCanvasResponse) GetCanvasOk added in v0.6.0

func (o *CanvasesUpdateCanvasResponse) GetCanvasOk() (*CanvasesCanvas, bool)

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

func (*CanvasesUpdateCanvasResponse) HasCanvas added in v0.6.0

func (o *CanvasesUpdateCanvasResponse) HasCanvas() bool

HasCanvas returns a boolean if a field has been set.

func (CanvasesUpdateCanvasResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesUpdateCanvasResponse) SetCanvas added in v0.6.0

SetCanvas gets a reference to the given CanvasesCanvas and assigns it to the Canvas field.

func (CanvasesUpdateCanvasResponse) ToMap added in v0.6.0

func (o CanvasesUpdateCanvasResponse) ToMap() (map[string]interface{}, error)

type CanvasesUpdateNodePauseBody added in v0.6.0

type CanvasesUpdateNodePauseBody struct {
	Paused *bool `json:"paused,omitempty"`
}

CanvasesUpdateNodePauseBody struct for CanvasesUpdateNodePauseBody

func NewCanvasesUpdateNodePauseBody added in v0.6.0

func NewCanvasesUpdateNodePauseBody() *CanvasesUpdateNodePauseBody

NewCanvasesUpdateNodePauseBody instantiates a new CanvasesUpdateNodePauseBody 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 NewCanvasesUpdateNodePauseBodyWithDefaults added in v0.6.0

func NewCanvasesUpdateNodePauseBodyWithDefaults() *CanvasesUpdateNodePauseBody

NewCanvasesUpdateNodePauseBodyWithDefaults instantiates a new CanvasesUpdateNodePauseBody 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 (*CanvasesUpdateNodePauseBody) GetPaused added in v0.6.0

func (o *CanvasesUpdateNodePauseBody) GetPaused() bool

GetPaused returns the Paused field value if set, zero value otherwise.

func (*CanvasesUpdateNodePauseBody) GetPausedOk added in v0.6.0

func (o *CanvasesUpdateNodePauseBody) GetPausedOk() (*bool, bool)

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

func (*CanvasesUpdateNodePauseBody) HasPaused added in v0.6.0

func (o *CanvasesUpdateNodePauseBody) HasPaused() bool

HasPaused returns a boolean if a field has been set.

func (CanvasesUpdateNodePauseBody) MarshalJSON added in v0.6.0

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

func (*CanvasesUpdateNodePauseBody) SetPaused added in v0.6.0

func (o *CanvasesUpdateNodePauseBody) SetPaused(v bool)

SetPaused gets a reference to the given bool and assigns it to the Paused field.

func (CanvasesUpdateNodePauseBody) ToMap added in v0.6.0

func (o CanvasesUpdateNodePauseBody) ToMap() (map[string]interface{}, error)

type CanvasesUpdateNodePauseResponse added in v0.6.0

type CanvasesUpdateNodePauseResponse struct {
	Node *ComponentsNode `json:"node,omitempty"`
}

CanvasesUpdateNodePauseResponse struct for CanvasesUpdateNodePauseResponse

func NewCanvasesUpdateNodePauseResponse added in v0.6.0

func NewCanvasesUpdateNodePauseResponse() *CanvasesUpdateNodePauseResponse

NewCanvasesUpdateNodePauseResponse instantiates a new CanvasesUpdateNodePauseResponse 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 NewCanvasesUpdateNodePauseResponseWithDefaults added in v0.6.0

func NewCanvasesUpdateNodePauseResponseWithDefaults() *CanvasesUpdateNodePauseResponse

NewCanvasesUpdateNodePauseResponseWithDefaults instantiates a new CanvasesUpdateNodePauseResponse 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 (*CanvasesUpdateNodePauseResponse) GetNode added in v0.6.0

GetNode returns the Node field value if set, zero value otherwise.

func (*CanvasesUpdateNodePauseResponse) GetNodeOk added in v0.6.0

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

func (*CanvasesUpdateNodePauseResponse) HasNode added in v0.6.0

HasNode returns a boolean if a field has been set.

func (CanvasesUpdateNodePauseResponse) MarshalJSON added in v0.6.0

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

func (*CanvasesUpdateNodePauseResponse) SetNode added in v0.6.0

SetNode gets a reference to the given ComponentsNode and assigns it to the Node field.

func (CanvasesUpdateNodePauseResponse) ToMap added in v0.6.0

func (o CanvasesUpdateNodePauseResponse) ToMap() (map[string]interface{}, error)

type ComponentAPIService

type ComponentAPIService service

ComponentAPIService ComponentAPI service

func (*ComponentAPIService) ComponentsDescribeComponent

func (a *ComponentAPIService) ComponentsDescribeComponent(ctx context.Context, name string) ApiComponentsDescribeComponentRequest

ComponentsDescribeComponent Describe component

Returns a component by its name

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

func (*ComponentAPIService) ComponentsDescribeComponentExecute

Execute executes the request

@return ComponentsDescribeComponentResponse

func (*ComponentAPIService) ComponentsListComponentActions

func (a *ComponentAPIService) ComponentsListComponentActions(ctx context.Context, name string) ApiComponentsListComponentActionsRequest

ComponentsListComponentActions List component actions

Returns available actions for a component

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

func (*ComponentAPIService) ComponentsListComponentActionsExecute

Execute executes the request

@return ComponentsListComponentActionsResponse

func (*ComponentAPIService) ComponentsListComponents

func (a *ComponentAPIService) ComponentsListComponents(ctx context.Context) ApiComponentsListComponentsRequest

ComponentsListComponents List components

Returns a list of all components

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

func (*ComponentAPIService) ComponentsListComponentsExecute

Execute executes the request

@return ComponentsListComponentsResponse

type ComponentsComponent

type ComponentsComponent struct {
	Name           *string                             `json:"name,omitempty"`
	Label          *string                             `json:"label,omitempty"`
	Description    *string                             `json:"description,omitempty"`
	Configuration  []ConfigurationField                `json:"configuration,omitempty"`
	OutputChannels []SuperplaneComponentsOutputChannel `json:"outputChannels,omitempty"`
	Icon           *string                             `json:"icon,omitempty"`
	Color          *string                             `json:"color,omitempty"`
	ExampleOutput  map[string]interface{}              `json:"exampleOutput,omitempty"`
}

ComponentsComponent struct for ComponentsComponent

func NewComponentsComponent

func NewComponentsComponent() *ComponentsComponent

NewComponentsComponent instantiates a new ComponentsComponent 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 NewComponentsComponentWithDefaults

func NewComponentsComponentWithDefaults() *ComponentsComponent

NewComponentsComponentWithDefaults instantiates a new ComponentsComponent 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 (*ComponentsComponent) GetColor

func (o *ComponentsComponent) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*ComponentsComponent) GetColorOk

func (o *ComponentsComponent) GetColorOk() (*string, bool)

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

func (*ComponentsComponent) GetConfiguration

func (o *ComponentsComponent) GetConfiguration() []ConfigurationField

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*ComponentsComponent) GetConfigurationOk

func (o *ComponentsComponent) GetConfigurationOk() ([]ConfigurationField, bool)

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

func (*ComponentsComponent) GetDescription

func (o *ComponentsComponent) GetDescription() string

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

func (*ComponentsComponent) GetDescriptionOk

func (o *ComponentsComponent) 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 (*ComponentsComponent) GetExampleOutput added in v0.0.45

func (o *ComponentsComponent) GetExampleOutput() map[string]interface{}

GetExampleOutput returns the ExampleOutput field value if set, zero value otherwise.

func (*ComponentsComponent) GetExampleOutputOk added in v0.0.45

func (o *ComponentsComponent) GetExampleOutputOk() (map[string]interface{}, bool)

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

func (*ComponentsComponent) GetIcon

func (o *ComponentsComponent) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*ComponentsComponent) GetIconOk

func (o *ComponentsComponent) GetIconOk() (*string, bool)

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

func (*ComponentsComponent) GetLabel

func (o *ComponentsComponent) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*ComponentsComponent) GetLabelOk

func (o *ComponentsComponent) GetLabelOk() (*string, bool)

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

func (*ComponentsComponent) GetName

func (o *ComponentsComponent) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ComponentsComponent) GetNameOk

func (o *ComponentsComponent) GetNameOk() (*string, bool)

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

func (*ComponentsComponent) GetOutputChannels

func (o *ComponentsComponent) GetOutputChannels() []SuperplaneComponentsOutputChannel

GetOutputChannels returns the OutputChannels field value if set, zero value otherwise.

func (*ComponentsComponent) GetOutputChannelsOk

func (o *ComponentsComponent) GetOutputChannelsOk() ([]SuperplaneComponentsOutputChannel, bool)

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

func (*ComponentsComponent) HasColor

func (o *ComponentsComponent) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*ComponentsComponent) HasConfiguration

func (o *ComponentsComponent) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ComponentsComponent) HasDescription

func (o *ComponentsComponent) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ComponentsComponent) HasExampleOutput added in v0.0.45

func (o *ComponentsComponent) HasExampleOutput() bool

HasExampleOutput returns a boolean if a field has been set.

func (*ComponentsComponent) HasIcon

func (o *ComponentsComponent) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*ComponentsComponent) HasLabel

func (o *ComponentsComponent) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ComponentsComponent) HasName

func (o *ComponentsComponent) HasName() bool

HasName returns a boolean if a field has been set.

func (*ComponentsComponent) HasOutputChannels

func (o *ComponentsComponent) HasOutputChannels() bool

HasOutputChannels returns a boolean if a field has been set.

func (ComponentsComponent) MarshalJSON

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

func (*ComponentsComponent) SetColor

func (o *ComponentsComponent) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*ComponentsComponent) SetConfiguration

func (o *ComponentsComponent) SetConfiguration(v []ConfigurationField)

SetConfiguration gets a reference to the given []ConfigurationField and assigns it to the Configuration field.

func (*ComponentsComponent) SetDescription

func (o *ComponentsComponent) SetDescription(v string)

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

func (*ComponentsComponent) SetExampleOutput added in v0.0.45

func (o *ComponentsComponent) SetExampleOutput(v map[string]interface{})

SetExampleOutput gets a reference to the given map[string]interface{} and assigns it to the ExampleOutput field.

func (*ComponentsComponent) SetIcon

func (o *ComponentsComponent) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*ComponentsComponent) SetLabel

func (o *ComponentsComponent) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*ComponentsComponent) SetName

func (o *ComponentsComponent) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ComponentsComponent) SetOutputChannels

func (o *ComponentsComponent) SetOutputChannels(v []SuperplaneComponentsOutputChannel)

SetOutputChannels gets a reference to the given []SuperplaneComponentsOutputChannel and assigns it to the OutputChannels field.

func (ComponentsComponent) ToMap

func (o ComponentsComponent) ToMap() (map[string]interface{}, error)

type ComponentsComponentAction

type ComponentsComponentAction struct {
	Name        *string              `json:"name,omitempty"`
	Description *string              `json:"description,omitempty"`
	Parameters  []ConfigurationField `json:"parameters,omitempty"`
}

ComponentsComponentAction struct for ComponentsComponentAction

func NewComponentsComponentAction

func NewComponentsComponentAction() *ComponentsComponentAction

NewComponentsComponentAction instantiates a new ComponentsComponentAction 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 NewComponentsComponentActionWithDefaults

func NewComponentsComponentActionWithDefaults() *ComponentsComponentAction

NewComponentsComponentActionWithDefaults instantiates a new ComponentsComponentAction 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 (*ComponentsComponentAction) GetDescription

func (o *ComponentsComponentAction) GetDescription() string

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

func (*ComponentsComponentAction) GetDescriptionOk

func (o *ComponentsComponentAction) 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 (*ComponentsComponentAction) GetName

func (o *ComponentsComponentAction) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ComponentsComponentAction) GetNameOk

func (o *ComponentsComponentAction) GetNameOk() (*string, bool)

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

func (*ComponentsComponentAction) GetParameters

func (o *ComponentsComponentAction) GetParameters() []ConfigurationField

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*ComponentsComponentAction) GetParametersOk

func (o *ComponentsComponentAction) GetParametersOk() ([]ConfigurationField, bool)

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

func (*ComponentsComponentAction) HasDescription

func (o *ComponentsComponentAction) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ComponentsComponentAction) HasName

func (o *ComponentsComponentAction) HasName() bool

HasName returns a boolean if a field has been set.

func (*ComponentsComponentAction) HasParameters

func (o *ComponentsComponentAction) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (ComponentsComponentAction) MarshalJSON

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

func (*ComponentsComponentAction) SetDescription

func (o *ComponentsComponentAction) SetDescription(v string)

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

func (*ComponentsComponentAction) SetName

func (o *ComponentsComponentAction) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ComponentsComponentAction) SetParameters

func (o *ComponentsComponentAction) SetParameters(v []ConfigurationField)

SetParameters gets a reference to the given []ConfigurationField and assigns it to the Parameters field.

func (ComponentsComponentAction) ToMap

func (o ComponentsComponentAction) ToMap() (map[string]interface{}, error)

type ComponentsDescribeComponentResponse

type ComponentsDescribeComponentResponse struct {
	Component *ComponentsComponent `json:"component,omitempty"`
}

ComponentsDescribeComponentResponse struct for ComponentsDescribeComponentResponse

func NewComponentsDescribeComponentResponse

func NewComponentsDescribeComponentResponse() *ComponentsDescribeComponentResponse

NewComponentsDescribeComponentResponse instantiates a new ComponentsDescribeComponentResponse 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 NewComponentsDescribeComponentResponseWithDefaults

func NewComponentsDescribeComponentResponseWithDefaults() *ComponentsDescribeComponentResponse

NewComponentsDescribeComponentResponseWithDefaults instantiates a new ComponentsDescribeComponentResponse 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 (*ComponentsDescribeComponentResponse) GetComponent

GetComponent returns the Component field value if set, zero value otherwise.

func (*ComponentsDescribeComponentResponse) GetComponentOk

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

func (*ComponentsDescribeComponentResponse) HasComponent

func (o *ComponentsDescribeComponentResponse) HasComponent() bool

HasComponent returns a boolean if a field has been set.

func (ComponentsDescribeComponentResponse) MarshalJSON

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

func (*ComponentsDescribeComponentResponse) SetComponent

SetComponent gets a reference to the given ComponentsComponent and assigns it to the Component field.

func (ComponentsDescribeComponentResponse) ToMap

func (o ComponentsDescribeComponentResponse) ToMap() (map[string]interface{}, error)

type ComponentsEdge

type ComponentsEdge struct {
	SourceId *string `json:"sourceId,omitempty"`
	TargetId *string `json:"targetId,omitempty"`
	Channel  *string `json:"channel,omitempty"`
}

ComponentsEdge struct for ComponentsEdge

func NewComponentsEdge

func NewComponentsEdge() *ComponentsEdge

NewComponentsEdge instantiates a new ComponentsEdge 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 NewComponentsEdgeWithDefaults

func NewComponentsEdgeWithDefaults() *ComponentsEdge

NewComponentsEdgeWithDefaults instantiates a new ComponentsEdge 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 (*ComponentsEdge) GetChannel

func (o *ComponentsEdge) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*ComponentsEdge) GetChannelOk

func (o *ComponentsEdge) GetChannelOk() (*string, bool)

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

func (*ComponentsEdge) GetSourceId

func (o *ComponentsEdge) GetSourceId() string

GetSourceId returns the SourceId field value if set, zero value otherwise.

func (*ComponentsEdge) GetSourceIdOk

func (o *ComponentsEdge) GetSourceIdOk() (*string, bool)

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

func (*ComponentsEdge) GetTargetId

func (o *ComponentsEdge) GetTargetId() string

GetTargetId returns the TargetId field value if set, zero value otherwise.

func (*ComponentsEdge) GetTargetIdOk

func (o *ComponentsEdge) GetTargetIdOk() (*string, bool)

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

func (*ComponentsEdge) HasChannel

func (o *ComponentsEdge) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*ComponentsEdge) HasSourceId

func (o *ComponentsEdge) HasSourceId() bool

HasSourceId returns a boolean if a field has been set.

func (*ComponentsEdge) HasTargetId

func (o *ComponentsEdge) HasTargetId() bool

HasTargetId returns a boolean if a field has been set.

func (ComponentsEdge) MarshalJSON

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

func (*ComponentsEdge) SetChannel

func (o *ComponentsEdge) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*ComponentsEdge) SetSourceId

func (o *ComponentsEdge) SetSourceId(v string)

SetSourceId gets a reference to the given string and assigns it to the SourceId field.

func (*ComponentsEdge) SetTargetId

func (o *ComponentsEdge) SetTargetId(v string)

SetTargetId gets a reference to the given string and assigns it to the TargetId field.

func (ComponentsEdge) ToMap

func (o ComponentsEdge) ToMap() (map[string]interface{}, error)

type ComponentsIntegrationRef added in v0.5.0

type ComponentsIntegrationRef struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

ComponentsIntegrationRef struct for ComponentsIntegrationRef

func NewComponentsIntegrationRef added in v0.5.0

func NewComponentsIntegrationRef() *ComponentsIntegrationRef

NewComponentsIntegrationRef instantiates a new ComponentsIntegrationRef 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 NewComponentsIntegrationRefWithDefaults added in v0.5.0

func NewComponentsIntegrationRefWithDefaults() *ComponentsIntegrationRef

NewComponentsIntegrationRefWithDefaults instantiates a new ComponentsIntegrationRef 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 (*ComponentsIntegrationRef) GetId added in v0.5.0

func (o *ComponentsIntegrationRef) GetId() string

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

func (*ComponentsIntegrationRef) GetIdOk added in v0.5.0

func (o *ComponentsIntegrationRef) 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 (*ComponentsIntegrationRef) GetName added in v0.5.0

func (o *ComponentsIntegrationRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ComponentsIntegrationRef) GetNameOk added in v0.5.0

func (o *ComponentsIntegrationRef) GetNameOk() (*string, bool)

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

func (*ComponentsIntegrationRef) HasId added in v0.5.0

func (o *ComponentsIntegrationRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*ComponentsIntegrationRef) HasName added in v0.5.0

func (o *ComponentsIntegrationRef) HasName() bool

HasName returns a boolean if a field has been set.

func (ComponentsIntegrationRef) MarshalJSON added in v0.5.0

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

func (*ComponentsIntegrationRef) SetId added in v0.5.0

func (o *ComponentsIntegrationRef) SetId(v string)

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

func (*ComponentsIntegrationRef) SetName added in v0.5.0

func (o *ComponentsIntegrationRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ComponentsIntegrationRef) ToMap added in v0.5.0

func (o ComponentsIntegrationRef) ToMap() (map[string]interface{}, error)

type ComponentsListComponentActionsResponse

type ComponentsListComponentActionsResponse struct {
	Actions []ComponentsComponentAction `json:"actions,omitempty"`
}

ComponentsListComponentActionsResponse struct for ComponentsListComponentActionsResponse

func NewComponentsListComponentActionsResponse

func NewComponentsListComponentActionsResponse() *ComponentsListComponentActionsResponse

NewComponentsListComponentActionsResponse instantiates a new ComponentsListComponentActionsResponse 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 NewComponentsListComponentActionsResponseWithDefaults

func NewComponentsListComponentActionsResponseWithDefaults() *ComponentsListComponentActionsResponse

NewComponentsListComponentActionsResponseWithDefaults instantiates a new ComponentsListComponentActionsResponse 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 (*ComponentsListComponentActionsResponse) GetActions

GetActions returns the Actions field value if set, zero value otherwise.

func (*ComponentsListComponentActionsResponse) GetActionsOk

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

func (*ComponentsListComponentActionsResponse) HasActions

HasActions returns a boolean if a field has been set.

func (ComponentsListComponentActionsResponse) MarshalJSON

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

func (*ComponentsListComponentActionsResponse) SetActions

SetActions gets a reference to the given []ComponentsComponentAction and assigns it to the Actions field.

func (ComponentsListComponentActionsResponse) ToMap

func (o ComponentsListComponentActionsResponse) ToMap() (map[string]interface{}, error)

type ComponentsListComponentsResponse

type ComponentsListComponentsResponse struct {
	Components []ComponentsComponent `json:"components,omitempty"`
}

ComponentsListComponentsResponse struct for ComponentsListComponentsResponse

func NewComponentsListComponentsResponse

func NewComponentsListComponentsResponse() *ComponentsListComponentsResponse

NewComponentsListComponentsResponse instantiates a new ComponentsListComponentsResponse 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 NewComponentsListComponentsResponseWithDefaults

func NewComponentsListComponentsResponseWithDefaults() *ComponentsListComponentsResponse

NewComponentsListComponentsResponseWithDefaults instantiates a new ComponentsListComponentsResponse 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 (*ComponentsListComponentsResponse) GetComponents

GetComponents returns the Components field value if set, zero value otherwise.

func (*ComponentsListComponentsResponse) GetComponentsOk

func (o *ComponentsListComponentsResponse) GetComponentsOk() ([]ComponentsComponent, bool)

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

func (*ComponentsListComponentsResponse) HasComponents

func (o *ComponentsListComponentsResponse) HasComponents() bool

HasComponents returns a boolean if a field has been set.

func (ComponentsListComponentsResponse) MarshalJSON

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

func (*ComponentsListComponentsResponse) SetComponents

SetComponents gets a reference to the given []ComponentsComponent and assigns it to the Components field.

func (ComponentsListComponentsResponse) ToMap

func (o ComponentsListComponentsResponse) ToMap() (map[string]interface{}, error)

type ComponentsNode

type ComponentsNode struct {
	Id             *string                   `json:"id,omitempty"`
	Name           *string                   `json:"name,omitempty"`
	Type           *ComponentsNodeType       `json:"type,omitempty"`
	Configuration  map[string]interface{}    `json:"configuration,omitempty"`
	Metadata       map[string]interface{}    `json:"metadata,omitempty"`
	Position       *ComponentsPosition       `json:"position,omitempty"`
	Component      *NodeComponentRef         `json:"component,omitempty"`
	Blueprint      *NodeBlueprintRef         `json:"blueprint,omitempty"`
	Trigger        *NodeTriggerRef           `json:"trigger,omitempty"`
	Widget         *NodeWidgetRef            `json:"widget,omitempty"`
	IsCollapsed    *bool                     `json:"isCollapsed,omitempty"`
	Integration    *ComponentsIntegrationRef `json:"integration,omitempty"`
	ErrorMessage   *string                   `json:"errorMessage,omitempty"`
	WarningMessage *string                   `json:"warningMessage,omitempty"`
	Paused         *bool                     `json:"paused,omitempty"`
}

ComponentsNode struct for ComponentsNode

func NewComponentsNode

func NewComponentsNode() *ComponentsNode

NewComponentsNode instantiates a new ComponentsNode 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 NewComponentsNodeWithDefaults

func NewComponentsNodeWithDefaults() *ComponentsNode

NewComponentsNodeWithDefaults instantiates a new ComponentsNode 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 (*ComponentsNode) GetBlueprint

func (o *ComponentsNode) GetBlueprint() NodeBlueprintRef

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*ComponentsNode) GetBlueprintOk

func (o *ComponentsNode) GetBlueprintOk() (*NodeBlueprintRef, bool)

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

func (*ComponentsNode) GetComponent

func (o *ComponentsNode) GetComponent() NodeComponentRef

GetComponent returns the Component field value if set, zero value otherwise.

func (*ComponentsNode) GetComponentOk

func (o *ComponentsNode) GetComponentOk() (*NodeComponentRef, bool)

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

func (*ComponentsNode) GetConfiguration

func (o *ComponentsNode) GetConfiguration() map[string]interface{}

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*ComponentsNode) GetConfigurationOk

func (o *ComponentsNode) GetConfigurationOk() (map[string]interface{}, bool)

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

func (*ComponentsNode) GetErrorMessage

func (o *ComponentsNode) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise.

func (*ComponentsNode) GetErrorMessageOk

func (o *ComponentsNode) GetErrorMessageOk() (*string, bool)

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

func (*ComponentsNode) GetId

func (o *ComponentsNode) GetId() string

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

func (*ComponentsNode) GetIdOk

func (o *ComponentsNode) 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 (*ComponentsNode) GetIntegration added in v0.5.0

func (o *ComponentsNode) GetIntegration() ComponentsIntegrationRef

GetIntegration returns the Integration field value if set, zero value otherwise.

func (*ComponentsNode) GetIntegrationOk added in v0.5.0

func (o *ComponentsNode) GetIntegrationOk() (*ComponentsIntegrationRef, bool)

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

func (*ComponentsNode) GetIsCollapsed

func (o *ComponentsNode) GetIsCollapsed() bool

GetIsCollapsed returns the IsCollapsed field value if set, zero value otherwise.

func (*ComponentsNode) GetIsCollapsedOk

func (o *ComponentsNode) GetIsCollapsedOk() (*bool, bool)

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

func (*ComponentsNode) GetMetadata

func (o *ComponentsNode) GetMetadata() map[string]interface{}

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

func (*ComponentsNode) GetMetadataOk

func (o *ComponentsNode) GetMetadataOk() (map[string]interface{}, 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 (*ComponentsNode) GetName

func (o *ComponentsNode) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ComponentsNode) GetNameOk

func (o *ComponentsNode) GetNameOk() (*string, bool)

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

func (*ComponentsNode) GetPaused added in v0.6.0

func (o *ComponentsNode) GetPaused() bool

GetPaused returns the Paused field value if set, zero value otherwise.

func (*ComponentsNode) GetPausedOk added in v0.6.0

func (o *ComponentsNode) GetPausedOk() (*bool, bool)

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

func (*ComponentsNode) GetPosition

func (o *ComponentsNode) GetPosition() ComponentsPosition

GetPosition returns the Position field value if set, zero value otherwise.

func (*ComponentsNode) GetPositionOk

func (o *ComponentsNode) GetPositionOk() (*ComponentsPosition, bool)

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

func (*ComponentsNode) GetTrigger

func (o *ComponentsNode) GetTrigger() NodeTriggerRef

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*ComponentsNode) GetTriggerOk

func (o *ComponentsNode) GetTriggerOk() (*NodeTriggerRef, bool)

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

func (*ComponentsNode) GetType

func (o *ComponentsNode) GetType() ComponentsNodeType

GetType returns the Type field value if set, zero value otherwise.

func (*ComponentsNode) GetTypeOk

func (o *ComponentsNode) GetTypeOk() (*ComponentsNodeType, bool)

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

func (*ComponentsNode) GetWarningMessage added in v0.1.6

func (o *ComponentsNode) GetWarningMessage() string

GetWarningMessage returns the WarningMessage field value if set, zero value otherwise.

func (*ComponentsNode) GetWarningMessageOk added in v0.1.6

func (o *ComponentsNode) GetWarningMessageOk() (*string, bool)

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

func (*ComponentsNode) GetWidget added in v0.0.18

func (o *ComponentsNode) GetWidget() NodeWidgetRef

GetWidget returns the Widget field value if set, zero value otherwise.

func (*ComponentsNode) GetWidgetOk added in v0.0.18

func (o *ComponentsNode) GetWidgetOk() (*NodeWidgetRef, bool)

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

func (*ComponentsNode) HasBlueprint

func (o *ComponentsNode) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (*ComponentsNode) HasComponent

func (o *ComponentsNode) HasComponent() bool

HasComponent returns a boolean if a field has been set.

func (*ComponentsNode) HasConfiguration

func (o *ComponentsNode) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ComponentsNode) HasErrorMessage

func (o *ComponentsNode) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*ComponentsNode) HasId

func (o *ComponentsNode) HasId() bool

HasId returns a boolean if a field has been set.

func (*ComponentsNode) HasIntegration added in v0.5.0

func (o *ComponentsNode) HasIntegration() bool

HasIntegration returns a boolean if a field has been set.

func (*ComponentsNode) HasIsCollapsed

func (o *ComponentsNode) HasIsCollapsed() bool

HasIsCollapsed returns a boolean if a field has been set.

func (*ComponentsNode) HasMetadata

func (o *ComponentsNode) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ComponentsNode) HasName

func (o *ComponentsNode) HasName() bool

HasName returns a boolean if a field has been set.

func (*ComponentsNode) HasPaused added in v0.6.0

func (o *ComponentsNode) HasPaused() bool

HasPaused returns a boolean if a field has been set.

func (*ComponentsNode) HasPosition

func (o *ComponentsNode) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*ComponentsNode) HasTrigger

func (o *ComponentsNode) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (*ComponentsNode) HasType

func (o *ComponentsNode) HasType() bool

HasType returns a boolean if a field has been set.

func (*ComponentsNode) HasWarningMessage added in v0.1.6

func (o *ComponentsNode) HasWarningMessage() bool

HasWarningMessage returns a boolean if a field has been set.

func (*ComponentsNode) HasWidget added in v0.0.18

func (o *ComponentsNode) HasWidget() bool

HasWidget returns a boolean if a field has been set.

func (ComponentsNode) MarshalJSON

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

func (*ComponentsNode) SetBlueprint

func (o *ComponentsNode) SetBlueprint(v NodeBlueprintRef)

SetBlueprint gets a reference to the given NodeBlueprintRef and assigns it to the Blueprint field.

func (*ComponentsNode) SetComponent

func (o *ComponentsNode) SetComponent(v NodeComponentRef)

SetComponent gets a reference to the given NodeComponentRef and assigns it to the Component field.

func (*ComponentsNode) SetConfiguration

func (o *ComponentsNode) SetConfiguration(v map[string]interface{})

SetConfiguration gets a reference to the given map[string]interface{} and assigns it to the Configuration field.

func (*ComponentsNode) SetErrorMessage

func (o *ComponentsNode) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given string and assigns it to the ErrorMessage field.

func (*ComponentsNode) SetId

func (o *ComponentsNode) SetId(v string)

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

func (*ComponentsNode) SetIntegration added in v0.5.0

func (o *ComponentsNode) SetIntegration(v ComponentsIntegrationRef)

SetIntegration gets a reference to the given ComponentsIntegrationRef and assigns it to the Integration field.

func (*ComponentsNode) SetIsCollapsed

func (o *ComponentsNode) SetIsCollapsed(v bool)

SetIsCollapsed gets a reference to the given bool and assigns it to the IsCollapsed field.

func (*ComponentsNode) SetMetadata

func (o *ComponentsNode) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*ComponentsNode) SetName

func (o *ComponentsNode) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ComponentsNode) SetPaused added in v0.6.0

func (o *ComponentsNode) SetPaused(v bool)

SetPaused gets a reference to the given bool and assigns it to the Paused field.

func (*ComponentsNode) SetPosition

func (o *ComponentsNode) SetPosition(v ComponentsPosition)

SetPosition gets a reference to the given ComponentsPosition and assigns it to the Position field.

func (*ComponentsNode) SetTrigger

func (o *ComponentsNode) SetTrigger(v NodeTriggerRef)

SetTrigger gets a reference to the given NodeTriggerRef and assigns it to the Trigger field.

func (*ComponentsNode) SetType

func (o *ComponentsNode) SetType(v ComponentsNodeType)

SetType gets a reference to the given ComponentsNodeType and assigns it to the Type field.

func (*ComponentsNode) SetWarningMessage added in v0.1.6

func (o *ComponentsNode) SetWarningMessage(v string)

SetWarningMessage gets a reference to the given string and assigns it to the WarningMessage field.

func (*ComponentsNode) SetWidget added in v0.0.18

func (o *ComponentsNode) SetWidget(v NodeWidgetRef)

SetWidget gets a reference to the given NodeWidgetRef and assigns it to the Widget field.

func (ComponentsNode) ToMap

func (o ComponentsNode) ToMap() (map[string]interface{}, error)

type ComponentsNodeType

type ComponentsNodeType string

ComponentsNodeType the model 'ComponentsNodeType'

const (
	COMPONENTSNODETYPE_TYPE_COMPONENT ComponentsNodeType = "TYPE_COMPONENT"
	COMPONENTSNODETYPE_TYPE_BLUEPRINT ComponentsNodeType = "TYPE_BLUEPRINT"
	COMPONENTSNODETYPE_TYPE_TRIGGER   ComponentsNodeType = "TYPE_TRIGGER"
	COMPONENTSNODETYPE_TYPE_WIDGET    ComponentsNodeType = "TYPE_WIDGET"
)

List of ComponentsNodeType

func NewComponentsNodeTypeFromValue

func NewComponentsNodeTypeFromValue(v string) (*ComponentsNodeType, error)

NewComponentsNodeTypeFromValue returns a pointer to a valid ComponentsNodeType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ComponentsNodeType) IsValid

func (v ComponentsNodeType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ComponentsNodeType) Ptr

Ptr returns reference to ComponentsNodeType value

func (*ComponentsNodeType) UnmarshalJSON

func (v *ComponentsNodeType) UnmarshalJSON(src []byte) error

type ComponentsPosition

type ComponentsPosition struct {
	X *int32 `json:"x,omitempty"`
	Y *int32 `json:"y,omitempty"`
}

ComponentsPosition struct for ComponentsPosition

func NewComponentsPosition

func NewComponentsPosition() *ComponentsPosition

NewComponentsPosition instantiates a new ComponentsPosition 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 NewComponentsPositionWithDefaults

func NewComponentsPositionWithDefaults() *ComponentsPosition

NewComponentsPositionWithDefaults instantiates a new ComponentsPosition 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 (*ComponentsPosition) GetX

func (o *ComponentsPosition) GetX() int32

GetX returns the X field value if set, zero value otherwise.

func (*ComponentsPosition) GetXOk

func (o *ComponentsPosition) GetXOk() (*int32, bool)

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

func (*ComponentsPosition) GetY

func (o *ComponentsPosition) GetY() int32

GetY returns the Y field value if set, zero value otherwise.

func (*ComponentsPosition) GetYOk

func (o *ComponentsPosition) GetYOk() (*int32, bool)

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

func (*ComponentsPosition) HasX

func (o *ComponentsPosition) HasX() bool

HasX returns a boolean if a field has been set.

func (*ComponentsPosition) HasY

func (o *ComponentsPosition) HasY() bool

HasY returns a boolean if a field has been set.

func (ComponentsPosition) MarshalJSON

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

func (*ComponentsPosition) SetX

func (o *ComponentsPosition) SetX(v int32)

SetX gets a reference to the given int32 and assigns it to the X field.

func (*ComponentsPosition) SetY

func (o *ComponentsPosition) SetY(v int32)

SetY gets a reference to the given int32 and assigns it to the Y field.

func (ComponentsPosition) ToMap

func (o ComponentsPosition) ToMap() (map[string]interface{}, error)

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 ConfigurationAnyPredicateListTypeOptions

type ConfigurationAnyPredicateListTypeOptions struct {
	Operators []ConfigurationSelectOption `json:"operators,omitempty"`
}

ConfigurationAnyPredicateListTypeOptions struct for ConfigurationAnyPredicateListTypeOptions

func NewConfigurationAnyPredicateListTypeOptions

func NewConfigurationAnyPredicateListTypeOptions() *ConfigurationAnyPredicateListTypeOptions

NewConfigurationAnyPredicateListTypeOptions instantiates a new ConfigurationAnyPredicateListTypeOptions 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 NewConfigurationAnyPredicateListTypeOptionsWithDefaults

func NewConfigurationAnyPredicateListTypeOptionsWithDefaults() *ConfigurationAnyPredicateListTypeOptions

NewConfigurationAnyPredicateListTypeOptionsWithDefaults instantiates a new ConfigurationAnyPredicateListTypeOptions 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 (*ConfigurationAnyPredicateListTypeOptions) GetOperators

GetOperators returns the Operators field value if set, zero value otherwise.

func (*ConfigurationAnyPredicateListTypeOptions) GetOperatorsOk

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

func (*ConfigurationAnyPredicateListTypeOptions) HasOperators

HasOperators returns a boolean if a field has been set.

func (ConfigurationAnyPredicateListTypeOptions) MarshalJSON

func (*ConfigurationAnyPredicateListTypeOptions) SetOperators

SetOperators gets a reference to the given []ConfigurationSelectOption and assigns it to the Operators field.

func (ConfigurationAnyPredicateListTypeOptions) ToMap

func (o ConfigurationAnyPredicateListTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationDateTimeTypeOptions

type ConfigurationDateTimeTypeOptions struct {
	Format *string `json:"format,omitempty"`
}

ConfigurationDateTimeTypeOptions struct for ConfigurationDateTimeTypeOptions

func NewConfigurationDateTimeTypeOptions

func NewConfigurationDateTimeTypeOptions() *ConfigurationDateTimeTypeOptions

NewConfigurationDateTimeTypeOptions instantiates a new ConfigurationDateTimeTypeOptions 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 NewConfigurationDateTimeTypeOptionsWithDefaults

func NewConfigurationDateTimeTypeOptionsWithDefaults() *ConfigurationDateTimeTypeOptions

NewConfigurationDateTimeTypeOptionsWithDefaults instantiates a new ConfigurationDateTimeTypeOptions 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 (*ConfigurationDateTimeTypeOptions) GetFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*ConfigurationDateTimeTypeOptions) GetFormatOk

func (o *ConfigurationDateTimeTypeOptions) GetFormatOk() (*string, bool)

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

func (*ConfigurationDateTimeTypeOptions) HasFormat

func (o *ConfigurationDateTimeTypeOptions) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (ConfigurationDateTimeTypeOptions) MarshalJSON

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

func (*ConfigurationDateTimeTypeOptions) SetFormat

func (o *ConfigurationDateTimeTypeOptions) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (ConfigurationDateTimeTypeOptions) ToMap

func (o ConfigurationDateTimeTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationDateTypeOptions

type ConfigurationDateTypeOptions struct {
	Format *string `json:"format,omitempty"`
}

ConfigurationDateTypeOptions struct for ConfigurationDateTypeOptions

func NewConfigurationDateTypeOptions

func NewConfigurationDateTypeOptions() *ConfigurationDateTypeOptions

NewConfigurationDateTypeOptions instantiates a new ConfigurationDateTypeOptions 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 NewConfigurationDateTypeOptionsWithDefaults

func NewConfigurationDateTypeOptionsWithDefaults() *ConfigurationDateTypeOptions

NewConfigurationDateTypeOptionsWithDefaults instantiates a new ConfigurationDateTypeOptions 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 (*ConfigurationDateTypeOptions) GetFormat

func (o *ConfigurationDateTypeOptions) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*ConfigurationDateTypeOptions) GetFormatOk

func (o *ConfigurationDateTypeOptions) GetFormatOk() (*string, bool)

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

func (*ConfigurationDateTypeOptions) HasFormat

func (o *ConfigurationDateTypeOptions) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (ConfigurationDateTypeOptions) MarshalJSON

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

func (*ConfigurationDateTypeOptions) SetFormat

func (o *ConfigurationDateTypeOptions) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (ConfigurationDateTypeOptions) ToMap

func (o ConfigurationDateTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationExpressionTypeOptions added in v0.0.43

type ConfigurationExpressionTypeOptions struct {
	MinLength *int32 `json:"minLength,omitempty"`
	MaxLength *int32 `json:"maxLength,omitempty"`
}

ConfigurationExpressionTypeOptions struct for ConfigurationExpressionTypeOptions

func NewConfigurationExpressionTypeOptions added in v0.0.43

func NewConfigurationExpressionTypeOptions() *ConfigurationExpressionTypeOptions

NewConfigurationExpressionTypeOptions instantiates a new ConfigurationExpressionTypeOptions 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 NewConfigurationExpressionTypeOptionsWithDefaults added in v0.0.43

func NewConfigurationExpressionTypeOptionsWithDefaults() *ConfigurationExpressionTypeOptions

NewConfigurationExpressionTypeOptionsWithDefaults instantiates a new ConfigurationExpressionTypeOptions 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 (*ConfigurationExpressionTypeOptions) GetMaxLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) GetMaxLength() int32

GetMaxLength returns the MaxLength field value if set, zero value otherwise.

func (*ConfigurationExpressionTypeOptions) GetMaxLengthOk added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) GetMaxLengthOk() (*int32, bool)

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

func (*ConfigurationExpressionTypeOptions) GetMinLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) GetMinLength() int32

GetMinLength returns the MinLength field value if set, zero value otherwise.

func (*ConfigurationExpressionTypeOptions) GetMinLengthOk added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) GetMinLengthOk() (*int32, bool)

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

func (*ConfigurationExpressionTypeOptions) HasMaxLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) HasMaxLength() bool

HasMaxLength returns a boolean if a field has been set.

func (*ConfigurationExpressionTypeOptions) HasMinLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) HasMinLength() bool

HasMinLength returns a boolean if a field has been set.

func (ConfigurationExpressionTypeOptions) MarshalJSON added in v0.0.43

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

func (*ConfigurationExpressionTypeOptions) SetMaxLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) SetMaxLength(v int32)

SetMaxLength gets a reference to the given int32 and assigns it to the MaxLength field.

func (*ConfigurationExpressionTypeOptions) SetMinLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) SetMinLength(v int32)

SetMinLength gets a reference to the given int32 and assigns it to the MinLength field.

func (ConfigurationExpressionTypeOptions) ToMap added in v0.0.43

func (o ConfigurationExpressionTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationField

type ConfigurationField struct {
	Name                 *string                            `json:"name,omitempty"`
	Type                 *string                            `json:"type,omitempty"`
	Description          *string                            `json:"description,omitempty"`
	Required             *bool                              `json:"required,omitempty"`
	DefaultValue         *string                            `json:"defaultValue,omitempty"`
	Label                *string                            `json:"label,omitempty"`
	VisibilityConditions []ConfigurationVisibilityCondition `json:"visibilityConditions,omitempty"`
	TypeOptions          *ConfigurationTypeOptions          `json:"typeOptions,omitempty"`
	RequiredConditions   []ConfigurationRequiredCondition   `json:"requiredConditions,omitempty"`
	ValidationRules      []ConfigurationValidationRule      `json:"validationRules,omitempty"`
	Placeholder          *string                            `json:"placeholder,omitempty"`
	Sensitive            *bool                              `json:"sensitive,omitempty"`
	Togglable            *bool                              `json:"togglable,omitempty"`
	DisallowExpression   *bool                              `json:"disallowExpression,omitempty"`
}

ConfigurationField struct for ConfigurationField

func NewConfigurationField

func NewConfigurationField() *ConfigurationField

NewConfigurationField instantiates a new ConfigurationField 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 NewConfigurationFieldWithDefaults

func NewConfigurationFieldWithDefaults() *ConfigurationField

NewConfigurationFieldWithDefaults instantiates a new ConfigurationField 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 (*ConfigurationField) GetDefaultValue

func (o *ConfigurationField) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ConfigurationField) GetDefaultValueOk

func (o *ConfigurationField) GetDefaultValueOk() (*string, bool)

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

func (*ConfigurationField) GetDescription

func (o *ConfigurationField) GetDescription() string

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

func (*ConfigurationField) GetDescriptionOk

func (o *ConfigurationField) 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 (*ConfigurationField) GetDisallowExpression added in v0.0.45

func (o *ConfigurationField) GetDisallowExpression() bool

GetDisallowExpression returns the DisallowExpression field value if set, zero value otherwise.

func (*ConfigurationField) GetDisallowExpressionOk added in v0.0.45

func (o *ConfigurationField) GetDisallowExpressionOk() (*bool, bool)

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

func (*ConfigurationField) GetLabel

func (o *ConfigurationField) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*ConfigurationField) GetLabelOk

func (o *ConfigurationField) GetLabelOk() (*string, bool)

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

func (*ConfigurationField) GetName

func (o *ConfigurationField) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ConfigurationField) GetNameOk

func (o *ConfigurationField) GetNameOk() (*string, bool)

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

func (*ConfigurationField) GetPlaceholder

func (o *ConfigurationField) GetPlaceholder() string

GetPlaceholder returns the Placeholder field value if set, zero value otherwise.

func (*ConfigurationField) GetPlaceholderOk

func (o *ConfigurationField) GetPlaceholderOk() (*string, bool)

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

func (*ConfigurationField) GetRequired

func (o *ConfigurationField) GetRequired() bool

GetRequired returns the Required field value if set, zero value otherwise.

func (*ConfigurationField) GetRequiredConditions

func (o *ConfigurationField) GetRequiredConditions() []ConfigurationRequiredCondition

GetRequiredConditions returns the RequiredConditions field value if set, zero value otherwise.

func (*ConfigurationField) GetRequiredConditionsOk

func (o *ConfigurationField) GetRequiredConditionsOk() ([]ConfigurationRequiredCondition, bool)

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

func (*ConfigurationField) GetRequiredOk

func (o *ConfigurationField) GetRequiredOk() (*bool, bool)

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

func (*ConfigurationField) GetSensitive

func (o *ConfigurationField) GetSensitive() bool

GetSensitive returns the Sensitive field value if set, zero value otherwise.

func (*ConfigurationField) GetSensitiveOk

func (o *ConfigurationField) GetSensitiveOk() (*bool, bool)

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

func (*ConfigurationField) GetTogglable added in v0.0.18

func (o *ConfigurationField) GetTogglable() bool

GetTogglable returns the Togglable field value if set, zero value otherwise.

func (*ConfigurationField) GetTogglableOk added in v0.0.18

func (o *ConfigurationField) GetTogglableOk() (*bool, bool)

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

func (*ConfigurationField) GetType

func (o *ConfigurationField) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ConfigurationField) GetTypeOk

func (o *ConfigurationField) GetTypeOk() (*string, bool)

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

func (*ConfigurationField) GetTypeOptions

func (o *ConfigurationField) GetTypeOptions() ConfigurationTypeOptions

GetTypeOptions returns the TypeOptions field value if set, zero value otherwise.

func (*ConfigurationField) GetTypeOptionsOk

func (o *ConfigurationField) GetTypeOptionsOk() (*ConfigurationTypeOptions, bool)

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

func (*ConfigurationField) GetValidationRules

func (o *ConfigurationField) GetValidationRules() []ConfigurationValidationRule

GetValidationRules returns the ValidationRules field value if set, zero value otherwise.

func (*ConfigurationField) GetValidationRulesOk

func (o *ConfigurationField) GetValidationRulesOk() ([]ConfigurationValidationRule, bool)

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

func (*ConfigurationField) GetVisibilityConditions

func (o *ConfigurationField) GetVisibilityConditions() []ConfigurationVisibilityCondition

GetVisibilityConditions returns the VisibilityConditions field value if set, zero value otherwise.

func (*ConfigurationField) GetVisibilityConditionsOk

func (o *ConfigurationField) GetVisibilityConditionsOk() ([]ConfigurationVisibilityCondition, bool)

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

func (*ConfigurationField) HasDefaultValue

func (o *ConfigurationField) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*ConfigurationField) HasDescription

func (o *ConfigurationField) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ConfigurationField) HasDisallowExpression added in v0.0.45

func (o *ConfigurationField) HasDisallowExpression() bool

HasDisallowExpression returns a boolean if a field has been set.

func (*ConfigurationField) HasLabel

func (o *ConfigurationField) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ConfigurationField) HasName

func (o *ConfigurationField) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConfigurationField) HasPlaceholder

func (o *ConfigurationField) HasPlaceholder() bool

HasPlaceholder returns a boolean if a field has been set.

func (*ConfigurationField) HasRequired

func (o *ConfigurationField) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (*ConfigurationField) HasRequiredConditions

func (o *ConfigurationField) HasRequiredConditions() bool

HasRequiredConditions returns a boolean if a field has been set.

func (*ConfigurationField) HasSensitive

func (o *ConfigurationField) HasSensitive() bool

HasSensitive returns a boolean if a field has been set.

func (*ConfigurationField) HasTogglable added in v0.0.18

func (o *ConfigurationField) HasTogglable() bool

HasTogglable returns a boolean if a field has been set.

func (*ConfigurationField) HasType

func (o *ConfigurationField) HasType() bool

HasType returns a boolean if a field has been set.

func (*ConfigurationField) HasTypeOptions

func (o *ConfigurationField) HasTypeOptions() bool

HasTypeOptions returns a boolean if a field has been set.

func (*ConfigurationField) HasValidationRules

func (o *ConfigurationField) HasValidationRules() bool

HasValidationRules returns a boolean if a field has been set.

func (*ConfigurationField) HasVisibilityConditions

func (o *ConfigurationField) HasVisibilityConditions() bool

HasVisibilityConditions returns a boolean if a field has been set.

func (ConfigurationField) MarshalJSON

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

func (*ConfigurationField) SetDefaultValue

func (o *ConfigurationField) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*ConfigurationField) SetDescription

func (o *ConfigurationField) SetDescription(v string)

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

func (*ConfigurationField) SetDisallowExpression added in v0.0.45

func (o *ConfigurationField) SetDisallowExpression(v bool)

SetDisallowExpression gets a reference to the given bool and assigns it to the DisallowExpression field.

func (*ConfigurationField) SetLabel

func (o *ConfigurationField) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*ConfigurationField) SetName

func (o *ConfigurationField) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ConfigurationField) SetPlaceholder

func (o *ConfigurationField) SetPlaceholder(v string)

SetPlaceholder gets a reference to the given string and assigns it to the Placeholder field.

func (*ConfigurationField) SetRequired

func (o *ConfigurationField) SetRequired(v bool)

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (*ConfigurationField) SetRequiredConditions

func (o *ConfigurationField) SetRequiredConditions(v []ConfigurationRequiredCondition)

SetRequiredConditions gets a reference to the given []ConfigurationRequiredCondition and assigns it to the RequiredConditions field.

func (*ConfigurationField) SetSensitive

func (o *ConfigurationField) SetSensitive(v bool)

SetSensitive gets a reference to the given bool and assigns it to the Sensitive field.

func (*ConfigurationField) SetTogglable added in v0.0.18

func (o *ConfigurationField) SetTogglable(v bool)

SetTogglable gets a reference to the given bool and assigns it to the Togglable field.

func (*ConfigurationField) SetType

func (o *ConfigurationField) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ConfigurationField) SetTypeOptions

func (o *ConfigurationField) SetTypeOptions(v ConfigurationTypeOptions)

SetTypeOptions gets a reference to the given ConfigurationTypeOptions and assigns it to the TypeOptions field.

func (*ConfigurationField) SetValidationRules

func (o *ConfigurationField) SetValidationRules(v []ConfigurationValidationRule)

SetValidationRules gets a reference to the given []ConfigurationValidationRule and assigns it to the ValidationRules field.

func (*ConfigurationField) SetVisibilityConditions

func (o *ConfigurationField) SetVisibilityConditions(v []ConfigurationVisibilityCondition)

SetVisibilityConditions gets a reference to the given []ConfigurationVisibilityCondition and assigns it to the VisibilityConditions field.

func (ConfigurationField) ToMap

func (o ConfigurationField) ToMap() (map[string]interface{}, error)

type ConfigurationListItemDefinition

type ConfigurationListItemDefinition struct {
	Type   *string              `json:"type,omitempty"`
	Schema []ConfigurationField `json:"schema,omitempty"`
}

ConfigurationListItemDefinition struct for ConfigurationListItemDefinition

func NewConfigurationListItemDefinition

func NewConfigurationListItemDefinition() *ConfigurationListItemDefinition

NewConfigurationListItemDefinition instantiates a new ConfigurationListItemDefinition 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 NewConfigurationListItemDefinitionWithDefaults

func NewConfigurationListItemDefinitionWithDefaults() *ConfigurationListItemDefinition

NewConfigurationListItemDefinitionWithDefaults instantiates a new ConfigurationListItemDefinition 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 (*ConfigurationListItemDefinition) GetSchema

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

func (*ConfigurationListItemDefinition) GetSchemaOk

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 (*ConfigurationListItemDefinition) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*ConfigurationListItemDefinition) GetTypeOk

func (o *ConfigurationListItemDefinition) GetTypeOk() (*string, bool)

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

func (*ConfigurationListItemDefinition) HasSchema

func (o *ConfigurationListItemDefinition) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*ConfigurationListItemDefinition) HasType

HasType returns a boolean if a field has been set.

func (ConfigurationListItemDefinition) MarshalJSON

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

func (*ConfigurationListItemDefinition) SetSchema

SetSchema gets a reference to the given []ConfigurationField and assigns it to the Schema field.

func (*ConfigurationListItemDefinition) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (ConfigurationListItemDefinition) ToMap

func (o ConfigurationListItemDefinition) ToMap() (map[string]interface{}, error)

type ConfigurationListTypeOptions

type ConfigurationListTypeOptions struct {
	ItemDefinition *ConfigurationListItemDefinition `json:"itemDefinition,omitempty"`
	ItemLabel      *string                          `json:"itemLabel,omitempty"`
}

ConfigurationListTypeOptions struct for ConfigurationListTypeOptions

func NewConfigurationListTypeOptions

func NewConfigurationListTypeOptions() *ConfigurationListTypeOptions

NewConfigurationListTypeOptions instantiates a new ConfigurationListTypeOptions 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 NewConfigurationListTypeOptionsWithDefaults

func NewConfigurationListTypeOptionsWithDefaults() *ConfigurationListTypeOptions

NewConfigurationListTypeOptionsWithDefaults instantiates a new ConfigurationListTypeOptions 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 (*ConfigurationListTypeOptions) GetItemDefinition

GetItemDefinition returns the ItemDefinition field value if set, zero value otherwise.

func (*ConfigurationListTypeOptions) GetItemDefinitionOk

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

func (*ConfigurationListTypeOptions) GetItemLabel

func (o *ConfigurationListTypeOptions) GetItemLabel() string

GetItemLabel returns the ItemLabel field value if set, zero value otherwise.

func (*ConfigurationListTypeOptions) GetItemLabelOk

func (o *ConfigurationListTypeOptions) GetItemLabelOk() (*string, bool)

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

func (*ConfigurationListTypeOptions) HasItemDefinition

func (o *ConfigurationListTypeOptions) HasItemDefinition() bool

HasItemDefinition returns a boolean if a field has been set.

func (*ConfigurationListTypeOptions) HasItemLabel

func (o *ConfigurationListTypeOptions) HasItemLabel() bool

HasItemLabel returns a boolean if a field has been set.

func (ConfigurationListTypeOptions) MarshalJSON

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

func (*ConfigurationListTypeOptions) SetItemDefinition

SetItemDefinition gets a reference to the given ConfigurationListItemDefinition and assigns it to the ItemDefinition field.

func (*ConfigurationListTypeOptions) SetItemLabel

func (o *ConfigurationListTypeOptions) SetItemLabel(v string)

SetItemLabel gets a reference to the given string and assigns it to the ItemLabel field.

func (ConfigurationListTypeOptions) ToMap

func (o ConfigurationListTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationMultiSelectTypeOptions

type ConfigurationMultiSelectTypeOptions struct {
	Options []ConfigurationSelectOption `json:"options,omitempty"`
}

ConfigurationMultiSelectTypeOptions struct for ConfigurationMultiSelectTypeOptions

func NewConfigurationMultiSelectTypeOptions

func NewConfigurationMultiSelectTypeOptions() *ConfigurationMultiSelectTypeOptions

NewConfigurationMultiSelectTypeOptions instantiates a new ConfigurationMultiSelectTypeOptions 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 NewConfigurationMultiSelectTypeOptionsWithDefaults

func NewConfigurationMultiSelectTypeOptionsWithDefaults() *ConfigurationMultiSelectTypeOptions

NewConfigurationMultiSelectTypeOptionsWithDefaults instantiates a new ConfigurationMultiSelectTypeOptions 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 (*ConfigurationMultiSelectTypeOptions) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*ConfigurationMultiSelectTypeOptions) GetOptionsOk

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

func (*ConfigurationMultiSelectTypeOptions) HasOptions

func (o *ConfigurationMultiSelectTypeOptions) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (ConfigurationMultiSelectTypeOptions) MarshalJSON

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

func (*ConfigurationMultiSelectTypeOptions) SetOptions

SetOptions gets a reference to the given []ConfigurationSelectOption and assigns it to the Options field.

func (ConfigurationMultiSelectTypeOptions) ToMap

func (o ConfigurationMultiSelectTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationNumberTypeOptions

type ConfigurationNumberTypeOptions struct {
	Min *int32 `json:"min,omitempty"`
	Max *int32 `json:"max,omitempty"`
}

ConfigurationNumberTypeOptions struct for ConfigurationNumberTypeOptions

func NewConfigurationNumberTypeOptions

func NewConfigurationNumberTypeOptions() *ConfigurationNumberTypeOptions

NewConfigurationNumberTypeOptions instantiates a new ConfigurationNumberTypeOptions 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 NewConfigurationNumberTypeOptionsWithDefaults

func NewConfigurationNumberTypeOptionsWithDefaults() *ConfigurationNumberTypeOptions

NewConfigurationNumberTypeOptionsWithDefaults instantiates a new ConfigurationNumberTypeOptions 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 (*ConfigurationNumberTypeOptions) GetMax

GetMax returns the Max field value if set, zero value otherwise.

func (*ConfigurationNumberTypeOptions) GetMaxOk

func (o *ConfigurationNumberTypeOptions) GetMaxOk() (*int32, bool)

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

func (*ConfigurationNumberTypeOptions) GetMin

GetMin returns the Min field value if set, zero value otherwise.

func (*ConfigurationNumberTypeOptions) GetMinOk

func (o *ConfigurationNumberTypeOptions) GetMinOk() (*int32, bool)

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

func (*ConfigurationNumberTypeOptions) HasMax

HasMax returns a boolean if a field has been set.

func (*ConfigurationNumberTypeOptions) HasMin

HasMin returns a boolean if a field has been set.

func (ConfigurationNumberTypeOptions) MarshalJSON

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

func (*ConfigurationNumberTypeOptions) SetMax

SetMax gets a reference to the given int32 and assigns it to the Max field.

func (*ConfigurationNumberTypeOptions) SetMin

SetMin gets a reference to the given int32 and assigns it to the Min field.

func (ConfigurationNumberTypeOptions) ToMap

func (o ConfigurationNumberTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationObjectTypeOptions

type ConfigurationObjectTypeOptions struct {
	Schema []ConfigurationField `json:"schema,omitempty"`
}

ConfigurationObjectTypeOptions struct for ConfigurationObjectTypeOptions

func NewConfigurationObjectTypeOptions

func NewConfigurationObjectTypeOptions() *ConfigurationObjectTypeOptions

NewConfigurationObjectTypeOptions instantiates a new ConfigurationObjectTypeOptions 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 NewConfigurationObjectTypeOptionsWithDefaults

func NewConfigurationObjectTypeOptionsWithDefaults() *ConfigurationObjectTypeOptions

NewConfigurationObjectTypeOptionsWithDefaults instantiates a new ConfigurationObjectTypeOptions 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 (*ConfigurationObjectTypeOptions) GetSchema

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

func (*ConfigurationObjectTypeOptions) GetSchemaOk

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 (*ConfigurationObjectTypeOptions) HasSchema

func (o *ConfigurationObjectTypeOptions) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (ConfigurationObjectTypeOptions) MarshalJSON

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

func (*ConfigurationObjectTypeOptions) SetSchema

SetSchema gets a reference to the given []ConfigurationField and assigns it to the Schema field.

func (ConfigurationObjectTypeOptions) ToMap

func (o ConfigurationObjectTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationParameterRef added in v0.7.0

type ConfigurationParameterRef struct {
	Name      *string                          `json:"name,omitempty"`
	Value     *string                          `json:"value,omitempty"`
	ValueFrom *ConfigurationParameterValueFrom `json:"valueFrom,omitempty"`
}

ConfigurationParameterRef struct for ConfigurationParameterRef

func NewConfigurationParameterRef added in v0.7.0

func NewConfigurationParameterRef() *ConfigurationParameterRef

NewConfigurationParameterRef instantiates a new ConfigurationParameterRef 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 NewConfigurationParameterRefWithDefaults added in v0.7.0

func NewConfigurationParameterRefWithDefaults() *ConfigurationParameterRef

NewConfigurationParameterRefWithDefaults instantiates a new ConfigurationParameterRef 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 (*ConfigurationParameterRef) GetName added in v0.7.0

func (o *ConfigurationParameterRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ConfigurationParameterRef) GetNameOk added in v0.7.0

func (o *ConfigurationParameterRef) GetNameOk() (*string, bool)

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

func (*ConfigurationParameterRef) GetValue added in v0.7.0

func (o *ConfigurationParameterRef) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ConfigurationParameterRef) GetValueFrom added in v0.7.0

GetValueFrom returns the ValueFrom field value if set, zero value otherwise.

func (*ConfigurationParameterRef) GetValueFromOk added in v0.7.0

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

func (*ConfigurationParameterRef) GetValueOk added in v0.7.0

func (o *ConfigurationParameterRef) GetValueOk() (*string, bool)

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

func (*ConfigurationParameterRef) HasName added in v0.7.0

func (o *ConfigurationParameterRef) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConfigurationParameterRef) HasValue added in v0.7.0

func (o *ConfigurationParameterRef) HasValue() bool

HasValue returns a boolean if a field has been set.

func (*ConfigurationParameterRef) HasValueFrom added in v0.7.0

func (o *ConfigurationParameterRef) HasValueFrom() bool

HasValueFrom returns a boolean if a field has been set.

func (ConfigurationParameterRef) MarshalJSON added in v0.7.0

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

func (*ConfigurationParameterRef) SetName added in v0.7.0

func (o *ConfigurationParameterRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ConfigurationParameterRef) SetValue added in v0.7.0

func (o *ConfigurationParameterRef) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (*ConfigurationParameterRef) SetValueFrom added in v0.7.0

SetValueFrom gets a reference to the given ConfigurationParameterValueFrom and assigns it to the ValueFrom field.

func (ConfigurationParameterRef) ToMap added in v0.7.0

func (o ConfigurationParameterRef) ToMap() (map[string]interface{}, error)

type ConfigurationParameterValueFrom added in v0.7.0

type ConfigurationParameterValueFrom struct {
	Field *string `json:"field,omitempty"`
}

ConfigurationParameterValueFrom struct for ConfigurationParameterValueFrom

func NewConfigurationParameterValueFrom added in v0.7.0

func NewConfigurationParameterValueFrom() *ConfigurationParameterValueFrom

NewConfigurationParameterValueFrom instantiates a new ConfigurationParameterValueFrom 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 NewConfigurationParameterValueFromWithDefaults added in v0.7.0

func NewConfigurationParameterValueFromWithDefaults() *ConfigurationParameterValueFrom

NewConfigurationParameterValueFromWithDefaults instantiates a new ConfigurationParameterValueFrom 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 (*ConfigurationParameterValueFrom) GetField added in v0.7.0

GetField returns the Field field value if set, zero value otherwise.

func (*ConfigurationParameterValueFrom) GetFieldOk added in v0.7.0

func (o *ConfigurationParameterValueFrom) GetFieldOk() (*string, bool)

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

func (*ConfigurationParameterValueFrom) HasField added in v0.7.0

func (o *ConfigurationParameterValueFrom) HasField() bool

HasField returns a boolean if a field has been set.

func (ConfigurationParameterValueFrom) MarshalJSON added in v0.7.0

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

func (*ConfigurationParameterValueFrom) SetField added in v0.7.0

func (o *ConfigurationParameterValueFrom) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (ConfigurationParameterValueFrom) ToMap added in v0.7.0

func (o ConfigurationParameterValueFrom) ToMap() (map[string]interface{}, error)

type ConfigurationRequiredCondition

type ConfigurationRequiredCondition struct {
	Field  *string  `json:"field,omitempty"`
	Values []string `json:"values,omitempty"`
}

ConfigurationRequiredCondition struct for ConfigurationRequiredCondition

func NewConfigurationRequiredCondition

func NewConfigurationRequiredCondition() *ConfigurationRequiredCondition

NewConfigurationRequiredCondition instantiates a new ConfigurationRequiredCondition 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 NewConfigurationRequiredConditionWithDefaults

func NewConfigurationRequiredConditionWithDefaults() *ConfigurationRequiredCondition

NewConfigurationRequiredConditionWithDefaults instantiates a new ConfigurationRequiredCondition 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 (*ConfigurationRequiredCondition) GetField

func (o *ConfigurationRequiredCondition) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*ConfigurationRequiredCondition) GetFieldOk

func (o *ConfigurationRequiredCondition) GetFieldOk() (*string, bool)

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

func (*ConfigurationRequiredCondition) GetValues

func (o *ConfigurationRequiredCondition) GetValues() []string

GetValues returns the Values field value if set, zero value otherwise.

func (*ConfigurationRequiredCondition) GetValuesOk

func (o *ConfigurationRequiredCondition) GetValuesOk() ([]string, bool)

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

func (*ConfigurationRequiredCondition) HasField

func (o *ConfigurationRequiredCondition) HasField() bool

HasField returns a boolean if a field has been set.

func (*ConfigurationRequiredCondition) HasValues

func (o *ConfigurationRequiredCondition) HasValues() bool

HasValues returns a boolean if a field has been set.

func (ConfigurationRequiredCondition) MarshalJSON

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

func (*ConfigurationRequiredCondition) SetField

func (o *ConfigurationRequiredCondition) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*ConfigurationRequiredCondition) SetValues

func (o *ConfigurationRequiredCondition) SetValues(v []string)

SetValues gets a reference to the given []string and assigns it to the Values field.

func (ConfigurationRequiredCondition) ToMap

func (o ConfigurationRequiredCondition) ToMap() (map[string]interface{}, error)

type ConfigurationResourceTypeOptions

type ConfigurationResourceTypeOptions struct {
	Type           *string                     `json:"type,omitempty"`
	UseNameAsValue *bool                       `json:"useNameAsValue,omitempty"`
	Multi          *bool                       `json:"multi,omitempty"`
	Parameters     []ConfigurationParameterRef `json:"parameters,omitempty"`
}

ConfigurationResourceTypeOptions struct for ConfigurationResourceTypeOptions

func NewConfigurationResourceTypeOptions

func NewConfigurationResourceTypeOptions() *ConfigurationResourceTypeOptions

NewConfigurationResourceTypeOptions instantiates a new ConfigurationResourceTypeOptions 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 NewConfigurationResourceTypeOptionsWithDefaults

func NewConfigurationResourceTypeOptionsWithDefaults() *ConfigurationResourceTypeOptions

NewConfigurationResourceTypeOptionsWithDefaults instantiates a new ConfigurationResourceTypeOptions 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 (*ConfigurationResourceTypeOptions) GetMulti added in v0.0.45

func (o *ConfigurationResourceTypeOptions) GetMulti() bool

GetMulti returns the Multi field value if set, zero value otherwise.

func (*ConfigurationResourceTypeOptions) GetMultiOk added in v0.0.45

func (o *ConfigurationResourceTypeOptions) GetMultiOk() (*bool, bool)

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

func (*ConfigurationResourceTypeOptions) GetParameters added in v0.7.0

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*ConfigurationResourceTypeOptions) GetParametersOk added in v0.7.0

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

func (*ConfigurationResourceTypeOptions) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*ConfigurationResourceTypeOptions) GetTypeOk

func (o *ConfigurationResourceTypeOptions) GetTypeOk() (*string, bool)

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

func (*ConfigurationResourceTypeOptions) GetUseNameAsValue added in v0.0.43

func (o *ConfigurationResourceTypeOptions) GetUseNameAsValue() bool

GetUseNameAsValue returns the UseNameAsValue field value if set, zero value otherwise.

func (*ConfigurationResourceTypeOptions) GetUseNameAsValueOk added in v0.0.43

func (o *ConfigurationResourceTypeOptions) GetUseNameAsValueOk() (*bool, bool)

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

func (*ConfigurationResourceTypeOptions) HasMulti added in v0.0.45

func (o *ConfigurationResourceTypeOptions) HasMulti() bool

HasMulti returns a boolean if a field has been set.

func (*ConfigurationResourceTypeOptions) HasParameters added in v0.7.0

func (o *ConfigurationResourceTypeOptions) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*ConfigurationResourceTypeOptions) HasType

HasType returns a boolean if a field has been set.

func (*ConfigurationResourceTypeOptions) HasUseNameAsValue added in v0.0.43

func (o *ConfigurationResourceTypeOptions) HasUseNameAsValue() bool

HasUseNameAsValue returns a boolean if a field has been set.

func (ConfigurationResourceTypeOptions) MarshalJSON

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

func (*ConfigurationResourceTypeOptions) SetMulti added in v0.0.45

func (o *ConfigurationResourceTypeOptions) SetMulti(v bool)

SetMulti gets a reference to the given bool and assigns it to the Multi field.

func (*ConfigurationResourceTypeOptions) SetParameters added in v0.7.0

SetParameters gets a reference to the given []ConfigurationParameterRef and assigns it to the Parameters field.

func (*ConfigurationResourceTypeOptions) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (*ConfigurationResourceTypeOptions) SetUseNameAsValue added in v0.0.43

func (o *ConfigurationResourceTypeOptions) SetUseNameAsValue(v bool)

SetUseNameAsValue gets a reference to the given bool and assigns it to the UseNameAsValue field.

func (ConfigurationResourceTypeOptions) ToMap

func (o ConfigurationResourceTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationSelectOption

type ConfigurationSelectOption struct {
	Label *string `json:"label,omitempty"`
	Value *string `json:"value,omitempty"`
}

ConfigurationSelectOption struct for ConfigurationSelectOption

func NewConfigurationSelectOption

func NewConfigurationSelectOption() *ConfigurationSelectOption

NewConfigurationSelectOption instantiates a new ConfigurationSelectOption 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 NewConfigurationSelectOptionWithDefaults

func NewConfigurationSelectOptionWithDefaults() *ConfigurationSelectOption

NewConfigurationSelectOptionWithDefaults instantiates a new ConfigurationSelectOption 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 (*ConfigurationSelectOption) GetLabel

func (o *ConfigurationSelectOption) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*ConfigurationSelectOption) GetLabelOk

func (o *ConfigurationSelectOption) GetLabelOk() (*string, bool)

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

func (*ConfigurationSelectOption) GetValue

func (o *ConfigurationSelectOption) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ConfigurationSelectOption) GetValueOk

func (o *ConfigurationSelectOption) GetValueOk() (*string, bool)

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

func (*ConfigurationSelectOption) HasLabel

func (o *ConfigurationSelectOption) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ConfigurationSelectOption) HasValue

func (o *ConfigurationSelectOption) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ConfigurationSelectOption) MarshalJSON

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

func (*ConfigurationSelectOption) SetLabel

func (o *ConfigurationSelectOption) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*ConfigurationSelectOption) SetValue

func (o *ConfigurationSelectOption) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ConfigurationSelectOption) ToMap

func (o ConfigurationSelectOption) ToMap() (map[string]interface{}, error)

type ConfigurationSelectTypeOptions

type ConfigurationSelectTypeOptions struct {
	Options []ConfigurationSelectOption `json:"options,omitempty"`
}

ConfigurationSelectTypeOptions struct for ConfigurationSelectTypeOptions

func NewConfigurationSelectTypeOptions

func NewConfigurationSelectTypeOptions() *ConfigurationSelectTypeOptions

NewConfigurationSelectTypeOptions instantiates a new ConfigurationSelectTypeOptions 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 NewConfigurationSelectTypeOptionsWithDefaults

func NewConfigurationSelectTypeOptionsWithDefaults() *ConfigurationSelectTypeOptions

NewConfigurationSelectTypeOptionsWithDefaults instantiates a new ConfigurationSelectTypeOptions 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 (*ConfigurationSelectTypeOptions) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*ConfigurationSelectTypeOptions) GetOptionsOk

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

func (*ConfigurationSelectTypeOptions) HasOptions

func (o *ConfigurationSelectTypeOptions) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (ConfigurationSelectTypeOptions) MarshalJSON

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

func (*ConfigurationSelectTypeOptions) SetOptions

SetOptions gets a reference to the given []ConfigurationSelectOption and assigns it to the Options field.

func (ConfigurationSelectTypeOptions) ToMap

func (o ConfigurationSelectTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationStringTypeOptions added in v0.0.18

type ConfigurationStringTypeOptions struct {
	MinLength *int32 `json:"minLength,omitempty"`
	MaxLength *int32 `json:"maxLength,omitempty"`
}

ConfigurationStringTypeOptions struct for ConfigurationStringTypeOptions

func NewConfigurationStringTypeOptions added in v0.0.18

func NewConfigurationStringTypeOptions() *ConfigurationStringTypeOptions

NewConfigurationStringTypeOptions instantiates a new ConfigurationStringTypeOptions 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 NewConfigurationStringTypeOptionsWithDefaults added in v0.0.18

func NewConfigurationStringTypeOptionsWithDefaults() *ConfigurationStringTypeOptions

NewConfigurationStringTypeOptionsWithDefaults instantiates a new ConfigurationStringTypeOptions 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 (*ConfigurationStringTypeOptions) GetMaxLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) GetMaxLength() int32

GetMaxLength returns the MaxLength field value if set, zero value otherwise.

func (*ConfigurationStringTypeOptions) GetMaxLengthOk added in v0.0.18

func (o *ConfigurationStringTypeOptions) GetMaxLengthOk() (*int32, bool)

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

func (*ConfigurationStringTypeOptions) GetMinLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) GetMinLength() int32

GetMinLength returns the MinLength field value if set, zero value otherwise.

func (*ConfigurationStringTypeOptions) GetMinLengthOk added in v0.0.18

func (o *ConfigurationStringTypeOptions) GetMinLengthOk() (*int32, bool)

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

func (*ConfigurationStringTypeOptions) HasMaxLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) HasMaxLength() bool

HasMaxLength returns a boolean if a field has been set.

func (*ConfigurationStringTypeOptions) HasMinLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) HasMinLength() bool

HasMinLength returns a boolean if a field has been set.

func (ConfigurationStringTypeOptions) MarshalJSON added in v0.0.18

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

func (*ConfigurationStringTypeOptions) SetMaxLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) SetMaxLength(v int32)

SetMaxLength gets a reference to the given int32 and assigns it to the MaxLength field.

func (*ConfigurationStringTypeOptions) SetMinLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) SetMinLength(v int32)

SetMinLength gets a reference to the given int32 and assigns it to the MinLength field.

func (ConfigurationStringTypeOptions) ToMap added in v0.0.18

func (o ConfigurationStringTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationTextTypeOptions added in v0.0.18

type ConfigurationTextTypeOptions struct {
	MinLength *int32 `json:"minLength,omitempty"`
	MaxLength *int32 `json:"maxLength,omitempty"`
}

ConfigurationTextTypeOptions struct for ConfigurationTextTypeOptions

func NewConfigurationTextTypeOptions added in v0.0.18

func NewConfigurationTextTypeOptions() *ConfigurationTextTypeOptions

NewConfigurationTextTypeOptions instantiates a new ConfigurationTextTypeOptions 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 NewConfigurationTextTypeOptionsWithDefaults added in v0.0.18

func NewConfigurationTextTypeOptionsWithDefaults() *ConfigurationTextTypeOptions

NewConfigurationTextTypeOptionsWithDefaults instantiates a new ConfigurationTextTypeOptions 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 (*ConfigurationTextTypeOptions) GetMaxLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) GetMaxLength() int32

GetMaxLength returns the MaxLength field value if set, zero value otherwise.

func (*ConfigurationTextTypeOptions) GetMaxLengthOk added in v0.0.18

func (o *ConfigurationTextTypeOptions) GetMaxLengthOk() (*int32, bool)

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

func (*ConfigurationTextTypeOptions) GetMinLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) GetMinLength() int32

GetMinLength returns the MinLength field value if set, zero value otherwise.

func (*ConfigurationTextTypeOptions) GetMinLengthOk added in v0.0.18

func (o *ConfigurationTextTypeOptions) GetMinLengthOk() (*int32, bool)

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

func (*ConfigurationTextTypeOptions) HasMaxLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) HasMaxLength() bool

HasMaxLength returns a boolean if a field has been set.

func (*ConfigurationTextTypeOptions) HasMinLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) HasMinLength() bool

HasMinLength returns a boolean if a field has been set.

func (ConfigurationTextTypeOptions) MarshalJSON added in v0.0.18

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

func (*ConfigurationTextTypeOptions) SetMaxLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) SetMaxLength(v int32)

SetMaxLength gets a reference to the given int32 and assigns it to the MaxLength field.

func (*ConfigurationTextTypeOptions) SetMinLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) SetMinLength(v int32)

SetMinLength gets a reference to the given int32 and assigns it to the MinLength field.

func (ConfigurationTextTypeOptions) ToMap added in v0.0.18

func (o ConfigurationTextTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationTimeTypeOptions

type ConfigurationTimeTypeOptions struct {
	Format *string `json:"format,omitempty"`
}

ConfigurationTimeTypeOptions struct for ConfigurationTimeTypeOptions

func NewConfigurationTimeTypeOptions

func NewConfigurationTimeTypeOptions() *ConfigurationTimeTypeOptions

NewConfigurationTimeTypeOptions instantiates a new ConfigurationTimeTypeOptions 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 NewConfigurationTimeTypeOptionsWithDefaults

func NewConfigurationTimeTypeOptionsWithDefaults() *ConfigurationTimeTypeOptions

NewConfigurationTimeTypeOptionsWithDefaults instantiates a new ConfigurationTimeTypeOptions 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 (*ConfigurationTimeTypeOptions) GetFormat

func (o *ConfigurationTimeTypeOptions) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*ConfigurationTimeTypeOptions) GetFormatOk

func (o *ConfigurationTimeTypeOptions) GetFormatOk() (*string, bool)

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

func (*ConfigurationTimeTypeOptions) HasFormat

func (o *ConfigurationTimeTypeOptions) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (ConfigurationTimeTypeOptions) MarshalJSON

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

func (*ConfigurationTimeTypeOptions) SetFormat

func (o *ConfigurationTimeTypeOptions) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (ConfigurationTimeTypeOptions) ToMap

func (o ConfigurationTimeTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationTypeOptions

type ConfigurationTypeOptions struct {
	Number           *ConfigurationNumberTypeOptions           `json:"number,omitempty"`
	Select           *ConfigurationSelectTypeOptions           `json:"select,omitempty"`
	MultiSelect      *ConfigurationMultiSelectTypeOptions      `json:"multiSelect,omitempty"`
	List             *ConfigurationListTypeOptions             `json:"list,omitempty"`
	Object           *ConfigurationObjectTypeOptions           `json:"object,omitempty"`
	Resource         *ConfigurationResourceTypeOptions         `json:"resource,omitempty"`
	Time             *ConfigurationTimeTypeOptions             `json:"time,omitempty"`
	Date             *ConfigurationDateTypeOptions             `json:"date,omitempty"`
	Datetime         *ConfigurationDateTimeTypeOptions         `json:"datetime,omitempty"`
	AnyPredicateList *ConfigurationAnyPredicateListTypeOptions `json:"anyPredicateList,omitempty"`
	String           *ConfigurationStringTypeOptions           `json:"string,omitempty"`
	Expression       *ConfigurationExpressionTypeOptions       `json:"expression,omitempty"`
	Text             *ConfigurationTextTypeOptions             `json:"text,omitempty"`
}

ConfigurationTypeOptions struct for ConfigurationTypeOptions

func NewConfigurationTypeOptions

func NewConfigurationTypeOptions() *ConfigurationTypeOptions

NewConfigurationTypeOptions instantiates a new ConfigurationTypeOptions 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 NewConfigurationTypeOptionsWithDefaults

func NewConfigurationTypeOptionsWithDefaults() *ConfigurationTypeOptions

NewConfigurationTypeOptionsWithDefaults instantiates a new ConfigurationTypeOptions 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 (*ConfigurationTypeOptions) GetAnyPredicateList

GetAnyPredicateList returns the AnyPredicateList field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetAnyPredicateListOk

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

func (*ConfigurationTypeOptions) GetDate

GetDate returns the Date field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetDateOk

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

func (*ConfigurationTypeOptions) GetDatetime

GetDatetime returns the Datetime field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetDatetimeOk

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

func (*ConfigurationTypeOptions) GetExpression added in v0.0.43

GetExpression returns the Expression field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetExpressionOk added in v0.0.43

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

func (*ConfigurationTypeOptions) GetList

GetList returns the List field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetListOk

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

func (*ConfigurationTypeOptions) GetMultiSelect

GetMultiSelect returns the MultiSelect field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetMultiSelectOk

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

func (*ConfigurationTypeOptions) GetNumber

GetNumber returns the Number field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetNumberOk

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

func (*ConfigurationTypeOptions) GetObject

GetObject returns the Object field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetObjectOk

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

func (*ConfigurationTypeOptions) GetResource

GetResource returns the Resource field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetResourceOk

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

func (*ConfigurationTypeOptions) GetSelect

GetSelect returns the Select field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetSelectOk

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

func (*ConfigurationTypeOptions) GetString added in v0.0.18

GetString returns the String field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetStringOk added in v0.0.18

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

func (*ConfigurationTypeOptions) GetText added in v0.0.18

GetText returns the Text field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetTextOk added in v0.0.18

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

func (*ConfigurationTypeOptions) GetTime

GetTime returns the Time field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetTimeOk

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

func (*ConfigurationTypeOptions) HasAnyPredicateList

func (o *ConfigurationTypeOptions) HasAnyPredicateList() bool

HasAnyPredicateList returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasDate

func (o *ConfigurationTypeOptions) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasDatetime

func (o *ConfigurationTypeOptions) HasDatetime() bool

HasDatetime returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasExpression added in v0.0.43

func (o *ConfigurationTypeOptions) HasExpression() bool

HasExpression returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasList

func (o *ConfigurationTypeOptions) HasList() bool

HasList returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasMultiSelect

func (o *ConfigurationTypeOptions) HasMultiSelect() bool

HasMultiSelect returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasNumber

func (o *ConfigurationTypeOptions) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasObject

func (o *ConfigurationTypeOptions) HasObject() bool

HasObject returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasResource

func (o *ConfigurationTypeOptions) HasResource() bool

HasResource returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasSelect

func (o *ConfigurationTypeOptions) HasSelect() bool

HasSelect returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasString added in v0.0.18

func (o *ConfigurationTypeOptions) HasString() bool

HasString returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasText added in v0.0.18

func (o *ConfigurationTypeOptions) HasText() bool

HasText returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasTime

func (o *ConfigurationTypeOptions) HasTime() bool

HasTime returns a boolean if a field has been set.

func (ConfigurationTypeOptions) MarshalJSON

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

func (*ConfigurationTypeOptions) SetAnyPredicateList

SetAnyPredicateList gets a reference to the given ConfigurationAnyPredicateListTypeOptions and assigns it to the AnyPredicateList field.

func (*ConfigurationTypeOptions) SetDate

SetDate gets a reference to the given ConfigurationDateTypeOptions and assigns it to the Date field.

func (*ConfigurationTypeOptions) SetDatetime

SetDatetime gets a reference to the given ConfigurationDateTimeTypeOptions and assigns it to the Datetime field.

func (*ConfigurationTypeOptions) SetExpression added in v0.0.43

SetExpression gets a reference to the given ConfigurationExpressionTypeOptions and assigns it to the Expression field.

func (*ConfigurationTypeOptions) SetList

SetList gets a reference to the given ConfigurationListTypeOptions and assigns it to the List field.

func (*ConfigurationTypeOptions) SetMultiSelect

SetMultiSelect gets a reference to the given ConfigurationMultiSelectTypeOptions and assigns it to the MultiSelect field.

func (*ConfigurationTypeOptions) SetNumber

SetNumber gets a reference to the given ConfigurationNumberTypeOptions and assigns it to the Number field.

func (*ConfigurationTypeOptions) SetObject

SetObject gets a reference to the given ConfigurationObjectTypeOptions and assigns it to the Object field.

func (*ConfigurationTypeOptions) SetResource

SetResource gets a reference to the given ConfigurationResourceTypeOptions and assigns it to the Resource field.

func (*ConfigurationTypeOptions) SetSelect

SetSelect gets a reference to the given ConfigurationSelectTypeOptions and assigns it to the Select field.

func (*ConfigurationTypeOptions) SetString added in v0.0.18

SetString gets a reference to the given ConfigurationStringTypeOptions and assigns it to the String field.

func (*ConfigurationTypeOptions) SetText added in v0.0.18

SetText gets a reference to the given ConfigurationTextTypeOptions and assigns it to the Text field.

func (*ConfigurationTypeOptions) SetTime

SetTime gets a reference to the given ConfigurationTimeTypeOptions and assigns it to the Time field.

func (ConfigurationTypeOptions) ToMap

func (o ConfigurationTypeOptions) ToMap() (map[string]interface{}, error)

type ConfigurationValidationRule

type ConfigurationValidationRule struct {
	Type        *string `json:"type,omitempty"`
	CompareWith *string `json:"compareWith,omitempty"`
	Message     *string `json:"message,omitempty"`
}

ConfigurationValidationRule struct for ConfigurationValidationRule

func NewConfigurationValidationRule

func NewConfigurationValidationRule() *ConfigurationValidationRule

NewConfigurationValidationRule instantiates a new ConfigurationValidationRule 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 NewConfigurationValidationRuleWithDefaults

func NewConfigurationValidationRuleWithDefaults() *ConfigurationValidationRule

NewConfigurationValidationRuleWithDefaults instantiates a new ConfigurationValidationRule 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 (*ConfigurationValidationRule) GetCompareWith

func (o *ConfigurationValidationRule) GetCompareWith() string

GetCompareWith returns the CompareWith field value if set, zero value otherwise.

func (*ConfigurationValidationRule) GetCompareWithOk

func (o *ConfigurationValidationRule) GetCompareWithOk() (*string, bool)

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

func (*ConfigurationValidationRule) GetMessage

func (o *ConfigurationValidationRule) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ConfigurationValidationRule) GetMessageOk

func (o *ConfigurationValidationRule) GetMessageOk() (*string, bool)

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

func (*ConfigurationValidationRule) GetType

func (o *ConfigurationValidationRule) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ConfigurationValidationRule) GetTypeOk

func (o *ConfigurationValidationRule) GetTypeOk() (*string, bool)

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

func (*ConfigurationValidationRule) HasCompareWith

func (o *ConfigurationValidationRule) HasCompareWith() bool

HasCompareWith returns a boolean if a field has been set.

func (*ConfigurationValidationRule) HasMessage

func (o *ConfigurationValidationRule) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ConfigurationValidationRule) HasType

func (o *ConfigurationValidationRule) HasType() bool

HasType returns a boolean if a field has been set.

func (ConfigurationValidationRule) MarshalJSON

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

func (*ConfigurationValidationRule) SetCompareWith

func (o *ConfigurationValidationRule) SetCompareWith(v string)

SetCompareWith gets a reference to the given string and assigns it to the CompareWith field.

func (*ConfigurationValidationRule) SetMessage

func (o *ConfigurationValidationRule) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ConfigurationValidationRule) SetType

func (o *ConfigurationValidationRule) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ConfigurationValidationRule) ToMap

func (o ConfigurationValidationRule) ToMap() (map[string]interface{}, error)

type ConfigurationVisibilityCondition

type ConfigurationVisibilityCondition struct {
	Field  *string  `json:"field,omitempty"`
	Values []string `json:"values,omitempty"`
}

ConfigurationVisibilityCondition struct for ConfigurationVisibilityCondition

func NewConfigurationVisibilityCondition

func NewConfigurationVisibilityCondition() *ConfigurationVisibilityCondition

NewConfigurationVisibilityCondition instantiates a new ConfigurationVisibilityCondition 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 NewConfigurationVisibilityConditionWithDefaults

func NewConfigurationVisibilityConditionWithDefaults() *ConfigurationVisibilityCondition

NewConfigurationVisibilityConditionWithDefaults instantiates a new ConfigurationVisibilityCondition 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 (*ConfigurationVisibilityCondition) GetField

GetField returns the Field field value if set, zero value otherwise.

func (*ConfigurationVisibilityCondition) GetFieldOk

func (o *ConfigurationVisibilityCondition) GetFieldOk() (*string, bool)

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

func (*ConfigurationVisibilityCondition) GetValues

func (o *ConfigurationVisibilityCondition) GetValues() []string

GetValues returns the Values field value if set, zero value otherwise.

func (*ConfigurationVisibilityCondition) GetValuesOk

func (o *ConfigurationVisibilityCondition) GetValuesOk() ([]string, bool)

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

func (*ConfigurationVisibilityCondition) HasField

func (o *ConfigurationVisibilityCondition) HasField() bool

HasField returns a boolean if a field has been set.

func (*ConfigurationVisibilityCondition) HasValues

func (o *ConfigurationVisibilityCondition) HasValues() bool

HasValues returns a boolean if a field has been set.

func (ConfigurationVisibilityCondition) MarshalJSON

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

func (*ConfigurationVisibilityCondition) SetField

SetField gets a reference to the given string and assigns it to the Field field.

func (*ConfigurationVisibilityCondition) SetValues

func (o *ConfigurationVisibilityCondition) SetValues(v []string)

SetValues gets a reference to the given []string and assigns it to the Values field.

func (ConfigurationVisibilityCondition) ToMap

func (o ConfigurationVisibilityCondition) ToMap() (map[string]interface{}, error)

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 GooglerpcStatus

type GooglerpcStatus struct {
	Code    *int32        `json:"code,omitempty"`
	Message *string       `json:"message,omitempty"`
	Details []ProtobufAny `json:"details,omitempty"`
}

GooglerpcStatus struct for GooglerpcStatus

func NewGooglerpcStatus

func NewGooglerpcStatus() *GooglerpcStatus

NewGooglerpcStatus instantiates a new GooglerpcStatus 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 NewGooglerpcStatusWithDefaults

func NewGooglerpcStatusWithDefaults() *GooglerpcStatus

NewGooglerpcStatusWithDefaults instantiates a new GooglerpcStatus 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 (*GooglerpcStatus) GetCode

func (o *GooglerpcStatus) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*GooglerpcStatus) GetCodeOk

func (o *GooglerpcStatus) GetCodeOk() (*int32, 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 (*GooglerpcStatus) GetDetails

func (o *GooglerpcStatus) GetDetails() []ProtobufAny

GetDetails returns the Details field value if set, zero value otherwise.

func (*GooglerpcStatus) GetDetailsOk

func (o *GooglerpcStatus) GetDetailsOk() ([]ProtobufAny, bool)

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

func (*GooglerpcStatus) GetMessage

func (o *GooglerpcStatus) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*GooglerpcStatus) GetMessageOk

func (o *GooglerpcStatus) GetMessageOk() (*string, bool)

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

func (*GooglerpcStatus) HasCode

func (o *GooglerpcStatus) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*GooglerpcStatus) HasDetails

func (o *GooglerpcStatus) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*GooglerpcStatus) HasMessage

func (o *GooglerpcStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (GooglerpcStatus) MarshalJSON

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

func (*GooglerpcStatus) SetCode

func (o *GooglerpcStatus) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*GooglerpcStatus) SetDetails

func (o *GooglerpcStatus) SetDetails(v []ProtobufAny)

SetDetails gets a reference to the given []ProtobufAny and assigns it to the Details field.

func (*GooglerpcStatus) SetMessage

func (o *GooglerpcStatus) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (GooglerpcStatus) ToMap

func (o GooglerpcStatus) ToMap() (map[string]interface{}, error)

type GroupsAPIService

type GroupsAPIService service

GroupsAPIService GroupsAPI service

func (*GroupsAPIService) GroupsAddUserToGroup

func (a *GroupsAPIService) GroupsAddUserToGroup(ctx context.Context, groupName string) ApiGroupsAddUserToGroupRequest

GroupsAddUserToGroup Add user to group

Adds a user to a group within a domain

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

func (*GroupsAPIService) GroupsAddUserToGroupExecute

func (a *GroupsAPIService) GroupsAddUserToGroupExecute(r ApiGroupsAddUserToGroupRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*GroupsAPIService) GroupsCreateGroup

func (a *GroupsAPIService) GroupsCreateGroup(ctx context.Context) ApiGroupsCreateGroupRequest

GroupsCreateGroup Create group

Creates a new group within a domain with a specific role

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

func (*GroupsAPIService) GroupsCreateGroupExecute

Execute executes the request

@return GroupsCreateGroupResponse

func (*GroupsAPIService) GroupsDeleteGroup

func (a *GroupsAPIService) GroupsDeleteGroup(ctx context.Context, groupName string) ApiGroupsDeleteGroupRequest

GroupsDeleteGroup Delete group

Deletes an existing group within a domain

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

func (*GroupsAPIService) GroupsDeleteGroupExecute

func (a *GroupsAPIService) GroupsDeleteGroupExecute(r ApiGroupsDeleteGroupRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*GroupsAPIService) GroupsDescribeGroup

func (a *GroupsAPIService) GroupsDescribeGroup(ctx context.Context, groupName string) ApiGroupsDescribeGroupRequest

GroupsDescribeGroup Get group

Returns details of a specific group within a domain

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

func (*GroupsAPIService) GroupsDescribeGroupExecute

Execute executes the request

@return GroupsDescribeGroupResponse

func (*GroupsAPIService) GroupsListGroupUsers

func (a *GroupsAPIService) GroupsListGroupUsers(ctx context.Context, groupName string) ApiGroupsListGroupUsersRequest

GroupsListGroupUsers Get group users

Returns users that belong to a specific group within a domain

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

func (*GroupsAPIService) GroupsListGroupUsersExecute

Execute executes the request

@return GroupsListGroupUsersResponse

func (*GroupsAPIService) GroupsListGroups

GroupsListGroups List groups

Returns a list of groups within a domain

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

func (*GroupsAPIService) GroupsListGroupsExecute

Execute executes the request

@return GroupsListGroupsResponse

func (*GroupsAPIService) GroupsRemoveUserFromGroup

func (a *GroupsAPIService) GroupsRemoveUserFromGroup(ctx context.Context, groupName string) ApiGroupsRemoveUserFromGroupRequest

GroupsRemoveUserFromGroup Remove user from group

Removes a user from a group within a domain

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

func (*GroupsAPIService) GroupsRemoveUserFromGroupExecute

func (a *GroupsAPIService) GroupsRemoveUserFromGroupExecute(r ApiGroupsRemoveUserFromGroupRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*GroupsAPIService) GroupsUpdateGroup

func (a *GroupsAPIService) GroupsUpdateGroup(ctx context.Context, groupName string) ApiGroupsUpdateGroupRequest

GroupsUpdateGroup Update group

Updates an existing group within a domain

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

func (*GroupsAPIService) GroupsUpdateGroupExecute

Execute executes the request

@return GroupsUpdateGroupResponse

type GroupsAddUserToGroupBody

type GroupsAddUserToGroupBody struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	UserId     *string                  `json:"userId,omitempty"`
	UserEmail  *string                  `json:"userEmail,omitempty"`
}

GroupsAddUserToGroupBody struct for GroupsAddUserToGroupBody

func NewGroupsAddUserToGroupBody

func NewGroupsAddUserToGroupBody() *GroupsAddUserToGroupBody

NewGroupsAddUserToGroupBody instantiates a new GroupsAddUserToGroupBody 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 NewGroupsAddUserToGroupBodyWithDefaults

func NewGroupsAddUserToGroupBodyWithDefaults() *GroupsAddUserToGroupBody

NewGroupsAddUserToGroupBodyWithDefaults instantiates a new GroupsAddUserToGroupBody 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 (*GroupsAddUserToGroupBody) GetDomainId

func (o *GroupsAddUserToGroupBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*GroupsAddUserToGroupBody) GetDomainIdOk

func (o *GroupsAddUserToGroupBody) GetDomainIdOk() (*string, bool)

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

func (*GroupsAddUserToGroupBody) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*GroupsAddUserToGroupBody) GetDomainTypeOk

func (o *GroupsAddUserToGroupBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*GroupsAddUserToGroupBody) GetUserEmail

func (o *GroupsAddUserToGroupBody) GetUserEmail() string

GetUserEmail returns the UserEmail field value if set, zero value otherwise.

func (*GroupsAddUserToGroupBody) GetUserEmailOk

func (o *GroupsAddUserToGroupBody) GetUserEmailOk() (*string, bool)

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

func (*GroupsAddUserToGroupBody) GetUserId

func (o *GroupsAddUserToGroupBody) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*GroupsAddUserToGroupBody) GetUserIdOk

func (o *GroupsAddUserToGroupBody) GetUserIdOk() (*string, bool)

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

func (*GroupsAddUserToGroupBody) HasDomainId

func (o *GroupsAddUserToGroupBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*GroupsAddUserToGroupBody) HasDomainType

func (o *GroupsAddUserToGroupBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*GroupsAddUserToGroupBody) HasUserEmail

func (o *GroupsAddUserToGroupBody) HasUserEmail() bool

HasUserEmail returns a boolean if a field has been set.

func (*GroupsAddUserToGroupBody) HasUserId

func (o *GroupsAddUserToGroupBody) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (GroupsAddUserToGroupBody) MarshalJSON

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

func (*GroupsAddUserToGroupBody) SetDomainId

func (o *GroupsAddUserToGroupBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*GroupsAddUserToGroupBody) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*GroupsAddUserToGroupBody) SetUserEmail

func (o *GroupsAddUserToGroupBody) SetUserEmail(v string)

SetUserEmail gets a reference to the given string and assigns it to the UserEmail field.

func (*GroupsAddUserToGroupBody) SetUserId

func (o *GroupsAddUserToGroupBody) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (GroupsAddUserToGroupBody) ToMap

func (o GroupsAddUserToGroupBody) ToMap() (map[string]interface{}, error)

type GroupsCreateGroupRequest

type GroupsCreateGroupRequest struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	Group      *GroupsGroup             `json:"group,omitempty"`
}

GroupsCreateGroupRequest struct for GroupsCreateGroupRequest

func NewGroupsCreateGroupRequest

func NewGroupsCreateGroupRequest() *GroupsCreateGroupRequest

NewGroupsCreateGroupRequest instantiates a new GroupsCreateGroupRequest 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 NewGroupsCreateGroupRequestWithDefaults

func NewGroupsCreateGroupRequestWithDefaults() *GroupsCreateGroupRequest

NewGroupsCreateGroupRequestWithDefaults instantiates a new GroupsCreateGroupRequest 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 (*GroupsCreateGroupRequest) GetDomainId

func (o *GroupsCreateGroupRequest) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*GroupsCreateGroupRequest) GetDomainIdOk

func (o *GroupsCreateGroupRequest) GetDomainIdOk() (*string, bool)

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

func (*GroupsCreateGroupRequest) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*GroupsCreateGroupRequest) GetDomainTypeOk

func (o *GroupsCreateGroupRequest) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*GroupsCreateGroupRequest) GetGroup

func (o *GroupsCreateGroupRequest) GetGroup() GroupsGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsCreateGroupRequest) GetGroupOk

func (o *GroupsCreateGroupRequest) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsCreateGroupRequest) HasDomainId

func (o *GroupsCreateGroupRequest) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*GroupsCreateGroupRequest) HasDomainType

func (o *GroupsCreateGroupRequest) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*GroupsCreateGroupRequest) HasGroup

func (o *GroupsCreateGroupRequest) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupsCreateGroupRequest) MarshalJSON

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

func (*GroupsCreateGroupRequest) SetDomainId

func (o *GroupsCreateGroupRequest) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*GroupsCreateGroupRequest) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*GroupsCreateGroupRequest) SetGroup

func (o *GroupsCreateGroupRequest) SetGroup(v GroupsGroup)

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (GroupsCreateGroupRequest) ToMap

func (o GroupsCreateGroupRequest) ToMap() (map[string]interface{}, error)

type GroupsCreateGroupResponse

type GroupsCreateGroupResponse struct {
	Group *GroupsGroup `json:"group,omitempty"`
}

GroupsCreateGroupResponse struct for GroupsCreateGroupResponse

func NewGroupsCreateGroupResponse

func NewGroupsCreateGroupResponse() *GroupsCreateGroupResponse

NewGroupsCreateGroupResponse instantiates a new GroupsCreateGroupResponse 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 NewGroupsCreateGroupResponseWithDefaults

func NewGroupsCreateGroupResponseWithDefaults() *GroupsCreateGroupResponse

NewGroupsCreateGroupResponseWithDefaults instantiates a new GroupsCreateGroupResponse 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 (*GroupsCreateGroupResponse) GetGroup

func (o *GroupsCreateGroupResponse) GetGroup() GroupsGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsCreateGroupResponse) GetGroupOk

func (o *GroupsCreateGroupResponse) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsCreateGroupResponse) HasGroup

func (o *GroupsCreateGroupResponse) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupsCreateGroupResponse) MarshalJSON

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

func (*GroupsCreateGroupResponse) SetGroup

func (o *GroupsCreateGroupResponse) SetGroup(v GroupsGroup)

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (GroupsCreateGroupResponse) ToMap

func (o GroupsCreateGroupResponse) ToMap() (map[string]interface{}, error)

type GroupsDescribeGroupResponse

type GroupsDescribeGroupResponse struct {
	Group *GroupsGroup `json:"group,omitempty"`
}

GroupsDescribeGroupResponse struct for GroupsDescribeGroupResponse

func NewGroupsDescribeGroupResponse

func NewGroupsDescribeGroupResponse() *GroupsDescribeGroupResponse

NewGroupsDescribeGroupResponse instantiates a new GroupsDescribeGroupResponse 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 NewGroupsDescribeGroupResponseWithDefaults

func NewGroupsDescribeGroupResponseWithDefaults() *GroupsDescribeGroupResponse

NewGroupsDescribeGroupResponseWithDefaults instantiates a new GroupsDescribeGroupResponse 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 (*GroupsDescribeGroupResponse) GetGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsDescribeGroupResponse) GetGroupOk

func (o *GroupsDescribeGroupResponse) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsDescribeGroupResponse) HasGroup

func (o *GroupsDescribeGroupResponse) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupsDescribeGroupResponse) MarshalJSON

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

func (*GroupsDescribeGroupResponse) SetGroup

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (GroupsDescribeGroupResponse) ToMap

func (o GroupsDescribeGroupResponse) ToMap() (map[string]interface{}, error)

type GroupsGroup

type GroupsGroup struct {
	Metadata *GroupsGroupMetadata `json:"metadata,omitempty"`
	Spec     *GroupsGroupSpec     `json:"spec,omitempty"`
	Status   *GroupsGroupStatus   `json:"status,omitempty"`
}

GroupsGroup struct for GroupsGroup

func NewGroupsGroup

func NewGroupsGroup() *GroupsGroup

NewGroupsGroup instantiates a new GroupsGroup 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 NewGroupsGroupWithDefaults

func NewGroupsGroupWithDefaults() *GroupsGroup

NewGroupsGroupWithDefaults instantiates a new GroupsGroup 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 (*GroupsGroup) GetMetadata

func (o *GroupsGroup) GetMetadata() GroupsGroupMetadata

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

func (*GroupsGroup) GetMetadataOk

func (o *GroupsGroup) GetMetadataOk() (*GroupsGroupMetadata, 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 (*GroupsGroup) GetSpec

func (o *GroupsGroup) GetSpec() GroupsGroupSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*GroupsGroup) GetSpecOk

func (o *GroupsGroup) GetSpecOk() (*GroupsGroupSpec, bool)

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

func (*GroupsGroup) GetStatus

func (o *GroupsGroup) GetStatus() GroupsGroupStatus

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

func (*GroupsGroup) GetStatusOk

func (o *GroupsGroup) GetStatusOk() (*GroupsGroupStatus, 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 (*GroupsGroup) HasMetadata

func (o *GroupsGroup) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*GroupsGroup) HasSpec

func (o *GroupsGroup) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*GroupsGroup) HasStatus

func (o *GroupsGroup) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (GroupsGroup) MarshalJSON

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

func (*GroupsGroup) SetMetadata

func (o *GroupsGroup) SetMetadata(v GroupsGroupMetadata)

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

func (*GroupsGroup) SetSpec

func (o *GroupsGroup) SetSpec(v GroupsGroupSpec)

SetSpec gets a reference to the given GroupsGroupSpec and assigns it to the Spec field.

func (*GroupsGroup) SetStatus

func (o *GroupsGroup) SetStatus(v GroupsGroupStatus)

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

func (GroupsGroup) ToMap

func (o GroupsGroup) ToMap() (map[string]interface{}, error)

type GroupsGroupMetadata

type GroupsGroupMetadata struct {
	Name       *string                  `json:"name,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	CreatedAt  *time.Time               `json:"createdAt,omitempty"`
	UpdatedAt  *time.Time               `json:"updatedAt,omitempty"`
}

GroupsGroupMetadata struct for GroupsGroupMetadata

func NewGroupsGroupMetadata

func NewGroupsGroupMetadata() *GroupsGroupMetadata

NewGroupsGroupMetadata instantiates a new GroupsGroupMetadata 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 NewGroupsGroupMetadataWithDefaults

func NewGroupsGroupMetadataWithDefaults() *GroupsGroupMetadata

NewGroupsGroupMetadataWithDefaults instantiates a new GroupsGroupMetadata 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 (*GroupsGroupMetadata) GetCreatedAt

func (o *GroupsGroupMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*GroupsGroupMetadata) GetCreatedAtOk

func (o *GroupsGroupMetadata) 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 (*GroupsGroupMetadata) GetDomainId

func (o *GroupsGroupMetadata) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*GroupsGroupMetadata) GetDomainIdOk

func (o *GroupsGroupMetadata) GetDomainIdOk() (*string, bool)

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

func (*GroupsGroupMetadata) GetDomainType

func (o *GroupsGroupMetadata) GetDomainType() AuthorizationDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*GroupsGroupMetadata) GetDomainTypeOk

func (o *GroupsGroupMetadata) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*GroupsGroupMetadata) GetName

func (o *GroupsGroupMetadata) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*GroupsGroupMetadata) GetNameOk

func (o *GroupsGroupMetadata) GetNameOk() (*string, bool)

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

func (*GroupsGroupMetadata) GetUpdatedAt

func (o *GroupsGroupMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*GroupsGroupMetadata) GetUpdatedAtOk

func (o *GroupsGroupMetadata) 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 (*GroupsGroupMetadata) HasCreatedAt

func (o *GroupsGroupMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*GroupsGroupMetadata) HasDomainId

func (o *GroupsGroupMetadata) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*GroupsGroupMetadata) HasDomainType

func (o *GroupsGroupMetadata) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*GroupsGroupMetadata) HasName

func (o *GroupsGroupMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (*GroupsGroupMetadata) HasUpdatedAt

func (o *GroupsGroupMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (GroupsGroupMetadata) MarshalJSON

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

func (*GroupsGroupMetadata) SetCreatedAt

func (o *GroupsGroupMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*GroupsGroupMetadata) SetDomainId

func (o *GroupsGroupMetadata) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*GroupsGroupMetadata) SetDomainType

func (o *GroupsGroupMetadata) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*GroupsGroupMetadata) SetName

func (o *GroupsGroupMetadata) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*GroupsGroupMetadata) SetUpdatedAt

func (o *GroupsGroupMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (GroupsGroupMetadata) ToMap

func (o GroupsGroupMetadata) ToMap() (map[string]interface{}, error)

type GroupsGroupSpec

type GroupsGroupSpec struct {
	Role        *string `json:"role,omitempty"`
	DisplayName *string `json:"displayName,omitempty"`
	Description *string `json:"description,omitempty"`
}

GroupsGroupSpec struct for GroupsGroupSpec

func NewGroupsGroupSpec

func NewGroupsGroupSpec() *GroupsGroupSpec

NewGroupsGroupSpec instantiates a new GroupsGroupSpec 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 NewGroupsGroupSpecWithDefaults

func NewGroupsGroupSpecWithDefaults() *GroupsGroupSpec

NewGroupsGroupSpecWithDefaults instantiates a new GroupsGroupSpec 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 (*GroupsGroupSpec) GetDescription

func (o *GroupsGroupSpec) GetDescription() string

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

func (*GroupsGroupSpec) GetDescriptionOk

func (o *GroupsGroupSpec) 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 (*GroupsGroupSpec) GetDisplayName

func (o *GroupsGroupSpec) GetDisplayName() string

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

func (*GroupsGroupSpec) GetDisplayNameOk

func (o *GroupsGroupSpec) 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 (*GroupsGroupSpec) GetRole

func (o *GroupsGroupSpec) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*GroupsGroupSpec) GetRoleOk

func (o *GroupsGroupSpec) GetRoleOk() (*string, bool)

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

func (*GroupsGroupSpec) HasDescription

func (o *GroupsGroupSpec) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GroupsGroupSpec) HasDisplayName

func (o *GroupsGroupSpec) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*GroupsGroupSpec) HasRole

func (o *GroupsGroupSpec) HasRole() bool

HasRole returns a boolean if a field has been set.

func (GroupsGroupSpec) MarshalJSON

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

func (*GroupsGroupSpec) SetDescription

func (o *GroupsGroupSpec) SetDescription(v string)

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

func (*GroupsGroupSpec) SetDisplayName

func (o *GroupsGroupSpec) SetDisplayName(v string)

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

func (*GroupsGroupSpec) SetRole

func (o *GroupsGroupSpec) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (GroupsGroupSpec) ToMap

func (o GroupsGroupSpec) ToMap() (map[string]interface{}, error)

type GroupsGroupStatus

type GroupsGroupStatus struct {
	MembersCount *int32 `json:"membersCount,omitempty"`
}

GroupsGroupStatus struct for GroupsGroupStatus

func NewGroupsGroupStatus

func NewGroupsGroupStatus() *GroupsGroupStatus

NewGroupsGroupStatus instantiates a new GroupsGroupStatus 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 NewGroupsGroupStatusWithDefaults

func NewGroupsGroupStatusWithDefaults() *GroupsGroupStatus

NewGroupsGroupStatusWithDefaults instantiates a new GroupsGroupStatus 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 (*GroupsGroupStatus) GetMembersCount

func (o *GroupsGroupStatus) GetMembersCount() int32

GetMembersCount returns the MembersCount field value if set, zero value otherwise.

func (*GroupsGroupStatus) GetMembersCountOk

func (o *GroupsGroupStatus) GetMembersCountOk() (*int32, bool)

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

func (*GroupsGroupStatus) HasMembersCount

func (o *GroupsGroupStatus) HasMembersCount() bool

HasMembersCount returns a boolean if a field has been set.

func (GroupsGroupStatus) MarshalJSON

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

func (*GroupsGroupStatus) SetMembersCount

func (o *GroupsGroupStatus) SetMembersCount(v int32)

SetMembersCount gets a reference to the given int32 and assigns it to the MembersCount field.

func (GroupsGroupStatus) ToMap

func (o GroupsGroupStatus) ToMap() (map[string]interface{}, error)

type GroupsListGroupUsersResponse

type GroupsListGroupUsersResponse struct {
	Users []SuperplaneUsersUser `json:"users,omitempty"`
	Group *GroupsGroup          `json:"group,omitempty"`
}

GroupsListGroupUsersResponse struct for GroupsListGroupUsersResponse

func NewGroupsListGroupUsersResponse

func NewGroupsListGroupUsersResponse() *GroupsListGroupUsersResponse

NewGroupsListGroupUsersResponse instantiates a new GroupsListGroupUsersResponse 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 NewGroupsListGroupUsersResponseWithDefaults

func NewGroupsListGroupUsersResponseWithDefaults() *GroupsListGroupUsersResponse

NewGroupsListGroupUsersResponseWithDefaults instantiates a new GroupsListGroupUsersResponse 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 (*GroupsListGroupUsersResponse) GetGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsListGroupUsersResponse) GetGroupOk

func (o *GroupsListGroupUsersResponse) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsListGroupUsersResponse) GetUsers

GetUsers returns the Users field value if set, zero value otherwise.

func (*GroupsListGroupUsersResponse) GetUsersOk

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

func (*GroupsListGroupUsersResponse) HasGroup

func (o *GroupsListGroupUsersResponse) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*GroupsListGroupUsersResponse) HasUsers

func (o *GroupsListGroupUsersResponse) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (GroupsListGroupUsersResponse) MarshalJSON

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

func (*GroupsListGroupUsersResponse) SetGroup

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (*GroupsListGroupUsersResponse) SetUsers

SetUsers gets a reference to the given []SuperplaneUsersUser and assigns it to the Users field.

func (GroupsListGroupUsersResponse) ToMap

func (o GroupsListGroupUsersResponse) ToMap() (map[string]interface{}, error)

type GroupsListGroupsResponse

type GroupsListGroupsResponse struct {
	Groups []GroupsGroup `json:"groups,omitempty"`
}

GroupsListGroupsResponse struct for GroupsListGroupsResponse

func NewGroupsListGroupsResponse

func NewGroupsListGroupsResponse() *GroupsListGroupsResponse

NewGroupsListGroupsResponse instantiates a new GroupsListGroupsResponse 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 NewGroupsListGroupsResponseWithDefaults

func NewGroupsListGroupsResponseWithDefaults() *GroupsListGroupsResponse

NewGroupsListGroupsResponseWithDefaults instantiates a new GroupsListGroupsResponse 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 (*GroupsListGroupsResponse) GetGroups

func (o *GroupsListGroupsResponse) GetGroups() []GroupsGroup

GetGroups returns the Groups field value if set, zero value otherwise.

func (*GroupsListGroupsResponse) GetGroupsOk

func (o *GroupsListGroupsResponse) GetGroupsOk() ([]GroupsGroup, bool)

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

func (*GroupsListGroupsResponse) HasGroups

func (o *GroupsListGroupsResponse) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (GroupsListGroupsResponse) MarshalJSON

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

func (*GroupsListGroupsResponse) SetGroups

func (o *GroupsListGroupsResponse) SetGroups(v []GroupsGroup)

SetGroups gets a reference to the given []GroupsGroup and assigns it to the Groups field.

func (GroupsListGroupsResponse) ToMap

func (o GroupsListGroupsResponse) ToMap() (map[string]interface{}, error)

type GroupsRemoveUserFromGroupBody

type GroupsRemoveUserFromGroupBody struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	UserId     *string                  `json:"userId,omitempty"`
	UserEmail  *string                  `json:"userEmail,omitempty"`
}

GroupsRemoveUserFromGroupBody struct for GroupsRemoveUserFromGroupBody

func NewGroupsRemoveUserFromGroupBody

func NewGroupsRemoveUserFromGroupBody() *GroupsRemoveUserFromGroupBody

NewGroupsRemoveUserFromGroupBody instantiates a new GroupsRemoveUserFromGroupBody 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 NewGroupsRemoveUserFromGroupBodyWithDefaults

func NewGroupsRemoveUserFromGroupBodyWithDefaults() *GroupsRemoveUserFromGroupBody

NewGroupsRemoveUserFromGroupBodyWithDefaults instantiates a new GroupsRemoveUserFromGroupBody 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 (*GroupsRemoveUserFromGroupBody) GetDomainId

func (o *GroupsRemoveUserFromGroupBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*GroupsRemoveUserFromGroupBody) GetDomainIdOk

func (o *GroupsRemoveUserFromGroupBody) GetDomainIdOk() (*string, bool)

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

func (*GroupsRemoveUserFromGroupBody) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*GroupsRemoveUserFromGroupBody) GetDomainTypeOk

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

func (*GroupsRemoveUserFromGroupBody) GetUserEmail

func (o *GroupsRemoveUserFromGroupBody) GetUserEmail() string

GetUserEmail returns the UserEmail field value if set, zero value otherwise.

func (*GroupsRemoveUserFromGroupBody) GetUserEmailOk

func (o *GroupsRemoveUserFromGroupBody) GetUserEmailOk() (*string, bool)

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

func (*GroupsRemoveUserFromGroupBody) GetUserId

func (o *GroupsRemoveUserFromGroupBody) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*GroupsRemoveUserFromGroupBody) GetUserIdOk

func (o *GroupsRemoveUserFromGroupBody) GetUserIdOk() (*string, bool)

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

func (*GroupsRemoveUserFromGroupBody) HasDomainId

func (o *GroupsRemoveUserFromGroupBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*GroupsRemoveUserFromGroupBody) HasDomainType

func (o *GroupsRemoveUserFromGroupBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*GroupsRemoveUserFromGroupBody) HasUserEmail

func (o *GroupsRemoveUserFromGroupBody) HasUserEmail() bool

HasUserEmail returns a boolean if a field has been set.

func (*GroupsRemoveUserFromGroupBody) HasUserId

func (o *GroupsRemoveUserFromGroupBody) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (GroupsRemoveUserFromGroupBody) MarshalJSON

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

func (*GroupsRemoveUserFromGroupBody) SetDomainId

func (o *GroupsRemoveUserFromGroupBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*GroupsRemoveUserFromGroupBody) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*GroupsRemoveUserFromGroupBody) SetUserEmail

func (o *GroupsRemoveUserFromGroupBody) SetUserEmail(v string)

SetUserEmail gets a reference to the given string and assigns it to the UserEmail field.

func (*GroupsRemoveUserFromGroupBody) SetUserId

func (o *GroupsRemoveUserFromGroupBody) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (GroupsRemoveUserFromGroupBody) ToMap

func (o GroupsRemoveUserFromGroupBody) ToMap() (map[string]interface{}, error)

type GroupsUpdateGroupBody

type GroupsUpdateGroupBody struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	Group      *GroupsGroup             `json:"group,omitempty"`
}

GroupsUpdateGroupBody struct for GroupsUpdateGroupBody

func NewGroupsUpdateGroupBody

func NewGroupsUpdateGroupBody() *GroupsUpdateGroupBody

NewGroupsUpdateGroupBody instantiates a new GroupsUpdateGroupBody 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 NewGroupsUpdateGroupBodyWithDefaults

func NewGroupsUpdateGroupBodyWithDefaults() *GroupsUpdateGroupBody

NewGroupsUpdateGroupBodyWithDefaults instantiates a new GroupsUpdateGroupBody 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 (*GroupsUpdateGroupBody) GetDomainId

func (o *GroupsUpdateGroupBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*GroupsUpdateGroupBody) GetDomainIdOk

func (o *GroupsUpdateGroupBody) GetDomainIdOk() (*string, bool)

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

func (*GroupsUpdateGroupBody) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*GroupsUpdateGroupBody) GetDomainTypeOk

func (o *GroupsUpdateGroupBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*GroupsUpdateGroupBody) GetGroup

func (o *GroupsUpdateGroupBody) GetGroup() GroupsGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsUpdateGroupBody) GetGroupOk

func (o *GroupsUpdateGroupBody) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsUpdateGroupBody) HasDomainId

func (o *GroupsUpdateGroupBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*GroupsUpdateGroupBody) HasDomainType

func (o *GroupsUpdateGroupBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*GroupsUpdateGroupBody) HasGroup

func (o *GroupsUpdateGroupBody) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupsUpdateGroupBody) MarshalJSON

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

func (*GroupsUpdateGroupBody) SetDomainId

func (o *GroupsUpdateGroupBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*GroupsUpdateGroupBody) SetDomainType

func (o *GroupsUpdateGroupBody) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*GroupsUpdateGroupBody) SetGroup

func (o *GroupsUpdateGroupBody) SetGroup(v GroupsGroup)

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (GroupsUpdateGroupBody) ToMap

func (o GroupsUpdateGroupBody) ToMap() (map[string]interface{}, error)

type GroupsUpdateGroupResponse

type GroupsUpdateGroupResponse struct {
	Group *GroupsGroup `json:"group,omitempty"`
}

GroupsUpdateGroupResponse struct for GroupsUpdateGroupResponse

func NewGroupsUpdateGroupResponse

func NewGroupsUpdateGroupResponse() *GroupsUpdateGroupResponse

NewGroupsUpdateGroupResponse instantiates a new GroupsUpdateGroupResponse 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 NewGroupsUpdateGroupResponseWithDefaults

func NewGroupsUpdateGroupResponseWithDefaults() *GroupsUpdateGroupResponse

NewGroupsUpdateGroupResponseWithDefaults instantiates a new GroupsUpdateGroupResponse 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 (*GroupsUpdateGroupResponse) GetGroup

func (o *GroupsUpdateGroupResponse) GetGroup() GroupsGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsUpdateGroupResponse) GetGroupOk

func (o *GroupsUpdateGroupResponse) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsUpdateGroupResponse) HasGroup

func (o *GroupsUpdateGroupResponse) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupsUpdateGroupResponse) MarshalJSON

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

func (*GroupsUpdateGroupResponse) SetGroup

func (o *GroupsUpdateGroupResponse) SetGroup(v GroupsGroup)

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (GroupsUpdateGroupResponse) ToMap

func (o GroupsUpdateGroupResponse) ToMap() (map[string]interface{}, error)

type IntegrationAPIService

type IntegrationAPIService service

IntegrationAPIService IntegrationAPI service

func (*IntegrationAPIService) IntegrationsListIntegrations

func (a *IntegrationAPIService) IntegrationsListIntegrations(ctx context.Context) ApiIntegrationsListIntegrationsRequest

IntegrationsListIntegrations List available integrations

List available integrations

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

func (*IntegrationAPIService) IntegrationsListIntegrationsExecute

Execute executes the request

@return SuperplaneIntegrationsListIntegrationsResponse

type IntegrationNodeRef added in v0.5.0

type IntegrationNodeRef struct {
	CanvasId   *string `json:"canvasId,omitempty"`
	CanvasName *string `json:"canvasName,omitempty"`
	NodeId     *string `json:"nodeId,omitempty"`
	NodeName   *string `json:"nodeName,omitempty"`
}

IntegrationNodeRef struct for IntegrationNodeRef

func NewIntegrationNodeRef added in v0.5.0

func NewIntegrationNodeRef() *IntegrationNodeRef

NewIntegrationNodeRef instantiates a new IntegrationNodeRef 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 NewIntegrationNodeRefWithDefaults added in v0.5.0

func NewIntegrationNodeRefWithDefaults() *IntegrationNodeRef

NewIntegrationNodeRefWithDefaults instantiates a new IntegrationNodeRef 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 (*IntegrationNodeRef) GetCanvasId added in v0.7.0

func (o *IntegrationNodeRef) GetCanvasId() string

GetCanvasId returns the CanvasId field value if set, zero value otherwise.

func (*IntegrationNodeRef) GetCanvasIdOk added in v0.7.0

func (o *IntegrationNodeRef) GetCanvasIdOk() (*string, bool)

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

func (*IntegrationNodeRef) GetCanvasName added in v0.7.0

func (o *IntegrationNodeRef) GetCanvasName() string

GetCanvasName returns the CanvasName field value if set, zero value otherwise.

func (*IntegrationNodeRef) GetCanvasNameOk added in v0.7.0

func (o *IntegrationNodeRef) GetCanvasNameOk() (*string, bool)

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

func (*IntegrationNodeRef) GetNodeId added in v0.5.0

func (o *IntegrationNodeRef) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*IntegrationNodeRef) GetNodeIdOk added in v0.5.0

func (o *IntegrationNodeRef) GetNodeIdOk() (*string, bool)

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

func (*IntegrationNodeRef) GetNodeName added in v0.5.0

func (o *IntegrationNodeRef) GetNodeName() string

GetNodeName returns the NodeName field value if set, zero value otherwise.

func (*IntegrationNodeRef) GetNodeNameOk added in v0.5.0

func (o *IntegrationNodeRef) GetNodeNameOk() (*string, bool)

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

func (*IntegrationNodeRef) HasCanvasId added in v0.7.0

func (o *IntegrationNodeRef) HasCanvasId() bool

HasCanvasId returns a boolean if a field has been set.

func (*IntegrationNodeRef) HasCanvasName added in v0.7.0

func (o *IntegrationNodeRef) HasCanvasName() bool

HasCanvasName returns a boolean if a field has been set.

func (*IntegrationNodeRef) HasNodeId added in v0.5.0

func (o *IntegrationNodeRef) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*IntegrationNodeRef) HasNodeName added in v0.5.0

func (o *IntegrationNodeRef) HasNodeName() bool

HasNodeName returns a boolean if a field has been set.

func (IntegrationNodeRef) MarshalJSON added in v0.5.0

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

func (*IntegrationNodeRef) SetCanvasId added in v0.7.0

func (o *IntegrationNodeRef) SetCanvasId(v string)

SetCanvasId gets a reference to the given string and assigns it to the CanvasId field.

func (*IntegrationNodeRef) SetCanvasName added in v0.7.0

func (o *IntegrationNodeRef) SetCanvasName(v string)

SetCanvasName gets a reference to the given string and assigns it to the CanvasName field.

func (*IntegrationNodeRef) SetNodeId added in v0.5.0

func (o *IntegrationNodeRef) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*IntegrationNodeRef) SetNodeName added in v0.5.0

func (o *IntegrationNodeRef) SetNodeName(v string)

SetNodeName gets a reference to the given string and assigns it to the NodeName field.

func (IntegrationNodeRef) ToMap added in v0.5.0

func (o IntegrationNodeRef) ToMap() (map[string]interface{}, error)

type IntegrationsIntegrationDefinition added in v0.5.0

type IntegrationsIntegrationDefinition struct {
	Name          *string               `json:"name,omitempty"`
	Label         *string               `json:"label,omitempty"`
	Icon          *string               `json:"icon,omitempty"`
	Description   *string               `json:"description,omitempty"`
	Configuration []ConfigurationField  `json:"configuration,omitempty"`
	Components    []ComponentsComponent `json:"components,omitempty"`
	Triggers      []TriggersTrigger     `json:"triggers,omitempty"`
	Instructions  *string               `json:"instructions,omitempty"`
}

IntegrationsIntegrationDefinition struct for IntegrationsIntegrationDefinition

func NewIntegrationsIntegrationDefinition added in v0.5.0

func NewIntegrationsIntegrationDefinition() *IntegrationsIntegrationDefinition

NewIntegrationsIntegrationDefinition instantiates a new IntegrationsIntegrationDefinition 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 NewIntegrationsIntegrationDefinitionWithDefaults added in v0.5.0

func NewIntegrationsIntegrationDefinitionWithDefaults() *IntegrationsIntegrationDefinition

NewIntegrationsIntegrationDefinitionWithDefaults instantiates a new IntegrationsIntegrationDefinition 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 (*IntegrationsIntegrationDefinition) GetComponents added in v0.5.0

GetComponents returns the Components field value if set, zero value otherwise.

func (*IntegrationsIntegrationDefinition) GetComponentsOk added in v0.5.0

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

func (*IntegrationsIntegrationDefinition) GetConfiguration added in v0.5.0

func (o *IntegrationsIntegrationDefinition) GetConfiguration() []ConfigurationField

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*IntegrationsIntegrationDefinition) GetConfigurationOk added in v0.5.0

func (o *IntegrationsIntegrationDefinition) GetConfigurationOk() ([]ConfigurationField, bool)

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

func (*IntegrationsIntegrationDefinition) GetDescription added in v0.5.0

func (o *IntegrationsIntegrationDefinition) GetDescription() string

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

func (*IntegrationsIntegrationDefinition) GetDescriptionOk added in v0.5.0

func (o *IntegrationsIntegrationDefinition) 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 (*IntegrationsIntegrationDefinition) GetIcon added in v0.5.0

GetIcon returns the Icon field value if set, zero value otherwise.

func (*IntegrationsIntegrationDefinition) GetIconOk added in v0.5.0

func (o *IntegrationsIntegrationDefinition) GetIconOk() (*string, bool)

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

func (*IntegrationsIntegrationDefinition) GetInstructions added in v0.5.0

func (o *IntegrationsIntegrationDefinition) GetInstructions() string

GetInstructions returns the Instructions field value if set, zero value otherwise.

func (*IntegrationsIntegrationDefinition) GetInstructionsOk added in v0.5.0

func (o *IntegrationsIntegrationDefinition) GetInstructionsOk() (*string, bool)

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

func (*IntegrationsIntegrationDefinition) GetLabel added in v0.5.0

GetLabel returns the Label field value if set, zero value otherwise.

func (*IntegrationsIntegrationDefinition) GetLabelOk added in v0.5.0

func (o *IntegrationsIntegrationDefinition) GetLabelOk() (*string, bool)

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

func (*IntegrationsIntegrationDefinition) GetName added in v0.5.0

GetName returns the Name field value if set, zero value otherwise.

func (*IntegrationsIntegrationDefinition) GetNameOk added in v0.5.0

func (o *IntegrationsIntegrationDefinition) GetNameOk() (*string, bool)

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

func (*IntegrationsIntegrationDefinition) GetTriggers added in v0.5.0

GetTriggers returns the Triggers field value if set, zero value otherwise.

func (*IntegrationsIntegrationDefinition) GetTriggersOk added in v0.5.0

func (o *IntegrationsIntegrationDefinition) GetTriggersOk() ([]TriggersTrigger, bool)

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

func (*IntegrationsIntegrationDefinition) HasComponents added in v0.5.0

func (o *IntegrationsIntegrationDefinition) HasComponents() bool

HasComponents returns a boolean if a field has been set.

func (*IntegrationsIntegrationDefinition) HasConfiguration added in v0.5.0

func (o *IntegrationsIntegrationDefinition) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*IntegrationsIntegrationDefinition) HasDescription added in v0.5.0

func (o *IntegrationsIntegrationDefinition) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*IntegrationsIntegrationDefinition) HasIcon added in v0.5.0

HasIcon returns a boolean if a field has been set.

func (*IntegrationsIntegrationDefinition) HasInstructions added in v0.5.0

func (o *IntegrationsIntegrationDefinition) HasInstructions() bool

HasInstructions returns a boolean if a field has been set.

func (*IntegrationsIntegrationDefinition) HasLabel added in v0.5.0

HasLabel returns a boolean if a field has been set.

func (*IntegrationsIntegrationDefinition) HasName added in v0.5.0

HasName returns a boolean if a field has been set.

func (*IntegrationsIntegrationDefinition) HasTriggers added in v0.5.0

func (o *IntegrationsIntegrationDefinition) HasTriggers() bool

HasTriggers returns a boolean if a field has been set.

func (IntegrationsIntegrationDefinition) MarshalJSON added in v0.5.0

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

func (*IntegrationsIntegrationDefinition) SetComponents added in v0.5.0

SetComponents gets a reference to the given []ComponentsComponent and assigns it to the Components field.

func (*IntegrationsIntegrationDefinition) SetConfiguration added in v0.5.0

func (o *IntegrationsIntegrationDefinition) SetConfiguration(v []ConfigurationField)

SetConfiguration gets a reference to the given []ConfigurationField and assigns it to the Configuration field.

func (*IntegrationsIntegrationDefinition) SetDescription added in v0.5.0

func (o *IntegrationsIntegrationDefinition) SetDescription(v string)

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

func (*IntegrationsIntegrationDefinition) SetIcon added in v0.5.0

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*IntegrationsIntegrationDefinition) SetInstructions added in v0.5.0

func (o *IntegrationsIntegrationDefinition) SetInstructions(v string)

SetInstructions gets a reference to the given string and assigns it to the Instructions field.

func (*IntegrationsIntegrationDefinition) SetLabel added in v0.5.0

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*IntegrationsIntegrationDefinition) SetName added in v0.5.0

SetName gets a reference to the given string and assigns it to the Name field.

func (*IntegrationsIntegrationDefinition) SetTriggers added in v0.5.0

SetTriggers gets a reference to the given []TriggersTrigger and assigns it to the Triggers field.

func (IntegrationsIntegrationDefinition) ToMap added in v0.5.0

func (o IntegrationsIntegrationDefinition) ToMap() (map[string]interface{}, error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MeAPIService

type MeAPIService service

MeAPIService MeAPI service

func (*MeAPIService) MeMe

MeMe Get current user

Returns the currently authenticated user

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

func (*MeAPIService) MeMeExecute

Execute executes the request

@return SuperplaneMeUser

func (*MeAPIService) MeRegenerateToken

func (a *MeAPIService) MeRegenerateToken(ctx context.Context) ApiMeRegenerateTokenRequest

MeRegenerateToken Regenerate API token

Regenerates the currently authencated user's API token

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

func (*MeAPIService) MeRegenerateTokenExecute

Execute executes the request

@return MeRegenerateTokenResponse

type MeRegenerateTokenResponse

type MeRegenerateTokenResponse struct {
	Token *string `json:"token,omitempty"`
}

MeRegenerateTokenResponse struct for MeRegenerateTokenResponse

func NewMeRegenerateTokenResponse

func NewMeRegenerateTokenResponse() *MeRegenerateTokenResponse

NewMeRegenerateTokenResponse instantiates a new MeRegenerateTokenResponse 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 NewMeRegenerateTokenResponseWithDefaults

func NewMeRegenerateTokenResponseWithDefaults() *MeRegenerateTokenResponse

NewMeRegenerateTokenResponseWithDefaults instantiates a new MeRegenerateTokenResponse 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 (*MeRegenerateTokenResponse) GetToken

func (o *MeRegenerateTokenResponse) GetToken() string

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

func (*MeRegenerateTokenResponse) GetTokenOk

func (o *MeRegenerateTokenResponse) 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 (*MeRegenerateTokenResponse) HasToken

func (o *MeRegenerateTokenResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (MeRegenerateTokenResponse) MarshalJSON

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

func (*MeRegenerateTokenResponse) SetToken

func (o *MeRegenerateTokenResponse) SetToken(v string)

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

func (MeRegenerateTokenResponse) ToMap

func (o MeRegenerateTokenResponse) ToMap() (map[string]interface{}, error)

type NodeBlueprintRef

type NodeBlueprintRef struct {
	Id *string `json:"id,omitempty"`
}

NodeBlueprintRef struct for NodeBlueprintRef

func NewNodeBlueprintRef

func NewNodeBlueprintRef() *NodeBlueprintRef

NewNodeBlueprintRef instantiates a new NodeBlueprintRef 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 NewNodeBlueprintRefWithDefaults

func NewNodeBlueprintRefWithDefaults() *NodeBlueprintRef

NewNodeBlueprintRefWithDefaults instantiates a new NodeBlueprintRef 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 (*NodeBlueprintRef) GetId

func (o *NodeBlueprintRef) GetId() string

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

func (*NodeBlueprintRef) GetIdOk

func (o *NodeBlueprintRef) 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 (*NodeBlueprintRef) HasId

func (o *NodeBlueprintRef) HasId() bool

HasId returns a boolean if a field has been set.

func (NodeBlueprintRef) MarshalJSON

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

func (*NodeBlueprintRef) SetId

func (o *NodeBlueprintRef) SetId(v string)

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

func (NodeBlueprintRef) ToMap

func (o NodeBlueprintRef) ToMap() (map[string]interface{}, error)

type NodeComponentRef

type NodeComponentRef struct {
	Name *string `json:"name,omitempty"`
}

NodeComponentRef struct for NodeComponentRef

func NewNodeComponentRef

func NewNodeComponentRef() *NodeComponentRef

NewNodeComponentRef instantiates a new NodeComponentRef 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 NewNodeComponentRefWithDefaults

func NewNodeComponentRefWithDefaults() *NodeComponentRef

NewNodeComponentRefWithDefaults instantiates a new NodeComponentRef 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 (*NodeComponentRef) GetName

func (o *NodeComponentRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*NodeComponentRef) GetNameOk

func (o *NodeComponentRef) GetNameOk() (*string, bool)

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

func (*NodeComponentRef) HasName

func (o *NodeComponentRef) HasName() bool

HasName returns a boolean if a field has been set.

func (NodeComponentRef) MarshalJSON

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

func (*NodeComponentRef) SetName

func (o *NodeComponentRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (NodeComponentRef) ToMap

func (o NodeComponentRef) ToMap() (map[string]interface{}, error)

type NodeTriggerRef

type NodeTriggerRef struct {
	Name *string `json:"name,omitempty"`
}

NodeTriggerRef struct for NodeTriggerRef

func NewNodeTriggerRef

func NewNodeTriggerRef() *NodeTriggerRef

NewNodeTriggerRef instantiates a new NodeTriggerRef 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 NewNodeTriggerRefWithDefaults

func NewNodeTriggerRefWithDefaults() *NodeTriggerRef

NewNodeTriggerRefWithDefaults instantiates a new NodeTriggerRef 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 (*NodeTriggerRef) GetName

func (o *NodeTriggerRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*NodeTriggerRef) GetNameOk

func (o *NodeTriggerRef) GetNameOk() (*string, bool)

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

func (*NodeTriggerRef) HasName

func (o *NodeTriggerRef) HasName() bool

HasName returns a boolean if a field has been set.

func (NodeTriggerRef) MarshalJSON

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

func (*NodeTriggerRef) SetName

func (o *NodeTriggerRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (NodeTriggerRef) ToMap

func (o NodeTriggerRef) ToMap() (map[string]interface{}, error)

type NodeWidgetRef added in v0.0.18

type NodeWidgetRef struct {
	Name *string `json:"name,omitempty"`
}

NodeWidgetRef struct for NodeWidgetRef

func NewNodeWidgetRef added in v0.0.18

func NewNodeWidgetRef() *NodeWidgetRef

NewNodeWidgetRef instantiates a new NodeWidgetRef 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 NewNodeWidgetRefWithDefaults added in v0.0.18

func NewNodeWidgetRefWithDefaults() *NodeWidgetRef

NewNodeWidgetRefWithDefaults instantiates a new NodeWidgetRef 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 (*NodeWidgetRef) GetName added in v0.0.18

func (o *NodeWidgetRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*NodeWidgetRef) GetNameOk added in v0.0.18

func (o *NodeWidgetRef) GetNameOk() (*string, bool)

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

func (*NodeWidgetRef) HasName added in v0.0.18

func (o *NodeWidgetRef) HasName() bool

HasName returns a boolean if a field has been set.

func (NodeWidgetRef) MarshalJSON added in v0.0.18

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

func (*NodeWidgetRef) SetName added in v0.0.18

func (o *NodeWidgetRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (NodeWidgetRef) ToMap added in v0.0.18

func (o NodeWidgetRef) ToMap() (map[string]interface{}, error)

type NullableAuthorizationDomainType

type NullableAuthorizationDomainType struct {
	// contains filtered or unexported fields
}

func (NullableAuthorizationDomainType) Get

func (NullableAuthorizationDomainType) IsSet

func (NullableAuthorizationDomainType) MarshalJSON

func (v NullableAuthorizationDomainType) MarshalJSON() ([]byte, error)

func (*NullableAuthorizationDomainType) Set

func (*NullableAuthorizationDomainType) UnmarshalJSON

func (v *NullableAuthorizationDomainType) UnmarshalJSON(src []byte) error

func (*NullableAuthorizationDomainType) Unset

type NullableAuthorizationPermission

type NullableAuthorizationPermission struct {
	// contains filtered or unexported fields
}

func (NullableAuthorizationPermission) Get

func (NullableAuthorizationPermission) IsSet

func (NullableAuthorizationPermission) MarshalJSON

func (v NullableAuthorizationPermission) MarshalJSON() ([]byte, error)

func (*NullableAuthorizationPermission) Set

func (*NullableAuthorizationPermission) UnmarshalJSON

func (v *NullableAuthorizationPermission) UnmarshalJSON(src []byte) error

func (*NullableAuthorizationPermission) Unset

type NullableBlueprintsBlueprint

type NullableBlueprintsBlueprint struct {
	// contains filtered or unexported fields
}

func NewNullableBlueprintsBlueprint

func NewNullableBlueprintsBlueprint(val *BlueprintsBlueprint) *NullableBlueprintsBlueprint

func (NullableBlueprintsBlueprint) Get

func (NullableBlueprintsBlueprint) IsSet

func (NullableBlueprintsBlueprint) MarshalJSON

func (v NullableBlueprintsBlueprint) MarshalJSON() ([]byte, error)

func (*NullableBlueprintsBlueprint) Set

func (*NullableBlueprintsBlueprint) UnmarshalJSON

func (v *NullableBlueprintsBlueprint) UnmarshalJSON(src []byte) error

func (*NullableBlueprintsBlueprint) Unset

func (v *NullableBlueprintsBlueprint) Unset()

type NullableBlueprintsCreateBlueprintRequest

type NullableBlueprintsCreateBlueprintRequest struct {
	// contains filtered or unexported fields
}

func (NullableBlueprintsCreateBlueprintRequest) Get

func (NullableBlueprintsCreateBlueprintRequest) IsSet

func (NullableBlueprintsCreateBlueprintRequest) MarshalJSON

func (*NullableBlueprintsCreateBlueprintRequest) Set

func (*NullableBlueprintsCreateBlueprintRequest) UnmarshalJSON

func (v *NullableBlueprintsCreateBlueprintRequest) UnmarshalJSON(src []byte) error

func (*NullableBlueprintsCreateBlueprintRequest) Unset

type NullableBlueprintsCreateBlueprintResponse

type NullableBlueprintsCreateBlueprintResponse struct {
	// contains filtered or unexported fields
}

func (NullableBlueprintsCreateBlueprintResponse) Get

func (NullableBlueprintsCreateBlueprintResponse) IsSet

func (NullableBlueprintsCreateBlueprintResponse) MarshalJSON

func (*NullableBlueprintsCreateBlueprintResponse) Set

func (*NullableBlueprintsCreateBlueprintResponse) UnmarshalJSON

func (v *NullableBlueprintsCreateBlueprintResponse) UnmarshalJSON(src []byte) error

func (*NullableBlueprintsCreateBlueprintResponse) Unset

type NullableBlueprintsDescribeBlueprintResponse

type NullableBlueprintsDescribeBlueprintResponse struct {
	// contains filtered or unexported fields
}

func (NullableBlueprintsDescribeBlueprintResponse) Get

func (NullableBlueprintsDescribeBlueprintResponse) IsSet

func (NullableBlueprintsDescribeBlueprintResponse) MarshalJSON

func (*NullableBlueprintsDescribeBlueprintResponse) Set

func (*NullableBlueprintsDescribeBlueprintResponse) UnmarshalJSON

func (v *NullableBlueprintsDescribeBlueprintResponse) UnmarshalJSON(src []byte) error

func (*NullableBlueprintsDescribeBlueprintResponse) Unset

type NullableBlueprintsListBlueprintsResponse

type NullableBlueprintsListBlueprintsResponse struct {
	// contains filtered or unexported fields
}

func (NullableBlueprintsListBlueprintsResponse) Get

func (NullableBlueprintsListBlueprintsResponse) IsSet

func (NullableBlueprintsListBlueprintsResponse) MarshalJSON

func (*NullableBlueprintsListBlueprintsResponse) Set

func (*NullableBlueprintsListBlueprintsResponse) UnmarshalJSON

func (v *NullableBlueprintsListBlueprintsResponse) UnmarshalJSON(src []byte) error

func (*NullableBlueprintsListBlueprintsResponse) Unset

type NullableBlueprintsUpdateBlueprintBody

type NullableBlueprintsUpdateBlueprintBody struct {
	// contains filtered or unexported fields
}

func (NullableBlueprintsUpdateBlueprintBody) Get

func (NullableBlueprintsUpdateBlueprintBody) IsSet

func (NullableBlueprintsUpdateBlueprintBody) MarshalJSON

func (v NullableBlueprintsUpdateBlueprintBody) MarshalJSON() ([]byte, error)

func (*NullableBlueprintsUpdateBlueprintBody) Set

func (*NullableBlueprintsUpdateBlueprintBody) UnmarshalJSON

func (v *NullableBlueprintsUpdateBlueprintBody) UnmarshalJSON(src []byte) error

func (*NullableBlueprintsUpdateBlueprintBody) Unset

type NullableBlueprintsUpdateBlueprintResponse

type NullableBlueprintsUpdateBlueprintResponse struct {
	// contains filtered or unexported fields
}

func (NullableBlueprintsUpdateBlueprintResponse) Get

func (NullableBlueprintsUpdateBlueprintResponse) IsSet

func (NullableBlueprintsUpdateBlueprintResponse) MarshalJSON

func (*NullableBlueprintsUpdateBlueprintResponse) Set

func (*NullableBlueprintsUpdateBlueprintResponse) UnmarshalJSON

func (v *NullableBlueprintsUpdateBlueprintResponse) UnmarshalJSON(src []byte) error

func (*NullableBlueprintsUpdateBlueprintResponse) Unset

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 NullableCanvasNodeExecutionResult added in v0.6.0

type NullableCanvasNodeExecutionResult struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasNodeExecutionResult added in v0.6.0

func NewNullableCanvasNodeExecutionResult(val *CanvasNodeExecutionResult) *NullableCanvasNodeExecutionResult

func (NullableCanvasNodeExecutionResult) Get added in v0.6.0

func (NullableCanvasNodeExecutionResult) IsSet added in v0.6.0

func (NullableCanvasNodeExecutionResult) MarshalJSON added in v0.6.0

func (v NullableCanvasNodeExecutionResult) MarshalJSON() ([]byte, error)

func (*NullableCanvasNodeExecutionResult) Set added in v0.6.0

func (*NullableCanvasNodeExecutionResult) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasNodeExecutionResult) UnmarshalJSON(src []byte) error

func (*NullableCanvasNodeExecutionResult) Unset added in v0.6.0

type NullableCanvasNodeExecutionResultReason added in v0.6.0

type NullableCanvasNodeExecutionResultReason struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasNodeExecutionResultReason added in v0.6.0

func NewNullableCanvasNodeExecutionResultReason(val *CanvasNodeExecutionResultReason) *NullableCanvasNodeExecutionResultReason

func (NullableCanvasNodeExecutionResultReason) Get added in v0.6.0

func (NullableCanvasNodeExecutionResultReason) IsSet added in v0.6.0

func (NullableCanvasNodeExecutionResultReason) MarshalJSON added in v0.6.0

func (v NullableCanvasNodeExecutionResultReason) MarshalJSON() ([]byte, error)

func (*NullableCanvasNodeExecutionResultReason) Set added in v0.6.0

func (*NullableCanvasNodeExecutionResultReason) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasNodeExecutionResultReason) UnmarshalJSON(src []byte) error

func (*NullableCanvasNodeExecutionResultReason) Unset added in v0.6.0

type NullableCanvasNodeExecutionState added in v0.6.0

type NullableCanvasNodeExecutionState struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasNodeExecutionState added in v0.6.0

func NewNullableCanvasNodeExecutionState(val *CanvasNodeExecutionState) *NullableCanvasNodeExecutionState

func (NullableCanvasNodeExecutionState) Get added in v0.6.0

func (NullableCanvasNodeExecutionState) IsSet added in v0.6.0

func (NullableCanvasNodeExecutionState) MarshalJSON added in v0.6.0

func (v NullableCanvasNodeExecutionState) MarshalJSON() ([]byte, error)

func (*NullableCanvasNodeExecutionState) Set added in v0.6.0

func (*NullableCanvasNodeExecutionState) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasNodeExecutionState) UnmarshalJSON(src []byte) error

func (*NullableCanvasNodeExecutionState) Unset added in v0.6.0

type NullableCanvasesCanvas added in v0.6.0

type NullableCanvasesCanvas struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesCanvas added in v0.6.0

func NewNullableCanvasesCanvas(val *CanvasesCanvas) *NullableCanvasesCanvas

func (NullableCanvasesCanvas) Get added in v0.6.0

func (NullableCanvasesCanvas) IsSet added in v0.6.0

func (v NullableCanvasesCanvas) IsSet() bool

func (NullableCanvasesCanvas) MarshalJSON added in v0.6.0

func (v NullableCanvasesCanvas) MarshalJSON() ([]byte, error)

func (*NullableCanvasesCanvas) Set added in v0.6.0

func (*NullableCanvasesCanvas) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesCanvas) UnmarshalJSON(src []byte) error

func (*NullableCanvasesCanvas) Unset added in v0.6.0

func (v *NullableCanvasesCanvas) Unset()

type NullableCanvasesCanvasEvent added in v0.6.0

type NullableCanvasesCanvasEvent struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesCanvasEvent added in v0.6.0

func NewNullableCanvasesCanvasEvent(val *CanvasesCanvasEvent) *NullableCanvasesCanvasEvent

func (NullableCanvasesCanvasEvent) Get added in v0.6.0

func (NullableCanvasesCanvasEvent) IsSet added in v0.6.0

func (NullableCanvasesCanvasEvent) MarshalJSON added in v0.6.0

func (v NullableCanvasesCanvasEvent) MarshalJSON() ([]byte, error)

func (*NullableCanvasesCanvasEvent) Set added in v0.6.0

func (*NullableCanvasesCanvasEvent) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesCanvasEvent) UnmarshalJSON(src []byte) error

func (*NullableCanvasesCanvasEvent) Unset added in v0.6.0

func (v *NullableCanvasesCanvasEvent) Unset()

type NullableCanvasesCanvasEventWithExecutions added in v0.6.0

type NullableCanvasesCanvasEventWithExecutions struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesCanvasEventWithExecutions added in v0.6.0

func NewNullableCanvasesCanvasEventWithExecutions(val *CanvasesCanvasEventWithExecutions) *NullableCanvasesCanvasEventWithExecutions

func (NullableCanvasesCanvasEventWithExecutions) Get added in v0.6.0

func (NullableCanvasesCanvasEventWithExecutions) IsSet added in v0.6.0

func (NullableCanvasesCanvasEventWithExecutions) MarshalJSON added in v0.6.0

func (*NullableCanvasesCanvasEventWithExecutions) Set added in v0.6.0

func (*NullableCanvasesCanvasEventWithExecutions) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesCanvasEventWithExecutions) UnmarshalJSON(src []byte) error

func (*NullableCanvasesCanvasEventWithExecutions) Unset added in v0.6.0

type NullableCanvasesCanvasMetadata added in v0.6.0

type NullableCanvasesCanvasMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesCanvasMetadata added in v0.6.0

func NewNullableCanvasesCanvasMetadata(val *CanvasesCanvasMetadata) *NullableCanvasesCanvasMetadata

func (NullableCanvasesCanvasMetadata) Get added in v0.6.0

func (NullableCanvasesCanvasMetadata) IsSet added in v0.6.0

func (NullableCanvasesCanvasMetadata) MarshalJSON added in v0.6.0

func (v NullableCanvasesCanvasMetadata) MarshalJSON() ([]byte, error)

func (*NullableCanvasesCanvasMetadata) Set added in v0.6.0

func (*NullableCanvasesCanvasMetadata) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesCanvasMetadata) UnmarshalJSON(src []byte) error

func (*NullableCanvasesCanvasMetadata) Unset added in v0.6.0

func (v *NullableCanvasesCanvasMetadata) Unset()

type NullableCanvasesCanvasNodeExecution added in v0.6.0

type NullableCanvasesCanvasNodeExecution struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesCanvasNodeExecution added in v0.6.0

func NewNullableCanvasesCanvasNodeExecution(val *CanvasesCanvasNodeExecution) *NullableCanvasesCanvasNodeExecution

func (NullableCanvasesCanvasNodeExecution) Get added in v0.6.0

func (NullableCanvasesCanvasNodeExecution) IsSet added in v0.6.0

func (NullableCanvasesCanvasNodeExecution) MarshalJSON added in v0.6.0

func (v NullableCanvasesCanvasNodeExecution) MarshalJSON() ([]byte, error)

func (*NullableCanvasesCanvasNodeExecution) Set added in v0.6.0

func (*NullableCanvasesCanvasNodeExecution) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesCanvasNodeExecution) UnmarshalJSON(src []byte) error

func (*NullableCanvasesCanvasNodeExecution) Unset added in v0.6.0

type NullableCanvasesCanvasNodeQueueItem added in v0.6.0

type NullableCanvasesCanvasNodeQueueItem struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesCanvasNodeQueueItem added in v0.6.0

func NewNullableCanvasesCanvasNodeQueueItem(val *CanvasesCanvasNodeQueueItem) *NullableCanvasesCanvasNodeQueueItem

func (NullableCanvasesCanvasNodeQueueItem) Get added in v0.6.0

func (NullableCanvasesCanvasNodeQueueItem) IsSet added in v0.6.0

func (NullableCanvasesCanvasNodeQueueItem) MarshalJSON added in v0.6.0

func (v NullableCanvasesCanvasNodeQueueItem) MarshalJSON() ([]byte, error)

func (*NullableCanvasesCanvasNodeQueueItem) Set added in v0.6.0

func (*NullableCanvasesCanvasNodeQueueItem) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesCanvasNodeQueueItem) UnmarshalJSON(src []byte) error

func (*NullableCanvasesCanvasNodeQueueItem) Unset added in v0.6.0

type NullableCanvasesCanvasSpec added in v0.6.0

type NullableCanvasesCanvasSpec struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesCanvasSpec added in v0.6.0

func NewNullableCanvasesCanvasSpec(val *CanvasesCanvasSpec) *NullableCanvasesCanvasSpec

func (NullableCanvasesCanvasSpec) Get added in v0.6.0

func (NullableCanvasesCanvasSpec) IsSet added in v0.6.0

func (v NullableCanvasesCanvasSpec) IsSet() bool

func (NullableCanvasesCanvasSpec) MarshalJSON added in v0.6.0

func (v NullableCanvasesCanvasSpec) MarshalJSON() ([]byte, error)

func (*NullableCanvasesCanvasSpec) Set added in v0.6.0

func (*NullableCanvasesCanvasSpec) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesCanvasSpec) UnmarshalJSON(src []byte) error

func (*NullableCanvasesCanvasSpec) Unset added in v0.6.0

func (v *NullableCanvasesCanvasSpec) Unset()

type NullableCanvasesCanvasStatus added in v0.6.0

type NullableCanvasesCanvasStatus struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesCanvasStatus added in v0.6.0

func NewNullableCanvasesCanvasStatus(val *CanvasesCanvasStatus) *NullableCanvasesCanvasStatus

func (NullableCanvasesCanvasStatus) Get added in v0.6.0

func (NullableCanvasesCanvasStatus) IsSet added in v0.6.0

func (NullableCanvasesCanvasStatus) MarshalJSON added in v0.6.0

func (v NullableCanvasesCanvasStatus) MarshalJSON() ([]byte, error)

func (*NullableCanvasesCanvasStatus) Set added in v0.6.0

func (*NullableCanvasesCanvasStatus) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesCanvasStatus) UnmarshalJSON(src []byte) error

func (*NullableCanvasesCanvasStatus) Unset added in v0.6.0

func (v *NullableCanvasesCanvasStatus) Unset()

type NullableCanvasesCreateCanvasRequest added in v0.6.0

type NullableCanvasesCreateCanvasRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesCreateCanvasRequest added in v0.6.0

func NewNullableCanvasesCreateCanvasRequest(val *CanvasesCreateCanvasRequest) *NullableCanvasesCreateCanvasRequest

func (NullableCanvasesCreateCanvasRequest) Get added in v0.6.0

func (NullableCanvasesCreateCanvasRequest) IsSet added in v0.6.0

func (NullableCanvasesCreateCanvasRequest) MarshalJSON added in v0.6.0

func (v NullableCanvasesCreateCanvasRequest) MarshalJSON() ([]byte, error)

func (*NullableCanvasesCreateCanvasRequest) Set added in v0.6.0

func (*NullableCanvasesCreateCanvasRequest) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesCreateCanvasRequest) UnmarshalJSON(src []byte) error

func (*NullableCanvasesCreateCanvasRequest) Unset added in v0.6.0

type NullableCanvasesCreateCanvasResponse added in v0.6.0

type NullableCanvasesCreateCanvasResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesCreateCanvasResponse added in v0.6.0

func NewNullableCanvasesCreateCanvasResponse(val *CanvasesCreateCanvasResponse) *NullableCanvasesCreateCanvasResponse

func (NullableCanvasesCreateCanvasResponse) Get added in v0.6.0

func (NullableCanvasesCreateCanvasResponse) IsSet added in v0.6.0

func (NullableCanvasesCreateCanvasResponse) MarshalJSON added in v0.6.0

func (v NullableCanvasesCreateCanvasResponse) MarshalJSON() ([]byte, error)

func (*NullableCanvasesCreateCanvasResponse) Set added in v0.6.0

func (*NullableCanvasesCreateCanvasResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesCreateCanvasResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesCreateCanvasResponse) Unset added in v0.6.0

type NullableCanvasesDescribeCanvasResponse added in v0.6.0

type NullableCanvasesDescribeCanvasResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesDescribeCanvasResponse added in v0.6.0

func NewNullableCanvasesDescribeCanvasResponse(val *CanvasesDescribeCanvasResponse) *NullableCanvasesDescribeCanvasResponse

func (NullableCanvasesDescribeCanvasResponse) Get added in v0.6.0

func (NullableCanvasesDescribeCanvasResponse) IsSet added in v0.6.0

func (NullableCanvasesDescribeCanvasResponse) MarshalJSON added in v0.6.0

func (v NullableCanvasesDescribeCanvasResponse) MarshalJSON() ([]byte, error)

func (*NullableCanvasesDescribeCanvasResponse) Set added in v0.6.0

func (*NullableCanvasesDescribeCanvasResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesDescribeCanvasResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesDescribeCanvasResponse) Unset added in v0.6.0

type NullableCanvasesEmitNodeEventBody added in v0.6.0

type NullableCanvasesEmitNodeEventBody struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesEmitNodeEventBody added in v0.6.0

func NewNullableCanvasesEmitNodeEventBody(val *CanvasesEmitNodeEventBody) *NullableCanvasesEmitNodeEventBody

func (NullableCanvasesEmitNodeEventBody) Get added in v0.6.0

func (NullableCanvasesEmitNodeEventBody) IsSet added in v0.6.0

func (NullableCanvasesEmitNodeEventBody) MarshalJSON added in v0.6.0

func (v NullableCanvasesEmitNodeEventBody) MarshalJSON() ([]byte, error)

func (*NullableCanvasesEmitNodeEventBody) Set added in v0.6.0

func (*NullableCanvasesEmitNodeEventBody) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesEmitNodeEventBody) UnmarshalJSON(src []byte) error

func (*NullableCanvasesEmitNodeEventBody) Unset added in v0.6.0

type NullableCanvasesEmitNodeEventResponse added in v0.6.0

type NullableCanvasesEmitNodeEventResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesEmitNodeEventResponse added in v0.6.0

func NewNullableCanvasesEmitNodeEventResponse(val *CanvasesEmitNodeEventResponse) *NullableCanvasesEmitNodeEventResponse

func (NullableCanvasesEmitNodeEventResponse) Get added in v0.6.0

func (NullableCanvasesEmitNodeEventResponse) IsSet added in v0.6.0

func (NullableCanvasesEmitNodeEventResponse) MarshalJSON added in v0.6.0

func (v NullableCanvasesEmitNodeEventResponse) MarshalJSON() ([]byte, error)

func (*NullableCanvasesEmitNodeEventResponse) Set added in v0.6.0

func (*NullableCanvasesEmitNodeEventResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesEmitNodeEventResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesEmitNodeEventResponse) Unset added in v0.6.0

type NullableCanvasesInvokeNodeExecutionActionBody added in v0.6.0

type NullableCanvasesInvokeNodeExecutionActionBody struct {
	// contains filtered or unexported fields
}

func (NullableCanvasesInvokeNodeExecutionActionBody) Get added in v0.6.0

func (NullableCanvasesInvokeNodeExecutionActionBody) IsSet added in v0.6.0

func (NullableCanvasesInvokeNodeExecutionActionBody) MarshalJSON added in v0.6.0

func (*NullableCanvasesInvokeNodeExecutionActionBody) Set added in v0.6.0

func (*NullableCanvasesInvokeNodeExecutionActionBody) UnmarshalJSON added in v0.6.0

func (*NullableCanvasesInvokeNodeExecutionActionBody) Unset added in v0.6.0

type NullableCanvasesInvokeNodeTriggerActionBody added in v0.6.0

type NullableCanvasesInvokeNodeTriggerActionBody struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesInvokeNodeTriggerActionBody added in v0.6.0

func NewNullableCanvasesInvokeNodeTriggerActionBody(val *CanvasesInvokeNodeTriggerActionBody) *NullableCanvasesInvokeNodeTriggerActionBody

func (NullableCanvasesInvokeNodeTriggerActionBody) Get added in v0.6.0

func (NullableCanvasesInvokeNodeTriggerActionBody) IsSet added in v0.6.0

func (NullableCanvasesInvokeNodeTriggerActionBody) MarshalJSON added in v0.6.0

func (*NullableCanvasesInvokeNodeTriggerActionBody) Set added in v0.6.0

func (*NullableCanvasesInvokeNodeTriggerActionBody) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesInvokeNodeTriggerActionBody) UnmarshalJSON(src []byte) error

func (*NullableCanvasesInvokeNodeTriggerActionBody) Unset added in v0.6.0

type NullableCanvasesInvokeNodeTriggerActionResponse added in v0.6.0

type NullableCanvasesInvokeNodeTriggerActionResponse struct {
	// contains filtered or unexported fields
}

func (NullableCanvasesInvokeNodeTriggerActionResponse) Get added in v0.6.0

func (NullableCanvasesInvokeNodeTriggerActionResponse) IsSet added in v0.6.0

func (NullableCanvasesInvokeNodeTriggerActionResponse) MarshalJSON added in v0.6.0

func (*NullableCanvasesInvokeNodeTriggerActionResponse) Set added in v0.6.0

func (*NullableCanvasesInvokeNodeTriggerActionResponse) UnmarshalJSON added in v0.6.0

func (*NullableCanvasesInvokeNodeTriggerActionResponse) Unset added in v0.6.0

type NullableCanvasesListCanvasEventsResponse added in v0.6.0

type NullableCanvasesListCanvasEventsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesListCanvasEventsResponse added in v0.6.0

func NewNullableCanvasesListCanvasEventsResponse(val *CanvasesListCanvasEventsResponse) *NullableCanvasesListCanvasEventsResponse

func (NullableCanvasesListCanvasEventsResponse) Get added in v0.6.0

func (NullableCanvasesListCanvasEventsResponse) IsSet added in v0.6.0

func (NullableCanvasesListCanvasEventsResponse) MarshalJSON added in v0.6.0

func (*NullableCanvasesListCanvasEventsResponse) Set added in v0.6.0

func (*NullableCanvasesListCanvasEventsResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesListCanvasEventsResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesListCanvasEventsResponse) Unset added in v0.6.0

type NullableCanvasesListCanvasesResponse added in v0.6.0

type NullableCanvasesListCanvasesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesListCanvasesResponse added in v0.6.0

func NewNullableCanvasesListCanvasesResponse(val *CanvasesListCanvasesResponse) *NullableCanvasesListCanvasesResponse

func (NullableCanvasesListCanvasesResponse) Get added in v0.6.0

func (NullableCanvasesListCanvasesResponse) IsSet added in v0.6.0

func (NullableCanvasesListCanvasesResponse) MarshalJSON added in v0.6.0

func (v NullableCanvasesListCanvasesResponse) MarshalJSON() ([]byte, error)

func (*NullableCanvasesListCanvasesResponse) Set added in v0.6.0

func (*NullableCanvasesListCanvasesResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesListCanvasesResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesListCanvasesResponse) Unset added in v0.6.0

type NullableCanvasesListChildExecutionsResponse added in v0.6.0

type NullableCanvasesListChildExecutionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesListChildExecutionsResponse added in v0.6.0

func NewNullableCanvasesListChildExecutionsResponse(val *CanvasesListChildExecutionsResponse) *NullableCanvasesListChildExecutionsResponse

func (NullableCanvasesListChildExecutionsResponse) Get added in v0.6.0

func (NullableCanvasesListChildExecutionsResponse) IsSet added in v0.6.0

func (NullableCanvasesListChildExecutionsResponse) MarshalJSON added in v0.6.0

func (*NullableCanvasesListChildExecutionsResponse) Set added in v0.6.0

func (*NullableCanvasesListChildExecutionsResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesListChildExecutionsResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesListChildExecutionsResponse) Unset added in v0.6.0

type NullableCanvasesListEventExecutionsResponse added in v0.6.0

type NullableCanvasesListEventExecutionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesListEventExecutionsResponse added in v0.6.0

func NewNullableCanvasesListEventExecutionsResponse(val *CanvasesListEventExecutionsResponse) *NullableCanvasesListEventExecutionsResponse

func (NullableCanvasesListEventExecutionsResponse) Get added in v0.6.0

func (NullableCanvasesListEventExecutionsResponse) IsSet added in v0.6.0

func (NullableCanvasesListEventExecutionsResponse) MarshalJSON added in v0.6.0

func (*NullableCanvasesListEventExecutionsResponse) Set added in v0.6.0

func (*NullableCanvasesListEventExecutionsResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesListEventExecutionsResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesListEventExecutionsResponse) Unset added in v0.6.0

type NullableCanvasesListNodeEventsResponse added in v0.6.0

type NullableCanvasesListNodeEventsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesListNodeEventsResponse added in v0.6.0

func NewNullableCanvasesListNodeEventsResponse(val *CanvasesListNodeEventsResponse) *NullableCanvasesListNodeEventsResponse

func (NullableCanvasesListNodeEventsResponse) Get added in v0.6.0

func (NullableCanvasesListNodeEventsResponse) IsSet added in v0.6.0

func (NullableCanvasesListNodeEventsResponse) MarshalJSON added in v0.6.0

func (v NullableCanvasesListNodeEventsResponse) MarshalJSON() ([]byte, error)

func (*NullableCanvasesListNodeEventsResponse) Set added in v0.6.0

func (*NullableCanvasesListNodeEventsResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesListNodeEventsResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesListNodeEventsResponse) Unset added in v0.6.0

type NullableCanvasesListNodeExecutionsResponse added in v0.6.0

type NullableCanvasesListNodeExecutionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesListNodeExecutionsResponse added in v0.6.0

func NewNullableCanvasesListNodeExecutionsResponse(val *CanvasesListNodeExecutionsResponse) *NullableCanvasesListNodeExecutionsResponse

func (NullableCanvasesListNodeExecutionsResponse) Get added in v0.6.0

func (NullableCanvasesListNodeExecutionsResponse) IsSet added in v0.6.0

func (NullableCanvasesListNodeExecutionsResponse) MarshalJSON added in v0.6.0

func (*NullableCanvasesListNodeExecutionsResponse) Set added in v0.6.0

func (*NullableCanvasesListNodeExecutionsResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesListNodeExecutionsResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesListNodeExecutionsResponse) Unset added in v0.6.0

type NullableCanvasesListNodeQueueItemsResponse added in v0.6.0

type NullableCanvasesListNodeQueueItemsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesListNodeQueueItemsResponse added in v0.6.0

func NewNullableCanvasesListNodeQueueItemsResponse(val *CanvasesListNodeQueueItemsResponse) *NullableCanvasesListNodeQueueItemsResponse

func (NullableCanvasesListNodeQueueItemsResponse) Get added in v0.6.0

func (NullableCanvasesListNodeQueueItemsResponse) IsSet added in v0.6.0

func (NullableCanvasesListNodeQueueItemsResponse) MarshalJSON added in v0.6.0

func (*NullableCanvasesListNodeQueueItemsResponse) Set added in v0.6.0

func (*NullableCanvasesListNodeQueueItemsResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesListNodeQueueItemsResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesListNodeQueueItemsResponse) Unset added in v0.6.0

type NullableCanvasesResolveExecutionErrorsBody added in v0.6.0

type NullableCanvasesResolveExecutionErrorsBody struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesResolveExecutionErrorsBody added in v0.6.0

func NewNullableCanvasesResolveExecutionErrorsBody(val *CanvasesResolveExecutionErrorsBody) *NullableCanvasesResolveExecutionErrorsBody

func (NullableCanvasesResolveExecutionErrorsBody) Get added in v0.6.0

func (NullableCanvasesResolveExecutionErrorsBody) IsSet added in v0.6.0

func (NullableCanvasesResolveExecutionErrorsBody) MarshalJSON added in v0.6.0

func (*NullableCanvasesResolveExecutionErrorsBody) Set added in v0.6.0

func (*NullableCanvasesResolveExecutionErrorsBody) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesResolveExecutionErrorsBody) UnmarshalJSON(src []byte) error

func (*NullableCanvasesResolveExecutionErrorsBody) Unset added in v0.6.0

type NullableCanvasesUpdateCanvasBody added in v0.6.0

type NullableCanvasesUpdateCanvasBody struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesUpdateCanvasBody added in v0.6.0

func NewNullableCanvasesUpdateCanvasBody(val *CanvasesUpdateCanvasBody) *NullableCanvasesUpdateCanvasBody

func (NullableCanvasesUpdateCanvasBody) Get added in v0.6.0

func (NullableCanvasesUpdateCanvasBody) IsSet added in v0.6.0

func (NullableCanvasesUpdateCanvasBody) MarshalJSON added in v0.6.0

func (v NullableCanvasesUpdateCanvasBody) MarshalJSON() ([]byte, error)

func (*NullableCanvasesUpdateCanvasBody) Set added in v0.6.0

func (*NullableCanvasesUpdateCanvasBody) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesUpdateCanvasBody) UnmarshalJSON(src []byte) error

func (*NullableCanvasesUpdateCanvasBody) Unset added in v0.6.0

type NullableCanvasesUpdateCanvasResponse added in v0.6.0

type NullableCanvasesUpdateCanvasResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesUpdateCanvasResponse added in v0.6.0

func NewNullableCanvasesUpdateCanvasResponse(val *CanvasesUpdateCanvasResponse) *NullableCanvasesUpdateCanvasResponse

func (NullableCanvasesUpdateCanvasResponse) Get added in v0.6.0

func (NullableCanvasesUpdateCanvasResponse) IsSet added in v0.6.0

func (NullableCanvasesUpdateCanvasResponse) MarshalJSON added in v0.6.0

func (v NullableCanvasesUpdateCanvasResponse) MarshalJSON() ([]byte, error)

func (*NullableCanvasesUpdateCanvasResponse) Set added in v0.6.0

func (*NullableCanvasesUpdateCanvasResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesUpdateCanvasResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesUpdateCanvasResponse) Unset added in v0.6.0

type NullableCanvasesUpdateNodePauseBody added in v0.6.0

type NullableCanvasesUpdateNodePauseBody struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesUpdateNodePauseBody added in v0.6.0

func NewNullableCanvasesUpdateNodePauseBody(val *CanvasesUpdateNodePauseBody) *NullableCanvasesUpdateNodePauseBody

func (NullableCanvasesUpdateNodePauseBody) Get added in v0.6.0

func (NullableCanvasesUpdateNodePauseBody) IsSet added in v0.6.0

func (NullableCanvasesUpdateNodePauseBody) MarshalJSON added in v0.6.0

func (v NullableCanvasesUpdateNodePauseBody) MarshalJSON() ([]byte, error)

func (*NullableCanvasesUpdateNodePauseBody) Set added in v0.6.0

func (*NullableCanvasesUpdateNodePauseBody) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesUpdateNodePauseBody) UnmarshalJSON(src []byte) error

func (*NullableCanvasesUpdateNodePauseBody) Unset added in v0.6.0

type NullableCanvasesUpdateNodePauseResponse added in v0.6.0

type NullableCanvasesUpdateNodePauseResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCanvasesUpdateNodePauseResponse added in v0.6.0

func NewNullableCanvasesUpdateNodePauseResponse(val *CanvasesUpdateNodePauseResponse) *NullableCanvasesUpdateNodePauseResponse

func (NullableCanvasesUpdateNodePauseResponse) Get added in v0.6.0

func (NullableCanvasesUpdateNodePauseResponse) IsSet added in v0.6.0

func (NullableCanvasesUpdateNodePauseResponse) MarshalJSON added in v0.6.0

func (v NullableCanvasesUpdateNodePauseResponse) MarshalJSON() ([]byte, error)

func (*NullableCanvasesUpdateNodePauseResponse) Set added in v0.6.0

func (*NullableCanvasesUpdateNodePauseResponse) UnmarshalJSON added in v0.6.0

func (v *NullableCanvasesUpdateNodePauseResponse) UnmarshalJSON(src []byte) error

func (*NullableCanvasesUpdateNodePauseResponse) Unset added in v0.6.0

type NullableComponentsComponent

type NullableComponentsComponent struct {
	// contains filtered or unexported fields
}

func NewNullableComponentsComponent

func NewNullableComponentsComponent(val *ComponentsComponent) *NullableComponentsComponent

func (NullableComponentsComponent) Get

func (NullableComponentsComponent) IsSet

func (NullableComponentsComponent) MarshalJSON

func (v NullableComponentsComponent) MarshalJSON() ([]byte, error)

func (*NullableComponentsComponent) Set

func (*NullableComponentsComponent) UnmarshalJSON

func (v *NullableComponentsComponent) UnmarshalJSON(src []byte) error

func (*NullableComponentsComponent) Unset

func (v *NullableComponentsComponent) Unset()

type NullableComponentsComponentAction

type NullableComponentsComponentAction struct {
	// contains filtered or unexported fields
}

func (NullableComponentsComponentAction) Get

func (NullableComponentsComponentAction) IsSet

func (NullableComponentsComponentAction) MarshalJSON

func (v NullableComponentsComponentAction) MarshalJSON() ([]byte, error)

func (*NullableComponentsComponentAction) Set

func (*NullableComponentsComponentAction) UnmarshalJSON

func (v *NullableComponentsComponentAction) UnmarshalJSON(src []byte) error

func (*NullableComponentsComponentAction) Unset

type NullableComponentsDescribeComponentResponse

type NullableComponentsDescribeComponentResponse struct {
	// contains filtered or unexported fields
}

func (NullableComponentsDescribeComponentResponse) Get

func (NullableComponentsDescribeComponentResponse) IsSet

func (NullableComponentsDescribeComponentResponse) MarshalJSON

func (*NullableComponentsDescribeComponentResponse) Set

func (*NullableComponentsDescribeComponentResponse) UnmarshalJSON

func (v *NullableComponentsDescribeComponentResponse) UnmarshalJSON(src []byte) error

func (*NullableComponentsDescribeComponentResponse) Unset

type NullableComponentsEdge

type NullableComponentsEdge struct {
	// contains filtered or unexported fields
}

func NewNullableComponentsEdge

func NewNullableComponentsEdge(val *ComponentsEdge) *NullableComponentsEdge

func (NullableComponentsEdge) Get

func (NullableComponentsEdge) IsSet

func (v NullableComponentsEdge) IsSet() bool

func (NullableComponentsEdge) MarshalJSON

func (v NullableComponentsEdge) MarshalJSON() ([]byte, error)

func (*NullableComponentsEdge) Set

func (*NullableComponentsEdge) UnmarshalJSON

func (v *NullableComponentsEdge) UnmarshalJSON(src []byte) error

func (*NullableComponentsEdge) Unset

func (v *NullableComponentsEdge) Unset()

type NullableComponentsIntegrationRef added in v0.5.0

type NullableComponentsIntegrationRef struct {
	// contains filtered or unexported fields
}

func NewNullableComponentsIntegrationRef added in v0.5.0

func NewNullableComponentsIntegrationRef(val *ComponentsIntegrationRef) *NullableComponentsIntegrationRef

func (NullableComponentsIntegrationRef) Get added in v0.5.0

func (NullableComponentsIntegrationRef) IsSet added in v0.5.0

func (NullableComponentsIntegrationRef) MarshalJSON added in v0.5.0

func (v NullableComponentsIntegrationRef) MarshalJSON() ([]byte, error)

func (*NullableComponentsIntegrationRef) Set added in v0.5.0

func (*NullableComponentsIntegrationRef) UnmarshalJSON added in v0.5.0

func (v *NullableComponentsIntegrationRef) UnmarshalJSON(src []byte) error

func (*NullableComponentsIntegrationRef) Unset added in v0.5.0

type NullableComponentsListComponentActionsResponse

type NullableComponentsListComponentActionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableComponentsListComponentActionsResponse) Get

func (NullableComponentsListComponentActionsResponse) IsSet

func (NullableComponentsListComponentActionsResponse) MarshalJSON

func (*NullableComponentsListComponentActionsResponse) Set

func (*NullableComponentsListComponentActionsResponse) UnmarshalJSON

func (*NullableComponentsListComponentActionsResponse) Unset

type NullableComponentsListComponentsResponse

type NullableComponentsListComponentsResponse struct {
	// contains filtered or unexported fields
}

func (NullableComponentsListComponentsResponse) Get

func (NullableComponentsListComponentsResponse) IsSet

func (NullableComponentsListComponentsResponse) MarshalJSON

func (*NullableComponentsListComponentsResponse) Set

func (*NullableComponentsListComponentsResponse) UnmarshalJSON

func (v *NullableComponentsListComponentsResponse) UnmarshalJSON(src []byte) error

func (*NullableComponentsListComponentsResponse) Unset

type NullableComponentsNode

type NullableComponentsNode struct {
	// contains filtered or unexported fields
}

func NewNullableComponentsNode

func NewNullableComponentsNode(val *ComponentsNode) *NullableComponentsNode

func (NullableComponentsNode) Get

func (NullableComponentsNode) IsSet

func (v NullableComponentsNode) IsSet() bool

func (NullableComponentsNode) MarshalJSON

func (v NullableComponentsNode) MarshalJSON() ([]byte, error)

func (*NullableComponentsNode) Set

func (*NullableComponentsNode) UnmarshalJSON

func (v *NullableComponentsNode) UnmarshalJSON(src []byte) error

func (*NullableComponentsNode) Unset

func (v *NullableComponentsNode) Unset()

type NullableComponentsNodeType

type NullableComponentsNodeType struct {
	// contains filtered or unexported fields
}

func NewNullableComponentsNodeType

func NewNullableComponentsNodeType(val *ComponentsNodeType) *NullableComponentsNodeType

func (NullableComponentsNodeType) Get

func (NullableComponentsNodeType) IsSet

func (v NullableComponentsNodeType) IsSet() bool

func (NullableComponentsNodeType) MarshalJSON

func (v NullableComponentsNodeType) MarshalJSON() ([]byte, error)

func (*NullableComponentsNodeType) Set

func (*NullableComponentsNodeType) UnmarshalJSON

func (v *NullableComponentsNodeType) UnmarshalJSON(src []byte) error

func (*NullableComponentsNodeType) Unset

func (v *NullableComponentsNodeType) Unset()

type NullableComponentsPosition

type NullableComponentsPosition struct {
	// contains filtered or unexported fields
}

func NewNullableComponentsPosition

func NewNullableComponentsPosition(val *ComponentsPosition) *NullableComponentsPosition

func (NullableComponentsPosition) Get

func (NullableComponentsPosition) IsSet

func (v NullableComponentsPosition) IsSet() bool

func (NullableComponentsPosition) MarshalJSON

func (v NullableComponentsPosition) MarshalJSON() ([]byte, error)

func (*NullableComponentsPosition) Set

func (*NullableComponentsPosition) UnmarshalJSON

func (v *NullableComponentsPosition) UnmarshalJSON(src []byte) error

func (*NullableComponentsPosition) Unset

func (v *NullableComponentsPosition) Unset()

type NullableConfigurationAnyPredicateListTypeOptions

type NullableConfigurationAnyPredicateListTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationAnyPredicateListTypeOptions) Get

func (NullableConfigurationAnyPredicateListTypeOptions) IsSet

func (NullableConfigurationAnyPredicateListTypeOptions) MarshalJSON

func (*NullableConfigurationAnyPredicateListTypeOptions) Set

func (*NullableConfigurationAnyPredicateListTypeOptions) UnmarshalJSON

func (*NullableConfigurationAnyPredicateListTypeOptions) Unset

type NullableConfigurationDateTimeTypeOptions

type NullableConfigurationDateTimeTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationDateTimeTypeOptions) Get

func (NullableConfigurationDateTimeTypeOptions) IsSet

func (NullableConfigurationDateTimeTypeOptions) MarshalJSON

func (*NullableConfigurationDateTimeTypeOptions) Set

func (*NullableConfigurationDateTimeTypeOptions) UnmarshalJSON

func (v *NullableConfigurationDateTimeTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationDateTimeTypeOptions) Unset

type NullableConfigurationDateTypeOptions

type NullableConfigurationDateTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationDateTypeOptions) Get

func (NullableConfigurationDateTypeOptions) IsSet

func (NullableConfigurationDateTypeOptions) MarshalJSON

func (v NullableConfigurationDateTypeOptions) MarshalJSON() ([]byte, error)

func (*NullableConfigurationDateTypeOptions) Set

func (*NullableConfigurationDateTypeOptions) UnmarshalJSON

func (v *NullableConfigurationDateTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationDateTypeOptions) Unset

type NullableConfigurationExpressionTypeOptions added in v0.0.43

type NullableConfigurationExpressionTypeOptions struct {
	// contains filtered or unexported fields
}

func NewNullableConfigurationExpressionTypeOptions added in v0.0.43

func NewNullableConfigurationExpressionTypeOptions(val *ConfigurationExpressionTypeOptions) *NullableConfigurationExpressionTypeOptions

func (NullableConfigurationExpressionTypeOptions) Get added in v0.0.43

func (NullableConfigurationExpressionTypeOptions) IsSet added in v0.0.43

func (NullableConfigurationExpressionTypeOptions) MarshalJSON added in v0.0.43

func (*NullableConfigurationExpressionTypeOptions) Set added in v0.0.43

func (*NullableConfigurationExpressionTypeOptions) UnmarshalJSON added in v0.0.43

func (v *NullableConfigurationExpressionTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationExpressionTypeOptions) Unset added in v0.0.43

type NullableConfigurationField

type NullableConfigurationField struct {
	// contains filtered or unexported fields
}

func NewNullableConfigurationField

func NewNullableConfigurationField(val *ConfigurationField) *NullableConfigurationField

func (NullableConfigurationField) Get

func (NullableConfigurationField) IsSet

func (v NullableConfigurationField) IsSet() bool

func (NullableConfigurationField) MarshalJSON

func (v NullableConfigurationField) MarshalJSON() ([]byte, error)

func (*NullableConfigurationField) Set

func (*NullableConfigurationField) UnmarshalJSON

func (v *NullableConfigurationField) UnmarshalJSON(src []byte) error

func (*NullableConfigurationField) Unset

func (v *NullableConfigurationField) Unset()

type NullableConfigurationListItemDefinition

type NullableConfigurationListItemDefinition struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationListItemDefinition) Get

func (NullableConfigurationListItemDefinition) IsSet

func (NullableConfigurationListItemDefinition) MarshalJSON

func (v NullableConfigurationListItemDefinition) MarshalJSON() ([]byte, error)

func (*NullableConfigurationListItemDefinition) Set

func (*NullableConfigurationListItemDefinition) UnmarshalJSON

func (v *NullableConfigurationListItemDefinition) UnmarshalJSON(src []byte) error

func (*NullableConfigurationListItemDefinition) Unset

type NullableConfigurationListTypeOptions

type NullableConfigurationListTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationListTypeOptions) Get

func (NullableConfigurationListTypeOptions) IsSet

func (NullableConfigurationListTypeOptions) MarshalJSON

func (v NullableConfigurationListTypeOptions) MarshalJSON() ([]byte, error)

func (*NullableConfigurationListTypeOptions) Set

func (*NullableConfigurationListTypeOptions) UnmarshalJSON

func (v *NullableConfigurationListTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationListTypeOptions) Unset

type NullableConfigurationMultiSelectTypeOptions

type NullableConfigurationMultiSelectTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationMultiSelectTypeOptions) Get

func (NullableConfigurationMultiSelectTypeOptions) IsSet

func (NullableConfigurationMultiSelectTypeOptions) MarshalJSON

func (*NullableConfigurationMultiSelectTypeOptions) Set

func (*NullableConfigurationMultiSelectTypeOptions) UnmarshalJSON

func (v *NullableConfigurationMultiSelectTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationMultiSelectTypeOptions) Unset

type NullableConfigurationNumberTypeOptions

type NullableConfigurationNumberTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationNumberTypeOptions) Get

func (NullableConfigurationNumberTypeOptions) IsSet

func (NullableConfigurationNumberTypeOptions) MarshalJSON

func (v NullableConfigurationNumberTypeOptions) MarshalJSON() ([]byte, error)

func (*NullableConfigurationNumberTypeOptions) Set

func (*NullableConfigurationNumberTypeOptions) UnmarshalJSON

func (v *NullableConfigurationNumberTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationNumberTypeOptions) Unset

type NullableConfigurationObjectTypeOptions

type NullableConfigurationObjectTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationObjectTypeOptions) Get

func (NullableConfigurationObjectTypeOptions) IsSet

func (NullableConfigurationObjectTypeOptions) MarshalJSON

func (v NullableConfigurationObjectTypeOptions) MarshalJSON() ([]byte, error)

func (*NullableConfigurationObjectTypeOptions) Set

func (*NullableConfigurationObjectTypeOptions) UnmarshalJSON

func (v *NullableConfigurationObjectTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationObjectTypeOptions) Unset

type NullableConfigurationParameterRef added in v0.7.0

type NullableConfigurationParameterRef struct {
	// contains filtered or unexported fields
}

func NewNullableConfigurationParameterRef added in v0.7.0

func NewNullableConfigurationParameterRef(val *ConfigurationParameterRef) *NullableConfigurationParameterRef

func (NullableConfigurationParameterRef) Get added in v0.7.0

func (NullableConfigurationParameterRef) IsSet added in v0.7.0

func (NullableConfigurationParameterRef) MarshalJSON added in v0.7.0

func (v NullableConfigurationParameterRef) MarshalJSON() ([]byte, error)

func (*NullableConfigurationParameterRef) Set added in v0.7.0

func (*NullableConfigurationParameterRef) UnmarshalJSON added in v0.7.0

func (v *NullableConfigurationParameterRef) UnmarshalJSON(src []byte) error

func (*NullableConfigurationParameterRef) Unset added in v0.7.0

type NullableConfigurationParameterValueFrom added in v0.7.0

type NullableConfigurationParameterValueFrom struct {
	// contains filtered or unexported fields
}

func NewNullableConfigurationParameterValueFrom added in v0.7.0

func NewNullableConfigurationParameterValueFrom(val *ConfigurationParameterValueFrom) *NullableConfigurationParameterValueFrom

func (NullableConfigurationParameterValueFrom) Get added in v0.7.0

func (NullableConfigurationParameterValueFrom) IsSet added in v0.7.0

func (NullableConfigurationParameterValueFrom) MarshalJSON added in v0.7.0

func (v NullableConfigurationParameterValueFrom) MarshalJSON() ([]byte, error)

func (*NullableConfigurationParameterValueFrom) Set added in v0.7.0

func (*NullableConfigurationParameterValueFrom) UnmarshalJSON added in v0.7.0

func (v *NullableConfigurationParameterValueFrom) UnmarshalJSON(src []byte) error

func (*NullableConfigurationParameterValueFrom) Unset added in v0.7.0

type NullableConfigurationRequiredCondition

type NullableConfigurationRequiredCondition struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationRequiredCondition) Get

func (NullableConfigurationRequiredCondition) IsSet

func (NullableConfigurationRequiredCondition) MarshalJSON

func (v NullableConfigurationRequiredCondition) MarshalJSON() ([]byte, error)

func (*NullableConfigurationRequiredCondition) Set

func (*NullableConfigurationRequiredCondition) UnmarshalJSON

func (v *NullableConfigurationRequiredCondition) UnmarshalJSON(src []byte) error

func (*NullableConfigurationRequiredCondition) Unset

type NullableConfigurationResourceTypeOptions

type NullableConfigurationResourceTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationResourceTypeOptions) Get

func (NullableConfigurationResourceTypeOptions) IsSet

func (NullableConfigurationResourceTypeOptions) MarshalJSON

func (*NullableConfigurationResourceTypeOptions) Set

func (*NullableConfigurationResourceTypeOptions) UnmarshalJSON

func (v *NullableConfigurationResourceTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationResourceTypeOptions) Unset

type NullableConfigurationSelectOption

type NullableConfigurationSelectOption struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationSelectOption) Get

func (NullableConfigurationSelectOption) IsSet

func (NullableConfigurationSelectOption) MarshalJSON

func (v NullableConfigurationSelectOption) MarshalJSON() ([]byte, error)

func (*NullableConfigurationSelectOption) Set

func (*NullableConfigurationSelectOption) UnmarshalJSON

func (v *NullableConfigurationSelectOption) UnmarshalJSON(src []byte) error

func (*NullableConfigurationSelectOption) Unset

type NullableConfigurationSelectTypeOptions

type NullableConfigurationSelectTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationSelectTypeOptions) Get

func (NullableConfigurationSelectTypeOptions) IsSet

func (NullableConfigurationSelectTypeOptions) MarshalJSON

func (v NullableConfigurationSelectTypeOptions) MarshalJSON() ([]byte, error)

func (*NullableConfigurationSelectTypeOptions) Set

func (*NullableConfigurationSelectTypeOptions) UnmarshalJSON

func (v *NullableConfigurationSelectTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationSelectTypeOptions) Unset

type NullableConfigurationStringTypeOptions added in v0.0.18

type NullableConfigurationStringTypeOptions struct {
	// contains filtered or unexported fields
}

func NewNullableConfigurationStringTypeOptions added in v0.0.18

func NewNullableConfigurationStringTypeOptions(val *ConfigurationStringTypeOptions) *NullableConfigurationStringTypeOptions

func (NullableConfigurationStringTypeOptions) Get added in v0.0.18

func (NullableConfigurationStringTypeOptions) IsSet added in v0.0.18

func (NullableConfigurationStringTypeOptions) MarshalJSON added in v0.0.18

func (v NullableConfigurationStringTypeOptions) MarshalJSON() ([]byte, error)

func (*NullableConfigurationStringTypeOptions) Set added in v0.0.18

func (*NullableConfigurationStringTypeOptions) UnmarshalJSON added in v0.0.18

func (v *NullableConfigurationStringTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationStringTypeOptions) Unset added in v0.0.18

type NullableConfigurationTextTypeOptions added in v0.0.18

type NullableConfigurationTextTypeOptions struct {
	// contains filtered or unexported fields
}

func NewNullableConfigurationTextTypeOptions added in v0.0.18

func NewNullableConfigurationTextTypeOptions(val *ConfigurationTextTypeOptions) *NullableConfigurationTextTypeOptions

func (NullableConfigurationTextTypeOptions) Get added in v0.0.18

func (NullableConfigurationTextTypeOptions) IsSet added in v0.0.18

func (NullableConfigurationTextTypeOptions) MarshalJSON added in v0.0.18

func (v NullableConfigurationTextTypeOptions) MarshalJSON() ([]byte, error)

func (*NullableConfigurationTextTypeOptions) Set added in v0.0.18

func (*NullableConfigurationTextTypeOptions) UnmarshalJSON added in v0.0.18

func (v *NullableConfigurationTextTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationTextTypeOptions) Unset added in v0.0.18

type NullableConfigurationTimeTypeOptions

type NullableConfigurationTimeTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationTimeTypeOptions) Get

func (NullableConfigurationTimeTypeOptions) IsSet

func (NullableConfigurationTimeTypeOptions) MarshalJSON

func (v NullableConfigurationTimeTypeOptions) MarshalJSON() ([]byte, error)

func (*NullableConfigurationTimeTypeOptions) Set

func (*NullableConfigurationTimeTypeOptions) UnmarshalJSON

func (v *NullableConfigurationTimeTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationTimeTypeOptions) Unset

type NullableConfigurationTypeOptions

type NullableConfigurationTypeOptions struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationTypeOptions) Get

func (NullableConfigurationTypeOptions) IsSet

func (NullableConfigurationTypeOptions) MarshalJSON

func (v NullableConfigurationTypeOptions) MarshalJSON() ([]byte, error)

func (*NullableConfigurationTypeOptions) Set

func (*NullableConfigurationTypeOptions) UnmarshalJSON

func (v *NullableConfigurationTypeOptions) UnmarshalJSON(src []byte) error

func (*NullableConfigurationTypeOptions) Unset

type NullableConfigurationValidationRule

type NullableConfigurationValidationRule struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationValidationRule) Get

func (NullableConfigurationValidationRule) IsSet

func (NullableConfigurationValidationRule) MarshalJSON

func (v NullableConfigurationValidationRule) MarshalJSON() ([]byte, error)

func (*NullableConfigurationValidationRule) Set

func (*NullableConfigurationValidationRule) UnmarshalJSON

func (v *NullableConfigurationValidationRule) UnmarshalJSON(src []byte) error

func (*NullableConfigurationValidationRule) Unset

type NullableConfigurationVisibilityCondition

type NullableConfigurationVisibilityCondition struct {
	// contains filtered or unexported fields
}

func (NullableConfigurationVisibilityCondition) Get

func (NullableConfigurationVisibilityCondition) IsSet

func (NullableConfigurationVisibilityCondition) MarshalJSON

func (*NullableConfigurationVisibilityCondition) Set

func (*NullableConfigurationVisibilityCondition) UnmarshalJSON

func (v *NullableConfigurationVisibilityCondition) UnmarshalJSON(src []byte) error

func (*NullableConfigurationVisibilityCondition) 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 NullableGooglerpcStatus

type NullableGooglerpcStatus struct {
	// contains filtered or unexported fields
}

func NewNullableGooglerpcStatus

func NewNullableGooglerpcStatus(val *GooglerpcStatus) *NullableGooglerpcStatus

func (NullableGooglerpcStatus) Get

func (NullableGooglerpcStatus) IsSet

func (v NullableGooglerpcStatus) IsSet() bool

func (NullableGooglerpcStatus) MarshalJSON

func (v NullableGooglerpcStatus) MarshalJSON() ([]byte, error)

func (*NullableGooglerpcStatus) Set

func (*NullableGooglerpcStatus) UnmarshalJSON

func (v *NullableGooglerpcStatus) UnmarshalJSON(src []byte) error

func (*NullableGooglerpcStatus) Unset

func (v *NullableGooglerpcStatus) Unset()

type NullableGroupsAddUserToGroupBody

type NullableGroupsAddUserToGroupBody struct {
	// contains filtered or unexported fields
}

func (NullableGroupsAddUserToGroupBody) Get

func (NullableGroupsAddUserToGroupBody) IsSet

func (NullableGroupsAddUserToGroupBody) MarshalJSON

func (v NullableGroupsAddUserToGroupBody) MarshalJSON() ([]byte, error)

func (*NullableGroupsAddUserToGroupBody) Set

func (*NullableGroupsAddUserToGroupBody) UnmarshalJSON

func (v *NullableGroupsAddUserToGroupBody) UnmarshalJSON(src []byte) error

func (*NullableGroupsAddUserToGroupBody) Unset

type NullableGroupsCreateGroupRequest

type NullableGroupsCreateGroupRequest struct {
	// contains filtered or unexported fields
}

func (NullableGroupsCreateGroupRequest) Get

func (NullableGroupsCreateGroupRequest) IsSet

func (NullableGroupsCreateGroupRequest) MarshalJSON

func (v NullableGroupsCreateGroupRequest) MarshalJSON() ([]byte, error)

func (*NullableGroupsCreateGroupRequest) Set

func (*NullableGroupsCreateGroupRequest) UnmarshalJSON

func (v *NullableGroupsCreateGroupRequest) UnmarshalJSON(src []byte) error

func (*NullableGroupsCreateGroupRequest) Unset

type NullableGroupsCreateGroupResponse

type NullableGroupsCreateGroupResponse struct {
	// contains filtered or unexported fields
}

func (NullableGroupsCreateGroupResponse) Get

func (NullableGroupsCreateGroupResponse) IsSet

func (NullableGroupsCreateGroupResponse) MarshalJSON

func (v NullableGroupsCreateGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableGroupsCreateGroupResponse) Set

func (*NullableGroupsCreateGroupResponse) UnmarshalJSON

func (v *NullableGroupsCreateGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableGroupsCreateGroupResponse) Unset

type NullableGroupsDescribeGroupResponse

type NullableGroupsDescribeGroupResponse struct {
	// contains filtered or unexported fields
}

func (NullableGroupsDescribeGroupResponse) Get

func (NullableGroupsDescribeGroupResponse) IsSet

func (NullableGroupsDescribeGroupResponse) MarshalJSON

func (v NullableGroupsDescribeGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableGroupsDescribeGroupResponse) Set

func (*NullableGroupsDescribeGroupResponse) UnmarshalJSON

func (v *NullableGroupsDescribeGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableGroupsDescribeGroupResponse) Unset

type NullableGroupsGroup

type NullableGroupsGroup struct {
	// contains filtered or unexported fields
}

func NewNullableGroupsGroup

func NewNullableGroupsGroup(val *GroupsGroup) *NullableGroupsGroup

func (NullableGroupsGroup) Get

func (NullableGroupsGroup) IsSet

func (v NullableGroupsGroup) IsSet() bool

func (NullableGroupsGroup) MarshalJSON

func (v NullableGroupsGroup) MarshalJSON() ([]byte, error)

func (*NullableGroupsGroup) Set

func (v *NullableGroupsGroup) Set(val *GroupsGroup)

func (*NullableGroupsGroup) UnmarshalJSON

func (v *NullableGroupsGroup) UnmarshalJSON(src []byte) error

func (*NullableGroupsGroup) Unset

func (v *NullableGroupsGroup) Unset()

type NullableGroupsGroupMetadata

type NullableGroupsGroupMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableGroupsGroupMetadata

func NewNullableGroupsGroupMetadata(val *GroupsGroupMetadata) *NullableGroupsGroupMetadata

func (NullableGroupsGroupMetadata) Get

func (NullableGroupsGroupMetadata) IsSet

func (NullableGroupsGroupMetadata) MarshalJSON

func (v NullableGroupsGroupMetadata) MarshalJSON() ([]byte, error)

func (*NullableGroupsGroupMetadata) Set

func (*NullableGroupsGroupMetadata) UnmarshalJSON

func (v *NullableGroupsGroupMetadata) UnmarshalJSON(src []byte) error

func (*NullableGroupsGroupMetadata) Unset

func (v *NullableGroupsGroupMetadata) Unset()

type NullableGroupsGroupSpec

type NullableGroupsGroupSpec struct {
	// contains filtered or unexported fields
}

func NewNullableGroupsGroupSpec

func NewNullableGroupsGroupSpec(val *GroupsGroupSpec) *NullableGroupsGroupSpec

func (NullableGroupsGroupSpec) Get

func (NullableGroupsGroupSpec) IsSet

func (v NullableGroupsGroupSpec) IsSet() bool

func (NullableGroupsGroupSpec) MarshalJSON

func (v NullableGroupsGroupSpec) MarshalJSON() ([]byte, error)

func (*NullableGroupsGroupSpec) Set

func (*NullableGroupsGroupSpec) UnmarshalJSON

func (v *NullableGroupsGroupSpec) UnmarshalJSON(src []byte) error

func (*NullableGroupsGroupSpec) Unset

func (v *NullableGroupsGroupSpec) Unset()

type NullableGroupsGroupStatus

type NullableGroupsGroupStatus struct {
	// contains filtered or unexported fields
}

func NewNullableGroupsGroupStatus

func NewNullableGroupsGroupStatus(val *GroupsGroupStatus) *NullableGroupsGroupStatus

func (NullableGroupsGroupStatus) Get

func (NullableGroupsGroupStatus) IsSet

func (v NullableGroupsGroupStatus) IsSet() bool

func (NullableGroupsGroupStatus) MarshalJSON

func (v NullableGroupsGroupStatus) MarshalJSON() ([]byte, error)

func (*NullableGroupsGroupStatus) Set

func (*NullableGroupsGroupStatus) UnmarshalJSON

func (v *NullableGroupsGroupStatus) UnmarshalJSON(src []byte) error

func (*NullableGroupsGroupStatus) Unset

func (v *NullableGroupsGroupStatus) Unset()

type NullableGroupsListGroupUsersResponse

type NullableGroupsListGroupUsersResponse struct {
	// contains filtered or unexported fields
}

func (NullableGroupsListGroupUsersResponse) Get

func (NullableGroupsListGroupUsersResponse) IsSet

func (NullableGroupsListGroupUsersResponse) MarshalJSON

func (v NullableGroupsListGroupUsersResponse) MarshalJSON() ([]byte, error)

func (*NullableGroupsListGroupUsersResponse) Set

func (*NullableGroupsListGroupUsersResponse) UnmarshalJSON

func (v *NullableGroupsListGroupUsersResponse) UnmarshalJSON(src []byte) error

func (*NullableGroupsListGroupUsersResponse) Unset

type NullableGroupsListGroupsResponse

type NullableGroupsListGroupsResponse struct {
	// contains filtered or unexported fields
}

func (NullableGroupsListGroupsResponse) Get

func (NullableGroupsListGroupsResponse) IsSet

func (NullableGroupsListGroupsResponse) MarshalJSON

func (v NullableGroupsListGroupsResponse) MarshalJSON() ([]byte, error)

func (*NullableGroupsListGroupsResponse) Set

func (*NullableGroupsListGroupsResponse) UnmarshalJSON

func (v *NullableGroupsListGroupsResponse) UnmarshalJSON(src []byte) error

func (*NullableGroupsListGroupsResponse) Unset

type NullableGroupsRemoveUserFromGroupBody

type NullableGroupsRemoveUserFromGroupBody struct {
	// contains filtered or unexported fields
}

func (NullableGroupsRemoveUserFromGroupBody) Get

func (NullableGroupsRemoveUserFromGroupBody) IsSet

func (NullableGroupsRemoveUserFromGroupBody) MarshalJSON

func (v NullableGroupsRemoveUserFromGroupBody) MarshalJSON() ([]byte, error)

func (*NullableGroupsRemoveUserFromGroupBody) Set

func (*NullableGroupsRemoveUserFromGroupBody) UnmarshalJSON

func (v *NullableGroupsRemoveUserFromGroupBody) UnmarshalJSON(src []byte) error

func (*NullableGroupsRemoveUserFromGroupBody) Unset

type NullableGroupsUpdateGroupBody

type NullableGroupsUpdateGroupBody struct {
	// contains filtered or unexported fields
}

func (NullableGroupsUpdateGroupBody) Get

func (NullableGroupsUpdateGroupBody) IsSet

func (NullableGroupsUpdateGroupBody) MarshalJSON

func (v NullableGroupsUpdateGroupBody) MarshalJSON() ([]byte, error)

func (*NullableGroupsUpdateGroupBody) Set

func (*NullableGroupsUpdateGroupBody) UnmarshalJSON

func (v *NullableGroupsUpdateGroupBody) UnmarshalJSON(src []byte) error

func (*NullableGroupsUpdateGroupBody) Unset

func (v *NullableGroupsUpdateGroupBody) Unset()

type NullableGroupsUpdateGroupResponse

type NullableGroupsUpdateGroupResponse struct {
	// contains filtered or unexported fields
}

func (NullableGroupsUpdateGroupResponse) Get

func (NullableGroupsUpdateGroupResponse) IsSet

func (NullableGroupsUpdateGroupResponse) MarshalJSON

func (v NullableGroupsUpdateGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableGroupsUpdateGroupResponse) Set

func (*NullableGroupsUpdateGroupResponse) UnmarshalJSON

func (v *NullableGroupsUpdateGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableGroupsUpdateGroupResponse) 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 NullableIntegrationNodeRef added in v0.5.0

type NullableIntegrationNodeRef struct {
	// contains filtered or unexported fields
}

func NewNullableIntegrationNodeRef added in v0.5.0

func NewNullableIntegrationNodeRef(val *IntegrationNodeRef) *NullableIntegrationNodeRef

func (NullableIntegrationNodeRef) Get added in v0.5.0

func (NullableIntegrationNodeRef) IsSet added in v0.5.0

func (v NullableIntegrationNodeRef) IsSet() bool

func (NullableIntegrationNodeRef) MarshalJSON added in v0.5.0

func (v NullableIntegrationNodeRef) MarshalJSON() ([]byte, error)

func (*NullableIntegrationNodeRef) Set added in v0.5.0

func (*NullableIntegrationNodeRef) UnmarshalJSON added in v0.5.0

func (v *NullableIntegrationNodeRef) UnmarshalJSON(src []byte) error

func (*NullableIntegrationNodeRef) Unset added in v0.5.0

func (v *NullableIntegrationNodeRef) Unset()

type NullableIntegrationsIntegrationDefinition added in v0.5.0

type NullableIntegrationsIntegrationDefinition struct {
	// contains filtered or unexported fields
}

func NewNullableIntegrationsIntegrationDefinition added in v0.5.0

func NewNullableIntegrationsIntegrationDefinition(val *IntegrationsIntegrationDefinition) *NullableIntegrationsIntegrationDefinition

func (NullableIntegrationsIntegrationDefinition) Get added in v0.5.0

func (NullableIntegrationsIntegrationDefinition) IsSet added in v0.5.0

func (NullableIntegrationsIntegrationDefinition) MarshalJSON added in v0.5.0

func (*NullableIntegrationsIntegrationDefinition) Set added in v0.5.0

func (*NullableIntegrationsIntegrationDefinition) UnmarshalJSON added in v0.5.0

func (v *NullableIntegrationsIntegrationDefinition) UnmarshalJSON(src []byte) error

func (*NullableIntegrationsIntegrationDefinition) Unset added in v0.5.0

type NullableMeRegenerateTokenResponse

type NullableMeRegenerateTokenResponse struct {
	// contains filtered or unexported fields
}

func (NullableMeRegenerateTokenResponse) Get

func (NullableMeRegenerateTokenResponse) IsSet

func (NullableMeRegenerateTokenResponse) MarshalJSON

func (v NullableMeRegenerateTokenResponse) MarshalJSON() ([]byte, error)

func (*NullableMeRegenerateTokenResponse) Set

func (*NullableMeRegenerateTokenResponse) UnmarshalJSON

func (v *NullableMeRegenerateTokenResponse) UnmarshalJSON(src []byte) error

func (*NullableMeRegenerateTokenResponse) Unset

type NullableNodeBlueprintRef

type NullableNodeBlueprintRef struct {
	// contains filtered or unexported fields
}

func NewNullableNodeBlueprintRef

func NewNullableNodeBlueprintRef(val *NodeBlueprintRef) *NullableNodeBlueprintRef

func (NullableNodeBlueprintRef) Get

func (NullableNodeBlueprintRef) IsSet

func (v NullableNodeBlueprintRef) IsSet() bool

func (NullableNodeBlueprintRef) MarshalJSON

func (v NullableNodeBlueprintRef) MarshalJSON() ([]byte, error)

func (*NullableNodeBlueprintRef) Set

func (*NullableNodeBlueprintRef) UnmarshalJSON

func (v *NullableNodeBlueprintRef) UnmarshalJSON(src []byte) error

func (*NullableNodeBlueprintRef) Unset

func (v *NullableNodeBlueprintRef) Unset()

type NullableNodeComponentRef

type NullableNodeComponentRef struct {
	// contains filtered or unexported fields
}

func NewNullableNodeComponentRef

func NewNullableNodeComponentRef(val *NodeComponentRef) *NullableNodeComponentRef

func (NullableNodeComponentRef) Get

func (NullableNodeComponentRef) IsSet

func (v NullableNodeComponentRef) IsSet() bool

func (NullableNodeComponentRef) MarshalJSON

func (v NullableNodeComponentRef) MarshalJSON() ([]byte, error)

func (*NullableNodeComponentRef) Set

func (*NullableNodeComponentRef) UnmarshalJSON

func (v *NullableNodeComponentRef) UnmarshalJSON(src []byte) error

func (*NullableNodeComponentRef) Unset

func (v *NullableNodeComponentRef) Unset()

type NullableNodeTriggerRef

type NullableNodeTriggerRef struct {
	// contains filtered or unexported fields
}

func NewNullableNodeTriggerRef

func NewNullableNodeTriggerRef(val *NodeTriggerRef) *NullableNodeTriggerRef

func (NullableNodeTriggerRef) Get

func (NullableNodeTriggerRef) IsSet

func (v NullableNodeTriggerRef) IsSet() bool

func (NullableNodeTriggerRef) MarshalJSON

func (v NullableNodeTriggerRef) MarshalJSON() ([]byte, error)

func (*NullableNodeTriggerRef) Set

func (*NullableNodeTriggerRef) UnmarshalJSON

func (v *NullableNodeTriggerRef) UnmarshalJSON(src []byte) error

func (*NullableNodeTriggerRef) Unset

func (v *NullableNodeTriggerRef) Unset()

type NullableNodeWidgetRef added in v0.0.18

type NullableNodeWidgetRef struct {
	// contains filtered or unexported fields
}

func NewNullableNodeWidgetRef added in v0.0.18

func NewNullableNodeWidgetRef(val *NodeWidgetRef) *NullableNodeWidgetRef

func (NullableNodeWidgetRef) Get added in v0.0.18

func (NullableNodeWidgetRef) IsSet added in v0.0.18

func (v NullableNodeWidgetRef) IsSet() bool

func (NullableNodeWidgetRef) MarshalJSON added in v0.0.18

func (v NullableNodeWidgetRef) MarshalJSON() ([]byte, error)

func (*NullableNodeWidgetRef) Set added in v0.0.18

func (v *NullableNodeWidgetRef) Set(val *NodeWidgetRef)

func (*NullableNodeWidgetRef) UnmarshalJSON added in v0.0.18

func (v *NullableNodeWidgetRef) UnmarshalJSON(src []byte) error

func (*NullableNodeWidgetRef) Unset added in v0.0.18

func (v *NullableNodeWidgetRef) Unset()

type NullableOrganizationsBrowserAction

type NullableOrganizationsBrowserAction struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsBrowserAction) Get

func (NullableOrganizationsBrowserAction) IsSet

func (NullableOrganizationsBrowserAction) MarshalJSON

func (v NullableOrganizationsBrowserAction) MarshalJSON() ([]byte, error)

func (*NullableOrganizationsBrowserAction) Set

func (*NullableOrganizationsBrowserAction) UnmarshalJSON

func (v *NullableOrganizationsBrowserAction) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsBrowserAction) Unset

type NullableOrganizationsCreateIntegrationBody added in v0.5.0

type NullableOrganizationsCreateIntegrationBody struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsCreateIntegrationBody added in v0.5.0

func NewNullableOrganizationsCreateIntegrationBody(val *OrganizationsCreateIntegrationBody) *NullableOrganizationsCreateIntegrationBody

func (NullableOrganizationsCreateIntegrationBody) Get added in v0.5.0

func (NullableOrganizationsCreateIntegrationBody) IsSet added in v0.5.0

func (NullableOrganizationsCreateIntegrationBody) MarshalJSON added in v0.5.0

func (*NullableOrganizationsCreateIntegrationBody) Set added in v0.5.0

func (*NullableOrganizationsCreateIntegrationBody) UnmarshalJSON added in v0.5.0

func (v *NullableOrganizationsCreateIntegrationBody) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsCreateIntegrationBody) Unset added in v0.5.0

type NullableOrganizationsCreateIntegrationResponse added in v0.5.0

type NullableOrganizationsCreateIntegrationResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsCreateIntegrationResponse) Get added in v0.5.0

func (NullableOrganizationsCreateIntegrationResponse) IsSet added in v0.5.0

func (NullableOrganizationsCreateIntegrationResponse) MarshalJSON added in v0.5.0

func (*NullableOrganizationsCreateIntegrationResponse) Set added in v0.5.0

func (*NullableOrganizationsCreateIntegrationResponse) UnmarshalJSON added in v0.5.0

func (*NullableOrganizationsCreateIntegrationResponse) Unset added in v0.5.0

type NullableOrganizationsCreateInvitationBody

type NullableOrganizationsCreateInvitationBody struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsCreateInvitationBody) Get

func (NullableOrganizationsCreateInvitationBody) IsSet

func (NullableOrganizationsCreateInvitationBody) MarshalJSON

func (*NullableOrganizationsCreateInvitationBody) Set

func (*NullableOrganizationsCreateInvitationBody) UnmarshalJSON

func (v *NullableOrganizationsCreateInvitationBody) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsCreateInvitationBody) Unset

type NullableOrganizationsCreateInvitationResponse

type NullableOrganizationsCreateInvitationResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsCreateInvitationResponse) Get

func (NullableOrganizationsCreateInvitationResponse) IsSet

func (NullableOrganizationsCreateInvitationResponse) MarshalJSON

func (*NullableOrganizationsCreateInvitationResponse) Set

func (*NullableOrganizationsCreateInvitationResponse) UnmarshalJSON

func (*NullableOrganizationsCreateInvitationResponse) Unset

type NullableOrganizationsDescribeIntegrationResponse added in v0.5.0

type NullableOrganizationsDescribeIntegrationResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsDescribeIntegrationResponse) Get added in v0.5.0

func (NullableOrganizationsDescribeIntegrationResponse) IsSet added in v0.5.0

func (NullableOrganizationsDescribeIntegrationResponse) MarshalJSON added in v0.5.0

func (*NullableOrganizationsDescribeIntegrationResponse) Set added in v0.5.0

func (*NullableOrganizationsDescribeIntegrationResponse) UnmarshalJSON added in v0.5.0

func (*NullableOrganizationsDescribeIntegrationResponse) Unset added in v0.5.0

type NullableOrganizationsDescribeOrganizationResponse

type NullableOrganizationsDescribeOrganizationResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsDescribeOrganizationResponse) Get

func (NullableOrganizationsDescribeOrganizationResponse) IsSet

func (NullableOrganizationsDescribeOrganizationResponse) MarshalJSON

func (*NullableOrganizationsDescribeOrganizationResponse) Set

func (*NullableOrganizationsDescribeOrganizationResponse) UnmarshalJSON

func (*NullableOrganizationsDescribeOrganizationResponse) Unset

type NullableOrganizationsGetInviteLinkResponse added in v0.0.43

type NullableOrganizationsGetInviteLinkResponse struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsGetInviteLinkResponse added in v0.0.43

func NewNullableOrganizationsGetInviteLinkResponse(val *OrganizationsGetInviteLinkResponse) *NullableOrganizationsGetInviteLinkResponse

func (NullableOrganizationsGetInviteLinkResponse) Get added in v0.0.43

func (NullableOrganizationsGetInviteLinkResponse) IsSet added in v0.0.43

func (NullableOrganizationsGetInviteLinkResponse) MarshalJSON added in v0.0.43

func (*NullableOrganizationsGetInviteLinkResponse) Set added in v0.0.43

func (*NullableOrganizationsGetInviteLinkResponse) UnmarshalJSON added in v0.0.43

func (v *NullableOrganizationsGetInviteLinkResponse) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsGetInviteLinkResponse) Unset added in v0.0.43

type NullableOrganizationsIntegration added in v0.5.0

type NullableOrganizationsIntegration struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsIntegration added in v0.5.0

func NewNullableOrganizationsIntegration(val *OrganizationsIntegration) *NullableOrganizationsIntegration

func (NullableOrganizationsIntegration) Get added in v0.5.0

func (NullableOrganizationsIntegration) IsSet added in v0.5.0

func (NullableOrganizationsIntegration) MarshalJSON added in v0.5.0

func (v NullableOrganizationsIntegration) MarshalJSON() ([]byte, error)

func (*NullableOrganizationsIntegration) Set added in v0.5.0

func (*NullableOrganizationsIntegration) UnmarshalJSON added in v0.5.0

func (v *NullableOrganizationsIntegration) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsIntegration) Unset added in v0.5.0

type NullableOrganizationsIntegrationMetadata added in v0.5.0

type NullableOrganizationsIntegrationMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsIntegrationMetadata added in v0.5.0

func NewNullableOrganizationsIntegrationMetadata(val *OrganizationsIntegrationMetadata) *NullableOrganizationsIntegrationMetadata

func (NullableOrganizationsIntegrationMetadata) Get added in v0.5.0

func (NullableOrganizationsIntegrationMetadata) IsSet added in v0.5.0

func (NullableOrganizationsIntegrationMetadata) MarshalJSON added in v0.5.0

func (*NullableOrganizationsIntegrationMetadata) Set added in v0.5.0

func (*NullableOrganizationsIntegrationMetadata) UnmarshalJSON added in v0.5.0

func (v *NullableOrganizationsIntegrationMetadata) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsIntegrationMetadata) Unset added in v0.5.0

type NullableOrganizationsIntegrationResourceRef added in v0.5.0

type NullableOrganizationsIntegrationResourceRef struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsIntegrationResourceRef added in v0.5.0

func NewNullableOrganizationsIntegrationResourceRef(val *OrganizationsIntegrationResourceRef) *NullableOrganizationsIntegrationResourceRef

func (NullableOrganizationsIntegrationResourceRef) Get added in v0.5.0

func (NullableOrganizationsIntegrationResourceRef) IsSet added in v0.5.0

func (NullableOrganizationsIntegrationResourceRef) MarshalJSON added in v0.5.0

func (*NullableOrganizationsIntegrationResourceRef) Set added in v0.5.0

func (*NullableOrganizationsIntegrationResourceRef) UnmarshalJSON added in v0.5.0

func (v *NullableOrganizationsIntegrationResourceRef) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsIntegrationResourceRef) Unset added in v0.5.0

type NullableOrganizationsIntegrationSpec added in v0.5.0

type NullableOrganizationsIntegrationSpec struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsIntegrationSpec added in v0.5.0

func NewNullableOrganizationsIntegrationSpec(val *OrganizationsIntegrationSpec) *NullableOrganizationsIntegrationSpec

func (NullableOrganizationsIntegrationSpec) Get added in v0.5.0

func (NullableOrganizationsIntegrationSpec) IsSet added in v0.5.0

func (NullableOrganizationsIntegrationSpec) MarshalJSON added in v0.5.0

func (v NullableOrganizationsIntegrationSpec) MarshalJSON() ([]byte, error)

func (*NullableOrganizationsIntegrationSpec) Set added in v0.5.0

func (*NullableOrganizationsIntegrationSpec) UnmarshalJSON added in v0.5.0

func (v *NullableOrganizationsIntegrationSpec) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsIntegrationSpec) Unset added in v0.5.0

type NullableOrganizationsIntegrationStatus added in v0.5.0

type NullableOrganizationsIntegrationStatus struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsIntegrationStatus added in v0.5.0

func NewNullableOrganizationsIntegrationStatus(val *OrganizationsIntegrationStatus) *NullableOrganizationsIntegrationStatus

func (NullableOrganizationsIntegrationStatus) Get added in v0.5.0

func (NullableOrganizationsIntegrationStatus) IsSet added in v0.5.0

func (NullableOrganizationsIntegrationStatus) MarshalJSON added in v0.5.0

func (v NullableOrganizationsIntegrationStatus) MarshalJSON() ([]byte, error)

func (*NullableOrganizationsIntegrationStatus) Set added in v0.5.0

func (*NullableOrganizationsIntegrationStatus) UnmarshalJSON added in v0.5.0

func (v *NullableOrganizationsIntegrationStatus) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsIntegrationStatus) Unset added in v0.5.0

type NullableOrganizationsInvitation

type NullableOrganizationsInvitation struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsInvitation) Get

func (NullableOrganizationsInvitation) IsSet

func (NullableOrganizationsInvitation) MarshalJSON

func (v NullableOrganizationsInvitation) MarshalJSON() ([]byte, error)

func (*NullableOrganizationsInvitation) Set

func (*NullableOrganizationsInvitation) UnmarshalJSON

func (v *NullableOrganizationsInvitation) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsInvitation) Unset

type NullableOrganizationsInviteLink struct {
	// contains filtered or unexported fields
}
func NewNullableOrganizationsInviteLink(val *OrganizationsInviteLink) *NullableOrganizationsInviteLink

func (NullableOrganizationsInviteLink) Get added in v0.0.43

func (NullableOrganizationsInviteLink) IsSet added in v0.0.43

func (NullableOrganizationsInviteLink) MarshalJSON added in v0.0.43

func (v NullableOrganizationsInviteLink) MarshalJSON() ([]byte, error)

func (*NullableOrganizationsInviteLink) Set added in v0.0.43

func (*NullableOrganizationsInviteLink) UnmarshalJSON added in v0.0.43

func (v *NullableOrganizationsInviteLink) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsInviteLink) Unset added in v0.0.43

type NullableOrganizationsListIntegrationResourcesResponse added in v0.5.0

type NullableOrganizationsListIntegrationResourcesResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsListIntegrationResourcesResponse) Get added in v0.5.0

func (NullableOrganizationsListIntegrationResourcesResponse) IsSet added in v0.5.0

func (NullableOrganizationsListIntegrationResourcesResponse) MarshalJSON added in v0.5.0

func (*NullableOrganizationsListIntegrationResourcesResponse) Set added in v0.5.0

func (*NullableOrganizationsListIntegrationResourcesResponse) UnmarshalJSON added in v0.5.0

func (*NullableOrganizationsListIntegrationResourcesResponse) Unset added in v0.5.0

type NullableOrganizationsListInvitationsResponse

type NullableOrganizationsListInvitationsResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsListInvitationsResponse) Get

func (NullableOrganizationsListInvitationsResponse) IsSet

func (NullableOrganizationsListInvitationsResponse) MarshalJSON

func (*NullableOrganizationsListInvitationsResponse) Set

func (*NullableOrganizationsListInvitationsResponse) UnmarshalJSON

func (*NullableOrganizationsListInvitationsResponse) Unset

type NullableOrganizationsOrganization

type NullableOrganizationsOrganization struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsOrganization) Get

func (NullableOrganizationsOrganization) IsSet

func (NullableOrganizationsOrganization) MarshalJSON

func (v NullableOrganizationsOrganization) MarshalJSON() ([]byte, error)

func (*NullableOrganizationsOrganization) Set

func (*NullableOrganizationsOrganization) UnmarshalJSON

func (v *NullableOrganizationsOrganization) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsOrganization) Unset

type NullableOrganizationsOrganizationMetadata

type NullableOrganizationsOrganizationMetadata struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsOrganizationMetadata) Get

func (NullableOrganizationsOrganizationMetadata) IsSet

func (NullableOrganizationsOrganizationMetadata) MarshalJSON

func (*NullableOrganizationsOrganizationMetadata) Set

func (*NullableOrganizationsOrganizationMetadata) UnmarshalJSON

func (v *NullableOrganizationsOrganizationMetadata) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsOrganizationMetadata) Unset

type NullableOrganizationsResetInviteLinkResponse added in v0.0.43

type NullableOrganizationsResetInviteLinkResponse struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsResetInviteLinkResponse added in v0.0.43

func NewNullableOrganizationsResetInviteLinkResponse(val *OrganizationsResetInviteLinkResponse) *NullableOrganizationsResetInviteLinkResponse

func (NullableOrganizationsResetInviteLinkResponse) Get added in v0.0.43

func (NullableOrganizationsResetInviteLinkResponse) IsSet added in v0.0.43

func (NullableOrganizationsResetInviteLinkResponse) MarshalJSON added in v0.0.43

func (*NullableOrganizationsResetInviteLinkResponse) Set added in v0.0.43

func (*NullableOrganizationsResetInviteLinkResponse) UnmarshalJSON added in v0.0.43

func (*NullableOrganizationsResetInviteLinkResponse) Unset added in v0.0.43

type NullableOrganizationsUpdateIntegrationBody added in v0.5.0

type NullableOrganizationsUpdateIntegrationBody struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsUpdateIntegrationBody added in v0.5.0

func NewNullableOrganizationsUpdateIntegrationBody(val *OrganizationsUpdateIntegrationBody) *NullableOrganizationsUpdateIntegrationBody

func (NullableOrganizationsUpdateIntegrationBody) Get added in v0.5.0

func (NullableOrganizationsUpdateIntegrationBody) IsSet added in v0.5.0

func (NullableOrganizationsUpdateIntegrationBody) MarshalJSON added in v0.5.0

func (*NullableOrganizationsUpdateIntegrationBody) Set added in v0.5.0

func (*NullableOrganizationsUpdateIntegrationBody) UnmarshalJSON added in v0.5.0

func (v *NullableOrganizationsUpdateIntegrationBody) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsUpdateIntegrationBody) Unset added in v0.5.0

type NullableOrganizationsUpdateIntegrationResponse added in v0.5.0

type NullableOrganizationsUpdateIntegrationResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsUpdateIntegrationResponse) Get added in v0.5.0

func (NullableOrganizationsUpdateIntegrationResponse) IsSet added in v0.5.0

func (NullableOrganizationsUpdateIntegrationResponse) MarshalJSON added in v0.5.0

func (*NullableOrganizationsUpdateIntegrationResponse) Set added in v0.5.0

func (*NullableOrganizationsUpdateIntegrationResponse) UnmarshalJSON added in v0.5.0

func (*NullableOrganizationsUpdateIntegrationResponse) Unset added in v0.5.0

type NullableOrganizationsUpdateInviteLinkBody added in v0.0.43

type NullableOrganizationsUpdateInviteLinkBody struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsUpdateInviteLinkBody added in v0.0.43

func NewNullableOrganizationsUpdateInviteLinkBody(val *OrganizationsUpdateInviteLinkBody) *NullableOrganizationsUpdateInviteLinkBody

func (NullableOrganizationsUpdateInviteLinkBody) Get added in v0.0.43

func (NullableOrganizationsUpdateInviteLinkBody) IsSet added in v0.0.43

func (NullableOrganizationsUpdateInviteLinkBody) MarshalJSON added in v0.0.43

func (*NullableOrganizationsUpdateInviteLinkBody) Set added in v0.0.43

func (*NullableOrganizationsUpdateInviteLinkBody) UnmarshalJSON added in v0.0.43

func (v *NullableOrganizationsUpdateInviteLinkBody) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsUpdateInviteLinkBody) Unset added in v0.0.43

type NullableOrganizationsUpdateInviteLinkResponse added in v0.0.43

type NullableOrganizationsUpdateInviteLinkResponse struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationsUpdateInviteLinkResponse added in v0.0.43

func NewNullableOrganizationsUpdateInviteLinkResponse(val *OrganizationsUpdateInviteLinkResponse) *NullableOrganizationsUpdateInviteLinkResponse

func (NullableOrganizationsUpdateInviteLinkResponse) Get added in v0.0.43

func (NullableOrganizationsUpdateInviteLinkResponse) IsSet added in v0.0.43

func (NullableOrganizationsUpdateInviteLinkResponse) MarshalJSON added in v0.0.43

func (*NullableOrganizationsUpdateInviteLinkResponse) Set added in v0.0.43

func (*NullableOrganizationsUpdateInviteLinkResponse) UnmarshalJSON added in v0.0.43

func (*NullableOrganizationsUpdateInviteLinkResponse) Unset added in v0.0.43

type NullableOrganizationsUpdateOrganizationBody

type NullableOrganizationsUpdateOrganizationBody struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsUpdateOrganizationBody) Get

func (NullableOrganizationsUpdateOrganizationBody) IsSet

func (NullableOrganizationsUpdateOrganizationBody) MarshalJSON

func (*NullableOrganizationsUpdateOrganizationBody) Set

func (*NullableOrganizationsUpdateOrganizationBody) UnmarshalJSON

func (v *NullableOrganizationsUpdateOrganizationBody) UnmarshalJSON(src []byte) error

func (*NullableOrganizationsUpdateOrganizationBody) Unset

type NullableOrganizationsUpdateOrganizationResponse

type NullableOrganizationsUpdateOrganizationResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationsUpdateOrganizationResponse) Get

func (NullableOrganizationsUpdateOrganizationResponse) IsSet

func (NullableOrganizationsUpdateOrganizationResponse) MarshalJSON

func (*NullableOrganizationsUpdateOrganizationResponse) Set

func (*NullableOrganizationsUpdateOrganizationResponse) UnmarshalJSON

func (*NullableOrganizationsUpdateOrganizationResponse) Unset

type NullableProtobufAny

type NullableProtobufAny struct {
	// contains filtered or unexported fields
}

func NewNullableProtobufAny

func NewNullableProtobufAny(val *ProtobufAny) *NullableProtobufAny

func (NullableProtobufAny) Get

func (NullableProtobufAny) IsSet

func (v NullableProtobufAny) IsSet() bool

func (NullableProtobufAny) MarshalJSON

func (v NullableProtobufAny) MarshalJSON() ([]byte, error)

func (*NullableProtobufAny) Set

func (v *NullableProtobufAny) Set(val *ProtobufAny)

func (*NullableProtobufAny) UnmarshalJSON

func (v *NullableProtobufAny) UnmarshalJSON(src []byte) error

func (*NullableProtobufAny) Unset

func (v *NullableProtobufAny) Unset()

type NullableProtobufNullValue

type NullableProtobufNullValue struct {
	// contains filtered or unexported fields
}

func NewNullableProtobufNullValue

func NewNullableProtobufNullValue(val *ProtobufNullValue) *NullableProtobufNullValue

func (NullableProtobufNullValue) Get

func (NullableProtobufNullValue) IsSet

func (v NullableProtobufNullValue) IsSet() bool

func (NullableProtobufNullValue) MarshalJSON

func (v NullableProtobufNullValue) MarshalJSON() ([]byte, error)

func (*NullableProtobufNullValue) Set

func (*NullableProtobufNullValue) UnmarshalJSON

func (v *NullableProtobufNullValue) UnmarshalJSON(src []byte) error

func (*NullableProtobufNullValue) Unset

func (v *NullableProtobufNullValue) Unset()

type NullableRolesAssignRoleBody

type NullableRolesAssignRoleBody struct {
	// contains filtered or unexported fields
}

func NewNullableRolesAssignRoleBody

func NewNullableRolesAssignRoleBody(val *RolesAssignRoleBody) *NullableRolesAssignRoleBody

func (NullableRolesAssignRoleBody) Get

func (NullableRolesAssignRoleBody) IsSet

func (NullableRolesAssignRoleBody) MarshalJSON

func (v NullableRolesAssignRoleBody) MarshalJSON() ([]byte, error)

func (*NullableRolesAssignRoleBody) Set

func (*NullableRolesAssignRoleBody) UnmarshalJSON

func (v *NullableRolesAssignRoleBody) UnmarshalJSON(src []byte) error

func (*NullableRolesAssignRoleBody) Unset

func (v *NullableRolesAssignRoleBody) Unset()

type NullableRolesCreateRoleRequest

type NullableRolesCreateRoleRequest struct {
	// contains filtered or unexported fields
}

func (NullableRolesCreateRoleRequest) Get

func (NullableRolesCreateRoleRequest) IsSet

func (NullableRolesCreateRoleRequest) MarshalJSON

func (v NullableRolesCreateRoleRequest) MarshalJSON() ([]byte, error)

func (*NullableRolesCreateRoleRequest) Set

func (*NullableRolesCreateRoleRequest) UnmarshalJSON

func (v *NullableRolesCreateRoleRequest) UnmarshalJSON(src []byte) error

func (*NullableRolesCreateRoleRequest) Unset

func (v *NullableRolesCreateRoleRequest) Unset()

type NullableRolesCreateRoleResponse

type NullableRolesCreateRoleResponse struct {
	// contains filtered or unexported fields
}

func (NullableRolesCreateRoleResponse) Get

func (NullableRolesCreateRoleResponse) IsSet

func (NullableRolesCreateRoleResponse) MarshalJSON

func (v NullableRolesCreateRoleResponse) MarshalJSON() ([]byte, error)

func (*NullableRolesCreateRoleResponse) Set

func (*NullableRolesCreateRoleResponse) UnmarshalJSON

func (v *NullableRolesCreateRoleResponse) UnmarshalJSON(src []byte) error

func (*NullableRolesCreateRoleResponse) Unset

type NullableRolesDescribeRoleResponse

type NullableRolesDescribeRoleResponse struct {
	// contains filtered or unexported fields
}

func (NullableRolesDescribeRoleResponse) Get

func (NullableRolesDescribeRoleResponse) IsSet

func (NullableRolesDescribeRoleResponse) MarshalJSON

func (v NullableRolesDescribeRoleResponse) MarshalJSON() ([]byte, error)

func (*NullableRolesDescribeRoleResponse) Set

func (*NullableRolesDescribeRoleResponse) UnmarshalJSON

func (v *NullableRolesDescribeRoleResponse) UnmarshalJSON(src []byte) error

func (*NullableRolesDescribeRoleResponse) Unset

type NullableRolesListRolesResponse

type NullableRolesListRolesResponse struct {
	// contains filtered or unexported fields
}

func (NullableRolesListRolesResponse) Get

func (NullableRolesListRolesResponse) IsSet

func (NullableRolesListRolesResponse) MarshalJSON

func (v NullableRolesListRolesResponse) MarshalJSON() ([]byte, error)

func (*NullableRolesListRolesResponse) Set

func (*NullableRolesListRolesResponse) UnmarshalJSON

func (v *NullableRolesListRolesResponse) UnmarshalJSON(src []byte) error

func (*NullableRolesListRolesResponse) Unset

func (v *NullableRolesListRolesResponse) Unset()

type NullableRolesRole

type NullableRolesRole struct {
	// contains filtered or unexported fields
}

func NewNullableRolesRole

func NewNullableRolesRole(val *RolesRole) *NullableRolesRole

func (NullableRolesRole) Get

func (v NullableRolesRole) Get() *RolesRole

func (NullableRolesRole) IsSet

func (v NullableRolesRole) IsSet() bool

func (NullableRolesRole) MarshalJSON

func (v NullableRolesRole) MarshalJSON() ([]byte, error)

func (*NullableRolesRole) Set

func (v *NullableRolesRole) Set(val *RolesRole)

func (*NullableRolesRole) UnmarshalJSON

func (v *NullableRolesRole) UnmarshalJSON(src []byte) error

func (*NullableRolesRole) Unset

func (v *NullableRolesRole) Unset()

type NullableRolesRoleMetadata

type NullableRolesRoleMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableRolesRoleMetadata

func NewNullableRolesRoleMetadata(val *RolesRoleMetadata) *NullableRolesRoleMetadata

func (NullableRolesRoleMetadata) Get

func (NullableRolesRoleMetadata) IsSet

func (v NullableRolesRoleMetadata) IsSet() bool

func (NullableRolesRoleMetadata) MarshalJSON

func (v NullableRolesRoleMetadata) MarshalJSON() ([]byte, error)

func (*NullableRolesRoleMetadata) Set

func (*NullableRolesRoleMetadata) UnmarshalJSON

func (v *NullableRolesRoleMetadata) UnmarshalJSON(src []byte) error

func (*NullableRolesRoleMetadata) Unset

func (v *NullableRolesRoleMetadata) Unset()

type NullableRolesRoleSpec

type NullableRolesRoleSpec struct {
	// contains filtered or unexported fields
}

func NewNullableRolesRoleSpec

func NewNullableRolesRoleSpec(val *RolesRoleSpec) *NullableRolesRoleSpec

func (NullableRolesRoleSpec) Get

func (NullableRolesRoleSpec) IsSet

func (v NullableRolesRoleSpec) IsSet() bool

func (NullableRolesRoleSpec) MarshalJSON

func (v NullableRolesRoleSpec) MarshalJSON() ([]byte, error)

func (*NullableRolesRoleSpec) Set

func (v *NullableRolesRoleSpec) Set(val *RolesRoleSpec)

func (*NullableRolesRoleSpec) UnmarshalJSON

func (v *NullableRolesRoleSpec) UnmarshalJSON(src []byte) error

func (*NullableRolesRoleSpec) Unset

func (v *NullableRolesRoleSpec) Unset()

type NullableRolesUpdateRoleBody

type NullableRolesUpdateRoleBody struct {
	// contains filtered or unexported fields
}

func NewNullableRolesUpdateRoleBody

func NewNullableRolesUpdateRoleBody(val *RolesUpdateRoleBody) *NullableRolesUpdateRoleBody

func (NullableRolesUpdateRoleBody) Get

func (NullableRolesUpdateRoleBody) IsSet

func (NullableRolesUpdateRoleBody) MarshalJSON

func (v NullableRolesUpdateRoleBody) MarshalJSON() ([]byte, error)

func (*NullableRolesUpdateRoleBody) Set

func (*NullableRolesUpdateRoleBody) UnmarshalJSON

func (v *NullableRolesUpdateRoleBody) UnmarshalJSON(src []byte) error

func (*NullableRolesUpdateRoleBody) Unset

func (v *NullableRolesUpdateRoleBody) Unset()

type NullableRolesUpdateRoleResponse

type NullableRolesUpdateRoleResponse struct {
	// contains filtered or unexported fields
}

func (NullableRolesUpdateRoleResponse) Get

func (NullableRolesUpdateRoleResponse) IsSet

func (NullableRolesUpdateRoleResponse) MarshalJSON

func (v NullableRolesUpdateRoleResponse) MarshalJSON() ([]byte, error)

func (*NullableRolesUpdateRoleResponse) Set

func (*NullableRolesUpdateRoleResponse) UnmarshalJSON

func (v *NullableRolesUpdateRoleResponse) UnmarshalJSON(src []byte) error

func (*NullableRolesUpdateRoleResponse) Unset

type NullableSecretLocal

type NullableSecretLocal struct {
	// contains filtered or unexported fields
}

func NewNullableSecretLocal

func NewNullableSecretLocal(val *SecretLocal) *NullableSecretLocal

func (NullableSecretLocal) Get

func (NullableSecretLocal) IsSet

func (v NullableSecretLocal) IsSet() bool

func (NullableSecretLocal) MarshalJSON

func (v NullableSecretLocal) MarshalJSON() ([]byte, error)

func (*NullableSecretLocal) Set

func (v *NullableSecretLocal) Set(val *SecretLocal)

func (*NullableSecretLocal) UnmarshalJSON

func (v *NullableSecretLocal) UnmarshalJSON(src []byte) error

func (*NullableSecretLocal) Unset

func (v *NullableSecretLocal) Unset()

type NullableSecretProvider

type NullableSecretProvider struct {
	// contains filtered or unexported fields
}

func NewNullableSecretProvider

func NewNullableSecretProvider(val *SecretProvider) *NullableSecretProvider

func (NullableSecretProvider) Get

func (NullableSecretProvider) IsSet

func (v NullableSecretProvider) IsSet() bool

func (NullableSecretProvider) MarshalJSON

func (v NullableSecretProvider) MarshalJSON() ([]byte, error)

func (*NullableSecretProvider) Set

func (*NullableSecretProvider) UnmarshalJSON

func (v *NullableSecretProvider) UnmarshalJSON(src []byte) error

func (*NullableSecretProvider) Unset

func (v *NullableSecretProvider) Unset()

type NullableSecretsCreateSecretRequest

type NullableSecretsCreateSecretRequest struct {
	// contains filtered or unexported fields
}

func (NullableSecretsCreateSecretRequest) Get

func (NullableSecretsCreateSecretRequest) IsSet

func (NullableSecretsCreateSecretRequest) MarshalJSON

func (v NullableSecretsCreateSecretRequest) MarshalJSON() ([]byte, error)

func (*NullableSecretsCreateSecretRequest) Set

func (*NullableSecretsCreateSecretRequest) UnmarshalJSON

func (v *NullableSecretsCreateSecretRequest) UnmarshalJSON(src []byte) error

func (*NullableSecretsCreateSecretRequest) Unset

type NullableSecretsCreateSecretResponse

type NullableSecretsCreateSecretResponse struct {
	// contains filtered or unexported fields
}

func (NullableSecretsCreateSecretResponse) Get

func (NullableSecretsCreateSecretResponse) IsSet

func (NullableSecretsCreateSecretResponse) MarshalJSON

func (v NullableSecretsCreateSecretResponse) MarshalJSON() ([]byte, error)

func (*NullableSecretsCreateSecretResponse) Set

func (*NullableSecretsCreateSecretResponse) UnmarshalJSON

func (v *NullableSecretsCreateSecretResponse) UnmarshalJSON(src []byte) error

func (*NullableSecretsCreateSecretResponse) Unset

type NullableSecretsDeleteSecretKeyResponse added in v0.7.0

type NullableSecretsDeleteSecretKeyResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSecretsDeleteSecretKeyResponse added in v0.7.0

func NewNullableSecretsDeleteSecretKeyResponse(val *SecretsDeleteSecretKeyResponse) *NullableSecretsDeleteSecretKeyResponse

func (NullableSecretsDeleteSecretKeyResponse) Get added in v0.7.0

func (NullableSecretsDeleteSecretKeyResponse) IsSet added in v0.7.0

func (NullableSecretsDeleteSecretKeyResponse) MarshalJSON added in v0.7.0

func (v NullableSecretsDeleteSecretKeyResponse) MarshalJSON() ([]byte, error)

func (*NullableSecretsDeleteSecretKeyResponse) Set added in v0.7.0

func (*NullableSecretsDeleteSecretKeyResponse) UnmarshalJSON added in v0.7.0

func (v *NullableSecretsDeleteSecretKeyResponse) UnmarshalJSON(src []byte) error

func (*NullableSecretsDeleteSecretKeyResponse) Unset added in v0.7.0

type NullableSecretsDescribeSecretResponse

type NullableSecretsDescribeSecretResponse struct {
	// contains filtered or unexported fields
}

func (NullableSecretsDescribeSecretResponse) Get

func (NullableSecretsDescribeSecretResponse) IsSet

func (NullableSecretsDescribeSecretResponse) MarshalJSON

func (v NullableSecretsDescribeSecretResponse) MarshalJSON() ([]byte, error)

func (*NullableSecretsDescribeSecretResponse) Set

func (*NullableSecretsDescribeSecretResponse) UnmarshalJSON

func (v *NullableSecretsDescribeSecretResponse) UnmarshalJSON(src []byte) error

func (*NullableSecretsDescribeSecretResponse) Unset

type NullableSecretsListSecretsResponse

type NullableSecretsListSecretsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSecretsListSecretsResponse) Get

func (NullableSecretsListSecretsResponse) IsSet

func (NullableSecretsListSecretsResponse) MarshalJSON

func (v NullableSecretsListSecretsResponse) MarshalJSON() ([]byte, error)

func (*NullableSecretsListSecretsResponse) Set

func (*NullableSecretsListSecretsResponse) UnmarshalJSON

func (v *NullableSecretsListSecretsResponse) UnmarshalJSON(src []byte) error

func (*NullableSecretsListSecretsResponse) Unset

type NullableSecretsSecret

type NullableSecretsSecret struct {
	// contains filtered or unexported fields
}

func NewNullableSecretsSecret

func NewNullableSecretsSecret(val *SecretsSecret) *NullableSecretsSecret

func (NullableSecretsSecret) Get

func (NullableSecretsSecret) IsSet

func (v NullableSecretsSecret) IsSet() bool

func (NullableSecretsSecret) MarshalJSON

func (v NullableSecretsSecret) MarshalJSON() ([]byte, error)

func (*NullableSecretsSecret) Set

func (v *NullableSecretsSecret) Set(val *SecretsSecret)

func (*NullableSecretsSecret) UnmarshalJSON

func (v *NullableSecretsSecret) UnmarshalJSON(src []byte) error

func (*NullableSecretsSecret) Unset

func (v *NullableSecretsSecret) Unset()

type NullableSecretsSecretMetadata

type NullableSecretsSecretMetadata struct {
	// contains filtered or unexported fields
}

func (NullableSecretsSecretMetadata) Get

func (NullableSecretsSecretMetadata) IsSet

func (NullableSecretsSecretMetadata) MarshalJSON

func (v NullableSecretsSecretMetadata) MarshalJSON() ([]byte, error)

func (*NullableSecretsSecretMetadata) Set

func (*NullableSecretsSecretMetadata) UnmarshalJSON

func (v *NullableSecretsSecretMetadata) UnmarshalJSON(src []byte) error

func (*NullableSecretsSecretMetadata) Unset

func (v *NullableSecretsSecretMetadata) Unset()

type NullableSecretsSecretSpec

type NullableSecretsSecretSpec struct {
	// contains filtered or unexported fields
}

func NewNullableSecretsSecretSpec

func NewNullableSecretsSecretSpec(val *SecretsSecretSpec) *NullableSecretsSecretSpec

func (NullableSecretsSecretSpec) Get

func (NullableSecretsSecretSpec) IsSet

func (v NullableSecretsSecretSpec) IsSet() bool

func (NullableSecretsSecretSpec) MarshalJSON

func (v NullableSecretsSecretSpec) MarshalJSON() ([]byte, error)

func (*NullableSecretsSecretSpec) Set

func (*NullableSecretsSecretSpec) UnmarshalJSON

func (v *NullableSecretsSecretSpec) UnmarshalJSON(src []byte) error

func (*NullableSecretsSecretSpec) Unset

func (v *NullableSecretsSecretSpec) Unset()

type NullableSecretsSetSecretKeyBody added in v0.7.0

type NullableSecretsSetSecretKeyBody struct {
	// contains filtered or unexported fields
}

func NewNullableSecretsSetSecretKeyBody added in v0.7.0

func NewNullableSecretsSetSecretKeyBody(val *SecretsSetSecretKeyBody) *NullableSecretsSetSecretKeyBody

func (NullableSecretsSetSecretKeyBody) Get added in v0.7.0

func (NullableSecretsSetSecretKeyBody) IsSet added in v0.7.0

func (NullableSecretsSetSecretKeyBody) MarshalJSON added in v0.7.0

func (v NullableSecretsSetSecretKeyBody) MarshalJSON() ([]byte, error)

func (*NullableSecretsSetSecretKeyBody) Set added in v0.7.0

func (*NullableSecretsSetSecretKeyBody) UnmarshalJSON added in v0.7.0

func (v *NullableSecretsSetSecretKeyBody) UnmarshalJSON(src []byte) error

func (*NullableSecretsSetSecretKeyBody) Unset added in v0.7.0

type NullableSecretsSetSecretKeyResponse added in v0.7.0

type NullableSecretsSetSecretKeyResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSecretsSetSecretKeyResponse added in v0.7.0

func NewNullableSecretsSetSecretKeyResponse(val *SecretsSetSecretKeyResponse) *NullableSecretsSetSecretKeyResponse

func (NullableSecretsSetSecretKeyResponse) Get added in v0.7.0

func (NullableSecretsSetSecretKeyResponse) IsSet added in v0.7.0

func (NullableSecretsSetSecretKeyResponse) MarshalJSON added in v0.7.0

func (v NullableSecretsSetSecretKeyResponse) MarshalJSON() ([]byte, error)

func (*NullableSecretsSetSecretKeyResponse) Set added in v0.7.0

func (*NullableSecretsSetSecretKeyResponse) UnmarshalJSON added in v0.7.0

func (v *NullableSecretsSetSecretKeyResponse) UnmarshalJSON(src []byte) error

func (*NullableSecretsSetSecretKeyResponse) Unset added in v0.7.0

type NullableSecretsUpdateSecretBody

type NullableSecretsUpdateSecretBody struct {
	// contains filtered or unexported fields
}

func (NullableSecretsUpdateSecretBody) Get

func (NullableSecretsUpdateSecretBody) IsSet

func (NullableSecretsUpdateSecretBody) MarshalJSON

func (v NullableSecretsUpdateSecretBody) MarshalJSON() ([]byte, error)

func (*NullableSecretsUpdateSecretBody) Set

func (*NullableSecretsUpdateSecretBody) UnmarshalJSON

func (v *NullableSecretsUpdateSecretBody) UnmarshalJSON(src []byte) error

func (*NullableSecretsUpdateSecretBody) Unset

type NullableSecretsUpdateSecretNameBody added in v0.7.0

type NullableSecretsUpdateSecretNameBody struct {
	// contains filtered or unexported fields
}

func NewNullableSecretsUpdateSecretNameBody added in v0.7.0

func NewNullableSecretsUpdateSecretNameBody(val *SecretsUpdateSecretNameBody) *NullableSecretsUpdateSecretNameBody

func (NullableSecretsUpdateSecretNameBody) Get added in v0.7.0

func (NullableSecretsUpdateSecretNameBody) IsSet added in v0.7.0

func (NullableSecretsUpdateSecretNameBody) MarshalJSON added in v0.7.0

func (v NullableSecretsUpdateSecretNameBody) MarshalJSON() ([]byte, error)

func (*NullableSecretsUpdateSecretNameBody) Set added in v0.7.0

func (*NullableSecretsUpdateSecretNameBody) UnmarshalJSON added in v0.7.0

func (v *NullableSecretsUpdateSecretNameBody) UnmarshalJSON(src []byte) error

func (*NullableSecretsUpdateSecretNameBody) Unset added in v0.7.0

type NullableSecretsUpdateSecretNameResponse added in v0.7.0

type NullableSecretsUpdateSecretNameResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSecretsUpdateSecretNameResponse added in v0.7.0

func NewNullableSecretsUpdateSecretNameResponse(val *SecretsUpdateSecretNameResponse) *NullableSecretsUpdateSecretNameResponse

func (NullableSecretsUpdateSecretNameResponse) Get added in v0.7.0

func (NullableSecretsUpdateSecretNameResponse) IsSet added in v0.7.0

func (NullableSecretsUpdateSecretNameResponse) MarshalJSON added in v0.7.0

func (v NullableSecretsUpdateSecretNameResponse) MarshalJSON() ([]byte, error)

func (*NullableSecretsUpdateSecretNameResponse) Set added in v0.7.0

func (*NullableSecretsUpdateSecretNameResponse) UnmarshalJSON added in v0.7.0

func (v *NullableSecretsUpdateSecretNameResponse) UnmarshalJSON(src []byte) error

func (*NullableSecretsUpdateSecretNameResponse) Unset added in v0.7.0

type NullableSecretsUpdateSecretResponse

type NullableSecretsUpdateSecretResponse struct {
	// contains filtered or unexported fields
}

func (NullableSecretsUpdateSecretResponse) Get

func (NullableSecretsUpdateSecretResponse) IsSet

func (NullableSecretsUpdateSecretResponse) MarshalJSON

func (v NullableSecretsUpdateSecretResponse) MarshalJSON() ([]byte, error)

func (*NullableSecretsUpdateSecretResponse) Set

func (*NullableSecretsUpdateSecretResponse) UnmarshalJSON

func (v *NullableSecretsUpdateSecretResponse) UnmarshalJSON(src []byte) error

func (*NullableSecretsUpdateSecretResponse) 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 NullableSuperplaneBlueprintsOutputChannel

type NullableSuperplaneBlueprintsOutputChannel struct {
	// contains filtered or unexported fields
}

func (NullableSuperplaneBlueprintsOutputChannel) Get

func (NullableSuperplaneBlueprintsOutputChannel) IsSet

func (NullableSuperplaneBlueprintsOutputChannel) MarshalJSON

func (*NullableSuperplaneBlueprintsOutputChannel) Set

func (*NullableSuperplaneBlueprintsOutputChannel) UnmarshalJSON

func (v *NullableSuperplaneBlueprintsOutputChannel) UnmarshalJSON(src []byte) error

func (*NullableSuperplaneBlueprintsOutputChannel) Unset

type NullableSuperplaneBlueprintsUserRef

type NullableSuperplaneBlueprintsUserRef struct {
	// contains filtered or unexported fields
}

func (NullableSuperplaneBlueprintsUserRef) Get

func (NullableSuperplaneBlueprintsUserRef) IsSet

func (NullableSuperplaneBlueprintsUserRef) MarshalJSON

func (v NullableSuperplaneBlueprintsUserRef) MarshalJSON() ([]byte, error)

func (*NullableSuperplaneBlueprintsUserRef) Set

func (*NullableSuperplaneBlueprintsUserRef) UnmarshalJSON

func (v *NullableSuperplaneBlueprintsUserRef) UnmarshalJSON(src []byte) error

func (*NullableSuperplaneBlueprintsUserRef) Unset

type NullableSuperplaneCanvasesUserRef added in v0.6.0

type NullableSuperplaneCanvasesUserRef struct {
	// contains filtered or unexported fields
}

func NewNullableSuperplaneCanvasesUserRef added in v0.6.0

func NewNullableSuperplaneCanvasesUserRef(val *SuperplaneCanvasesUserRef) *NullableSuperplaneCanvasesUserRef

func (NullableSuperplaneCanvasesUserRef) Get added in v0.6.0

func (NullableSuperplaneCanvasesUserRef) IsSet added in v0.6.0

func (NullableSuperplaneCanvasesUserRef) MarshalJSON added in v0.6.0

func (v NullableSuperplaneCanvasesUserRef) MarshalJSON() ([]byte, error)

func (*NullableSuperplaneCanvasesUserRef) Set added in v0.6.0

func (*NullableSuperplaneCanvasesUserRef) UnmarshalJSON added in v0.6.0

func (v *NullableSuperplaneCanvasesUserRef) UnmarshalJSON(src []byte) error

func (*NullableSuperplaneCanvasesUserRef) Unset added in v0.6.0

type NullableSuperplaneComponentsOutputChannel

type NullableSuperplaneComponentsOutputChannel struct {
	// contains filtered or unexported fields
}

func (NullableSuperplaneComponentsOutputChannel) Get

func (NullableSuperplaneComponentsOutputChannel) IsSet

func (NullableSuperplaneComponentsOutputChannel) MarshalJSON

func (*NullableSuperplaneComponentsOutputChannel) Set

func (*NullableSuperplaneComponentsOutputChannel) UnmarshalJSON

func (v *NullableSuperplaneComponentsOutputChannel) UnmarshalJSON(src []byte) error

func (*NullableSuperplaneComponentsOutputChannel) Unset

type NullableSuperplaneIntegrationsListIntegrationsResponse added in v0.5.0

type NullableSuperplaneIntegrationsListIntegrationsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSuperplaneIntegrationsListIntegrationsResponse) Get added in v0.5.0

func (NullableSuperplaneIntegrationsListIntegrationsResponse) IsSet added in v0.5.0

func (NullableSuperplaneIntegrationsListIntegrationsResponse) MarshalJSON added in v0.5.0

func (*NullableSuperplaneIntegrationsListIntegrationsResponse) Set added in v0.5.0

func (*NullableSuperplaneIntegrationsListIntegrationsResponse) UnmarshalJSON added in v0.5.0

func (*NullableSuperplaneIntegrationsListIntegrationsResponse) Unset added in v0.5.0

type NullableSuperplaneMeUser

type NullableSuperplaneMeUser struct {
	// contains filtered or unexported fields
}

func NewNullableSuperplaneMeUser

func NewNullableSuperplaneMeUser(val *SuperplaneMeUser) *NullableSuperplaneMeUser

func (NullableSuperplaneMeUser) Get

func (NullableSuperplaneMeUser) IsSet

func (v NullableSuperplaneMeUser) IsSet() bool

func (NullableSuperplaneMeUser) MarshalJSON

func (v NullableSuperplaneMeUser) MarshalJSON() ([]byte, error)

func (*NullableSuperplaneMeUser) Set

func (*NullableSuperplaneMeUser) UnmarshalJSON

func (v *NullableSuperplaneMeUser) UnmarshalJSON(src []byte) error

func (*NullableSuperplaneMeUser) Unset

func (v *NullableSuperplaneMeUser) Unset()

type NullableSuperplaneOrganizationsListIntegrationsResponse added in v0.5.0

type NullableSuperplaneOrganizationsListIntegrationsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSuperplaneOrganizationsListIntegrationsResponse) Get added in v0.5.0

func (NullableSuperplaneOrganizationsListIntegrationsResponse) IsSet added in v0.5.0

func (NullableSuperplaneOrganizationsListIntegrationsResponse) MarshalJSON added in v0.5.0

func (*NullableSuperplaneOrganizationsListIntegrationsResponse) Set added in v0.5.0

func (*NullableSuperplaneOrganizationsListIntegrationsResponse) UnmarshalJSON added in v0.5.0

func (*NullableSuperplaneOrganizationsListIntegrationsResponse) Unset added in v0.5.0

type NullableSuperplaneUsersUser

type NullableSuperplaneUsersUser struct {
	// contains filtered or unexported fields
}

func NewNullableSuperplaneUsersUser

func NewNullableSuperplaneUsersUser(val *SuperplaneUsersUser) *NullableSuperplaneUsersUser

func (NullableSuperplaneUsersUser) Get

func (NullableSuperplaneUsersUser) IsSet

func (NullableSuperplaneUsersUser) MarshalJSON

func (v NullableSuperplaneUsersUser) MarshalJSON() ([]byte, error)

func (*NullableSuperplaneUsersUser) Set

func (*NullableSuperplaneUsersUser) UnmarshalJSON

func (v *NullableSuperplaneUsersUser) UnmarshalJSON(src []byte) error

func (*NullableSuperplaneUsersUser) Unset

func (v *NullableSuperplaneUsersUser) 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 NullableTriggersDescribeTriggerResponse

type NullableTriggersDescribeTriggerResponse struct {
	// contains filtered or unexported fields
}

func (NullableTriggersDescribeTriggerResponse) Get

func (NullableTriggersDescribeTriggerResponse) IsSet

func (NullableTriggersDescribeTriggerResponse) MarshalJSON

func (v NullableTriggersDescribeTriggerResponse) MarshalJSON() ([]byte, error)

func (*NullableTriggersDescribeTriggerResponse) Set

func (*NullableTriggersDescribeTriggerResponse) UnmarshalJSON

func (v *NullableTriggersDescribeTriggerResponse) UnmarshalJSON(src []byte) error

func (*NullableTriggersDescribeTriggerResponse) Unset

type NullableTriggersListTriggersResponse

type NullableTriggersListTriggersResponse struct {
	// contains filtered or unexported fields
}

func (NullableTriggersListTriggersResponse) Get

func (NullableTriggersListTriggersResponse) IsSet

func (NullableTriggersListTriggersResponse) MarshalJSON

func (v NullableTriggersListTriggersResponse) MarshalJSON() ([]byte, error)

func (*NullableTriggersListTriggersResponse) Set

func (*NullableTriggersListTriggersResponse) UnmarshalJSON

func (v *NullableTriggersListTriggersResponse) UnmarshalJSON(src []byte) error

func (*NullableTriggersListTriggersResponse) Unset

type NullableTriggersTrigger

type NullableTriggersTrigger struct {
	// contains filtered or unexported fields
}

func NewNullableTriggersTrigger

func NewNullableTriggersTrigger(val *TriggersTrigger) *NullableTriggersTrigger

func (NullableTriggersTrigger) Get

func (NullableTriggersTrigger) IsSet

func (v NullableTriggersTrigger) IsSet() bool

func (NullableTriggersTrigger) MarshalJSON

func (v NullableTriggersTrigger) MarshalJSON() ([]byte, error)

func (*NullableTriggersTrigger) Set

func (*NullableTriggersTrigger) UnmarshalJSON

func (v *NullableTriggersTrigger) UnmarshalJSON(src []byte) error

func (*NullableTriggersTrigger) Unset

func (v *NullableTriggersTrigger) Unset()

type NullableUsersAccountProvider

type NullableUsersAccountProvider struct {
	// contains filtered or unexported fields
}

func NewNullableUsersAccountProvider

func NewNullableUsersAccountProvider(val *UsersAccountProvider) *NullableUsersAccountProvider

func (NullableUsersAccountProvider) Get

func (NullableUsersAccountProvider) IsSet

func (NullableUsersAccountProvider) MarshalJSON

func (v NullableUsersAccountProvider) MarshalJSON() ([]byte, error)

func (*NullableUsersAccountProvider) Set

func (*NullableUsersAccountProvider) UnmarshalJSON

func (v *NullableUsersAccountProvider) UnmarshalJSON(src []byte) error

func (*NullableUsersAccountProvider) Unset

func (v *NullableUsersAccountProvider) Unset()

type NullableUsersListUserPermissionsResponse

type NullableUsersListUserPermissionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableUsersListUserPermissionsResponse) Get

func (NullableUsersListUserPermissionsResponse) IsSet

func (NullableUsersListUserPermissionsResponse) MarshalJSON

func (*NullableUsersListUserPermissionsResponse) Set

func (*NullableUsersListUserPermissionsResponse) UnmarshalJSON

func (v *NullableUsersListUserPermissionsResponse) UnmarshalJSON(src []byte) error

func (*NullableUsersListUserPermissionsResponse) Unset

type NullableUsersListUserRolesResponse

type NullableUsersListUserRolesResponse struct {
	// contains filtered or unexported fields
}

func (NullableUsersListUserRolesResponse) Get

func (NullableUsersListUserRolesResponse) IsSet

func (NullableUsersListUserRolesResponse) MarshalJSON

func (v NullableUsersListUserRolesResponse) MarshalJSON() ([]byte, error)

func (*NullableUsersListUserRolesResponse) Set

func (*NullableUsersListUserRolesResponse) UnmarshalJSON

func (v *NullableUsersListUserRolesResponse) UnmarshalJSON(src []byte) error

func (*NullableUsersListUserRolesResponse) Unset

type NullableUsersListUsersResponse

type NullableUsersListUsersResponse struct {
	// contains filtered or unexported fields
}

func (NullableUsersListUsersResponse) Get

func (NullableUsersListUsersResponse) IsSet

func (NullableUsersListUsersResponse) MarshalJSON

func (v NullableUsersListUsersResponse) MarshalJSON() ([]byte, error)

func (*NullableUsersListUsersResponse) Set

func (*NullableUsersListUsersResponse) UnmarshalJSON

func (v *NullableUsersListUsersResponse) UnmarshalJSON(src []byte) error

func (*NullableUsersListUsersResponse) Unset

func (v *NullableUsersListUsersResponse) Unset()

type NullableUsersUserMetadata

type NullableUsersUserMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableUsersUserMetadata

func NewNullableUsersUserMetadata(val *UsersUserMetadata) *NullableUsersUserMetadata

func (NullableUsersUserMetadata) Get

func (NullableUsersUserMetadata) IsSet

func (v NullableUsersUserMetadata) IsSet() bool

func (NullableUsersUserMetadata) MarshalJSON

func (v NullableUsersUserMetadata) MarshalJSON() ([]byte, error)

func (*NullableUsersUserMetadata) Set

func (*NullableUsersUserMetadata) UnmarshalJSON

func (v *NullableUsersUserMetadata) UnmarshalJSON(src []byte) error

func (*NullableUsersUserMetadata) Unset

func (v *NullableUsersUserMetadata) Unset()

type NullableUsersUserRoleAssignment

type NullableUsersUserRoleAssignment struct {
	// contains filtered or unexported fields
}

func (NullableUsersUserRoleAssignment) Get

func (NullableUsersUserRoleAssignment) IsSet

func (NullableUsersUserRoleAssignment) MarshalJSON

func (v NullableUsersUserRoleAssignment) MarshalJSON() ([]byte, error)

func (*NullableUsersUserRoleAssignment) Set

func (*NullableUsersUserRoleAssignment) UnmarshalJSON

func (v *NullableUsersUserRoleAssignment) UnmarshalJSON(src []byte) error

func (*NullableUsersUserRoleAssignment) Unset

type NullableUsersUserSpec

type NullableUsersUserSpec struct {
	// contains filtered or unexported fields
}

func NewNullableUsersUserSpec

func NewNullableUsersUserSpec(val *UsersUserSpec) *NullableUsersUserSpec

func (NullableUsersUserSpec) Get

func (NullableUsersUserSpec) IsSet

func (v NullableUsersUserSpec) IsSet() bool

func (NullableUsersUserSpec) MarshalJSON

func (v NullableUsersUserSpec) MarshalJSON() ([]byte, error)

func (*NullableUsersUserSpec) Set

func (v *NullableUsersUserSpec) Set(val *UsersUserSpec)

func (*NullableUsersUserSpec) UnmarshalJSON

func (v *NullableUsersUserSpec) UnmarshalJSON(src []byte) error

func (*NullableUsersUserSpec) Unset

func (v *NullableUsersUserSpec) Unset()

type NullableUsersUserStatus

type NullableUsersUserStatus struct {
	// contains filtered or unexported fields
}

func NewNullableUsersUserStatus

func NewNullableUsersUserStatus(val *UsersUserStatus) *NullableUsersUserStatus

func (NullableUsersUserStatus) Get

func (NullableUsersUserStatus) IsSet

func (v NullableUsersUserStatus) IsSet() bool

func (NullableUsersUserStatus) MarshalJSON

func (v NullableUsersUserStatus) MarshalJSON() ([]byte, error)

func (*NullableUsersUserStatus) Set

func (*NullableUsersUserStatus) UnmarshalJSON

func (v *NullableUsersUserStatus) UnmarshalJSON(src []byte) error

func (*NullableUsersUserStatus) Unset

func (v *NullableUsersUserStatus) Unset()

type NullableWidgetsDescribeWidgetResponse added in v0.0.18

type NullableWidgetsDescribeWidgetResponse struct {
	// contains filtered or unexported fields
}

func NewNullableWidgetsDescribeWidgetResponse added in v0.0.18

func NewNullableWidgetsDescribeWidgetResponse(val *WidgetsDescribeWidgetResponse) *NullableWidgetsDescribeWidgetResponse

func (NullableWidgetsDescribeWidgetResponse) Get added in v0.0.18

func (NullableWidgetsDescribeWidgetResponse) IsSet added in v0.0.18

func (NullableWidgetsDescribeWidgetResponse) MarshalJSON added in v0.0.18

func (v NullableWidgetsDescribeWidgetResponse) MarshalJSON() ([]byte, error)

func (*NullableWidgetsDescribeWidgetResponse) Set added in v0.0.18

func (*NullableWidgetsDescribeWidgetResponse) UnmarshalJSON added in v0.0.18

func (v *NullableWidgetsDescribeWidgetResponse) UnmarshalJSON(src []byte) error

func (*NullableWidgetsDescribeWidgetResponse) Unset added in v0.0.18

type NullableWidgetsListWidgetsResponse added in v0.0.18

type NullableWidgetsListWidgetsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableWidgetsListWidgetsResponse added in v0.0.18

func NewNullableWidgetsListWidgetsResponse(val *WidgetsListWidgetsResponse) *NullableWidgetsListWidgetsResponse

func (NullableWidgetsListWidgetsResponse) Get added in v0.0.18

func (NullableWidgetsListWidgetsResponse) IsSet added in v0.0.18

func (NullableWidgetsListWidgetsResponse) MarshalJSON added in v0.0.18

func (v NullableWidgetsListWidgetsResponse) MarshalJSON() ([]byte, error)

func (*NullableWidgetsListWidgetsResponse) Set added in v0.0.18

func (*NullableWidgetsListWidgetsResponse) UnmarshalJSON added in v0.0.18

func (v *NullableWidgetsListWidgetsResponse) UnmarshalJSON(src []byte) error

func (*NullableWidgetsListWidgetsResponse) Unset added in v0.0.18

type NullableWidgetsWidget added in v0.0.18

type NullableWidgetsWidget struct {
	// contains filtered or unexported fields
}

func NewNullableWidgetsWidget added in v0.0.18

func NewNullableWidgetsWidget(val *WidgetsWidget) *NullableWidgetsWidget

func (NullableWidgetsWidget) Get added in v0.0.18

func (NullableWidgetsWidget) IsSet added in v0.0.18

func (v NullableWidgetsWidget) IsSet() bool

func (NullableWidgetsWidget) MarshalJSON added in v0.0.18

func (v NullableWidgetsWidget) MarshalJSON() ([]byte, error)

func (*NullableWidgetsWidget) Set added in v0.0.18

func (v *NullableWidgetsWidget) Set(val *WidgetsWidget)

func (*NullableWidgetsWidget) UnmarshalJSON added in v0.0.18

func (v *NullableWidgetsWidget) UnmarshalJSON(src []byte) error

func (*NullableWidgetsWidget) Unset added in v0.0.18

func (v *NullableWidgetsWidget) Unset()

type OrganizationAPIService

type OrganizationAPIService service

OrganizationAPIService OrganizationAPI service

func (a *OrganizationAPIService) OrganizationsAcceptInviteLink(ctx context.Context, token string) ApiOrganizationsAcceptInviteLinkRequest

OrganizationsAcceptInviteLink Accept an invite link

Accepts an organization invite link for the authenticated account

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

func (*OrganizationAPIService) OrganizationsAcceptInviteLinkExecute added in v0.0.43

func (a *OrganizationAPIService) OrganizationsAcceptInviteLinkExecute(r ApiOrganizationsAcceptInviteLinkRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OrganizationAPIService) OrganizationsCreateIntegration added in v0.5.0

func (a *OrganizationAPIService) OrganizationsCreateIntegration(ctx context.Context, id string) ApiOrganizationsCreateIntegrationRequest

OrganizationsCreateIntegration Create organization integration

Create an organization integration

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

func (*OrganizationAPIService) OrganizationsCreateIntegrationExecute added in v0.5.0

Execute executes the request

@return OrganizationsCreateIntegrationResponse

func (*OrganizationAPIService) OrganizationsCreateInvitation

func (a *OrganizationAPIService) OrganizationsCreateInvitation(ctx context.Context, id string) ApiOrganizationsCreateInvitationRequest

OrganizationsCreateInvitation Create an organization invitation

Invites a user to join an organization by email

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

func (*OrganizationAPIService) OrganizationsCreateInvitationExecute

Execute executes the request

@return OrganizationsCreateInvitationResponse

func (*OrganizationAPIService) OrganizationsDeleteIntegration added in v0.5.0

func (a *OrganizationAPIService) OrganizationsDeleteIntegration(ctx context.Context, id string, integrationId string) ApiOrganizationsDeleteIntegrationRequest

OrganizationsDeleteIntegration Delete organization integration

Deletes an integration from an organization

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

func (*OrganizationAPIService) OrganizationsDeleteIntegrationExecute added in v0.5.0

func (a *OrganizationAPIService) OrganizationsDeleteIntegrationExecute(r ApiOrganizationsDeleteIntegrationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OrganizationAPIService) OrganizationsDeleteOrganization

func (a *OrganizationAPIService) OrganizationsDeleteOrganization(ctx context.Context, id string) ApiOrganizationsDeleteOrganizationRequest

OrganizationsDeleteOrganization Delete an organization

Deletes the specified organization (can be referenced by ID or name)

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

func (*OrganizationAPIService) OrganizationsDeleteOrganizationExecute

func (a *OrganizationAPIService) OrganizationsDeleteOrganizationExecute(r ApiOrganizationsDeleteOrganizationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OrganizationAPIService) OrganizationsDescribeIntegration added in v0.5.0

func (a *OrganizationAPIService) OrganizationsDescribeIntegration(ctx context.Context, id string, integrationId string) ApiOrganizationsDescribeIntegrationRequest

OrganizationsDescribeIntegration Describe an integration in an organization

Returns details of a specific integration in an organization

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

func (*OrganizationAPIService) OrganizationsDescribeIntegrationExecute added in v0.5.0

Execute executes the request

@return OrganizationsDescribeIntegrationResponse

func (*OrganizationAPIService) OrganizationsDescribeOrganization

func (a *OrganizationAPIService) OrganizationsDescribeOrganization(ctx context.Context, id string) ApiOrganizationsDescribeOrganizationRequest

OrganizationsDescribeOrganization Get organization details

Returns the details of a specific organization (can be referenced by ID or name)

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

func (*OrganizationAPIService) OrganizationsDescribeOrganizationExecute

Execute executes the request

@return OrganizationsDescribeOrganizationResponse
func (a *OrganizationAPIService) OrganizationsGetInviteLink(ctx context.Context, id string) ApiOrganizationsGetInviteLinkRequest

OrganizationsGetInviteLink Get an organization invite link

Returns the invite link for an organization

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

func (*OrganizationAPIService) OrganizationsGetInviteLinkExecute added in v0.0.43

Execute executes the request

@return OrganizationsGetInviteLinkResponse

func (*OrganizationAPIService) OrganizationsListIntegrationResources added in v0.5.0

func (a *OrganizationAPIService) OrganizationsListIntegrationResources(ctx context.Context, id string, integrationId string) ApiOrganizationsListIntegrationResourcesRequest

OrganizationsListIntegrationResources List integration resources

Lists resources for an integration

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

func (*OrganizationAPIService) OrganizationsListIntegrationResourcesExecute added in v0.5.0

Execute executes the request

@return OrganizationsListIntegrationResourcesResponse

func (*OrganizationAPIService) OrganizationsListIntegrations added in v0.5.0

func (a *OrganizationAPIService) OrganizationsListIntegrations(ctx context.Context, id string) ApiOrganizationsListIntegrationsRequest

OrganizationsListIntegrations List integrations in an organization

Returns a list of integrations in an organization

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

func (*OrganizationAPIService) OrganizationsListIntegrationsExecute added in v0.5.0

Execute executes the request

@return SuperplaneOrganizationsListIntegrationsResponse

func (*OrganizationAPIService) OrganizationsListInvitations

func (a *OrganizationAPIService) OrganizationsListInvitations(ctx context.Context, id string) ApiOrganizationsListInvitationsRequest

OrganizationsListInvitations List organization invitations

Returns pending invitations for an organization

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

func (*OrganizationAPIService) OrganizationsListInvitationsExecute

Execute executes the request

@return OrganizationsListInvitationsResponse

func (*OrganizationAPIService) OrganizationsRemoveInvitation

func (a *OrganizationAPIService) OrganizationsRemoveInvitation(ctx context.Context, id string, invitationId string) ApiOrganizationsRemoveInvitationRequest

OrganizationsRemoveInvitation Remove an organization invitation

Removes an organization invitation

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

func (*OrganizationAPIService) OrganizationsRemoveInvitationExecute

func (a *OrganizationAPIService) OrganizationsRemoveInvitationExecute(r ApiOrganizationsRemoveInvitationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OrganizationAPIService) OrganizationsRemoveUser

func (a *OrganizationAPIService) OrganizationsRemoveUser(ctx context.Context, id string, userId string) ApiOrganizationsRemoveUserRequest

OrganizationsRemoveUser Remove a user from an organization

Removes a user from an organization (can be referenced by ID or name)

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

func (*OrganizationAPIService) OrganizationsRemoveUserExecute

func (a *OrganizationAPIService) OrganizationsRemoveUserExecute(r ApiOrganizationsRemoveUserRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}
func (a *OrganizationAPIService) OrganizationsResetInviteLink(ctx context.Context, id string) ApiOrganizationsResetInviteLinkRequest

OrganizationsResetInviteLink Reset an organization invite link

Generates a new invite link token for an organization

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

func (*OrganizationAPIService) OrganizationsResetInviteLinkExecute added in v0.0.43

Execute executes the request

@return OrganizationsResetInviteLinkResponse

func (*OrganizationAPIService) OrganizationsUpdateIntegration added in v0.5.0

func (a *OrganizationAPIService) OrganizationsUpdateIntegration(ctx context.Context, id string, integrationId string) ApiOrganizationsUpdateIntegrationRequest

OrganizationsUpdateIntegration Update integration

Updates the configuration for an organization integration

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

func (*OrganizationAPIService) OrganizationsUpdateIntegrationExecute added in v0.5.0

Execute executes the request

@return OrganizationsUpdateIntegrationResponse
func (a *OrganizationAPIService) OrganizationsUpdateInviteLink(ctx context.Context, id string) ApiOrganizationsUpdateInviteLinkRequest

OrganizationsUpdateInviteLink Update an organization invite link

Enables or disables the invite link for an organization

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

func (*OrganizationAPIService) OrganizationsUpdateInviteLinkExecute added in v0.0.43

Execute executes the request

@return OrganizationsUpdateInviteLinkResponse

func (*OrganizationAPIService) OrganizationsUpdateOrganization

func (a *OrganizationAPIService) OrganizationsUpdateOrganization(ctx context.Context, id string) ApiOrganizationsUpdateOrganizationRequest

OrganizationsUpdateOrganization Update an organization

Updates the specified organization (can be referenced by ID or name)

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

func (*OrganizationAPIService) OrganizationsUpdateOrganizationExecute

Execute executes the request

@return OrganizationsUpdateOrganizationResponse

type OrganizationsBrowserAction

type OrganizationsBrowserAction struct {
	Url         *string            `json:"url,omitempty"`
	Method      *string            `json:"method,omitempty"`
	FormFields  *map[string]string `json:"formFields,omitempty"`
	Description *string            `json:"description,omitempty"`
}

OrganizationsBrowserAction struct for OrganizationsBrowserAction

func NewOrganizationsBrowserAction

func NewOrganizationsBrowserAction() *OrganizationsBrowserAction

NewOrganizationsBrowserAction instantiates a new OrganizationsBrowserAction 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 NewOrganizationsBrowserActionWithDefaults

func NewOrganizationsBrowserActionWithDefaults() *OrganizationsBrowserAction

NewOrganizationsBrowserActionWithDefaults instantiates a new OrganizationsBrowserAction 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 (*OrganizationsBrowserAction) GetDescription

func (o *OrganizationsBrowserAction) GetDescription() string

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

func (*OrganizationsBrowserAction) GetDescriptionOk

func (o *OrganizationsBrowserAction) 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 (*OrganizationsBrowserAction) GetFormFields

func (o *OrganizationsBrowserAction) GetFormFields() map[string]string

GetFormFields returns the FormFields field value if set, zero value otherwise.

func (*OrganizationsBrowserAction) GetFormFieldsOk

func (o *OrganizationsBrowserAction) GetFormFieldsOk() (*map[string]string, bool)

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

func (*OrganizationsBrowserAction) GetMethod

func (o *OrganizationsBrowserAction) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*OrganizationsBrowserAction) GetMethodOk

func (o *OrganizationsBrowserAction) GetMethodOk() (*string, bool)

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

func (*OrganizationsBrowserAction) GetUrl

func (o *OrganizationsBrowserAction) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*OrganizationsBrowserAction) GetUrlOk

func (o *OrganizationsBrowserAction) GetUrlOk() (*string, bool)

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

func (*OrganizationsBrowserAction) HasDescription

func (o *OrganizationsBrowserAction) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*OrganizationsBrowserAction) HasFormFields

func (o *OrganizationsBrowserAction) HasFormFields() bool

HasFormFields returns a boolean if a field has been set.

func (*OrganizationsBrowserAction) HasMethod

func (o *OrganizationsBrowserAction) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*OrganizationsBrowserAction) HasUrl

func (o *OrganizationsBrowserAction) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (OrganizationsBrowserAction) MarshalJSON

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

func (*OrganizationsBrowserAction) SetDescription

func (o *OrganizationsBrowserAction) SetDescription(v string)

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

func (*OrganizationsBrowserAction) SetFormFields

func (o *OrganizationsBrowserAction) SetFormFields(v map[string]string)

SetFormFields gets a reference to the given map[string]string and assigns it to the FormFields field.

func (*OrganizationsBrowserAction) SetMethod

func (o *OrganizationsBrowserAction) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*OrganizationsBrowserAction) SetUrl

func (o *OrganizationsBrowserAction) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (OrganizationsBrowserAction) ToMap

func (o OrganizationsBrowserAction) ToMap() (map[string]interface{}, error)

type OrganizationsCreateIntegrationBody added in v0.5.0

type OrganizationsCreateIntegrationBody struct {
	Name            *string                `json:"name,omitempty"`
	IntegrationName *string                `json:"integrationName,omitempty"`
	Configuration   map[string]interface{} `json:"configuration,omitempty"`
}

OrganizationsCreateIntegrationBody struct for OrganizationsCreateIntegrationBody

func NewOrganizationsCreateIntegrationBody added in v0.5.0

func NewOrganizationsCreateIntegrationBody() *OrganizationsCreateIntegrationBody

NewOrganizationsCreateIntegrationBody instantiates a new OrganizationsCreateIntegrationBody 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 NewOrganizationsCreateIntegrationBodyWithDefaults added in v0.5.0

func NewOrganizationsCreateIntegrationBodyWithDefaults() *OrganizationsCreateIntegrationBody

NewOrganizationsCreateIntegrationBodyWithDefaults instantiates a new OrganizationsCreateIntegrationBody 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 (*OrganizationsCreateIntegrationBody) GetConfiguration added in v0.5.0

func (o *OrganizationsCreateIntegrationBody) GetConfiguration() map[string]interface{}

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*OrganizationsCreateIntegrationBody) GetConfigurationOk added in v0.5.0

func (o *OrganizationsCreateIntegrationBody) GetConfigurationOk() (map[string]interface{}, bool)

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

func (*OrganizationsCreateIntegrationBody) GetIntegrationName added in v0.5.0

func (o *OrganizationsCreateIntegrationBody) GetIntegrationName() string

GetIntegrationName returns the IntegrationName field value if set, zero value otherwise.

func (*OrganizationsCreateIntegrationBody) GetIntegrationNameOk added in v0.5.0

func (o *OrganizationsCreateIntegrationBody) GetIntegrationNameOk() (*string, bool)

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

func (*OrganizationsCreateIntegrationBody) GetName added in v0.5.0

GetName returns the Name field value if set, zero value otherwise.

func (*OrganizationsCreateIntegrationBody) GetNameOk added in v0.5.0

func (o *OrganizationsCreateIntegrationBody) GetNameOk() (*string, bool)

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

func (*OrganizationsCreateIntegrationBody) HasConfiguration added in v0.5.0

func (o *OrganizationsCreateIntegrationBody) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*OrganizationsCreateIntegrationBody) HasIntegrationName added in v0.5.0

func (o *OrganizationsCreateIntegrationBody) HasIntegrationName() bool

HasIntegrationName returns a boolean if a field has been set.

func (*OrganizationsCreateIntegrationBody) HasName added in v0.5.0

HasName returns a boolean if a field has been set.

func (OrganizationsCreateIntegrationBody) MarshalJSON added in v0.5.0

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

func (*OrganizationsCreateIntegrationBody) SetConfiguration added in v0.5.0

func (o *OrganizationsCreateIntegrationBody) SetConfiguration(v map[string]interface{})

SetConfiguration gets a reference to the given map[string]interface{} and assigns it to the Configuration field.

func (*OrganizationsCreateIntegrationBody) SetIntegrationName added in v0.5.0

func (o *OrganizationsCreateIntegrationBody) SetIntegrationName(v string)

SetIntegrationName gets a reference to the given string and assigns it to the IntegrationName field.

func (*OrganizationsCreateIntegrationBody) SetName added in v0.5.0

SetName gets a reference to the given string and assigns it to the Name field.

func (OrganizationsCreateIntegrationBody) ToMap added in v0.5.0

func (o OrganizationsCreateIntegrationBody) ToMap() (map[string]interface{}, error)

type OrganizationsCreateIntegrationResponse added in v0.5.0

type OrganizationsCreateIntegrationResponse struct {
	Integration *OrganizationsIntegration `json:"integration,omitempty"`
}

OrganizationsCreateIntegrationResponse struct for OrganizationsCreateIntegrationResponse

func NewOrganizationsCreateIntegrationResponse added in v0.5.0

func NewOrganizationsCreateIntegrationResponse() *OrganizationsCreateIntegrationResponse

NewOrganizationsCreateIntegrationResponse instantiates a new OrganizationsCreateIntegrationResponse 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 NewOrganizationsCreateIntegrationResponseWithDefaults added in v0.5.0

func NewOrganizationsCreateIntegrationResponseWithDefaults() *OrganizationsCreateIntegrationResponse

NewOrganizationsCreateIntegrationResponseWithDefaults instantiates a new OrganizationsCreateIntegrationResponse 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 (*OrganizationsCreateIntegrationResponse) GetIntegration added in v0.5.0

GetIntegration returns the Integration field value if set, zero value otherwise.

func (*OrganizationsCreateIntegrationResponse) GetIntegrationOk added in v0.5.0

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

func (*OrganizationsCreateIntegrationResponse) HasIntegration added in v0.5.0

func (o *OrganizationsCreateIntegrationResponse) HasIntegration() bool

HasIntegration returns a boolean if a field has been set.

func (OrganizationsCreateIntegrationResponse) MarshalJSON added in v0.5.0

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

func (*OrganizationsCreateIntegrationResponse) SetIntegration added in v0.5.0

SetIntegration gets a reference to the given OrganizationsIntegration and assigns it to the Integration field.

func (OrganizationsCreateIntegrationResponse) ToMap added in v0.5.0

func (o OrganizationsCreateIntegrationResponse) ToMap() (map[string]interface{}, error)

type OrganizationsCreateInvitationBody

type OrganizationsCreateInvitationBody struct {
	Email *string `json:"email,omitempty"`
}

OrganizationsCreateInvitationBody struct for OrganizationsCreateInvitationBody

func NewOrganizationsCreateInvitationBody

func NewOrganizationsCreateInvitationBody() *OrganizationsCreateInvitationBody

NewOrganizationsCreateInvitationBody instantiates a new OrganizationsCreateInvitationBody 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 NewOrganizationsCreateInvitationBodyWithDefaults

func NewOrganizationsCreateInvitationBodyWithDefaults() *OrganizationsCreateInvitationBody

NewOrganizationsCreateInvitationBodyWithDefaults instantiates a new OrganizationsCreateInvitationBody 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 (*OrganizationsCreateInvitationBody) GetEmail

GetEmail returns the Email field value if set, zero value otherwise.

func (*OrganizationsCreateInvitationBody) GetEmailOk

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

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

func (*OrganizationsCreateInvitationBody) HasEmail

HasEmail returns a boolean if a field has been set.

func (OrganizationsCreateInvitationBody) MarshalJSON

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

func (*OrganizationsCreateInvitationBody) SetEmail

SetEmail gets a reference to the given string and assigns it to the Email field.

func (OrganizationsCreateInvitationBody) ToMap

func (o OrganizationsCreateInvitationBody) ToMap() (map[string]interface{}, error)

type OrganizationsCreateInvitationResponse

type OrganizationsCreateInvitationResponse struct {
	Invitation *OrganizationsInvitation `json:"invitation,omitempty"`
}

OrganizationsCreateInvitationResponse struct for OrganizationsCreateInvitationResponse

func NewOrganizationsCreateInvitationResponse

func NewOrganizationsCreateInvitationResponse() *OrganizationsCreateInvitationResponse

NewOrganizationsCreateInvitationResponse instantiates a new OrganizationsCreateInvitationResponse 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 NewOrganizationsCreateInvitationResponseWithDefaults

func NewOrganizationsCreateInvitationResponseWithDefaults() *OrganizationsCreateInvitationResponse

NewOrganizationsCreateInvitationResponseWithDefaults instantiates a new OrganizationsCreateInvitationResponse 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 (*OrganizationsCreateInvitationResponse) GetInvitation

GetInvitation returns the Invitation field value if set, zero value otherwise.

func (*OrganizationsCreateInvitationResponse) GetInvitationOk

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

func (*OrganizationsCreateInvitationResponse) HasInvitation

func (o *OrganizationsCreateInvitationResponse) HasInvitation() bool

HasInvitation returns a boolean if a field has been set.

func (OrganizationsCreateInvitationResponse) MarshalJSON

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

func (*OrganizationsCreateInvitationResponse) SetInvitation

SetInvitation gets a reference to the given OrganizationsInvitation and assigns it to the Invitation field.

func (OrganizationsCreateInvitationResponse) ToMap

func (o OrganizationsCreateInvitationResponse) ToMap() (map[string]interface{}, error)

type OrganizationsDescribeIntegrationResponse added in v0.5.0

type OrganizationsDescribeIntegrationResponse struct {
	Integration *OrganizationsIntegration `json:"integration,omitempty"`
}

OrganizationsDescribeIntegrationResponse struct for OrganizationsDescribeIntegrationResponse

func NewOrganizationsDescribeIntegrationResponse added in v0.5.0

func NewOrganizationsDescribeIntegrationResponse() *OrganizationsDescribeIntegrationResponse

NewOrganizationsDescribeIntegrationResponse instantiates a new OrganizationsDescribeIntegrationResponse 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 NewOrganizationsDescribeIntegrationResponseWithDefaults added in v0.5.0

func NewOrganizationsDescribeIntegrationResponseWithDefaults() *OrganizationsDescribeIntegrationResponse

NewOrganizationsDescribeIntegrationResponseWithDefaults instantiates a new OrganizationsDescribeIntegrationResponse 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 (*OrganizationsDescribeIntegrationResponse) GetIntegration added in v0.5.0

GetIntegration returns the Integration field value if set, zero value otherwise.

func (*OrganizationsDescribeIntegrationResponse) GetIntegrationOk added in v0.5.0

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

func (*OrganizationsDescribeIntegrationResponse) HasIntegration added in v0.5.0

func (o *OrganizationsDescribeIntegrationResponse) HasIntegration() bool

HasIntegration returns a boolean if a field has been set.

func (OrganizationsDescribeIntegrationResponse) MarshalJSON added in v0.5.0

func (*OrganizationsDescribeIntegrationResponse) SetIntegration added in v0.5.0

SetIntegration gets a reference to the given OrganizationsIntegration and assigns it to the Integration field.

func (OrganizationsDescribeIntegrationResponse) ToMap added in v0.5.0

func (o OrganizationsDescribeIntegrationResponse) ToMap() (map[string]interface{}, error)

type OrganizationsDescribeOrganizationResponse

type OrganizationsDescribeOrganizationResponse struct {
	Organization *OrganizationsOrganization `json:"organization,omitempty"`
}

OrganizationsDescribeOrganizationResponse struct for OrganizationsDescribeOrganizationResponse

func NewOrganizationsDescribeOrganizationResponse

func NewOrganizationsDescribeOrganizationResponse() *OrganizationsDescribeOrganizationResponse

NewOrganizationsDescribeOrganizationResponse instantiates a new OrganizationsDescribeOrganizationResponse 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 NewOrganizationsDescribeOrganizationResponseWithDefaults

func NewOrganizationsDescribeOrganizationResponseWithDefaults() *OrganizationsDescribeOrganizationResponse

NewOrganizationsDescribeOrganizationResponseWithDefaults instantiates a new OrganizationsDescribeOrganizationResponse 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 (*OrganizationsDescribeOrganizationResponse) GetOrganization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*OrganizationsDescribeOrganizationResponse) GetOrganizationOk

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

func (*OrganizationsDescribeOrganizationResponse) HasOrganization

func (o *OrganizationsDescribeOrganizationResponse) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (OrganizationsDescribeOrganizationResponse) MarshalJSON

func (*OrganizationsDescribeOrganizationResponse) SetOrganization

SetOrganization gets a reference to the given OrganizationsOrganization and assigns it to the Organization field.

func (OrganizationsDescribeOrganizationResponse) ToMap

func (o OrganizationsDescribeOrganizationResponse) ToMap() (map[string]interface{}, error)

type OrganizationsGetInviteLinkResponse added in v0.0.43

type OrganizationsGetInviteLinkResponse struct {
	InviteLink *OrganizationsInviteLink `json:"inviteLink,omitempty"`
}

OrganizationsGetInviteLinkResponse struct for OrganizationsGetInviteLinkResponse

func NewOrganizationsGetInviteLinkResponse added in v0.0.43

func NewOrganizationsGetInviteLinkResponse() *OrganizationsGetInviteLinkResponse

NewOrganizationsGetInviteLinkResponse instantiates a new OrganizationsGetInviteLinkResponse 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 NewOrganizationsGetInviteLinkResponseWithDefaults added in v0.0.43

func NewOrganizationsGetInviteLinkResponseWithDefaults() *OrganizationsGetInviteLinkResponse

NewOrganizationsGetInviteLinkResponseWithDefaults instantiates a new OrganizationsGetInviteLinkResponse 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

GetInviteLink returns the InviteLink field value if set, zero value otherwise.

func (*OrganizationsGetInviteLinkResponse) GetInviteLinkOk added in v0.0.43

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

func (o *OrganizationsGetInviteLinkResponse) HasInviteLink() bool

HasInviteLink returns a boolean if a field has been set.

func (OrganizationsGetInviteLinkResponse) MarshalJSON added in v0.0.43

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

SetInviteLink gets a reference to the given OrganizationsInviteLink and assigns it to the InviteLink field.

func (OrganizationsGetInviteLinkResponse) ToMap added in v0.0.43

func (o OrganizationsGetInviteLinkResponse) ToMap() (map[string]interface{}, error)

type OrganizationsIntegration added in v0.5.0

type OrganizationsIntegration struct {
	Metadata *OrganizationsIntegrationMetadata `json:"metadata,omitempty"`
	Spec     *OrganizationsIntegrationSpec     `json:"spec,omitempty"`
	Status   *OrganizationsIntegrationStatus   `json:"status,omitempty"`
}

OrganizationsIntegration struct for OrganizationsIntegration

func NewOrganizationsIntegration added in v0.5.0

func NewOrganizationsIntegration() *OrganizationsIntegration

NewOrganizationsIntegration instantiates a new OrganizationsIntegration 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 NewOrganizationsIntegrationWithDefaults added in v0.5.0

func NewOrganizationsIntegrationWithDefaults() *OrganizationsIntegration

NewOrganizationsIntegrationWithDefaults instantiates a new OrganizationsIntegration 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 (*OrganizationsIntegration) GetMetadata added in v0.5.0

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

func (*OrganizationsIntegration) GetMetadataOk added in v0.5.0

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 (*OrganizationsIntegration) GetSpec added in v0.5.0

GetSpec returns the Spec field value if set, zero value otherwise.

func (*OrganizationsIntegration) GetSpecOk added in v0.5.0

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

func (*OrganizationsIntegration) GetStatus added in v0.5.0

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

func (*OrganizationsIntegration) GetStatusOk added in v0.5.0

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 (*OrganizationsIntegration) HasMetadata added in v0.5.0

func (o *OrganizationsIntegration) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*OrganizationsIntegration) HasSpec added in v0.5.0

func (o *OrganizationsIntegration) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*OrganizationsIntegration) HasStatus added in v0.5.0

func (o *OrganizationsIntegration) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (OrganizationsIntegration) MarshalJSON added in v0.5.0

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

func (*OrganizationsIntegration) SetMetadata added in v0.5.0

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

func (*OrganizationsIntegration) SetSpec added in v0.5.0

SetSpec gets a reference to the given OrganizationsIntegrationSpec and assigns it to the Spec field.

func (*OrganizationsIntegration) SetStatus added in v0.5.0

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

func (OrganizationsIntegration) ToMap added in v0.5.0

func (o OrganizationsIntegration) ToMap() (map[string]interface{}, error)

type OrganizationsIntegrationMetadata added in v0.5.0

type OrganizationsIntegrationMetadata struct {
	Id        *string    `json:"id,omitempty"`
	Name      *string    `json:"name,omitempty"`
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
}

OrganizationsIntegrationMetadata struct for OrganizationsIntegrationMetadata

func NewOrganizationsIntegrationMetadata added in v0.5.0

func NewOrganizationsIntegrationMetadata() *OrganizationsIntegrationMetadata

NewOrganizationsIntegrationMetadata instantiates a new OrganizationsIntegrationMetadata 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 NewOrganizationsIntegrationMetadataWithDefaults added in v0.5.0

func NewOrganizationsIntegrationMetadataWithDefaults() *OrganizationsIntegrationMetadata

NewOrganizationsIntegrationMetadataWithDefaults instantiates a new OrganizationsIntegrationMetadata 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 (*OrganizationsIntegrationMetadata) GetCreatedAt added in v0.5.0

func (o *OrganizationsIntegrationMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrganizationsIntegrationMetadata) GetCreatedAtOk added in v0.5.0

func (o *OrganizationsIntegrationMetadata) 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 (*OrganizationsIntegrationMetadata) GetId added in v0.5.0

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

func (*OrganizationsIntegrationMetadata) GetIdOk added in v0.5.0

func (o *OrganizationsIntegrationMetadata) 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 (*OrganizationsIntegrationMetadata) GetName added in v0.5.0

GetName returns the Name field value if set, zero value otherwise.

func (*OrganizationsIntegrationMetadata) GetNameOk added in v0.5.0

func (o *OrganizationsIntegrationMetadata) GetNameOk() (*string, bool)

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

func (*OrganizationsIntegrationMetadata) GetUpdatedAt added in v0.5.0

func (o *OrganizationsIntegrationMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*OrganizationsIntegrationMetadata) GetUpdatedAtOk added in v0.5.0

func (o *OrganizationsIntegrationMetadata) 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 (*OrganizationsIntegrationMetadata) HasCreatedAt added in v0.5.0

func (o *OrganizationsIntegrationMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrganizationsIntegrationMetadata) HasId added in v0.5.0

HasId returns a boolean if a field has been set.

func (*OrganizationsIntegrationMetadata) HasName added in v0.5.0

HasName returns a boolean if a field has been set.

func (*OrganizationsIntegrationMetadata) HasUpdatedAt added in v0.5.0

func (o *OrganizationsIntegrationMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (OrganizationsIntegrationMetadata) MarshalJSON added in v0.5.0

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

func (*OrganizationsIntegrationMetadata) SetCreatedAt added in v0.5.0

func (o *OrganizationsIntegrationMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrganizationsIntegrationMetadata) SetId added in v0.5.0

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

func (*OrganizationsIntegrationMetadata) SetName added in v0.5.0

SetName gets a reference to the given string and assigns it to the Name field.

func (*OrganizationsIntegrationMetadata) SetUpdatedAt added in v0.5.0

func (o *OrganizationsIntegrationMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (OrganizationsIntegrationMetadata) ToMap added in v0.5.0

func (o OrganizationsIntegrationMetadata) ToMap() (map[string]interface{}, error)

type OrganizationsIntegrationResourceRef added in v0.5.0

type OrganizationsIntegrationResourceRef struct {
	Type *string `json:"type,omitempty"`
	Name *string `json:"name,omitempty"`
	Id   *string `json:"id,omitempty"`
}

OrganizationsIntegrationResourceRef struct for OrganizationsIntegrationResourceRef

func NewOrganizationsIntegrationResourceRef added in v0.5.0

func NewOrganizationsIntegrationResourceRef() *OrganizationsIntegrationResourceRef

NewOrganizationsIntegrationResourceRef instantiates a new OrganizationsIntegrationResourceRef 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 NewOrganizationsIntegrationResourceRefWithDefaults added in v0.5.0

func NewOrganizationsIntegrationResourceRefWithDefaults() *OrganizationsIntegrationResourceRef

NewOrganizationsIntegrationResourceRefWithDefaults instantiates a new OrganizationsIntegrationResourceRef 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 (*OrganizationsIntegrationResourceRef) GetId added in v0.5.0

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

func (*OrganizationsIntegrationResourceRef) GetIdOk added in v0.5.0

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 (*OrganizationsIntegrationResourceRef) GetName added in v0.5.0

GetName returns the Name field value if set, zero value otherwise.

func (*OrganizationsIntegrationResourceRef) GetNameOk added in v0.5.0

func (o *OrganizationsIntegrationResourceRef) GetNameOk() (*string, bool)

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

func (*OrganizationsIntegrationResourceRef) GetType added in v0.5.0

GetType returns the Type field value if set, zero value otherwise.

func (*OrganizationsIntegrationResourceRef) GetTypeOk added in v0.5.0

func (o *OrganizationsIntegrationResourceRef) GetTypeOk() (*string, bool)

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

func (*OrganizationsIntegrationResourceRef) HasId added in v0.5.0

HasId returns a boolean if a field has been set.

func (*OrganizationsIntegrationResourceRef) HasName added in v0.5.0

HasName returns a boolean if a field has been set.

func (*OrganizationsIntegrationResourceRef) HasType added in v0.5.0

HasType returns a boolean if a field has been set.

func (OrganizationsIntegrationResourceRef) MarshalJSON added in v0.5.0

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

func (*OrganizationsIntegrationResourceRef) SetId added in v0.5.0

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

func (*OrganizationsIntegrationResourceRef) SetName added in v0.5.0

SetName gets a reference to the given string and assigns it to the Name field.

func (*OrganizationsIntegrationResourceRef) SetType added in v0.5.0

SetType gets a reference to the given string and assigns it to the Type field.

func (OrganizationsIntegrationResourceRef) ToMap added in v0.5.0

func (o OrganizationsIntegrationResourceRef) ToMap() (map[string]interface{}, error)

type OrganizationsIntegrationSpec added in v0.5.0

type OrganizationsIntegrationSpec struct {
	IntegrationName *string                `json:"integrationName,omitempty"`
	Configuration   map[string]interface{} `json:"configuration,omitempty"`
}

OrganizationsIntegrationSpec struct for OrganizationsIntegrationSpec

func NewOrganizationsIntegrationSpec added in v0.5.0

func NewOrganizationsIntegrationSpec() *OrganizationsIntegrationSpec

NewOrganizationsIntegrationSpec instantiates a new OrganizationsIntegrationSpec 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 NewOrganizationsIntegrationSpecWithDefaults added in v0.5.0

func NewOrganizationsIntegrationSpecWithDefaults() *OrganizationsIntegrationSpec

NewOrganizationsIntegrationSpecWithDefaults instantiates a new OrganizationsIntegrationSpec 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 (*OrganizationsIntegrationSpec) GetConfiguration added in v0.5.0

func (o *OrganizationsIntegrationSpec) GetConfiguration() map[string]interface{}

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*OrganizationsIntegrationSpec) GetConfigurationOk added in v0.5.0

func (o *OrganizationsIntegrationSpec) GetConfigurationOk() (map[string]interface{}, bool)

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

func (*OrganizationsIntegrationSpec) GetIntegrationName added in v0.5.0

func (o *OrganizationsIntegrationSpec) GetIntegrationName() string

GetIntegrationName returns the IntegrationName field value if set, zero value otherwise.

func (*OrganizationsIntegrationSpec) GetIntegrationNameOk added in v0.5.0

func (o *OrganizationsIntegrationSpec) GetIntegrationNameOk() (*string, bool)

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

func (*OrganizationsIntegrationSpec) HasConfiguration added in v0.5.0

func (o *OrganizationsIntegrationSpec) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*OrganizationsIntegrationSpec) HasIntegrationName added in v0.5.0

func (o *OrganizationsIntegrationSpec) HasIntegrationName() bool

HasIntegrationName returns a boolean if a field has been set.

func (OrganizationsIntegrationSpec) MarshalJSON added in v0.5.0

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

func (*OrganizationsIntegrationSpec) SetConfiguration added in v0.5.0

func (o *OrganizationsIntegrationSpec) SetConfiguration(v map[string]interface{})

SetConfiguration gets a reference to the given map[string]interface{} and assigns it to the Configuration field.

func (*OrganizationsIntegrationSpec) SetIntegrationName added in v0.5.0

func (o *OrganizationsIntegrationSpec) SetIntegrationName(v string)

SetIntegrationName gets a reference to the given string and assigns it to the IntegrationName field.

func (OrganizationsIntegrationSpec) ToMap added in v0.5.0

func (o OrganizationsIntegrationSpec) ToMap() (map[string]interface{}, error)

type OrganizationsIntegrationStatus added in v0.5.0

type OrganizationsIntegrationStatus struct {
	State            *string                     `json:"state,omitempty"`
	StateDescription *string                     `json:"stateDescription,omitempty"`
	Metadata         map[string]interface{}      `json:"metadata,omitempty"`
	BrowserAction    *OrganizationsBrowserAction `json:"browserAction,omitempty"`
	UsedIn           []IntegrationNodeRef        `json:"usedIn,omitempty"`
}

OrganizationsIntegrationStatus struct for OrganizationsIntegrationStatus

func NewOrganizationsIntegrationStatus added in v0.5.0

func NewOrganizationsIntegrationStatus() *OrganizationsIntegrationStatus

NewOrganizationsIntegrationStatus instantiates a new OrganizationsIntegrationStatus 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 NewOrganizationsIntegrationStatusWithDefaults added in v0.5.0

func NewOrganizationsIntegrationStatusWithDefaults() *OrganizationsIntegrationStatus

NewOrganizationsIntegrationStatusWithDefaults instantiates a new OrganizationsIntegrationStatus 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 (*OrganizationsIntegrationStatus) GetBrowserAction added in v0.5.0

GetBrowserAction returns the BrowserAction field value if set, zero value otherwise.

func (*OrganizationsIntegrationStatus) GetBrowserActionOk added in v0.5.0

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

func (*OrganizationsIntegrationStatus) GetMetadata added in v0.5.0

func (o *OrganizationsIntegrationStatus) GetMetadata() map[string]interface{}

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

func (*OrganizationsIntegrationStatus) GetMetadataOk added in v0.5.0

func (o *OrganizationsIntegrationStatus) GetMetadataOk() (map[string]interface{}, 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 (*OrganizationsIntegrationStatus) GetState added in v0.5.0

func (o *OrganizationsIntegrationStatus) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*OrganizationsIntegrationStatus) GetStateDescription added in v0.5.0

func (o *OrganizationsIntegrationStatus) GetStateDescription() string

GetStateDescription returns the StateDescription field value if set, zero value otherwise.

func (*OrganizationsIntegrationStatus) GetStateDescriptionOk added in v0.5.0

func (o *OrganizationsIntegrationStatus) GetStateDescriptionOk() (*string, bool)

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

func (*OrganizationsIntegrationStatus) GetStateOk added in v0.5.0

func (o *OrganizationsIntegrationStatus) GetStateOk() (*string, bool)

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

func (*OrganizationsIntegrationStatus) GetUsedIn added in v0.5.0

GetUsedIn returns the UsedIn field value if set, zero value otherwise.

func (*OrganizationsIntegrationStatus) GetUsedInOk added in v0.5.0

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

func (*OrganizationsIntegrationStatus) HasBrowserAction added in v0.5.0

func (o *OrganizationsIntegrationStatus) HasBrowserAction() bool

HasBrowserAction returns a boolean if a field has been set.

func (*OrganizationsIntegrationStatus) HasMetadata added in v0.5.0

func (o *OrganizationsIntegrationStatus) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*OrganizationsIntegrationStatus) HasState added in v0.5.0

func (o *OrganizationsIntegrationStatus) HasState() bool

HasState returns a boolean if a field has been set.

func (*OrganizationsIntegrationStatus) HasStateDescription added in v0.5.0

func (o *OrganizationsIntegrationStatus) HasStateDescription() bool

HasStateDescription returns a boolean if a field has been set.

func (*OrganizationsIntegrationStatus) HasUsedIn added in v0.5.0

func (o *OrganizationsIntegrationStatus) HasUsedIn() bool

HasUsedIn returns a boolean if a field has been set.

func (OrganizationsIntegrationStatus) MarshalJSON added in v0.5.0

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

func (*OrganizationsIntegrationStatus) SetBrowserAction added in v0.5.0

SetBrowserAction gets a reference to the given OrganizationsBrowserAction and assigns it to the BrowserAction field.

func (*OrganizationsIntegrationStatus) SetMetadata added in v0.5.0

func (o *OrganizationsIntegrationStatus) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*OrganizationsIntegrationStatus) SetState added in v0.5.0

func (o *OrganizationsIntegrationStatus) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*OrganizationsIntegrationStatus) SetStateDescription added in v0.5.0

func (o *OrganizationsIntegrationStatus) SetStateDescription(v string)

SetStateDescription gets a reference to the given string and assigns it to the StateDescription field.

func (*OrganizationsIntegrationStatus) SetUsedIn added in v0.5.0

SetUsedIn gets a reference to the given []IntegrationNodeRef and assigns it to the UsedIn field.

func (OrganizationsIntegrationStatus) ToMap added in v0.5.0

func (o OrganizationsIntegrationStatus) ToMap() (map[string]interface{}, error)

type OrganizationsInvitation

type OrganizationsInvitation struct {
	Id             *string    `json:"id,omitempty"`
	OrganizationId *string    `json:"organizationId,omitempty"`
	Email          *string    `json:"email,omitempty"`
	State          *string    `json:"state,omitempty"`
	CreatedAt      *time.Time `json:"createdAt,omitempty"`
}

OrganizationsInvitation struct for OrganizationsInvitation

func NewOrganizationsInvitation

func NewOrganizationsInvitation() *OrganizationsInvitation

NewOrganizationsInvitation instantiates a new OrganizationsInvitation 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 NewOrganizationsInvitationWithDefaults

func NewOrganizationsInvitationWithDefaults() *OrganizationsInvitation

NewOrganizationsInvitationWithDefaults instantiates a new OrganizationsInvitation 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 (*OrganizationsInvitation) GetCreatedAt

func (o *OrganizationsInvitation) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrganizationsInvitation) GetCreatedAtOk

func (o *OrganizationsInvitation) 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 (*OrganizationsInvitation) GetEmail

func (o *OrganizationsInvitation) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*OrganizationsInvitation) GetEmailOk

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

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

func (*OrganizationsInvitation) GetId

func (o *OrganizationsInvitation) GetId() string

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

func (*OrganizationsInvitation) GetIdOk

func (o *OrganizationsInvitation) 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 (*OrganizationsInvitation) GetOrganizationId

func (o *OrganizationsInvitation) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationsInvitation) GetOrganizationIdOk

func (o *OrganizationsInvitation) GetOrganizationIdOk() (*string, bool)

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

func (*OrganizationsInvitation) GetState

func (o *OrganizationsInvitation) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*OrganizationsInvitation) GetStateOk

func (o *OrganizationsInvitation) GetStateOk() (*string, bool)

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

func (*OrganizationsInvitation) HasCreatedAt

func (o *OrganizationsInvitation) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrganizationsInvitation) HasEmail

func (o *OrganizationsInvitation) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*OrganizationsInvitation) HasId

func (o *OrganizationsInvitation) HasId() bool

HasId returns a boolean if a field has been set.

func (*OrganizationsInvitation) HasOrganizationId

func (o *OrganizationsInvitation) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationsInvitation) HasState

func (o *OrganizationsInvitation) HasState() bool

HasState returns a boolean if a field has been set.

func (OrganizationsInvitation) MarshalJSON

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

func (*OrganizationsInvitation) SetCreatedAt

func (o *OrganizationsInvitation) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrganizationsInvitation) SetEmail

func (o *OrganizationsInvitation) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*OrganizationsInvitation) SetId

func (o *OrganizationsInvitation) SetId(v string)

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

func (*OrganizationsInvitation) SetOrganizationId

func (o *OrganizationsInvitation) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*OrganizationsInvitation) SetState

func (o *OrganizationsInvitation) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (OrganizationsInvitation) ToMap

func (o OrganizationsInvitation) ToMap() (map[string]interface{}, error)
type OrganizationsInviteLink struct {
	Id             *string    `json:"id,omitempty"`
	OrganizationId *string    `json:"organizationId,omitempty"`
	Token          *string    `json:"token,omitempty"`
	Enabled        *bool      `json:"enabled,omitempty"`
	CreatedAt      *time.Time `json:"createdAt,omitempty"`
	UpdatedAt      *time.Time `json:"updatedAt,omitempty"`
}

OrganizationsInviteLink struct for OrganizationsInviteLink

func NewOrganizationsInviteLink() *OrganizationsInviteLink

NewOrganizationsInviteLink instantiates a new OrganizationsInviteLink 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 NewOrganizationsInviteLinkWithDefaults added in v0.0.43

func NewOrganizationsInviteLinkWithDefaults() *OrganizationsInviteLink

NewOrganizationsInviteLinkWithDefaults instantiates a new OrganizationsInviteLink 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 (*OrganizationsInviteLink) GetCreatedAt added in v0.0.43

func (o *OrganizationsInviteLink) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrganizationsInviteLink) GetCreatedAtOk added in v0.0.43

func (o *OrganizationsInviteLink) 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 (*OrganizationsInviteLink) GetEnabled added in v0.0.43

func (o *OrganizationsInviteLink) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*OrganizationsInviteLink) GetEnabledOk added in v0.0.43

func (o *OrganizationsInviteLink) GetEnabledOk() (*bool, bool)

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

func (*OrganizationsInviteLink) GetId added in v0.0.43

func (o *OrganizationsInviteLink) GetId() string

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

func (*OrganizationsInviteLink) GetIdOk added in v0.0.43

func (o *OrganizationsInviteLink) 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 (*OrganizationsInviteLink) GetOrganizationId added in v0.0.43

func (o *OrganizationsInviteLink) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationsInviteLink) GetOrganizationIdOk added in v0.0.43

func (o *OrganizationsInviteLink) GetOrganizationIdOk() (*string, bool)

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

func (*OrganizationsInviteLink) GetToken added in v0.0.43

func (o *OrganizationsInviteLink) GetToken() string

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

func (*OrganizationsInviteLink) GetTokenOk added in v0.0.43

func (o *OrganizationsInviteLink) 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 (*OrganizationsInviteLink) GetUpdatedAt added in v0.0.43

func (o *OrganizationsInviteLink) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*OrganizationsInviteLink) GetUpdatedAtOk added in v0.0.43

func (o *OrganizationsInviteLink) 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 (*OrganizationsInviteLink) HasCreatedAt added in v0.0.43

func (o *OrganizationsInviteLink) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrganizationsInviteLink) HasEnabled added in v0.0.43

func (o *OrganizationsInviteLink) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*OrganizationsInviteLink) HasId added in v0.0.43

func (o *OrganizationsInviteLink) HasId() bool

HasId returns a boolean if a field has been set.

func (*OrganizationsInviteLink) HasOrganizationId added in v0.0.43

func (o *OrganizationsInviteLink) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationsInviteLink) HasToken added in v0.0.43

func (o *OrganizationsInviteLink) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*OrganizationsInviteLink) HasUpdatedAt added in v0.0.43

func (o *OrganizationsInviteLink) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (OrganizationsInviteLink) MarshalJSON added in v0.0.43

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

func (*OrganizationsInviteLink) SetCreatedAt added in v0.0.43

func (o *OrganizationsInviteLink) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrganizationsInviteLink) SetEnabled added in v0.0.43

func (o *OrganizationsInviteLink) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*OrganizationsInviteLink) SetId added in v0.0.43

func (o *OrganizationsInviteLink) SetId(v string)

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

func (*OrganizationsInviteLink) SetOrganizationId added in v0.0.43

func (o *OrganizationsInviteLink) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*OrganizationsInviteLink) SetToken added in v0.0.43

func (o *OrganizationsInviteLink) SetToken(v string)

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

func (*OrganizationsInviteLink) SetUpdatedAt added in v0.0.43

func (o *OrganizationsInviteLink) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (OrganizationsInviteLink) ToMap added in v0.0.43

func (o OrganizationsInviteLink) ToMap() (map[string]interface{}, error)

type OrganizationsListIntegrationResourcesResponse added in v0.5.0

type OrganizationsListIntegrationResourcesResponse struct {
	Resources []OrganizationsIntegrationResourceRef `json:"resources,omitempty"`
}

OrganizationsListIntegrationResourcesResponse struct for OrganizationsListIntegrationResourcesResponse

func NewOrganizationsListIntegrationResourcesResponse added in v0.5.0

func NewOrganizationsListIntegrationResourcesResponse() *OrganizationsListIntegrationResourcesResponse

NewOrganizationsListIntegrationResourcesResponse instantiates a new OrganizationsListIntegrationResourcesResponse 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 NewOrganizationsListIntegrationResourcesResponseWithDefaults added in v0.5.0

func NewOrganizationsListIntegrationResourcesResponseWithDefaults() *OrganizationsListIntegrationResourcesResponse

NewOrganizationsListIntegrationResourcesResponseWithDefaults instantiates a new OrganizationsListIntegrationResourcesResponse 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 (*OrganizationsListIntegrationResourcesResponse) GetResources added in v0.5.0

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

func (*OrganizationsListIntegrationResourcesResponse) GetResourcesOk added in v0.5.0

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 (*OrganizationsListIntegrationResourcesResponse) HasResources added in v0.5.0

HasResources returns a boolean if a field has been set.

func (OrganizationsListIntegrationResourcesResponse) MarshalJSON added in v0.5.0

func (*OrganizationsListIntegrationResourcesResponse) SetResources added in v0.5.0

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

func (OrganizationsListIntegrationResourcesResponse) ToMap added in v0.5.0

func (o OrganizationsListIntegrationResourcesResponse) ToMap() (map[string]interface{}, error)

type OrganizationsListInvitationsResponse

type OrganizationsListInvitationsResponse struct {
	Invitations []OrganizationsInvitation `json:"invitations,omitempty"`
}

OrganizationsListInvitationsResponse struct for OrganizationsListInvitationsResponse

func NewOrganizationsListInvitationsResponse

func NewOrganizationsListInvitationsResponse() *OrganizationsListInvitationsResponse

NewOrganizationsListInvitationsResponse instantiates a new OrganizationsListInvitationsResponse 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 NewOrganizationsListInvitationsResponseWithDefaults

func NewOrganizationsListInvitationsResponseWithDefaults() *OrganizationsListInvitationsResponse

NewOrganizationsListInvitationsResponseWithDefaults instantiates a new OrganizationsListInvitationsResponse 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 (*OrganizationsListInvitationsResponse) GetInvitations

GetInvitations returns the Invitations field value if set, zero value otherwise.

func (*OrganizationsListInvitationsResponse) GetInvitationsOk

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

func (*OrganizationsListInvitationsResponse) HasInvitations

func (o *OrganizationsListInvitationsResponse) HasInvitations() bool

HasInvitations returns a boolean if a field has been set.

func (OrganizationsListInvitationsResponse) MarshalJSON

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

func (*OrganizationsListInvitationsResponse) SetInvitations

SetInvitations gets a reference to the given []OrganizationsInvitation and assigns it to the Invitations field.

func (OrganizationsListInvitationsResponse) ToMap

func (o OrganizationsListInvitationsResponse) ToMap() (map[string]interface{}, error)

type OrganizationsOrganization

type OrganizationsOrganization struct {
	Metadata *OrganizationsOrganizationMetadata `json:"metadata,omitempty"`
}

OrganizationsOrganization struct for OrganizationsOrganization

func NewOrganizationsOrganization

func NewOrganizationsOrganization() *OrganizationsOrganization

NewOrganizationsOrganization instantiates a new OrganizationsOrganization 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 NewOrganizationsOrganizationWithDefaults

func NewOrganizationsOrganizationWithDefaults() *OrganizationsOrganization

NewOrganizationsOrganizationWithDefaults instantiates a new OrganizationsOrganization 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 (*OrganizationsOrganization) GetMetadata

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

func (*OrganizationsOrganization) GetMetadataOk

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 (*OrganizationsOrganization) HasMetadata

func (o *OrganizationsOrganization) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (OrganizationsOrganization) MarshalJSON

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

func (*OrganizationsOrganization) SetMetadata

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

func (OrganizationsOrganization) ToMap

func (o OrganizationsOrganization) ToMap() (map[string]interface{}, error)

type OrganizationsOrganizationMetadata

type OrganizationsOrganizationMetadata struct {
	Id          *string    `json:"id,omitempty"`
	Name        *string    `json:"name,omitempty"`
	Description *string    `json:"description,omitempty"`
	CreatedAt   *time.Time `json:"createdAt,omitempty"`
	UpdatedAt   *time.Time `json:"updatedAt,omitempty"`
}

OrganizationsOrganizationMetadata struct for OrganizationsOrganizationMetadata

func NewOrganizationsOrganizationMetadata

func NewOrganizationsOrganizationMetadata() *OrganizationsOrganizationMetadata

NewOrganizationsOrganizationMetadata instantiates a new OrganizationsOrganizationMetadata 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 NewOrganizationsOrganizationMetadataWithDefaults

func NewOrganizationsOrganizationMetadataWithDefaults() *OrganizationsOrganizationMetadata

NewOrganizationsOrganizationMetadataWithDefaults instantiates a new OrganizationsOrganizationMetadata 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 (*OrganizationsOrganizationMetadata) GetCreatedAt

func (o *OrganizationsOrganizationMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrganizationsOrganizationMetadata) GetCreatedAtOk

func (o *OrganizationsOrganizationMetadata) 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 (*OrganizationsOrganizationMetadata) GetDescription

func (o *OrganizationsOrganizationMetadata) GetDescription() string

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

func (*OrganizationsOrganizationMetadata) GetDescriptionOk

func (o *OrganizationsOrganizationMetadata) 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 (*OrganizationsOrganizationMetadata) GetId

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

func (*OrganizationsOrganizationMetadata) 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 (*OrganizationsOrganizationMetadata) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*OrganizationsOrganizationMetadata) GetNameOk

func (o *OrganizationsOrganizationMetadata) GetNameOk() (*string, bool)

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

func (*OrganizationsOrganizationMetadata) GetUpdatedAt

func (o *OrganizationsOrganizationMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*OrganizationsOrganizationMetadata) GetUpdatedAtOk

func (o *OrganizationsOrganizationMetadata) 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 (*OrganizationsOrganizationMetadata) HasCreatedAt

func (o *OrganizationsOrganizationMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrganizationsOrganizationMetadata) HasDescription

func (o *OrganizationsOrganizationMetadata) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*OrganizationsOrganizationMetadata) HasId

HasId returns a boolean if a field has been set.

func (*OrganizationsOrganizationMetadata) HasName

HasName returns a boolean if a field has been set.

func (*OrganizationsOrganizationMetadata) HasUpdatedAt

func (o *OrganizationsOrganizationMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (OrganizationsOrganizationMetadata) MarshalJSON

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

func (*OrganizationsOrganizationMetadata) SetCreatedAt

func (o *OrganizationsOrganizationMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrganizationsOrganizationMetadata) SetDescription

func (o *OrganizationsOrganizationMetadata) SetDescription(v string)

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

func (*OrganizationsOrganizationMetadata) SetId

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

func (*OrganizationsOrganizationMetadata) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*OrganizationsOrganizationMetadata) SetUpdatedAt

func (o *OrganizationsOrganizationMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (OrganizationsOrganizationMetadata) ToMap

func (o OrganizationsOrganizationMetadata) ToMap() (map[string]interface{}, error)

type OrganizationsResetInviteLinkResponse added in v0.0.43

type OrganizationsResetInviteLinkResponse struct {
	InviteLink *OrganizationsInviteLink `json:"inviteLink,omitempty"`
}

OrganizationsResetInviteLinkResponse struct for OrganizationsResetInviteLinkResponse

func NewOrganizationsResetInviteLinkResponse added in v0.0.43

func NewOrganizationsResetInviteLinkResponse() *OrganizationsResetInviteLinkResponse

NewOrganizationsResetInviteLinkResponse instantiates a new OrganizationsResetInviteLinkResponse 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 NewOrganizationsResetInviteLinkResponseWithDefaults added in v0.0.43

func NewOrganizationsResetInviteLinkResponseWithDefaults() *OrganizationsResetInviteLinkResponse

NewOrganizationsResetInviteLinkResponseWithDefaults instantiates a new OrganizationsResetInviteLinkResponse 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

GetInviteLink returns the InviteLink field value if set, zero value otherwise.

func (*OrganizationsResetInviteLinkResponse) GetInviteLinkOk added in v0.0.43

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

func (o *OrganizationsResetInviteLinkResponse) HasInviteLink() bool

HasInviteLink returns a boolean if a field has been set.

func (OrganizationsResetInviteLinkResponse) MarshalJSON added in v0.0.43

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

SetInviteLink gets a reference to the given OrganizationsInviteLink and assigns it to the InviteLink field.

func (OrganizationsResetInviteLinkResponse) ToMap added in v0.0.43

func (o OrganizationsResetInviteLinkResponse) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateIntegrationBody added in v0.5.0

type OrganizationsUpdateIntegrationBody struct {
	Configuration map[string]interface{} `json:"configuration,omitempty"`
	Name          *string                `json:"name,omitempty"`
}

OrganizationsUpdateIntegrationBody struct for OrganizationsUpdateIntegrationBody

func NewOrganizationsUpdateIntegrationBody added in v0.5.0

func NewOrganizationsUpdateIntegrationBody() *OrganizationsUpdateIntegrationBody

NewOrganizationsUpdateIntegrationBody instantiates a new OrganizationsUpdateIntegrationBody 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 NewOrganizationsUpdateIntegrationBodyWithDefaults added in v0.5.0

func NewOrganizationsUpdateIntegrationBodyWithDefaults() *OrganizationsUpdateIntegrationBody

NewOrganizationsUpdateIntegrationBodyWithDefaults instantiates a new OrganizationsUpdateIntegrationBody 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 (*OrganizationsUpdateIntegrationBody) GetConfiguration added in v0.5.0

func (o *OrganizationsUpdateIntegrationBody) GetConfiguration() map[string]interface{}

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*OrganizationsUpdateIntegrationBody) GetConfigurationOk added in v0.5.0

func (o *OrganizationsUpdateIntegrationBody) GetConfigurationOk() (map[string]interface{}, bool)

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

func (*OrganizationsUpdateIntegrationBody) GetName added in v0.8.0

GetName returns the Name field value if set, zero value otherwise.

func (*OrganizationsUpdateIntegrationBody) GetNameOk added in v0.8.0

func (o *OrganizationsUpdateIntegrationBody) GetNameOk() (*string, bool)

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

func (*OrganizationsUpdateIntegrationBody) HasConfiguration added in v0.5.0

func (o *OrganizationsUpdateIntegrationBody) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*OrganizationsUpdateIntegrationBody) HasName added in v0.8.0

HasName returns a boolean if a field has been set.

func (OrganizationsUpdateIntegrationBody) MarshalJSON added in v0.5.0

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

func (*OrganizationsUpdateIntegrationBody) SetConfiguration added in v0.5.0

func (o *OrganizationsUpdateIntegrationBody) SetConfiguration(v map[string]interface{})

SetConfiguration gets a reference to the given map[string]interface{} and assigns it to the Configuration field.

func (*OrganizationsUpdateIntegrationBody) SetName added in v0.8.0

SetName gets a reference to the given string and assigns it to the Name field.

func (OrganizationsUpdateIntegrationBody) ToMap added in v0.5.0

func (o OrganizationsUpdateIntegrationBody) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateIntegrationResponse added in v0.5.0

type OrganizationsUpdateIntegrationResponse struct {
	Integration *OrganizationsIntegration `json:"integration,omitempty"`
}

OrganizationsUpdateIntegrationResponse struct for OrganizationsUpdateIntegrationResponse

func NewOrganizationsUpdateIntegrationResponse added in v0.5.0

func NewOrganizationsUpdateIntegrationResponse() *OrganizationsUpdateIntegrationResponse

NewOrganizationsUpdateIntegrationResponse instantiates a new OrganizationsUpdateIntegrationResponse 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 NewOrganizationsUpdateIntegrationResponseWithDefaults added in v0.5.0

func NewOrganizationsUpdateIntegrationResponseWithDefaults() *OrganizationsUpdateIntegrationResponse

NewOrganizationsUpdateIntegrationResponseWithDefaults instantiates a new OrganizationsUpdateIntegrationResponse 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 (*OrganizationsUpdateIntegrationResponse) GetIntegration added in v0.5.0

GetIntegration returns the Integration field value if set, zero value otherwise.

func (*OrganizationsUpdateIntegrationResponse) GetIntegrationOk added in v0.5.0

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

func (*OrganizationsUpdateIntegrationResponse) HasIntegration added in v0.5.0

func (o *OrganizationsUpdateIntegrationResponse) HasIntegration() bool

HasIntegration returns a boolean if a field has been set.

func (OrganizationsUpdateIntegrationResponse) MarshalJSON added in v0.5.0

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

func (*OrganizationsUpdateIntegrationResponse) SetIntegration added in v0.5.0

SetIntegration gets a reference to the given OrganizationsIntegration and assigns it to the Integration field.

func (OrganizationsUpdateIntegrationResponse) ToMap added in v0.5.0

func (o OrganizationsUpdateIntegrationResponse) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateInviteLinkBody added in v0.0.43

type OrganizationsUpdateInviteLinkBody struct {
	Enabled *bool `json:"enabled,omitempty"`
}

OrganizationsUpdateInviteLinkBody struct for OrganizationsUpdateInviteLinkBody

func NewOrganizationsUpdateInviteLinkBody added in v0.0.43

func NewOrganizationsUpdateInviteLinkBody() *OrganizationsUpdateInviteLinkBody

NewOrganizationsUpdateInviteLinkBody instantiates a new OrganizationsUpdateInviteLinkBody 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 NewOrganizationsUpdateInviteLinkBodyWithDefaults added in v0.0.43

func NewOrganizationsUpdateInviteLinkBodyWithDefaults() *OrganizationsUpdateInviteLinkBody

NewOrganizationsUpdateInviteLinkBodyWithDefaults instantiates a new OrganizationsUpdateInviteLinkBody 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 (*OrganizationsUpdateInviteLinkBody) GetEnabled added in v0.0.43

func (o *OrganizationsUpdateInviteLinkBody) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*OrganizationsUpdateInviteLinkBody) GetEnabledOk added in v0.0.43

func (o *OrganizationsUpdateInviteLinkBody) GetEnabledOk() (*bool, bool)

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

func (*OrganizationsUpdateInviteLinkBody) HasEnabled added in v0.0.43

func (o *OrganizationsUpdateInviteLinkBody) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (OrganizationsUpdateInviteLinkBody) MarshalJSON added in v0.0.43

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

func (*OrganizationsUpdateInviteLinkBody) SetEnabled added in v0.0.43

func (o *OrganizationsUpdateInviteLinkBody) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (OrganizationsUpdateInviteLinkBody) ToMap added in v0.0.43

func (o OrganizationsUpdateInviteLinkBody) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateInviteLinkResponse added in v0.0.43

type OrganizationsUpdateInviteLinkResponse struct {
	InviteLink *OrganizationsInviteLink `json:"inviteLink,omitempty"`
}

OrganizationsUpdateInviteLinkResponse struct for OrganizationsUpdateInviteLinkResponse

func NewOrganizationsUpdateInviteLinkResponse added in v0.0.43

func NewOrganizationsUpdateInviteLinkResponse() *OrganizationsUpdateInviteLinkResponse

NewOrganizationsUpdateInviteLinkResponse instantiates a new OrganizationsUpdateInviteLinkResponse 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 NewOrganizationsUpdateInviteLinkResponseWithDefaults added in v0.0.43

func NewOrganizationsUpdateInviteLinkResponseWithDefaults() *OrganizationsUpdateInviteLinkResponse

NewOrganizationsUpdateInviteLinkResponseWithDefaults instantiates a new OrganizationsUpdateInviteLinkResponse 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

GetInviteLink returns the InviteLink field value if set, zero value otherwise.

func (*OrganizationsUpdateInviteLinkResponse) GetInviteLinkOk added in v0.0.43

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

func (o *OrganizationsUpdateInviteLinkResponse) HasInviteLink() bool

HasInviteLink returns a boolean if a field has been set.

func (OrganizationsUpdateInviteLinkResponse) MarshalJSON added in v0.0.43

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

SetInviteLink gets a reference to the given OrganizationsInviteLink and assigns it to the InviteLink field.

func (OrganizationsUpdateInviteLinkResponse) ToMap added in v0.0.43

func (o OrganizationsUpdateInviteLinkResponse) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateOrganizationBody

type OrganizationsUpdateOrganizationBody struct {
	Organization *OrganizationsOrganization `json:"organization,omitempty"`
}

OrganizationsUpdateOrganizationBody struct for OrganizationsUpdateOrganizationBody

func NewOrganizationsUpdateOrganizationBody

func NewOrganizationsUpdateOrganizationBody() *OrganizationsUpdateOrganizationBody

NewOrganizationsUpdateOrganizationBody instantiates a new OrganizationsUpdateOrganizationBody 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 NewOrganizationsUpdateOrganizationBodyWithDefaults

func NewOrganizationsUpdateOrganizationBodyWithDefaults() *OrganizationsUpdateOrganizationBody

NewOrganizationsUpdateOrganizationBodyWithDefaults instantiates a new OrganizationsUpdateOrganizationBody 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 (*OrganizationsUpdateOrganizationBody) GetOrganization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*OrganizationsUpdateOrganizationBody) GetOrganizationOk

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

func (*OrganizationsUpdateOrganizationBody) HasOrganization

func (o *OrganizationsUpdateOrganizationBody) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (OrganizationsUpdateOrganizationBody) MarshalJSON

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

func (*OrganizationsUpdateOrganizationBody) SetOrganization

SetOrganization gets a reference to the given OrganizationsOrganization and assigns it to the Organization field.

func (OrganizationsUpdateOrganizationBody) ToMap

func (o OrganizationsUpdateOrganizationBody) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateOrganizationResponse

type OrganizationsUpdateOrganizationResponse struct {
	Organization *OrganizationsOrganization `json:"organization,omitempty"`
}

OrganizationsUpdateOrganizationResponse struct for OrganizationsUpdateOrganizationResponse

func NewOrganizationsUpdateOrganizationResponse

func NewOrganizationsUpdateOrganizationResponse() *OrganizationsUpdateOrganizationResponse

NewOrganizationsUpdateOrganizationResponse instantiates a new OrganizationsUpdateOrganizationResponse 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 NewOrganizationsUpdateOrganizationResponseWithDefaults

func NewOrganizationsUpdateOrganizationResponseWithDefaults() *OrganizationsUpdateOrganizationResponse

NewOrganizationsUpdateOrganizationResponseWithDefaults instantiates a new OrganizationsUpdateOrganizationResponse 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 (*OrganizationsUpdateOrganizationResponse) GetOrganization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*OrganizationsUpdateOrganizationResponse) GetOrganizationOk

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

func (*OrganizationsUpdateOrganizationResponse) HasOrganization

func (o *OrganizationsUpdateOrganizationResponse) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (OrganizationsUpdateOrganizationResponse) MarshalJSON

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

func (*OrganizationsUpdateOrganizationResponse) SetOrganization

SetOrganization gets a reference to the given OrganizationsOrganization and assigns it to the Organization field.

func (OrganizationsUpdateOrganizationResponse) ToMap

func (o OrganizationsUpdateOrganizationResponse) ToMap() (map[string]interface{}, error)

type ProtobufAny

type ProtobufAny struct {
	Type                 *string `json:"@type,omitempty"`
	AdditionalProperties map[string]interface{}
}

ProtobufAny struct for ProtobufAny

func NewProtobufAny

func NewProtobufAny() *ProtobufAny

NewProtobufAny instantiates a new ProtobufAny 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 NewProtobufAnyWithDefaults

func NewProtobufAnyWithDefaults() *ProtobufAny

NewProtobufAnyWithDefaults instantiates a new ProtobufAny 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 (*ProtobufAny) GetType

func (o *ProtobufAny) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProtobufAny) GetTypeOk

func (o *ProtobufAny) GetTypeOk() (*string, bool)

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

func (*ProtobufAny) HasType

func (o *ProtobufAny) HasType() bool

HasType returns a boolean if a field has been set.

func (ProtobufAny) MarshalJSON

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

func (*ProtobufAny) SetType

func (o *ProtobufAny) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ProtobufAny) ToMap

func (o ProtobufAny) ToMap() (map[string]interface{}, error)

func (*ProtobufAny) UnmarshalJSON

func (o *ProtobufAny) UnmarshalJSON(data []byte) (err error)

type ProtobufNullValue

type ProtobufNullValue string

ProtobufNullValue `NullValue` is a singleton enumeration to represent the null value for the `Value` type union. The JSON representation for `NullValue` is JSON `null`. - NULL_VALUE: Null value.

const (
	PROTOBUFNULLVALUE_NULL_VALUE ProtobufNullValue = "NULL_VALUE"
)

List of protobufNullValue

func NewProtobufNullValueFromValue

func NewProtobufNullValueFromValue(v string) (*ProtobufNullValue, error)

NewProtobufNullValueFromValue returns a pointer to a valid ProtobufNullValue for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ProtobufNullValue) IsValid

func (v ProtobufNullValue) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ProtobufNullValue) Ptr

Ptr returns reference to protobufNullValue value

func (*ProtobufNullValue) UnmarshalJSON

func (v *ProtobufNullValue) UnmarshalJSON(src []byte) error

type RolesAPIService

type RolesAPIService service

RolesAPIService RolesAPI service

func (*RolesAPIService) RolesAssignRole

func (a *RolesAPIService) RolesAssignRole(ctx context.Context, roleName string) ApiRolesAssignRoleRequest

RolesAssignRole Assign role

Assigns a role to a user within a domain

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

func (*RolesAPIService) RolesAssignRoleExecute

func (a *RolesAPIService) RolesAssignRoleExecute(r ApiRolesAssignRoleRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*RolesAPIService) RolesCreateRole

func (a *RolesAPIService) RolesCreateRole(ctx context.Context) ApiRolesCreateRoleRequest

RolesCreateRole Create role

Creates a new custom role with specified permissions

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

func (*RolesAPIService) RolesCreateRoleExecute

Execute executes the request

@return RolesCreateRoleResponse

func (*RolesAPIService) RolesDeleteRole

func (a *RolesAPIService) RolesDeleteRole(ctx context.Context, roleName string) ApiRolesDeleteRoleRequest

RolesDeleteRole Delete role

Deletes an existing custom role

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

func (*RolesAPIService) RolesDeleteRoleExecute

func (a *RolesAPIService) RolesDeleteRoleExecute(r ApiRolesDeleteRoleRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*RolesAPIService) RolesDescribeRole

func (a *RolesAPIService) RolesDescribeRole(ctx context.Context, roleName string) ApiRolesDescribeRoleRequest

RolesDescribeRole Describe role

Returns detailed information about a specific role including permissions and inheritance

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

func (*RolesAPIService) RolesDescribeRoleExecute

Execute executes the request

@return RolesDescribeRoleResponse

func (*RolesAPIService) RolesListRoles

RolesListRoles List roles

Returns available roles for a specific domain type with their permissions and inheritance

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

func (*RolesAPIService) RolesListRolesExecute

Execute executes the request

@return RolesListRolesResponse

func (*RolesAPIService) RolesUpdateRole

func (a *RolesAPIService) RolesUpdateRole(ctx context.Context, roleName string) ApiRolesUpdateRoleRequest

RolesUpdateRole Update role

Updates an existing custom role with new permissions

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

func (*RolesAPIService) RolesUpdateRoleExecute

Execute executes the request

@return RolesUpdateRoleResponse

type RolesAssignRoleBody

type RolesAssignRoleBody struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	UserId     *string                  `json:"userId,omitempty"`
	UserEmail  *string                  `json:"userEmail,omitempty"`
}

RolesAssignRoleBody struct for RolesAssignRoleBody

func NewRolesAssignRoleBody

func NewRolesAssignRoleBody() *RolesAssignRoleBody

NewRolesAssignRoleBody instantiates a new RolesAssignRoleBody 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 NewRolesAssignRoleBodyWithDefaults

func NewRolesAssignRoleBodyWithDefaults() *RolesAssignRoleBody

NewRolesAssignRoleBodyWithDefaults instantiates a new RolesAssignRoleBody 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 (*RolesAssignRoleBody) GetDomainId

func (o *RolesAssignRoleBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*RolesAssignRoleBody) GetDomainIdOk

func (o *RolesAssignRoleBody) GetDomainIdOk() (*string, bool)

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

func (*RolesAssignRoleBody) GetDomainType

func (o *RolesAssignRoleBody) GetDomainType() AuthorizationDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*RolesAssignRoleBody) GetDomainTypeOk

func (o *RolesAssignRoleBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*RolesAssignRoleBody) GetUserEmail

func (o *RolesAssignRoleBody) GetUserEmail() string

GetUserEmail returns the UserEmail field value if set, zero value otherwise.

func (*RolesAssignRoleBody) GetUserEmailOk

func (o *RolesAssignRoleBody) GetUserEmailOk() (*string, bool)

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

func (*RolesAssignRoleBody) GetUserId

func (o *RolesAssignRoleBody) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*RolesAssignRoleBody) GetUserIdOk

func (o *RolesAssignRoleBody) GetUserIdOk() (*string, bool)

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

func (*RolesAssignRoleBody) HasDomainId

func (o *RolesAssignRoleBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*RolesAssignRoleBody) HasDomainType

func (o *RolesAssignRoleBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*RolesAssignRoleBody) HasUserEmail

func (o *RolesAssignRoleBody) HasUserEmail() bool

HasUserEmail returns a boolean if a field has been set.

func (*RolesAssignRoleBody) HasUserId

func (o *RolesAssignRoleBody) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (RolesAssignRoleBody) MarshalJSON

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

func (*RolesAssignRoleBody) SetDomainId

func (o *RolesAssignRoleBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*RolesAssignRoleBody) SetDomainType

func (o *RolesAssignRoleBody) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*RolesAssignRoleBody) SetUserEmail

func (o *RolesAssignRoleBody) SetUserEmail(v string)

SetUserEmail gets a reference to the given string and assigns it to the UserEmail field.

func (*RolesAssignRoleBody) SetUserId

func (o *RolesAssignRoleBody) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (RolesAssignRoleBody) ToMap

func (o RolesAssignRoleBody) ToMap() (map[string]interface{}, error)

type RolesCreateRoleRequest

type RolesCreateRoleRequest struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	Role       *RolesRole               `json:"role,omitempty"`
}

RolesCreateRoleRequest struct for RolesCreateRoleRequest

func NewRolesCreateRoleRequest

func NewRolesCreateRoleRequest() *RolesCreateRoleRequest

NewRolesCreateRoleRequest instantiates a new RolesCreateRoleRequest 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 NewRolesCreateRoleRequestWithDefaults

func NewRolesCreateRoleRequestWithDefaults() *RolesCreateRoleRequest

NewRolesCreateRoleRequestWithDefaults instantiates a new RolesCreateRoleRequest 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 (*RolesCreateRoleRequest) GetDomainId

func (o *RolesCreateRoleRequest) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*RolesCreateRoleRequest) GetDomainIdOk

func (o *RolesCreateRoleRequest) GetDomainIdOk() (*string, bool)

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

func (*RolesCreateRoleRequest) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*RolesCreateRoleRequest) GetDomainTypeOk

func (o *RolesCreateRoleRequest) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*RolesCreateRoleRequest) GetRole

func (o *RolesCreateRoleRequest) GetRole() RolesRole

GetRole returns the Role field value if set, zero value otherwise.

func (*RolesCreateRoleRequest) GetRoleOk

func (o *RolesCreateRoleRequest) GetRoleOk() (*RolesRole, bool)

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

func (*RolesCreateRoleRequest) HasDomainId

func (o *RolesCreateRoleRequest) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*RolesCreateRoleRequest) HasDomainType

func (o *RolesCreateRoleRequest) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*RolesCreateRoleRequest) HasRole

func (o *RolesCreateRoleRequest) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RolesCreateRoleRequest) MarshalJSON

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

func (*RolesCreateRoleRequest) SetDomainId

func (o *RolesCreateRoleRequest) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*RolesCreateRoleRequest) SetDomainType

func (o *RolesCreateRoleRequest) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*RolesCreateRoleRequest) SetRole

func (o *RolesCreateRoleRequest) SetRole(v RolesRole)

SetRole gets a reference to the given RolesRole and assigns it to the Role field.

func (RolesCreateRoleRequest) ToMap

func (o RolesCreateRoleRequest) ToMap() (map[string]interface{}, error)

type RolesCreateRoleResponse

type RolesCreateRoleResponse struct {
	Role *RolesRole `json:"role,omitempty"`
}

RolesCreateRoleResponse struct for RolesCreateRoleResponse

func NewRolesCreateRoleResponse

func NewRolesCreateRoleResponse() *RolesCreateRoleResponse

NewRolesCreateRoleResponse instantiates a new RolesCreateRoleResponse 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 NewRolesCreateRoleResponseWithDefaults

func NewRolesCreateRoleResponseWithDefaults() *RolesCreateRoleResponse

NewRolesCreateRoleResponseWithDefaults instantiates a new RolesCreateRoleResponse 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 (*RolesCreateRoleResponse) GetRole

func (o *RolesCreateRoleResponse) GetRole() RolesRole

GetRole returns the Role field value if set, zero value otherwise.

func (*RolesCreateRoleResponse) GetRoleOk

func (o *RolesCreateRoleResponse) GetRoleOk() (*RolesRole, bool)

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

func (*RolesCreateRoleResponse) HasRole

func (o *RolesCreateRoleResponse) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RolesCreateRoleResponse) MarshalJSON

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

func (*RolesCreateRoleResponse) SetRole

func (o *RolesCreateRoleResponse) SetRole(v RolesRole)

SetRole gets a reference to the given RolesRole and assigns it to the Role field.

func (RolesCreateRoleResponse) ToMap

func (o RolesCreateRoleResponse) ToMap() (map[string]interface{}, error)

type RolesDescribeRoleResponse

type RolesDescribeRoleResponse struct {
	Role *RolesRole `json:"role,omitempty"`
}

RolesDescribeRoleResponse struct for RolesDescribeRoleResponse

func NewRolesDescribeRoleResponse

func NewRolesDescribeRoleResponse() *RolesDescribeRoleResponse

NewRolesDescribeRoleResponse instantiates a new RolesDescribeRoleResponse 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 NewRolesDescribeRoleResponseWithDefaults

func NewRolesDescribeRoleResponseWithDefaults() *RolesDescribeRoleResponse

NewRolesDescribeRoleResponseWithDefaults instantiates a new RolesDescribeRoleResponse 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 (*RolesDescribeRoleResponse) GetRole

func (o *RolesDescribeRoleResponse) GetRole() RolesRole

GetRole returns the Role field value if set, zero value otherwise.

func (*RolesDescribeRoleResponse) GetRoleOk

func (o *RolesDescribeRoleResponse) GetRoleOk() (*RolesRole, bool)

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

func (*RolesDescribeRoleResponse) HasRole

func (o *RolesDescribeRoleResponse) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RolesDescribeRoleResponse) MarshalJSON

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

func (*RolesDescribeRoleResponse) SetRole

func (o *RolesDescribeRoleResponse) SetRole(v RolesRole)

SetRole gets a reference to the given RolesRole and assigns it to the Role field.

func (RolesDescribeRoleResponse) ToMap

func (o RolesDescribeRoleResponse) ToMap() (map[string]interface{}, error)

type RolesListRolesResponse

type RolesListRolesResponse struct {
	Roles []RolesRole `json:"roles,omitempty"`
}

RolesListRolesResponse struct for RolesListRolesResponse

func NewRolesListRolesResponse

func NewRolesListRolesResponse() *RolesListRolesResponse

NewRolesListRolesResponse instantiates a new RolesListRolesResponse 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 NewRolesListRolesResponseWithDefaults

func NewRolesListRolesResponseWithDefaults() *RolesListRolesResponse

NewRolesListRolesResponseWithDefaults instantiates a new RolesListRolesResponse 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 (*RolesListRolesResponse) GetRoles

func (o *RolesListRolesResponse) GetRoles() []RolesRole

GetRoles returns the Roles field value if set, zero value otherwise.

func (*RolesListRolesResponse) GetRolesOk

func (o *RolesListRolesResponse) GetRolesOk() ([]RolesRole, bool)

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

func (*RolesListRolesResponse) HasRoles

func (o *RolesListRolesResponse) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (RolesListRolesResponse) MarshalJSON

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

func (*RolesListRolesResponse) SetRoles

func (o *RolesListRolesResponse) SetRoles(v []RolesRole)

SetRoles gets a reference to the given []RolesRole and assigns it to the Roles field.

func (RolesListRolesResponse) ToMap

func (o RolesListRolesResponse) ToMap() (map[string]interface{}, error)

type RolesRole

type RolesRole struct {
	Metadata *RolesRoleMetadata `json:"metadata,omitempty"`
	Spec     *RolesRoleSpec     `json:"spec,omitempty"`
}

RolesRole struct for RolesRole

func NewRolesRole

func NewRolesRole() *RolesRole

NewRolesRole instantiates a new RolesRole 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 NewRolesRoleWithDefaults

func NewRolesRoleWithDefaults() *RolesRole

NewRolesRoleWithDefaults instantiates a new RolesRole 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 (*RolesRole) GetMetadata

func (o *RolesRole) GetMetadata() RolesRoleMetadata

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

func (*RolesRole) GetMetadataOk

func (o *RolesRole) GetMetadataOk() (*RolesRoleMetadata, 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 (*RolesRole) GetSpec

func (o *RolesRole) GetSpec() RolesRoleSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*RolesRole) GetSpecOk

func (o *RolesRole) GetSpecOk() (*RolesRoleSpec, bool)

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

func (*RolesRole) HasMetadata

func (o *RolesRole) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*RolesRole) HasSpec

func (o *RolesRole) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (RolesRole) MarshalJSON

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

func (*RolesRole) SetMetadata

func (o *RolesRole) SetMetadata(v RolesRoleMetadata)

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

func (*RolesRole) SetSpec

func (o *RolesRole) SetSpec(v RolesRoleSpec)

SetSpec gets a reference to the given RolesRoleSpec and assigns it to the Spec field.

func (RolesRole) ToMap

func (o RolesRole) ToMap() (map[string]interface{}, error)

type RolesRoleMetadata

type RolesRoleMetadata struct {
	Name       *string                  `json:"name,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	CreatedAt  *time.Time               `json:"createdAt,omitempty"`
	UpdatedAt  *time.Time               `json:"updatedAt,omitempty"`
}

RolesRoleMetadata struct for RolesRoleMetadata

func NewRolesRoleMetadata

func NewRolesRoleMetadata() *RolesRoleMetadata

NewRolesRoleMetadata instantiates a new RolesRoleMetadata 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 NewRolesRoleMetadataWithDefaults

func NewRolesRoleMetadataWithDefaults() *RolesRoleMetadata

NewRolesRoleMetadataWithDefaults instantiates a new RolesRoleMetadata 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 (*RolesRoleMetadata) GetCreatedAt

func (o *RolesRoleMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*RolesRoleMetadata) GetCreatedAtOk

func (o *RolesRoleMetadata) 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 (*RolesRoleMetadata) GetDomainId

func (o *RolesRoleMetadata) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*RolesRoleMetadata) GetDomainIdOk

func (o *RolesRoleMetadata) GetDomainIdOk() (*string, bool)

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

func (*RolesRoleMetadata) GetDomainType

func (o *RolesRoleMetadata) GetDomainType() AuthorizationDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*RolesRoleMetadata) GetDomainTypeOk

func (o *RolesRoleMetadata) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*RolesRoleMetadata) GetName

func (o *RolesRoleMetadata) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RolesRoleMetadata) GetNameOk

func (o *RolesRoleMetadata) GetNameOk() (*string, bool)

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

func (*RolesRoleMetadata) GetUpdatedAt

func (o *RolesRoleMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*RolesRoleMetadata) GetUpdatedAtOk

func (o *RolesRoleMetadata) 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 (*RolesRoleMetadata) HasCreatedAt

func (o *RolesRoleMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*RolesRoleMetadata) HasDomainId

func (o *RolesRoleMetadata) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*RolesRoleMetadata) HasDomainType

func (o *RolesRoleMetadata) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*RolesRoleMetadata) HasName

func (o *RolesRoleMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (*RolesRoleMetadata) HasUpdatedAt

func (o *RolesRoleMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (RolesRoleMetadata) MarshalJSON

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

func (*RolesRoleMetadata) SetCreatedAt

func (o *RolesRoleMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*RolesRoleMetadata) SetDomainId

func (o *RolesRoleMetadata) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*RolesRoleMetadata) SetDomainType

func (o *RolesRoleMetadata) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*RolesRoleMetadata) SetName

func (o *RolesRoleMetadata) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RolesRoleMetadata) SetUpdatedAt

func (o *RolesRoleMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (RolesRoleMetadata) ToMap

func (o RolesRoleMetadata) ToMap() (map[string]interface{}, error)

type RolesRoleSpec

type RolesRoleSpec struct {
	DisplayName   *string                   `json:"displayName,omitempty"`
	Description   *string                   `json:"description,omitempty"`
	Permissions   []AuthorizationPermission `json:"permissions,omitempty"`
	InheritedRole *RolesRole                `json:"inheritedRole,omitempty"`
}

RolesRoleSpec struct for RolesRoleSpec

func NewRolesRoleSpec

func NewRolesRoleSpec() *RolesRoleSpec

NewRolesRoleSpec instantiates a new RolesRoleSpec 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 NewRolesRoleSpecWithDefaults

func NewRolesRoleSpecWithDefaults() *RolesRoleSpec

NewRolesRoleSpecWithDefaults instantiates a new RolesRoleSpec 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 (*RolesRoleSpec) GetDescription

func (o *RolesRoleSpec) GetDescription() string

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

func (*RolesRoleSpec) GetDescriptionOk

func (o *RolesRoleSpec) 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 (*RolesRoleSpec) GetDisplayName

func (o *RolesRoleSpec) GetDisplayName() string

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

func (*RolesRoleSpec) GetDisplayNameOk

func (o *RolesRoleSpec) 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 (*RolesRoleSpec) GetInheritedRole

func (o *RolesRoleSpec) GetInheritedRole() RolesRole

GetInheritedRole returns the InheritedRole field value if set, zero value otherwise.

func (*RolesRoleSpec) GetInheritedRoleOk

func (o *RolesRoleSpec) GetInheritedRoleOk() (*RolesRole, bool)

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

func (*RolesRoleSpec) GetPermissions

func (o *RolesRoleSpec) GetPermissions() []AuthorizationPermission

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*RolesRoleSpec) GetPermissionsOk

func (o *RolesRoleSpec) GetPermissionsOk() ([]AuthorizationPermission, bool)

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

func (*RolesRoleSpec) HasDescription

func (o *RolesRoleSpec) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RolesRoleSpec) HasDisplayName

func (o *RolesRoleSpec) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*RolesRoleSpec) HasInheritedRole

func (o *RolesRoleSpec) HasInheritedRole() bool

HasInheritedRole returns a boolean if a field has been set.

func (*RolesRoleSpec) HasPermissions

func (o *RolesRoleSpec) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (RolesRoleSpec) MarshalJSON

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

func (*RolesRoleSpec) SetDescription

func (o *RolesRoleSpec) SetDescription(v string)

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

func (*RolesRoleSpec) SetDisplayName

func (o *RolesRoleSpec) SetDisplayName(v string)

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

func (*RolesRoleSpec) SetInheritedRole

func (o *RolesRoleSpec) SetInheritedRole(v RolesRole)

SetInheritedRole gets a reference to the given RolesRole and assigns it to the InheritedRole field.

func (*RolesRoleSpec) SetPermissions

func (o *RolesRoleSpec) SetPermissions(v []AuthorizationPermission)

SetPermissions gets a reference to the given []AuthorizationPermission and assigns it to the Permissions field.

func (RolesRoleSpec) ToMap

func (o RolesRoleSpec) ToMap() (map[string]interface{}, error)

type RolesUpdateRoleBody

type RolesUpdateRoleBody struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	Role       *RolesRole               `json:"role,omitempty"`
}

RolesUpdateRoleBody struct for RolesUpdateRoleBody

func NewRolesUpdateRoleBody

func NewRolesUpdateRoleBody() *RolesUpdateRoleBody

NewRolesUpdateRoleBody instantiates a new RolesUpdateRoleBody 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 NewRolesUpdateRoleBodyWithDefaults

func NewRolesUpdateRoleBodyWithDefaults() *RolesUpdateRoleBody

NewRolesUpdateRoleBodyWithDefaults instantiates a new RolesUpdateRoleBody 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 (*RolesUpdateRoleBody) GetDomainId

func (o *RolesUpdateRoleBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*RolesUpdateRoleBody) GetDomainIdOk

func (o *RolesUpdateRoleBody) GetDomainIdOk() (*string, bool)

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

func (*RolesUpdateRoleBody) GetDomainType

func (o *RolesUpdateRoleBody) GetDomainType() AuthorizationDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*RolesUpdateRoleBody) GetDomainTypeOk

func (o *RolesUpdateRoleBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*RolesUpdateRoleBody) GetRole

func (o *RolesUpdateRoleBody) GetRole() RolesRole

GetRole returns the Role field value if set, zero value otherwise.

func (*RolesUpdateRoleBody) GetRoleOk

func (o *RolesUpdateRoleBody) GetRoleOk() (*RolesRole, bool)

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

func (*RolesUpdateRoleBody) HasDomainId

func (o *RolesUpdateRoleBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*RolesUpdateRoleBody) HasDomainType

func (o *RolesUpdateRoleBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*RolesUpdateRoleBody) HasRole

func (o *RolesUpdateRoleBody) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RolesUpdateRoleBody) MarshalJSON

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

func (*RolesUpdateRoleBody) SetDomainId

func (o *RolesUpdateRoleBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*RolesUpdateRoleBody) SetDomainType

func (o *RolesUpdateRoleBody) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*RolesUpdateRoleBody) SetRole

func (o *RolesUpdateRoleBody) SetRole(v RolesRole)

SetRole gets a reference to the given RolesRole and assigns it to the Role field.

func (RolesUpdateRoleBody) ToMap

func (o RolesUpdateRoleBody) ToMap() (map[string]interface{}, error)

type RolesUpdateRoleResponse

type RolesUpdateRoleResponse struct {
	Role *RolesRole `json:"role,omitempty"`
}

RolesUpdateRoleResponse struct for RolesUpdateRoleResponse

func NewRolesUpdateRoleResponse

func NewRolesUpdateRoleResponse() *RolesUpdateRoleResponse

NewRolesUpdateRoleResponse instantiates a new RolesUpdateRoleResponse 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 NewRolesUpdateRoleResponseWithDefaults

func NewRolesUpdateRoleResponseWithDefaults() *RolesUpdateRoleResponse

NewRolesUpdateRoleResponseWithDefaults instantiates a new RolesUpdateRoleResponse 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 (*RolesUpdateRoleResponse) GetRole

func (o *RolesUpdateRoleResponse) GetRole() RolesRole

GetRole returns the Role field value if set, zero value otherwise.

func (*RolesUpdateRoleResponse) GetRoleOk

func (o *RolesUpdateRoleResponse) GetRoleOk() (*RolesRole, bool)

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

func (*RolesUpdateRoleResponse) HasRole

func (o *RolesUpdateRoleResponse) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RolesUpdateRoleResponse) MarshalJSON

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

func (*RolesUpdateRoleResponse) SetRole

func (o *RolesUpdateRoleResponse) SetRole(v RolesRole)

SetRole gets a reference to the given RolesRole and assigns it to the Role field.

func (RolesUpdateRoleResponse) ToMap

func (o RolesUpdateRoleResponse) ToMap() (map[string]interface{}, error)

type SecretAPIService

type SecretAPIService service

SecretAPIService SecretAPI service

func (*SecretAPIService) SecretsCreateSecret

func (a *SecretAPIService) SecretsCreateSecret(ctx context.Context) ApiSecretsCreateSecretRequest

SecretsCreateSecret Create a new secret

Creates a new secret

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

func (*SecretAPIService) SecretsCreateSecretExecute

Execute executes the request

@return SecretsCreateSecretResponse

func (*SecretAPIService) SecretsDeleteSecret

func (a *SecretAPIService) SecretsDeleteSecret(ctx context.Context, idOrName string) ApiSecretsDeleteSecretRequest

SecretsDeleteSecret Deletes a secret

Deletes the specified secret

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

func (*SecretAPIService) SecretsDeleteSecretExecute

func (a *SecretAPIService) SecretsDeleteSecretExecute(r ApiSecretsDeleteSecretRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*SecretAPIService) SecretsDeleteSecretKey added in v0.7.0

func (a *SecretAPIService) SecretsDeleteSecretKey(ctx context.Context, idOrName string, keyName string) ApiSecretsDeleteSecretKeyRequest

SecretsDeleteSecretKey Remove a key from a secret

Removes one key from the secret. Secret must have at least one key remaining.

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

func (*SecretAPIService) SecretsDeleteSecretKeyExecute added in v0.7.0

Execute executes the request

@return SecretsDeleteSecretKeyResponse

func (*SecretAPIService) SecretsDescribeSecret

func (a *SecretAPIService) SecretsDescribeSecret(ctx context.Context, idOrName string) ApiSecretsDescribeSecretRequest

SecretsDescribeSecret Get secret details

Returns the details of a specific secret

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

func (*SecretAPIService) SecretsDescribeSecretExecute

Execute executes the request

@return SecretsDescribeSecretResponse

func (*SecretAPIService) SecretsListSecrets

func (a *SecretAPIService) SecretsListSecrets(ctx context.Context) ApiSecretsListSecretsRequest

SecretsListSecrets List secrets

Returns the list of secrets

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

func (*SecretAPIService) SecretsListSecretsExecute

Execute executes the request

@return SecretsListSecretsResponse

func (*SecretAPIService) SecretsSetSecretKey added in v0.7.0

func (a *SecretAPIService) SecretsSetSecretKey(ctx context.Context, idOrName string, keyName string) ApiSecretsSetSecretKeyRequest

SecretsSetSecretKey Set or overwrite a single key in a secret

Sets the value for one key. Creates the key if missing, overwrites if present.

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

func (*SecretAPIService) SecretsSetSecretKeyExecute added in v0.7.0

Execute executes the request

@return SecretsSetSecretKeyResponse

func (*SecretAPIService) SecretsUpdateSecret

func (a *SecretAPIService) SecretsUpdateSecret(ctx context.Context, idOrName string) ApiSecretsUpdateSecretRequest

SecretsUpdateSecret Updates a secret

Updates the specified secret

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

func (*SecretAPIService) SecretsUpdateSecretExecute

Execute executes the request

@return SecretsUpdateSecretResponse

func (*SecretAPIService) SecretsUpdateSecretName added in v0.7.0

func (a *SecretAPIService) SecretsUpdateSecretName(ctx context.Context, idOrName string) ApiSecretsUpdateSecretNameRequest

SecretsUpdateSecretName Update secret name

Updates only the name of the secret. Name must be unique within the domain.

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

func (*SecretAPIService) SecretsUpdateSecretNameExecute added in v0.7.0

Execute executes the request

@return SecretsUpdateSecretNameResponse

type SecretLocal

type SecretLocal struct {
	Data *map[string]string `json:"data,omitempty"`
}

SecretLocal Local secrets are stored and managed by SuperPlane itself.

func NewSecretLocal

func NewSecretLocal() *SecretLocal

NewSecretLocal instantiates a new SecretLocal 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 NewSecretLocalWithDefaults

func NewSecretLocalWithDefaults() *SecretLocal

NewSecretLocalWithDefaults instantiates a new SecretLocal 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 (*SecretLocal) GetData

func (o *SecretLocal) GetData() map[string]string

GetData returns the Data field value if set, zero value otherwise.

func (*SecretLocal) GetDataOk

func (o *SecretLocal) GetDataOk() (*map[string]string, bool)

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

func (*SecretLocal) HasData

func (o *SecretLocal) HasData() bool

HasData returns a boolean if a field has been set.

func (SecretLocal) MarshalJSON

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

func (*SecretLocal) SetData

func (o *SecretLocal) SetData(v map[string]string)

SetData gets a reference to the given map[string]string and assigns it to the Data field.

func (SecretLocal) ToMap

func (o SecretLocal) ToMap() (map[string]interface{}, error)

type SecretProvider

type SecretProvider string

SecretProvider the model 'SecretProvider'

const (
	SECRETPROVIDER_PROVIDER_UNKNOWN SecretProvider = "PROVIDER_UNKNOWN"
	SECRETPROVIDER_PROVIDER_LOCAL   SecretProvider = "PROVIDER_LOCAL"
)

List of SecretProvider

func NewSecretProviderFromValue

func NewSecretProviderFromValue(v string) (*SecretProvider, error)

NewSecretProviderFromValue returns a pointer to a valid SecretProvider for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SecretProvider) IsValid

func (v SecretProvider) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SecretProvider) Ptr

func (v SecretProvider) Ptr() *SecretProvider

Ptr returns reference to SecretProvider value

func (*SecretProvider) UnmarshalJSON

func (v *SecretProvider) UnmarshalJSON(src []byte) error

type SecretsCreateSecretRequest

type SecretsCreateSecretRequest struct {
	Secret     *SecretsSecret           `json:"secret,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
}

SecretsCreateSecretRequest struct for SecretsCreateSecretRequest

func NewSecretsCreateSecretRequest

func NewSecretsCreateSecretRequest() *SecretsCreateSecretRequest

NewSecretsCreateSecretRequest instantiates a new SecretsCreateSecretRequest 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 NewSecretsCreateSecretRequestWithDefaults

func NewSecretsCreateSecretRequestWithDefaults() *SecretsCreateSecretRequest

NewSecretsCreateSecretRequestWithDefaults instantiates a new SecretsCreateSecretRequest 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 (*SecretsCreateSecretRequest) GetDomainId

func (o *SecretsCreateSecretRequest) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*SecretsCreateSecretRequest) GetDomainIdOk

func (o *SecretsCreateSecretRequest) GetDomainIdOk() (*string, bool)

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

func (*SecretsCreateSecretRequest) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*SecretsCreateSecretRequest) GetDomainTypeOk

func (o *SecretsCreateSecretRequest) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*SecretsCreateSecretRequest) GetSecret

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

func (*SecretsCreateSecretRequest) GetSecretOk

func (o *SecretsCreateSecretRequest) GetSecretOk() (*SecretsSecret, 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 (*SecretsCreateSecretRequest) HasDomainId

func (o *SecretsCreateSecretRequest) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*SecretsCreateSecretRequest) HasDomainType

func (o *SecretsCreateSecretRequest) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*SecretsCreateSecretRequest) HasSecret

func (o *SecretsCreateSecretRequest) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsCreateSecretRequest) MarshalJSON

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

func (*SecretsCreateSecretRequest) SetDomainId

func (o *SecretsCreateSecretRequest) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*SecretsCreateSecretRequest) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*SecretsCreateSecretRequest) SetSecret

func (o *SecretsCreateSecretRequest) SetSecret(v SecretsSecret)

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

func (SecretsCreateSecretRequest) ToMap

func (o SecretsCreateSecretRequest) ToMap() (map[string]interface{}, error)

type SecretsCreateSecretResponse

type SecretsCreateSecretResponse struct {
	Secret *SecretsSecret `json:"secret,omitempty"`
}

SecretsCreateSecretResponse struct for SecretsCreateSecretResponse

func NewSecretsCreateSecretResponse

func NewSecretsCreateSecretResponse() *SecretsCreateSecretResponse

NewSecretsCreateSecretResponse instantiates a new SecretsCreateSecretResponse 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 NewSecretsCreateSecretResponseWithDefaults

func NewSecretsCreateSecretResponseWithDefaults() *SecretsCreateSecretResponse

NewSecretsCreateSecretResponseWithDefaults instantiates a new SecretsCreateSecretResponse 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 (*SecretsCreateSecretResponse) GetSecret

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

func (*SecretsCreateSecretResponse) GetSecretOk

func (o *SecretsCreateSecretResponse) GetSecretOk() (*SecretsSecret, 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 (*SecretsCreateSecretResponse) HasSecret

func (o *SecretsCreateSecretResponse) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsCreateSecretResponse) MarshalJSON

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

func (*SecretsCreateSecretResponse) SetSecret

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

func (SecretsCreateSecretResponse) ToMap

func (o SecretsCreateSecretResponse) ToMap() (map[string]interface{}, error)

type SecretsDeleteSecretKeyResponse added in v0.7.0

type SecretsDeleteSecretKeyResponse struct {
	Secret *SecretsSecret `json:"secret,omitempty"`
}

SecretsDeleteSecretKeyResponse struct for SecretsDeleteSecretKeyResponse

func NewSecretsDeleteSecretKeyResponse added in v0.7.0

func NewSecretsDeleteSecretKeyResponse() *SecretsDeleteSecretKeyResponse

NewSecretsDeleteSecretKeyResponse instantiates a new SecretsDeleteSecretKeyResponse 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 NewSecretsDeleteSecretKeyResponseWithDefaults added in v0.7.0

func NewSecretsDeleteSecretKeyResponseWithDefaults() *SecretsDeleteSecretKeyResponse

NewSecretsDeleteSecretKeyResponseWithDefaults instantiates a new SecretsDeleteSecretKeyResponse 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 (*SecretsDeleteSecretKeyResponse) GetSecret added in v0.7.0

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

func (*SecretsDeleteSecretKeyResponse) GetSecretOk added in v0.7.0

func (o *SecretsDeleteSecretKeyResponse) GetSecretOk() (*SecretsSecret, 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 (*SecretsDeleteSecretKeyResponse) HasSecret added in v0.7.0

func (o *SecretsDeleteSecretKeyResponse) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsDeleteSecretKeyResponse) MarshalJSON added in v0.7.0

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

func (*SecretsDeleteSecretKeyResponse) SetSecret added in v0.7.0

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

func (SecretsDeleteSecretKeyResponse) ToMap added in v0.7.0

func (o SecretsDeleteSecretKeyResponse) ToMap() (map[string]interface{}, error)

type SecretsDescribeSecretResponse

type SecretsDescribeSecretResponse struct {
	Secret *SecretsSecret `json:"secret,omitempty"`
}

SecretsDescribeSecretResponse struct for SecretsDescribeSecretResponse

func NewSecretsDescribeSecretResponse

func NewSecretsDescribeSecretResponse() *SecretsDescribeSecretResponse

NewSecretsDescribeSecretResponse instantiates a new SecretsDescribeSecretResponse 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 NewSecretsDescribeSecretResponseWithDefaults

func NewSecretsDescribeSecretResponseWithDefaults() *SecretsDescribeSecretResponse

NewSecretsDescribeSecretResponseWithDefaults instantiates a new SecretsDescribeSecretResponse 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 (*SecretsDescribeSecretResponse) GetSecret

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

func (*SecretsDescribeSecretResponse) GetSecretOk

func (o *SecretsDescribeSecretResponse) GetSecretOk() (*SecretsSecret, 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 (*SecretsDescribeSecretResponse) HasSecret

func (o *SecretsDescribeSecretResponse) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsDescribeSecretResponse) MarshalJSON

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

func (*SecretsDescribeSecretResponse) SetSecret

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

func (SecretsDescribeSecretResponse) ToMap

func (o SecretsDescribeSecretResponse) ToMap() (map[string]interface{}, error)

type SecretsListSecretsResponse

type SecretsListSecretsResponse struct {
	Secrets []SecretsSecret `json:"secrets,omitempty"`
}

SecretsListSecretsResponse struct for SecretsListSecretsResponse

func NewSecretsListSecretsResponse

func NewSecretsListSecretsResponse() *SecretsListSecretsResponse

NewSecretsListSecretsResponse instantiates a new SecretsListSecretsResponse 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 NewSecretsListSecretsResponseWithDefaults

func NewSecretsListSecretsResponseWithDefaults() *SecretsListSecretsResponse

NewSecretsListSecretsResponseWithDefaults instantiates a new SecretsListSecretsResponse 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 (*SecretsListSecretsResponse) GetSecrets

func (o *SecretsListSecretsResponse) GetSecrets() []SecretsSecret

GetSecrets returns the Secrets field value if set, zero value otherwise.

func (*SecretsListSecretsResponse) GetSecretsOk

func (o *SecretsListSecretsResponse) GetSecretsOk() ([]SecretsSecret, bool)

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

func (*SecretsListSecretsResponse) HasSecrets

func (o *SecretsListSecretsResponse) HasSecrets() bool

HasSecrets returns a boolean if a field has been set.

func (SecretsListSecretsResponse) MarshalJSON

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

func (*SecretsListSecretsResponse) SetSecrets

func (o *SecretsListSecretsResponse) SetSecrets(v []SecretsSecret)

SetSecrets gets a reference to the given []SecretsSecret and assigns it to the Secrets field.

func (SecretsListSecretsResponse) ToMap

func (o SecretsListSecretsResponse) ToMap() (map[string]interface{}, error)

type SecretsSecret

type SecretsSecret struct {
	Metadata *SecretsSecretMetadata `json:"metadata,omitempty"`
	Spec     *SecretsSecretSpec     `json:"spec,omitempty"`
}

SecretsSecret struct for SecretsSecret

func NewSecretsSecret

func NewSecretsSecret() *SecretsSecret

NewSecretsSecret instantiates a new SecretsSecret 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 NewSecretsSecretWithDefaults

func NewSecretsSecretWithDefaults() *SecretsSecret

NewSecretsSecretWithDefaults instantiates a new SecretsSecret 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 (*SecretsSecret) GetMetadata

func (o *SecretsSecret) GetMetadata() SecretsSecretMetadata

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

func (*SecretsSecret) GetMetadataOk

func (o *SecretsSecret) GetMetadataOk() (*SecretsSecretMetadata, 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 (*SecretsSecret) GetSpec

func (o *SecretsSecret) GetSpec() SecretsSecretSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*SecretsSecret) GetSpecOk

func (o *SecretsSecret) GetSpecOk() (*SecretsSecretSpec, bool)

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

func (*SecretsSecret) HasMetadata

func (o *SecretsSecret) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*SecretsSecret) HasSpec

func (o *SecretsSecret) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (SecretsSecret) MarshalJSON

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

func (*SecretsSecret) SetMetadata

func (o *SecretsSecret) SetMetadata(v SecretsSecretMetadata)

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

func (*SecretsSecret) SetSpec

func (o *SecretsSecret) SetSpec(v SecretsSecretSpec)

SetSpec gets a reference to the given SecretsSecretSpec and assigns it to the Spec field.

func (SecretsSecret) ToMap

func (o SecretsSecret) ToMap() (map[string]interface{}, error)

type SecretsSecretMetadata

type SecretsSecretMetadata struct {
	Id         *string                  `json:"id,omitempty"`
	Name       *string                  `json:"name,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	CreatedAt  *time.Time               `json:"createdAt,omitempty"`
}

SecretsSecretMetadata struct for SecretsSecretMetadata

func NewSecretsSecretMetadata

func NewSecretsSecretMetadata() *SecretsSecretMetadata

NewSecretsSecretMetadata instantiates a new SecretsSecretMetadata 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 NewSecretsSecretMetadataWithDefaults

func NewSecretsSecretMetadataWithDefaults() *SecretsSecretMetadata

NewSecretsSecretMetadataWithDefaults instantiates a new SecretsSecretMetadata 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 (*SecretsSecretMetadata) GetCreatedAt

func (o *SecretsSecretMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*SecretsSecretMetadata) GetCreatedAtOk

func (o *SecretsSecretMetadata) 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 (*SecretsSecretMetadata) GetDomainId

func (o *SecretsSecretMetadata) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*SecretsSecretMetadata) GetDomainIdOk

func (o *SecretsSecretMetadata) GetDomainIdOk() (*string, bool)

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

func (*SecretsSecretMetadata) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*SecretsSecretMetadata) GetDomainTypeOk

func (o *SecretsSecretMetadata) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*SecretsSecretMetadata) GetId

func (o *SecretsSecretMetadata) GetId() string

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

func (*SecretsSecretMetadata) GetIdOk

func (o *SecretsSecretMetadata) 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 (*SecretsSecretMetadata) GetName

func (o *SecretsSecretMetadata) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SecretsSecretMetadata) GetNameOk

func (o *SecretsSecretMetadata) GetNameOk() (*string, bool)

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

func (*SecretsSecretMetadata) HasCreatedAt

func (o *SecretsSecretMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SecretsSecretMetadata) HasDomainId

func (o *SecretsSecretMetadata) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*SecretsSecretMetadata) HasDomainType

func (o *SecretsSecretMetadata) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*SecretsSecretMetadata) HasId

func (o *SecretsSecretMetadata) HasId() bool

HasId returns a boolean if a field has been set.

func (*SecretsSecretMetadata) HasName

func (o *SecretsSecretMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (SecretsSecretMetadata) MarshalJSON

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

func (*SecretsSecretMetadata) SetCreatedAt

func (o *SecretsSecretMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*SecretsSecretMetadata) SetDomainId

func (o *SecretsSecretMetadata) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*SecretsSecretMetadata) SetDomainType

func (o *SecretsSecretMetadata) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*SecretsSecretMetadata) SetId

func (o *SecretsSecretMetadata) SetId(v string)

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

func (*SecretsSecretMetadata) SetName

func (o *SecretsSecretMetadata) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (SecretsSecretMetadata) ToMap

func (o SecretsSecretMetadata) ToMap() (map[string]interface{}, error)

type SecretsSecretSpec

type SecretsSecretSpec struct {
	Provider *SecretProvider `json:"provider,omitempty"`
	Local    *SecretLocal    `json:"local,omitempty"`
}

SecretsSecretSpec struct for SecretsSecretSpec

func NewSecretsSecretSpec

func NewSecretsSecretSpec() *SecretsSecretSpec

NewSecretsSecretSpec instantiates a new SecretsSecretSpec 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 NewSecretsSecretSpecWithDefaults

func NewSecretsSecretSpecWithDefaults() *SecretsSecretSpec

NewSecretsSecretSpecWithDefaults instantiates a new SecretsSecretSpec 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 (*SecretsSecretSpec) GetLocal

func (o *SecretsSecretSpec) GetLocal() SecretLocal

GetLocal returns the Local field value if set, zero value otherwise.

func (*SecretsSecretSpec) GetLocalOk

func (o *SecretsSecretSpec) GetLocalOk() (*SecretLocal, bool)

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

func (*SecretsSecretSpec) GetProvider

func (o *SecretsSecretSpec) GetProvider() SecretProvider

GetProvider returns the Provider field value if set, zero value otherwise.

func (*SecretsSecretSpec) GetProviderOk

func (o *SecretsSecretSpec) GetProviderOk() (*SecretProvider, bool)

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

func (*SecretsSecretSpec) HasLocal

func (o *SecretsSecretSpec) HasLocal() bool

HasLocal returns a boolean if a field has been set.

func (*SecretsSecretSpec) HasProvider

func (o *SecretsSecretSpec) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (SecretsSecretSpec) MarshalJSON

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

func (*SecretsSecretSpec) SetLocal

func (o *SecretsSecretSpec) SetLocal(v SecretLocal)

SetLocal gets a reference to the given SecretLocal and assigns it to the Local field.

func (*SecretsSecretSpec) SetProvider

func (o *SecretsSecretSpec) SetProvider(v SecretProvider)

SetProvider gets a reference to the given SecretProvider and assigns it to the Provider field.

func (SecretsSecretSpec) ToMap

func (o SecretsSecretSpec) ToMap() (map[string]interface{}, error)

type SecretsSetSecretKeyBody added in v0.7.0

type SecretsSetSecretKeyBody struct {
	Value      *string                  `json:"value,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
}

SecretsSetSecretKeyBody struct for SecretsSetSecretKeyBody

func NewSecretsSetSecretKeyBody added in v0.7.0

func NewSecretsSetSecretKeyBody() *SecretsSetSecretKeyBody

NewSecretsSetSecretKeyBody instantiates a new SecretsSetSecretKeyBody 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 NewSecretsSetSecretKeyBodyWithDefaults added in v0.7.0

func NewSecretsSetSecretKeyBodyWithDefaults() *SecretsSetSecretKeyBody

NewSecretsSetSecretKeyBodyWithDefaults instantiates a new SecretsSetSecretKeyBody 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 (*SecretsSetSecretKeyBody) GetDomainId added in v0.7.0

func (o *SecretsSetSecretKeyBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*SecretsSetSecretKeyBody) GetDomainIdOk added in v0.7.0

func (o *SecretsSetSecretKeyBody) GetDomainIdOk() (*string, bool)

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

func (*SecretsSetSecretKeyBody) GetDomainType added in v0.7.0

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*SecretsSetSecretKeyBody) GetDomainTypeOk added in v0.7.0

func (o *SecretsSetSecretKeyBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*SecretsSetSecretKeyBody) GetValue added in v0.7.0

func (o *SecretsSetSecretKeyBody) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*SecretsSetSecretKeyBody) GetValueOk added in v0.7.0

func (o *SecretsSetSecretKeyBody) GetValueOk() (*string, bool)

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

func (*SecretsSetSecretKeyBody) HasDomainId added in v0.7.0

func (o *SecretsSetSecretKeyBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*SecretsSetSecretKeyBody) HasDomainType added in v0.7.0

func (o *SecretsSetSecretKeyBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*SecretsSetSecretKeyBody) HasValue added in v0.7.0

func (o *SecretsSetSecretKeyBody) HasValue() bool

HasValue returns a boolean if a field has been set.

func (SecretsSetSecretKeyBody) MarshalJSON added in v0.7.0

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

func (*SecretsSetSecretKeyBody) SetDomainId added in v0.7.0

func (o *SecretsSetSecretKeyBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*SecretsSetSecretKeyBody) SetDomainType added in v0.7.0

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*SecretsSetSecretKeyBody) SetValue added in v0.7.0

func (o *SecretsSetSecretKeyBody) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (SecretsSetSecretKeyBody) ToMap added in v0.7.0

func (o SecretsSetSecretKeyBody) ToMap() (map[string]interface{}, error)

type SecretsSetSecretKeyResponse added in v0.7.0

type SecretsSetSecretKeyResponse struct {
	Secret *SecretsSecret `json:"secret,omitempty"`
}

SecretsSetSecretKeyResponse struct for SecretsSetSecretKeyResponse

func NewSecretsSetSecretKeyResponse added in v0.7.0

func NewSecretsSetSecretKeyResponse() *SecretsSetSecretKeyResponse

NewSecretsSetSecretKeyResponse instantiates a new SecretsSetSecretKeyResponse 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 NewSecretsSetSecretKeyResponseWithDefaults added in v0.7.0

func NewSecretsSetSecretKeyResponseWithDefaults() *SecretsSetSecretKeyResponse

NewSecretsSetSecretKeyResponseWithDefaults instantiates a new SecretsSetSecretKeyResponse 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 (*SecretsSetSecretKeyResponse) GetSecret added in v0.7.0

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

func (*SecretsSetSecretKeyResponse) GetSecretOk added in v0.7.0

func (o *SecretsSetSecretKeyResponse) GetSecretOk() (*SecretsSecret, 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 (*SecretsSetSecretKeyResponse) HasSecret added in v0.7.0

func (o *SecretsSetSecretKeyResponse) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsSetSecretKeyResponse) MarshalJSON added in v0.7.0

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

func (*SecretsSetSecretKeyResponse) SetSecret added in v0.7.0

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

func (SecretsSetSecretKeyResponse) ToMap added in v0.7.0

func (o SecretsSetSecretKeyResponse) ToMap() (map[string]interface{}, error)

type SecretsUpdateSecretBody

type SecretsUpdateSecretBody struct {
	Secret     *SecretsSecret           `json:"secret,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
}

SecretsUpdateSecretBody struct for SecretsUpdateSecretBody

func NewSecretsUpdateSecretBody

func NewSecretsUpdateSecretBody() *SecretsUpdateSecretBody

NewSecretsUpdateSecretBody instantiates a new SecretsUpdateSecretBody 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 NewSecretsUpdateSecretBodyWithDefaults

func NewSecretsUpdateSecretBodyWithDefaults() *SecretsUpdateSecretBody

NewSecretsUpdateSecretBodyWithDefaults instantiates a new SecretsUpdateSecretBody 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 (*SecretsUpdateSecretBody) GetDomainId

func (o *SecretsUpdateSecretBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*SecretsUpdateSecretBody) GetDomainIdOk

func (o *SecretsUpdateSecretBody) GetDomainIdOk() (*string, bool)

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

func (*SecretsUpdateSecretBody) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*SecretsUpdateSecretBody) GetDomainTypeOk

func (o *SecretsUpdateSecretBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*SecretsUpdateSecretBody) GetSecret

func (o *SecretsUpdateSecretBody) GetSecret() SecretsSecret

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

func (*SecretsUpdateSecretBody) GetSecretOk

func (o *SecretsUpdateSecretBody) GetSecretOk() (*SecretsSecret, 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 (*SecretsUpdateSecretBody) HasDomainId

func (o *SecretsUpdateSecretBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*SecretsUpdateSecretBody) HasDomainType

func (o *SecretsUpdateSecretBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*SecretsUpdateSecretBody) HasSecret

func (o *SecretsUpdateSecretBody) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsUpdateSecretBody) MarshalJSON

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

func (*SecretsUpdateSecretBody) SetDomainId

func (o *SecretsUpdateSecretBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*SecretsUpdateSecretBody) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*SecretsUpdateSecretBody) SetSecret

func (o *SecretsUpdateSecretBody) SetSecret(v SecretsSecret)

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

func (SecretsUpdateSecretBody) ToMap

func (o SecretsUpdateSecretBody) ToMap() (map[string]interface{}, error)

type SecretsUpdateSecretNameBody added in v0.7.0

type SecretsUpdateSecretNameBody struct {
	Name       *string                  `json:"name,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
}

SecretsUpdateSecretNameBody struct for SecretsUpdateSecretNameBody

func NewSecretsUpdateSecretNameBody added in v0.7.0

func NewSecretsUpdateSecretNameBody() *SecretsUpdateSecretNameBody

NewSecretsUpdateSecretNameBody instantiates a new SecretsUpdateSecretNameBody 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 NewSecretsUpdateSecretNameBodyWithDefaults added in v0.7.0

func NewSecretsUpdateSecretNameBodyWithDefaults() *SecretsUpdateSecretNameBody

NewSecretsUpdateSecretNameBodyWithDefaults instantiates a new SecretsUpdateSecretNameBody 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 (*SecretsUpdateSecretNameBody) GetDomainId added in v0.7.0

func (o *SecretsUpdateSecretNameBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*SecretsUpdateSecretNameBody) GetDomainIdOk added in v0.7.0

func (o *SecretsUpdateSecretNameBody) GetDomainIdOk() (*string, bool)

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

func (*SecretsUpdateSecretNameBody) GetDomainType added in v0.7.0

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*SecretsUpdateSecretNameBody) GetDomainTypeOk added in v0.7.0

func (o *SecretsUpdateSecretNameBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*SecretsUpdateSecretNameBody) GetName added in v0.7.0

func (o *SecretsUpdateSecretNameBody) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SecretsUpdateSecretNameBody) GetNameOk added in v0.7.0

func (o *SecretsUpdateSecretNameBody) GetNameOk() (*string, bool)

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

func (*SecretsUpdateSecretNameBody) HasDomainId added in v0.7.0

func (o *SecretsUpdateSecretNameBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*SecretsUpdateSecretNameBody) HasDomainType added in v0.7.0

func (o *SecretsUpdateSecretNameBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*SecretsUpdateSecretNameBody) HasName added in v0.7.0

func (o *SecretsUpdateSecretNameBody) HasName() bool

HasName returns a boolean if a field has been set.

func (SecretsUpdateSecretNameBody) MarshalJSON added in v0.7.0

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

func (*SecretsUpdateSecretNameBody) SetDomainId added in v0.7.0

func (o *SecretsUpdateSecretNameBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*SecretsUpdateSecretNameBody) SetDomainType added in v0.7.0

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*SecretsUpdateSecretNameBody) SetName added in v0.7.0

func (o *SecretsUpdateSecretNameBody) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (SecretsUpdateSecretNameBody) ToMap added in v0.7.0

func (o SecretsUpdateSecretNameBody) ToMap() (map[string]interface{}, error)

type SecretsUpdateSecretNameResponse added in v0.7.0

type SecretsUpdateSecretNameResponse struct {
	Secret *SecretsSecret `json:"secret,omitempty"`
}

SecretsUpdateSecretNameResponse struct for SecretsUpdateSecretNameResponse

func NewSecretsUpdateSecretNameResponse added in v0.7.0

func NewSecretsUpdateSecretNameResponse() *SecretsUpdateSecretNameResponse

NewSecretsUpdateSecretNameResponse instantiates a new SecretsUpdateSecretNameResponse 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 NewSecretsUpdateSecretNameResponseWithDefaults added in v0.7.0

func NewSecretsUpdateSecretNameResponseWithDefaults() *SecretsUpdateSecretNameResponse

NewSecretsUpdateSecretNameResponseWithDefaults instantiates a new SecretsUpdateSecretNameResponse 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 (*SecretsUpdateSecretNameResponse) GetSecret added in v0.7.0

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

func (*SecretsUpdateSecretNameResponse) GetSecretOk added in v0.7.0

func (o *SecretsUpdateSecretNameResponse) GetSecretOk() (*SecretsSecret, 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 (*SecretsUpdateSecretNameResponse) HasSecret added in v0.7.0

func (o *SecretsUpdateSecretNameResponse) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsUpdateSecretNameResponse) MarshalJSON added in v0.7.0

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

func (*SecretsUpdateSecretNameResponse) SetSecret added in v0.7.0

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

func (SecretsUpdateSecretNameResponse) ToMap added in v0.7.0

func (o SecretsUpdateSecretNameResponse) ToMap() (map[string]interface{}, error)

type SecretsUpdateSecretResponse

type SecretsUpdateSecretResponse struct {
	Secret *SecretsSecret `json:"secret,omitempty"`
}

SecretsUpdateSecretResponse struct for SecretsUpdateSecretResponse

func NewSecretsUpdateSecretResponse

func NewSecretsUpdateSecretResponse() *SecretsUpdateSecretResponse

NewSecretsUpdateSecretResponse instantiates a new SecretsUpdateSecretResponse 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 NewSecretsUpdateSecretResponseWithDefaults

func NewSecretsUpdateSecretResponseWithDefaults() *SecretsUpdateSecretResponse

NewSecretsUpdateSecretResponseWithDefaults instantiates a new SecretsUpdateSecretResponse 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 (*SecretsUpdateSecretResponse) GetSecret

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

func (*SecretsUpdateSecretResponse) GetSecretOk

func (o *SecretsUpdateSecretResponse) GetSecretOk() (*SecretsSecret, 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 (*SecretsUpdateSecretResponse) HasSecret

func (o *SecretsUpdateSecretResponse) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsUpdateSecretResponse) MarshalJSON

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

func (*SecretsUpdateSecretResponse) SetSecret

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

func (SecretsUpdateSecretResponse) ToMap

func (o SecretsUpdateSecretResponse) ToMap() (map[string]interface{}, error)

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 SuperplaneBlueprintsOutputChannel

type SuperplaneBlueprintsOutputChannel struct {
	Name              *string `json:"name,omitempty"`
	NodeId            *string `json:"nodeId,omitempty"`
	NodeOutputChannel *string `json:"nodeOutputChannel,omitempty"`
}

SuperplaneBlueprintsOutputChannel struct for SuperplaneBlueprintsOutputChannel

func NewSuperplaneBlueprintsOutputChannel

func NewSuperplaneBlueprintsOutputChannel() *SuperplaneBlueprintsOutputChannel

NewSuperplaneBlueprintsOutputChannel instantiates a new SuperplaneBlueprintsOutputChannel 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 NewSuperplaneBlueprintsOutputChannelWithDefaults

func NewSuperplaneBlueprintsOutputChannelWithDefaults() *SuperplaneBlueprintsOutputChannel

NewSuperplaneBlueprintsOutputChannelWithDefaults instantiates a new SuperplaneBlueprintsOutputChannel 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 (*SuperplaneBlueprintsOutputChannel) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*SuperplaneBlueprintsOutputChannel) GetNameOk

func (o *SuperplaneBlueprintsOutputChannel) GetNameOk() (*string, bool)

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

func (*SuperplaneBlueprintsOutputChannel) GetNodeId

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*SuperplaneBlueprintsOutputChannel) GetNodeIdOk

func (o *SuperplaneBlueprintsOutputChannel) GetNodeIdOk() (*string, bool)

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

func (*SuperplaneBlueprintsOutputChannel) GetNodeOutputChannel

func (o *SuperplaneBlueprintsOutputChannel) GetNodeOutputChannel() string

GetNodeOutputChannel returns the NodeOutputChannel field value if set, zero value otherwise.

func (*SuperplaneBlueprintsOutputChannel) GetNodeOutputChannelOk

func (o *SuperplaneBlueprintsOutputChannel) GetNodeOutputChannelOk() (*string, bool)

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

func (*SuperplaneBlueprintsOutputChannel) HasName

HasName returns a boolean if a field has been set.

func (*SuperplaneBlueprintsOutputChannel) HasNodeId

func (o *SuperplaneBlueprintsOutputChannel) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*SuperplaneBlueprintsOutputChannel) HasNodeOutputChannel

func (o *SuperplaneBlueprintsOutputChannel) HasNodeOutputChannel() bool

HasNodeOutputChannel returns a boolean if a field has been set.

func (SuperplaneBlueprintsOutputChannel) MarshalJSON

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

func (*SuperplaneBlueprintsOutputChannel) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*SuperplaneBlueprintsOutputChannel) SetNodeId

func (o *SuperplaneBlueprintsOutputChannel) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*SuperplaneBlueprintsOutputChannel) SetNodeOutputChannel

func (o *SuperplaneBlueprintsOutputChannel) SetNodeOutputChannel(v string)

SetNodeOutputChannel gets a reference to the given string and assigns it to the NodeOutputChannel field.

func (SuperplaneBlueprintsOutputChannel) ToMap

func (o SuperplaneBlueprintsOutputChannel) ToMap() (map[string]interface{}, error)

type SuperplaneBlueprintsUserRef

type SuperplaneBlueprintsUserRef struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

SuperplaneBlueprintsUserRef struct for SuperplaneBlueprintsUserRef

func NewSuperplaneBlueprintsUserRef

func NewSuperplaneBlueprintsUserRef() *SuperplaneBlueprintsUserRef

NewSuperplaneBlueprintsUserRef instantiates a new SuperplaneBlueprintsUserRef 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 NewSuperplaneBlueprintsUserRefWithDefaults

func NewSuperplaneBlueprintsUserRefWithDefaults() *SuperplaneBlueprintsUserRef

NewSuperplaneBlueprintsUserRefWithDefaults instantiates a new SuperplaneBlueprintsUserRef 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 (*SuperplaneBlueprintsUserRef) GetId

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

func (*SuperplaneBlueprintsUserRef) GetIdOk

func (o *SuperplaneBlueprintsUserRef) 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 (*SuperplaneBlueprintsUserRef) GetName

func (o *SuperplaneBlueprintsUserRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SuperplaneBlueprintsUserRef) GetNameOk

func (o *SuperplaneBlueprintsUserRef) GetNameOk() (*string, bool)

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

func (*SuperplaneBlueprintsUserRef) HasId

func (o *SuperplaneBlueprintsUserRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*SuperplaneBlueprintsUserRef) HasName

func (o *SuperplaneBlueprintsUserRef) HasName() bool

HasName returns a boolean if a field has been set.

func (SuperplaneBlueprintsUserRef) MarshalJSON

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

func (*SuperplaneBlueprintsUserRef) SetId

func (o *SuperplaneBlueprintsUserRef) SetId(v string)

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

func (*SuperplaneBlueprintsUserRef) SetName

func (o *SuperplaneBlueprintsUserRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (SuperplaneBlueprintsUserRef) ToMap

func (o SuperplaneBlueprintsUserRef) ToMap() (map[string]interface{}, error)

type SuperplaneCanvasesUserRef added in v0.6.0

type SuperplaneCanvasesUserRef struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

SuperplaneCanvasesUserRef struct for SuperplaneCanvasesUserRef

func NewSuperplaneCanvasesUserRef added in v0.6.0

func NewSuperplaneCanvasesUserRef() *SuperplaneCanvasesUserRef

NewSuperplaneCanvasesUserRef instantiates a new SuperplaneCanvasesUserRef 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 NewSuperplaneCanvasesUserRefWithDefaults added in v0.6.0

func NewSuperplaneCanvasesUserRefWithDefaults() *SuperplaneCanvasesUserRef

NewSuperplaneCanvasesUserRefWithDefaults instantiates a new SuperplaneCanvasesUserRef 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 (*SuperplaneCanvasesUserRef) GetId added in v0.6.0

func (o *SuperplaneCanvasesUserRef) GetId() string

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

func (*SuperplaneCanvasesUserRef) GetIdOk added in v0.6.0

func (o *SuperplaneCanvasesUserRef) 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 (*SuperplaneCanvasesUserRef) GetName added in v0.6.0

func (o *SuperplaneCanvasesUserRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SuperplaneCanvasesUserRef) GetNameOk added in v0.6.0

func (o *SuperplaneCanvasesUserRef) GetNameOk() (*string, bool)

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

func (*SuperplaneCanvasesUserRef) HasId added in v0.6.0

func (o *SuperplaneCanvasesUserRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*SuperplaneCanvasesUserRef) HasName added in v0.6.0

func (o *SuperplaneCanvasesUserRef) HasName() bool

HasName returns a boolean if a field has been set.

func (SuperplaneCanvasesUserRef) MarshalJSON added in v0.6.0

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

func (*SuperplaneCanvasesUserRef) SetId added in v0.6.0

func (o *SuperplaneCanvasesUserRef) SetId(v string)

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

func (*SuperplaneCanvasesUserRef) SetName added in v0.6.0

func (o *SuperplaneCanvasesUserRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (SuperplaneCanvasesUserRef) ToMap added in v0.6.0

func (o SuperplaneCanvasesUserRef) ToMap() (map[string]interface{}, error)

type SuperplaneComponentsOutputChannel

type SuperplaneComponentsOutputChannel struct {
	Name        *string `json:"name,omitempty"`
	Label       *string `json:"label,omitempty"`
	Description *string `json:"description,omitempty"`
}

SuperplaneComponentsOutputChannel struct for SuperplaneComponentsOutputChannel

func NewSuperplaneComponentsOutputChannel

func NewSuperplaneComponentsOutputChannel() *SuperplaneComponentsOutputChannel

NewSuperplaneComponentsOutputChannel instantiates a new SuperplaneComponentsOutputChannel 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 NewSuperplaneComponentsOutputChannelWithDefaults

func NewSuperplaneComponentsOutputChannelWithDefaults() *SuperplaneComponentsOutputChannel

NewSuperplaneComponentsOutputChannelWithDefaults instantiates a new SuperplaneComponentsOutputChannel 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 (*SuperplaneComponentsOutputChannel) GetDescription

func (o *SuperplaneComponentsOutputChannel) GetDescription() string

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

func (*SuperplaneComponentsOutputChannel) GetDescriptionOk

func (o *SuperplaneComponentsOutputChannel) 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 (*SuperplaneComponentsOutputChannel) GetLabel

GetLabel returns the Label field value if set, zero value otherwise.

func (*SuperplaneComponentsOutputChannel) GetLabelOk

func (o *SuperplaneComponentsOutputChannel) GetLabelOk() (*string, bool)

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

func (*SuperplaneComponentsOutputChannel) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*SuperplaneComponentsOutputChannel) GetNameOk

func (o *SuperplaneComponentsOutputChannel) GetNameOk() (*string, bool)

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

func (*SuperplaneComponentsOutputChannel) HasDescription

func (o *SuperplaneComponentsOutputChannel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SuperplaneComponentsOutputChannel) HasLabel

HasLabel returns a boolean if a field has been set.

func (*SuperplaneComponentsOutputChannel) HasName

HasName returns a boolean if a field has been set.

func (SuperplaneComponentsOutputChannel) MarshalJSON

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

func (*SuperplaneComponentsOutputChannel) SetDescription

func (o *SuperplaneComponentsOutputChannel) SetDescription(v string)

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

func (*SuperplaneComponentsOutputChannel) SetLabel

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*SuperplaneComponentsOutputChannel) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (SuperplaneComponentsOutputChannel) ToMap

func (o SuperplaneComponentsOutputChannel) ToMap() (map[string]interface{}, error)

type SuperplaneIntegrationsListIntegrationsResponse added in v0.5.0

type SuperplaneIntegrationsListIntegrationsResponse struct {
	Integrations []IntegrationsIntegrationDefinition `json:"integrations,omitempty"`
}

SuperplaneIntegrationsListIntegrationsResponse struct for SuperplaneIntegrationsListIntegrationsResponse

func NewSuperplaneIntegrationsListIntegrationsResponse added in v0.5.0

func NewSuperplaneIntegrationsListIntegrationsResponse() *SuperplaneIntegrationsListIntegrationsResponse

NewSuperplaneIntegrationsListIntegrationsResponse instantiates a new SuperplaneIntegrationsListIntegrationsResponse 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 NewSuperplaneIntegrationsListIntegrationsResponseWithDefaults added in v0.5.0

func NewSuperplaneIntegrationsListIntegrationsResponseWithDefaults() *SuperplaneIntegrationsListIntegrationsResponse

NewSuperplaneIntegrationsListIntegrationsResponseWithDefaults instantiates a new SuperplaneIntegrationsListIntegrationsResponse 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 (*SuperplaneIntegrationsListIntegrationsResponse) GetIntegrations added in v0.5.0

GetIntegrations returns the Integrations field value if set, zero value otherwise.

func (*SuperplaneIntegrationsListIntegrationsResponse) GetIntegrationsOk added in v0.5.0

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

func (*SuperplaneIntegrationsListIntegrationsResponse) HasIntegrations added in v0.5.0

HasIntegrations returns a boolean if a field has been set.

func (SuperplaneIntegrationsListIntegrationsResponse) MarshalJSON added in v0.5.0

func (*SuperplaneIntegrationsListIntegrationsResponse) SetIntegrations added in v0.5.0

SetIntegrations gets a reference to the given []IntegrationsIntegrationDefinition and assigns it to the Integrations field.

func (SuperplaneIntegrationsListIntegrationsResponse) ToMap added in v0.5.0

func (o SuperplaneIntegrationsListIntegrationsResponse) ToMap() (map[string]interface{}, error)

type SuperplaneMeUser

type SuperplaneMeUser struct {
	Id             *string    `json:"id,omitempty"`
	Email          *string    `json:"email,omitempty"`
	OrganizationId *string    `json:"organizationId,omitempty"`
	CreatedAt      *time.Time `json:"createdAt,omitempty"`
	HasToken       *bool      `json:"hasToken,omitempty"`
}

SuperplaneMeUser struct for SuperplaneMeUser

func NewSuperplaneMeUser

func NewSuperplaneMeUser() *SuperplaneMeUser

NewSuperplaneMeUser instantiates a new SuperplaneMeUser 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 NewSuperplaneMeUserWithDefaults

func NewSuperplaneMeUserWithDefaults() *SuperplaneMeUser

NewSuperplaneMeUserWithDefaults instantiates a new SuperplaneMeUser 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 (*SuperplaneMeUser) GetCreatedAt

func (o *SuperplaneMeUser) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*SuperplaneMeUser) GetCreatedAtOk

func (o *SuperplaneMeUser) 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 (*SuperplaneMeUser) GetEmail

func (o *SuperplaneMeUser) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*SuperplaneMeUser) GetEmailOk

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

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

func (*SuperplaneMeUser) GetHasToken

func (o *SuperplaneMeUser) GetHasToken() bool

GetHasToken returns the HasToken field value if set, zero value otherwise.

func (*SuperplaneMeUser) GetHasTokenOk

func (o *SuperplaneMeUser) GetHasTokenOk() (*bool, bool)

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

func (*SuperplaneMeUser) GetId

func (o *SuperplaneMeUser) GetId() string

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

func (*SuperplaneMeUser) GetIdOk

func (o *SuperplaneMeUser) 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 (*SuperplaneMeUser) GetOrganizationId

func (o *SuperplaneMeUser) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*SuperplaneMeUser) GetOrganizationIdOk

func (o *SuperplaneMeUser) GetOrganizationIdOk() (*string, bool)

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

func (*SuperplaneMeUser) HasCreatedAt

func (o *SuperplaneMeUser) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SuperplaneMeUser) HasEmail

func (o *SuperplaneMeUser) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*SuperplaneMeUser) HasHasToken

func (o *SuperplaneMeUser) HasHasToken() bool

HasHasToken returns a boolean if a field has been set.

func (*SuperplaneMeUser) HasId

func (o *SuperplaneMeUser) HasId() bool

HasId returns a boolean if a field has been set.

func (*SuperplaneMeUser) HasOrganizationId

func (o *SuperplaneMeUser) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (SuperplaneMeUser) MarshalJSON

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

func (*SuperplaneMeUser) SetCreatedAt

func (o *SuperplaneMeUser) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*SuperplaneMeUser) SetEmail

func (o *SuperplaneMeUser) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*SuperplaneMeUser) SetHasToken

func (o *SuperplaneMeUser) SetHasToken(v bool)

SetHasToken gets a reference to the given bool and assigns it to the HasToken field.

func (*SuperplaneMeUser) SetId

func (o *SuperplaneMeUser) SetId(v string)

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

func (*SuperplaneMeUser) SetOrganizationId

func (o *SuperplaneMeUser) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (SuperplaneMeUser) ToMap

func (o SuperplaneMeUser) ToMap() (map[string]interface{}, error)

type SuperplaneOrganizationsListIntegrationsResponse added in v0.5.0

type SuperplaneOrganizationsListIntegrationsResponse struct {
	Integrations []OrganizationsIntegration `json:"integrations,omitempty"`
}

SuperplaneOrganizationsListIntegrationsResponse struct for SuperplaneOrganizationsListIntegrationsResponse

func NewSuperplaneOrganizationsListIntegrationsResponse added in v0.5.0

func NewSuperplaneOrganizationsListIntegrationsResponse() *SuperplaneOrganizationsListIntegrationsResponse

NewSuperplaneOrganizationsListIntegrationsResponse instantiates a new SuperplaneOrganizationsListIntegrationsResponse 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 NewSuperplaneOrganizationsListIntegrationsResponseWithDefaults added in v0.5.0

func NewSuperplaneOrganizationsListIntegrationsResponseWithDefaults() *SuperplaneOrganizationsListIntegrationsResponse

NewSuperplaneOrganizationsListIntegrationsResponseWithDefaults instantiates a new SuperplaneOrganizationsListIntegrationsResponse 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 (*SuperplaneOrganizationsListIntegrationsResponse) GetIntegrations added in v0.5.0

GetIntegrations returns the Integrations field value if set, zero value otherwise.

func (*SuperplaneOrganizationsListIntegrationsResponse) GetIntegrationsOk added in v0.5.0

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

func (*SuperplaneOrganizationsListIntegrationsResponse) HasIntegrations added in v0.5.0

HasIntegrations returns a boolean if a field has been set.

func (SuperplaneOrganizationsListIntegrationsResponse) MarshalJSON added in v0.5.0

func (*SuperplaneOrganizationsListIntegrationsResponse) SetIntegrations added in v0.5.0

SetIntegrations gets a reference to the given []OrganizationsIntegration and assigns it to the Integrations field.

func (SuperplaneOrganizationsListIntegrationsResponse) ToMap added in v0.5.0

func (o SuperplaneOrganizationsListIntegrationsResponse) ToMap() (map[string]interface{}, error)

type SuperplaneUsersUser

type SuperplaneUsersUser struct {
	Metadata *UsersUserMetadata `json:"metadata,omitempty"`
	Spec     *UsersUserSpec     `json:"spec,omitempty"`
	Status   *UsersUserStatus   `json:"status,omitempty"`
}

SuperplaneUsersUser struct for SuperplaneUsersUser

func NewSuperplaneUsersUser

func NewSuperplaneUsersUser() *SuperplaneUsersUser

NewSuperplaneUsersUser instantiates a new SuperplaneUsersUser 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 NewSuperplaneUsersUserWithDefaults

func NewSuperplaneUsersUserWithDefaults() *SuperplaneUsersUser

NewSuperplaneUsersUserWithDefaults instantiates a new SuperplaneUsersUser 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 (*SuperplaneUsersUser) GetMetadata

func (o *SuperplaneUsersUser) GetMetadata() UsersUserMetadata

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

func (*SuperplaneUsersUser) GetMetadataOk

func (o *SuperplaneUsersUser) GetMetadataOk() (*UsersUserMetadata, 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 (*SuperplaneUsersUser) GetSpec

func (o *SuperplaneUsersUser) GetSpec() UsersUserSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*SuperplaneUsersUser) GetSpecOk

func (o *SuperplaneUsersUser) GetSpecOk() (*UsersUserSpec, bool)

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

func (*SuperplaneUsersUser) GetStatus

func (o *SuperplaneUsersUser) GetStatus() UsersUserStatus

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

func (*SuperplaneUsersUser) GetStatusOk

func (o *SuperplaneUsersUser) GetStatusOk() (*UsersUserStatus, 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 (*SuperplaneUsersUser) HasMetadata

func (o *SuperplaneUsersUser) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*SuperplaneUsersUser) HasSpec

func (o *SuperplaneUsersUser) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*SuperplaneUsersUser) HasStatus

func (o *SuperplaneUsersUser) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (SuperplaneUsersUser) MarshalJSON

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

func (*SuperplaneUsersUser) SetMetadata

func (o *SuperplaneUsersUser) SetMetadata(v UsersUserMetadata)

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

func (*SuperplaneUsersUser) SetSpec

func (o *SuperplaneUsersUser) SetSpec(v UsersUserSpec)

SetSpec gets a reference to the given UsersUserSpec and assigns it to the Spec field.

func (*SuperplaneUsersUser) SetStatus

func (o *SuperplaneUsersUser) SetStatus(v UsersUserStatus)

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

func (SuperplaneUsersUser) ToMap

func (o SuperplaneUsersUser) ToMap() (map[string]interface{}, error)

type TriggerAPIService

type TriggerAPIService service

TriggerAPIService TriggerAPI service

func (*TriggerAPIService) TriggersDescribeTrigger

func (a *TriggerAPIService) TriggersDescribeTrigger(ctx context.Context, name string) ApiTriggersDescribeTriggerRequest

TriggersDescribeTrigger Describe trigger

Returns a trigger by its name

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

func (*TriggerAPIService) TriggersDescribeTriggerExecute

Execute executes the request

@return TriggersDescribeTriggerResponse

func (*TriggerAPIService) TriggersListTriggers

func (a *TriggerAPIService) TriggersListTriggers(ctx context.Context) ApiTriggersListTriggersRequest

TriggersListTriggers List triggers

Returns a list of all available triggers

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

func (*TriggerAPIService) TriggersListTriggersExecute

Execute executes the request

@return TriggersListTriggersResponse

type TriggersDescribeTriggerResponse

type TriggersDescribeTriggerResponse struct {
	Trigger *TriggersTrigger `json:"trigger,omitempty"`
}

TriggersDescribeTriggerResponse struct for TriggersDescribeTriggerResponse

func NewTriggersDescribeTriggerResponse

func NewTriggersDescribeTriggerResponse() *TriggersDescribeTriggerResponse

NewTriggersDescribeTriggerResponse instantiates a new TriggersDescribeTriggerResponse 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 NewTriggersDescribeTriggerResponseWithDefaults

func NewTriggersDescribeTriggerResponseWithDefaults() *TriggersDescribeTriggerResponse

NewTriggersDescribeTriggerResponseWithDefaults instantiates a new TriggersDescribeTriggerResponse 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 (*TriggersDescribeTriggerResponse) GetTrigger

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*TriggersDescribeTriggerResponse) GetTriggerOk

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

func (*TriggersDescribeTriggerResponse) HasTrigger

func (o *TriggersDescribeTriggerResponse) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (TriggersDescribeTriggerResponse) MarshalJSON

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

func (*TriggersDescribeTriggerResponse) SetTrigger

SetTrigger gets a reference to the given TriggersTrigger and assigns it to the Trigger field.

func (TriggersDescribeTriggerResponse) ToMap

func (o TriggersDescribeTriggerResponse) ToMap() (map[string]interface{}, error)

type TriggersListTriggersResponse

type TriggersListTriggersResponse struct {
	Triggers []TriggersTrigger `json:"triggers,omitempty"`
}

TriggersListTriggersResponse struct for TriggersListTriggersResponse

func NewTriggersListTriggersResponse

func NewTriggersListTriggersResponse() *TriggersListTriggersResponse

NewTriggersListTriggersResponse instantiates a new TriggersListTriggersResponse 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 NewTriggersListTriggersResponseWithDefaults

func NewTriggersListTriggersResponseWithDefaults() *TriggersListTriggersResponse

NewTriggersListTriggersResponseWithDefaults instantiates a new TriggersListTriggersResponse 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 (*TriggersListTriggersResponse) GetTriggers

func (o *TriggersListTriggersResponse) GetTriggers() []TriggersTrigger

GetTriggers returns the Triggers field value if set, zero value otherwise.

func (*TriggersListTriggersResponse) GetTriggersOk

func (o *TriggersListTriggersResponse) GetTriggersOk() ([]TriggersTrigger, bool)

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

func (*TriggersListTriggersResponse) HasTriggers

func (o *TriggersListTriggersResponse) HasTriggers() bool

HasTriggers returns a boolean if a field has been set.

func (TriggersListTriggersResponse) MarshalJSON

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

func (*TriggersListTriggersResponse) SetTriggers

func (o *TriggersListTriggersResponse) SetTriggers(v []TriggersTrigger)

SetTriggers gets a reference to the given []TriggersTrigger and assigns it to the Triggers field.

func (TriggersListTriggersResponse) ToMap

func (o TriggersListTriggersResponse) ToMap() (map[string]interface{}, error)

type TriggersTrigger

type TriggersTrigger struct {
	Name          *string                `json:"name,omitempty"`
	Label         *string                `json:"label,omitempty"`
	Description   *string                `json:"description,omitempty"`
	Icon          *string                `json:"icon,omitempty"`
	Color         *string                `json:"color,omitempty"`
	Configuration []ConfigurationField   `json:"configuration,omitempty"`
	ExampleData   map[string]interface{} `json:"exampleData,omitempty"`
}

TriggersTrigger struct for TriggersTrigger

func NewTriggersTrigger

func NewTriggersTrigger() *TriggersTrigger

NewTriggersTrigger instantiates a new TriggersTrigger 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 NewTriggersTriggerWithDefaults

func NewTriggersTriggerWithDefaults() *TriggersTrigger

NewTriggersTriggerWithDefaults instantiates a new TriggersTrigger 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 (*TriggersTrigger) GetColor

func (o *TriggersTrigger) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*TriggersTrigger) GetColorOk

func (o *TriggersTrigger) GetColorOk() (*string, bool)

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

func (*TriggersTrigger) GetConfiguration

func (o *TriggersTrigger) GetConfiguration() []ConfigurationField

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*TriggersTrigger) GetConfigurationOk

func (o *TriggersTrigger) GetConfigurationOk() ([]ConfigurationField, bool)

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

func (*TriggersTrigger) GetDescription

func (o *TriggersTrigger) GetDescription() string

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

func (*TriggersTrigger) GetDescriptionOk

func (o *TriggersTrigger) 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 (*TriggersTrigger) GetExampleData added in v0.0.45

func (o *TriggersTrigger) GetExampleData() map[string]interface{}

GetExampleData returns the ExampleData field value if set, zero value otherwise.

func (*TriggersTrigger) GetExampleDataOk added in v0.0.45

func (o *TriggersTrigger) GetExampleDataOk() (map[string]interface{}, bool)

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

func (*TriggersTrigger) GetIcon

func (o *TriggersTrigger) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*TriggersTrigger) GetIconOk

func (o *TriggersTrigger) GetIconOk() (*string, bool)

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

func (*TriggersTrigger) GetLabel

func (o *TriggersTrigger) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*TriggersTrigger) GetLabelOk

func (o *TriggersTrigger) GetLabelOk() (*string, bool)

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

func (*TriggersTrigger) GetName

func (o *TriggersTrigger) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TriggersTrigger) GetNameOk

func (o *TriggersTrigger) GetNameOk() (*string, bool)

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

func (*TriggersTrigger) HasColor

func (o *TriggersTrigger) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*TriggersTrigger) HasConfiguration

func (o *TriggersTrigger) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*TriggersTrigger) HasDescription

func (o *TriggersTrigger) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TriggersTrigger) HasExampleData added in v0.0.45

func (o *TriggersTrigger) HasExampleData() bool

HasExampleData returns a boolean if a field has been set.

func (*TriggersTrigger) HasIcon

func (o *TriggersTrigger) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*TriggersTrigger) HasLabel

func (o *TriggersTrigger) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*TriggersTrigger) HasName

func (o *TriggersTrigger) HasName() bool

HasName returns a boolean if a field has been set.

func (TriggersTrigger) MarshalJSON

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

func (*TriggersTrigger) SetColor

func (o *TriggersTrigger) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*TriggersTrigger) SetConfiguration

func (o *TriggersTrigger) SetConfiguration(v []ConfigurationField)

SetConfiguration gets a reference to the given []ConfigurationField and assigns it to the Configuration field.

func (*TriggersTrigger) SetDescription

func (o *TriggersTrigger) SetDescription(v string)

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

func (*TriggersTrigger) SetExampleData added in v0.0.45

func (o *TriggersTrigger) SetExampleData(v map[string]interface{})

SetExampleData gets a reference to the given map[string]interface{} and assigns it to the ExampleData field.

func (*TriggersTrigger) SetIcon

func (o *TriggersTrigger) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*TriggersTrigger) SetLabel

func (o *TriggersTrigger) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*TriggersTrigger) SetName

func (o *TriggersTrigger) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (TriggersTrigger) ToMap

func (o TriggersTrigger) ToMap() (map[string]interface{}, error)

type UsersAPIService

type UsersAPIService service

UsersAPIService UsersAPI service

func (*UsersAPIService) UsersListUserPermissions

func (a *UsersAPIService) UsersListUserPermissions(ctx context.Context, userId string) ApiUsersListUserPermissionsRequest

UsersListUserPermissions List user permissions

Returns all permissions a user has within a specific domain

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

func (*UsersAPIService) UsersListUserPermissionsExecute

Execute executes the request

@return UsersListUserPermissionsResponse

func (*UsersAPIService) UsersListUserRoles

func (a *UsersAPIService) UsersListUserRoles(ctx context.Context, userId string) ApiUsersListUserRolesRequest

UsersListUserRoles Get user roles

Returns the roles a user has within a specific domain

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

func (*UsersAPIService) UsersListUserRolesExecute

Execute executes the request

@return UsersListUserRolesResponse

func (*UsersAPIService) UsersListUsers

UsersListUsers List users

Returns all users that have roles within a domain

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

func (*UsersAPIService) UsersListUsersExecute

Execute executes the request

@return UsersListUsersResponse

type UsersAccountProvider

type UsersAccountProvider struct {
	ProviderType *string    `json:"providerType,omitempty"`
	ProviderId   *string    `json:"providerId,omitempty"`
	Email        *string    `json:"email,omitempty"`
	DisplayName  *string    `json:"displayName,omitempty"`
	AvatarUrl    *string    `json:"avatarUrl,omitempty"`
	CreatedAt    *time.Time `json:"createdAt,omitempty"`
	UpdatedAt    *time.Time `json:"updatedAt,omitempty"`
}

UsersAccountProvider struct for UsersAccountProvider

func NewUsersAccountProvider

func NewUsersAccountProvider() *UsersAccountProvider

NewUsersAccountProvider instantiates a new UsersAccountProvider 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 NewUsersAccountProviderWithDefaults

func NewUsersAccountProviderWithDefaults() *UsersAccountProvider

NewUsersAccountProviderWithDefaults instantiates a new UsersAccountProvider 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 (*UsersAccountProvider) GetAvatarUrl

func (o *UsersAccountProvider) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*UsersAccountProvider) GetAvatarUrlOk

func (o *UsersAccountProvider) GetAvatarUrlOk() (*string, bool)

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

func (*UsersAccountProvider) GetCreatedAt

func (o *UsersAccountProvider) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*UsersAccountProvider) GetCreatedAtOk

func (o *UsersAccountProvider) 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 (*UsersAccountProvider) GetDisplayName

func (o *UsersAccountProvider) GetDisplayName() string

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

func (*UsersAccountProvider) GetDisplayNameOk

func (o *UsersAccountProvider) 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 (*UsersAccountProvider) GetEmail

func (o *UsersAccountProvider) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UsersAccountProvider) GetEmailOk

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

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

func (*UsersAccountProvider) GetProviderId

func (o *UsersAccountProvider) GetProviderId() string

GetProviderId returns the ProviderId field value if set, zero value otherwise.

func (*UsersAccountProvider) GetProviderIdOk

func (o *UsersAccountProvider) GetProviderIdOk() (*string, bool)

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

func (*UsersAccountProvider) GetProviderType

func (o *UsersAccountProvider) GetProviderType() string

GetProviderType returns the ProviderType field value if set, zero value otherwise.

func (*UsersAccountProvider) GetProviderTypeOk

func (o *UsersAccountProvider) GetProviderTypeOk() (*string, bool)

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

func (*UsersAccountProvider) GetUpdatedAt

func (o *UsersAccountProvider) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*UsersAccountProvider) GetUpdatedAtOk

func (o *UsersAccountProvider) 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 (*UsersAccountProvider) HasAvatarUrl

func (o *UsersAccountProvider) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*UsersAccountProvider) HasCreatedAt

func (o *UsersAccountProvider) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*UsersAccountProvider) HasDisplayName

func (o *UsersAccountProvider) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*UsersAccountProvider) HasEmail

func (o *UsersAccountProvider) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UsersAccountProvider) HasProviderId

func (o *UsersAccountProvider) HasProviderId() bool

HasProviderId returns a boolean if a field has been set.

func (*UsersAccountProvider) HasProviderType

func (o *UsersAccountProvider) HasProviderType() bool

HasProviderType returns a boolean if a field has been set.

func (*UsersAccountProvider) HasUpdatedAt

func (o *UsersAccountProvider) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (UsersAccountProvider) MarshalJSON

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

func (*UsersAccountProvider) SetAvatarUrl

func (o *UsersAccountProvider) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*UsersAccountProvider) SetCreatedAt

func (o *UsersAccountProvider) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*UsersAccountProvider) SetDisplayName

func (o *UsersAccountProvider) SetDisplayName(v string)

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

func (*UsersAccountProvider) SetEmail

func (o *UsersAccountProvider) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UsersAccountProvider) SetProviderId

func (o *UsersAccountProvider) SetProviderId(v string)

SetProviderId gets a reference to the given string and assigns it to the ProviderId field.

func (*UsersAccountProvider) SetProviderType

func (o *UsersAccountProvider) SetProviderType(v string)

SetProviderType gets a reference to the given string and assigns it to the ProviderType field.

func (*UsersAccountProvider) SetUpdatedAt

func (o *UsersAccountProvider) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (UsersAccountProvider) ToMap

func (o UsersAccountProvider) ToMap() (map[string]interface{}, error)

type UsersListUserPermissionsResponse

type UsersListUserPermissionsResponse struct {
	UserId      *string                   `json:"userId,omitempty"`
	DomainType  *AuthorizationDomainType  `json:"domainType,omitempty"`
	DomainId    *string                   `json:"domainId,omitempty"`
	Permissions []AuthorizationPermission `json:"permissions,omitempty"`
}

UsersListUserPermissionsResponse struct for UsersListUserPermissionsResponse

func NewUsersListUserPermissionsResponse

func NewUsersListUserPermissionsResponse() *UsersListUserPermissionsResponse

NewUsersListUserPermissionsResponse instantiates a new UsersListUserPermissionsResponse 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 NewUsersListUserPermissionsResponseWithDefaults

func NewUsersListUserPermissionsResponseWithDefaults() *UsersListUserPermissionsResponse

NewUsersListUserPermissionsResponseWithDefaults instantiates a new UsersListUserPermissionsResponse 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 (*UsersListUserPermissionsResponse) GetDomainId

func (o *UsersListUserPermissionsResponse) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*UsersListUserPermissionsResponse) GetDomainIdOk

func (o *UsersListUserPermissionsResponse) GetDomainIdOk() (*string, bool)

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

func (*UsersListUserPermissionsResponse) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*UsersListUserPermissionsResponse) GetDomainTypeOk

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

func (*UsersListUserPermissionsResponse) GetPermissions

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*UsersListUserPermissionsResponse) GetPermissionsOk

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

func (*UsersListUserPermissionsResponse) GetUserId

GetUserId returns the UserId field value if set, zero value otherwise.

func (*UsersListUserPermissionsResponse) GetUserIdOk

func (o *UsersListUserPermissionsResponse) GetUserIdOk() (*string, bool)

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

func (*UsersListUserPermissionsResponse) HasDomainId

func (o *UsersListUserPermissionsResponse) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*UsersListUserPermissionsResponse) HasDomainType

func (o *UsersListUserPermissionsResponse) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*UsersListUserPermissionsResponse) HasPermissions

func (o *UsersListUserPermissionsResponse) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (*UsersListUserPermissionsResponse) HasUserId

func (o *UsersListUserPermissionsResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (UsersListUserPermissionsResponse) MarshalJSON

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

func (*UsersListUserPermissionsResponse) SetDomainId

func (o *UsersListUserPermissionsResponse) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*UsersListUserPermissionsResponse) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*UsersListUserPermissionsResponse) SetPermissions

SetPermissions gets a reference to the given []AuthorizationPermission and assigns it to the Permissions field.

func (*UsersListUserPermissionsResponse) SetUserId

func (o *UsersListUserPermissionsResponse) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (UsersListUserPermissionsResponse) ToMap

func (o UsersListUserPermissionsResponse) ToMap() (map[string]interface{}, error)

type UsersListUserRolesResponse

type UsersListUserRolesResponse struct {
	UserId     *string                  `json:"userId,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	Roles      []RolesRole              `json:"roles,omitempty"`
}

UsersListUserRolesResponse struct for UsersListUserRolesResponse

func NewUsersListUserRolesResponse

func NewUsersListUserRolesResponse() *UsersListUserRolesResponse

NewUsersListUserRolesResponse instantiates a new UsersListUserRolesResponse 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 NewUsersListUserRolesResponseWithDefaults

func NewUsersListUserRolesResponseWithDefaults() *UsersListUserRolesResponse

NewUsersListUserRolesResponseWithDefaults instantiates a new UsersListUserRolesResponse 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 (*UsersListUserRolesResponse) GetDomainId

func (o *UsersListUserRolesResponse) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*UsersListUserRolesResponse) GetDomainIdOk

func (o *UsersListUserRolesResponse) GetDomainIdOk() (*string, bool)

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

func (*UsersListUserRolesResponse) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*UsersListUserRolesResponse) GetDomainTypeOk

func (o *UsersListUserRolesResponse) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*UsersListUserRolesResponse) GetRoles

func (o *UsersListUserRolesResponse) GetRoles() []RolesRole

GetRoles returns the Roles field value if set, zero value otherwise.

func (*UsersListUserRolesResponse) GetRolesOk

func (o *UsersListUserRolesResponse) GetRolesOk() ([]RolesRole, bool)

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

func (*UsersListUserRolesResponse) GetUserId

func (o *UsersListUserRolesResponse) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*UsersListUserRolesResponse) GetUserIdOk

func (o *UsersListUserRolesResponse) GetUserIdOk() (*string, bool)

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

func (*UsersListUserRolesResponse) HasDomainId

func (o *UsersListUserRolesResponse) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*UsersListUserRolesResponse) HasDomainType

func (o *UsersListUserRolesResponse) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*UsersListUserRolesResponse) HasRoles

func (o *UsersListUserRolesResponse) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*UsersListUserRolesResponse) HasUserId

func (o *UsersListUserRolesResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (UsersListUserRolesResponse) MarshalJSON

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

func (*UsersListUserRolesResponse) SetDomainId

func (o *UsersListUserRolesResponse) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*UsersListUserRolesResponse) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*UsersListUserRolesResponse) SetRoles

func (o *UsersListUserRolesResponse) SetRoles(v []RolesRole)

SetRoles gets a reference to the given []RolesRole and assigns it to the Roles field.

func (*UsersListUserRolesResponse) SetUserId

func (o *UsersListUserRolesResponse) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (UsersListUserRolesResponse) ToMap

func (o UsersListUserRolesResponse) ToMap() (map[string]interface{}, error)

type UsersListUsersResponse

type UsersListUsersResponse struct {
	Users []SuperplaneUsersUser `json:"users,omitempty"`
}

UsersListUsersResponse struct for UsersListUsersResponse

func NewUsersListUsersResponse

func NewUsersListUsersResponse() *UsersListUsersResponse

NewUsersListUsersResponse instantiates a new UsersListUsersResponse 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 NewUsersListUsersResponseWithDefaults

func NewUsersListUsersResponseWithDefaults() *UsersListUsersResponse

NewUsersListUsersResponseWithDefaults instantiates a new UsersListUsersResponse 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 (*UsersListUsersResponse) GetUsers

GetUsers returns the Users field value if set, zero value otherwise.

func (*UsersListUsersResponse) GetUsersOk

func (o *UsersListUsersResponse) GetUsersOk() ([]SuperplaneUsersUser, bool)

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

func (*UsersListUsersResponse) HasUsers

func (o *UsersListUsersResponse) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (UsersListUsersResponse) MarshalJSON

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

func (*UsersListUsersResponse) SetUsers

SetUsers gets a reference to the given []SuperplaneUsersUser and assigns it to the Users field.

func (UsersListUsersResponse) ToMap

func (o UsersListUsersResponse) ToMap() (map[string]interface{}, error)

type UsersUserMetadata

type UsersUserMetadata struct {
	Id        *string    `json:"id,omitempty"`
	Email     *string    `json:"email,omitempty"`
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
}

UsersUserMetadata struct for UsersUserMetadata

func NewUsersUserMetadata

func NewUsersUserMetadata() *UsersUserMetadata

NewUsersUserMetadata instantiates a new UsersUserMetadata 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 NewUsersUserMetadataWithDefaults

func NewUsersUserMetadataWithDefaults() *UsersUserMetadata

NewUsersUserMetadataWithDefaults instantiates a new UsersUserMetadata 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 (*UsersUserMetadata) GetCreatedAt

func (o *UsersUserMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*UsersUserMetadata) GetCreatedAtOk

func (o *UsersUserMetadata) 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 (*UsersUserMetadata) GetEmail

func (o *UsersUserMetadata) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UsersUserMetadata) GetEmailOk

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

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

func (*UsersUserMetadata) GetId

func (o *UsersUserMetadata) GetId() string

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

func (*UsersUserMetadata) GetIdOk

func (o *UsersUserMetadata) 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 (*UsersUserMetadata) GetUpdatedAt

func (o *UsersUserMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*UsersUserMetadata) GetUpdatedAtOk

func (o *UsersUserMetadata) 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 (*UsersUserMetadata) HasCreatedAt

func (o *UsersUserMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*UsersUserMetadata) HasEmail

func (o *UsersUserMetadata) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UsersUserMetadata) HasId

func (o *UsersUserMetadata) HasId() bool

HasId returns a boolean if a field has been set.

func (*UsersUserMetadata) HasUpdatedAt

func (o *UsersUserMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (UsersUserMetadata) MarshalJSON

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

func (*UsersUserMetadata) SetCreatedAt

func (o *UsersUserMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*UsersUserMetadata) SetEmail

func (o *UsersUserMetadata) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UsersUserMetadata) SetId

func (o *UsersUserMetadata) SetId(v string)

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

func (*UsersUserMetadata) SetUpdatedAt

func (o *UsersUserMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (UsersUserMetadata) ToMap

func (o UsersUserMetadata) ToMap() (map[string]interface{}, error)

type UsersUserRoleAssignment

type UsersUserRoleAssignment struct {
	RoleName        *string                  `json:"roleName,omitempty"`
	RoleDisplayName *string                  `json:"roleDisplayName,omitempty"`
	RoleDescription *string                  `json:"roleDescription,omitempty"`
	DomainType      *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId        *string                  `json:"domainId,omitempty"`
	AssignedAt      *time.Time               `json:"assignedAt,omitempty"`
}

UsersUserRoleAssignment struct for UsersUserRoleAssignment

func NewUsersUserRoleAssignment

func NewUsersUserRoleAssignment() *UsersUserRoleAssignment

NewUsersUserRoleAssignment instantiates a new UsersUserRoleAssignment 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 NewUsersUserRoleAssignmentWithDefaults

func NewUsersUserRoleAssignmentWithDefaults() *UsersUserRoleAssignment

NewUsersUserRoleAssignmentWithDefaults instantiates a new UsersUserRoleAssignment 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 (*UsersUserRoleAssignment) GetAssignedAt

func (o *UsersUserRoleAssignment) GetAssignedAt() time.Time

GetAssignedAt returns the AssignedAt field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetAssignedAtOk

func (o *UsersUserRoleAssignment) GetAssignedAtOk() (*time.Time, bool)

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

func (*UsersUserRoleAssignment) GetDomainId

func (o *UsersUserRoleAssignment) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetDomainIdOk

func (o *UsersUserRoleAssignment) GetDomainIdOk() (*string, bool)

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

func (*UsersUserRoleAssignment) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetDomainTypeOk

func (o *UsersUserRoleAssignment) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*UsersUserRoleAssignment) GetRoleDescription

func (o *UsersUserRoleAssignment) GetRoleDescription() string

GetRoleDescription returns the RoleDescription field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetRoleDescriptionOk

func (o *UsersUserRoleAssignment) GetRoleDescriptionOk() (*string, bool)

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

func (*UsersUserRoleAssignment) GetRoleDisplayName

func (o *UsersUserRoleAssignment) GetRoleDisplayName() string

GetRoleDisplayName returns the RoleDisplayName field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetRoleDisplayNameOk

func (o *UsersUserRoleAssignment) GetRoleDisplayNameOk() (*string, bool)

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

func (*UsersUserRoleAssignment) GetRoleName

func (o *UsersUserRoleAssignment) GetRoleName() string

GetRoleName returns the RoleName field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetRoleNameOk

func (o *UsersUserRoleAssignment) GetRoleNameOk() (*string, bool)

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

func (*UsersUserRoleAssignment) HasAssignedAt

func (o *UsersUserRoleAssignment) HasAssignedAt() bool

HasAssignedAt returns a boolean if a field has been set.

func (*UsersUserRoleAssignment) HasDomainId

func (o *UsersUserRoleAssignment) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*UsersUserRoleAssignment) HasDomainType

func (o *UsersUserRoleAssignment) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*UsersUserRoleAssignment) HasRoleDescription

func (o *UsersUserRoleAssignment) HasRoleDescription() bool

HasRoleDescription returns a boolean if a field has been set.

func (*UsersUserRoleAssignment) HasRoleDisplayName

func (o *UsersUserRoleAssignment) HasRoleDisplayName() bool

HasRoleDisplayName returns a boolean if a field has been set.

func (*UsersUserRoleAssignment) HasRoleName

func (o *UsersUserRoleAssignment) HasRoleName() bool

HasRoleName returns a boolean if a field has been set.

func (UsersUserRoleAssignment) MarshalJSON

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

func (*UsersUserRoleAssignment) SetAssignedAt

func (o *UsersUserRoleAssignment) SetAssignedAt(v time.Time)

SetAssignedAt gets a reference to the given time.Time and assigns it to the AssignedAt field.

func (*UsersUserRoleAssignment) SetDomainId

func (o *UsersUserRoleAssignment) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*UsersUserRoleAssignment) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*UsersUserRoleAssignment) SetRoleDescription

func (o *UsersUserRoleAssignment) SetRoleDescription(v string)

SetRoleDescription gets a reference to the given string and assigns it to the RoleDescription field.

func (*UsersUserRoleAssignment) SetRoleDisplayName

func (o *UsersUserRoleAssignment) SetRoleDisplayName(v string)

SetRoleDisplayName gets a reference to the given string and assigns it to the RoleDisplayName field.

func (*UsersUserRoleAssignment) SetRoleName

func (o *UsersUserRoleAssignment) SetRoleName(v string)

SetRoleName gets a reference to the given string and assigns it to the RoleName field.

func (UsersUserRoleAssignment) ToMap

func (o UsersUserRoleAssignment) ToMap() (map[string]interface{}, error)

type UsersUserSpec

type UsersUserSpec struct {
	DisplayName      *string                `json:"displayName,omitempty"`
	AccountProviders []UsersAccountProvider `json:"accountProviders,omitempty"`
}

UsersUserSpec struct for UsersUserSpec

func NewUsersUserSpec

func NewUsersUserSpec() *UsersUserSpec

NewUsersUserSpec instantiates a new UsersUserSpec 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 NewUsersUserSpecWithDefaults

func NewUsersUserSpecWithDefaults() *UsersUserSpec

NewUsersUserSpecWithDefaults instantiates a new UsersUserSpec 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 (*UsersUserSpec) GetAccountProviders

func (o *UsersUserSpec) GetAccountProviders() []UsersAccountProvider

GetAccountProviders returns the AccountProviders field value if set, zero value otherwise.

func (*UsersUserSpec) GetAccountProvidersOk

func (o *UsersUserSpec) GetAccountProvidersOk() ([]UsersAccountProvider, bool)

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

func (*UsersUserSpec) GetDisplayName

func (o *UsersUserSpec) GetDisplayName() string

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

func (*UsersUserSpec) GetDisplayNameOk

func (o *UsersUserSpec) 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 (*UsersUserSpec) HasAccountProviders

func (o *UsersUserSpec) HasAccountProviders() bool

HasAccountProviders returns a boolean if a field has been set.

func (*UsersUserSpec) HasDisplayName

func (o *UsersUserSpec) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (UsersUserSpec) MarshalJSON

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

func (*UsersUserSpec) SetAccountProviders

func (o *UsersUserSpec) SetAccountProviders(v []UsersAccountProvider)

SetAccountProviders gets a reference to the given []UsersAccountProvider and assigns it to the AccountProviders field.

func (*UsersUserSpec) SetDisplayName

func (o *UsersUserSpec) SetDisplayName(v string)

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

func (UsersUserSpec) ToMap

func (o UsersUserSpec) ToMap() (map[string]interface{}, error)

type UsersUserStatus

type UsersUserStatus struct {
	RoleAssignments []UsersUserRoleAssignment `json:"roleAssignments,omitempty"`
}

UsersUserStatus struct for UsersUserStatus

func NewUsersUserStatus

func NewUsersUserStatus() *UsersUserStatus

NewUsersUserStatus instantiates a new UsersUserStatus 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 NewUsersUserStatusWithDefaults

func NewUsersUserStatusWithDefaults() *UsersUserStatus

NewUsersUserStatusWithDefaults instantiates a new UsersUserStatus 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 (*UsersUserStatus) GetRoleAssignments

func (o *UsersUserStatus) GetRoleAssignments() []UsersUserRoleAssignment

GetRoleAssignments returns the RoleAssignments field value if set, zero value otherwise.

func (*UsersUserStatus) GetRoleAssignmentsOk

func (o *UsersUserStatus) GetRoleAssignmentsOk() ([]UsersUserRoleAssignment, bool)

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

func (*UsersUserStatus) HasRoleAssignments

func (o *UsersUserStatus) HasRoleAssignments() bool

HasRoleAssignments returns a boolean if a field has been set.

func (UsersUserStatus) MarshalJSON

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

func (*UsersUserStatus) SetRoleAssignments

func (o *UsersUserStatus) SetRoleAssignments(v []UsersUserRoleAssignment)

SetRoleAssignments gets a reference to the given []UsersUserRoleAssignment and assigns it to the RoleAssignments field.

func (UsersUserStatus) ToMap

func (o UsersUserStatus) ToMap() (map[string]interface{}, error)

type WidgetAPIService added in v0.0.18

type WidgetAPIService service

WidgetAPIService WidgetAPI service

func (*WidgetAPIService) WidgetsDescribeWidget added in v0.0.18

func (a *WidgetAPIService) WidgetsDescribeWidget(ctx context.Context, name string) ApiWidgetsDescribeWidgetRequest

WidgetsDescribeWidget Describe widget

Returns a widget by its name

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

func (*WidgetAPIService) WidgetsDescribeWidgetExecute added in v0.0.18

Execute executes the request

@return WidgetsDescribeWidgetResponse

func (*WidgetAPIService) WidgetsListWidgets added in v0.0.18

func (a *WidgetAPIService) WidgetsListWidgets(ctx context.Context) ApiWidgetsListWidgetsRequest

WidgetsListWidgets List widgets

Returns a list of all available widgets

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

func (*WidgetAPIService) WidgetsListWidgetsExecute added in v0.0.18

Execute executes the request

@return WidgetsListWidgetsResponse

type WidgetsDescribeWidgetResponse added in v0.0.18

type WidgetsDescribeWidgetResponse struct {
	Widget *WidgetsWidget `json:"widget,omitempty"`
}

WidgetsDescribeWidgetResponse struct for WidgetsDescribeWidgetResponse

func NewWidgetsDescribeWidgetResponse added in v0.0.18

func NewWidgetsDescribeWidgetResponse() *WidgetsDescribeWidgetResponse

NewWidgetsDescribeWidgetResponse instantiates a new WidgetsDescribeWidgetResponse 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 NewWidgetsDescribeWidgetResponseWithDefaults added in v0.0.18

func NewWidgetsDescribeWidgetResponseWithDefaults() *WidgetsDescribeWidgetResponse

NewWidgetsDescribeWidgetResponseWithDefaults instantiates a new WidgetsDescribeWidgetResponse 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 (*WidgetsDescribeWidgetResponse) GetWidget added in v0.0.18

GetWidget returns the Widget field value if set, zero value otherwise.

func (*WidgetsDescribeWidgetResponse) GetWidgetOk added in v0.0.18

func (o *WidgetsDescribeWidgetResponse) GetWidgetOk() (*WidgetsWidget, bool)

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

func (*WidgetsDescribeWidgetResponse) HasWidget added in v0.0.18

func (o *WidgetsDescribeWidgetResponse) HasWidget() bool

HasWidget returns a boolean if a field has been set.

func (WidgetsDescribeWidgetResponse) MarshalJSON added in v0.0.18

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

func (*WidgetsDescribeWidgetResponse) SetWidget added in v0.0.18

SetWidget gets a reference to the given WidgetsWidget and assigns it to the Widget field.

func (WidgetsDescribeWidgetResponse) ToMap added in v0.0.18

func (o WidgetsDescribeWidgetResponse) ToMap() (map[string]interface{}, error)

type WidgetsListWidgetsResponse added in v0.0.18

type WidgetsListWidgetsResponse struct {
	Widgets []WidgetsWidget `json:"widgets,omitempty"`
}

WidgetsListWidgetsResponse struct for WidgetsListWidgetsResponse

func NewWidgetsListWidgetsResponse added in v0.0.18

func NewWidgetsListWidgetsResponse() *WidgetsListWidgetsResponse

NewWidgetsListWidgetsResponse instantiates a new WidgetsListWidgetsResponse 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 NewWidgetsListWidgetsResponseWithDefaults added in v0.0.18

func NewWidgetsListWidgetsResponseWithDefaults() *WidgetsListWidgetsResponse

NewWidgetsListWidgetsResponseWithDefaults instantiates a new WidgetsListWidgetsResponse 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 (*WidgetsListWidgetsResponse) GetWidgets added in v0.0.18

func (o *WidgetsListWidgetsResponse) GetWidgets() []WidgetsWidget

GetWidgets returns the Widgets field value if set, zero value otherwise.

func (*WidgetsListWidgetsResponse) GetWidgetsOk added in v0.0.18

func (o *WidgetsListWidgetsResponse) GetWidgetsOk() ([]WidgetsWidget, bool)

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

func (*WidgetsListWidgetsResponse) HasWidgets added in v0.0.18

func (o *WidgetsListWidgetsResponse) HasWidgets() bool

HasWidgets returns a boolean if a field has been set.

func (WidgetsListWidgetsResponse) MarshalJSON added in v0.0.18

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

func (*WidgetsListWidgetsResponse) SetWidgets added in v0.0.18

func (o *WidgetsListWidgetsResponse) SetWidgets(v []WidgetsWidget)

SetWidgets gets a reference to the given []WidgetsWidget and assigns it to the Widgets field.

func (WidgetsListWidgetsResponse) ToMap added in v0.0.18

func (o WidgetsListWidgetsResponse) ToMap() (map[string]interface{}, error)

type WidgetsWidget added in v0.0.18

type WidgetsWidget struct {
	Name          *string              `json:"name,omitempty"`
	Label         *string              `json:"label,omitempty"`
	Description   *string              `json:"description,omitempty"`
	Icon          *string              `json:"icon,omitempty"`
	Color         *string              `json:"color,omitempty"`
	Configuration []ConfigurationField `json:"configuration,omitempty"`
}

WidgetsWidget struct for WidgetsWidget

func NewWidgetsWidget added in v0.0.18

func NewWidgetsWidget() *WidgetsWidget

NewWidgetsWidget instantiates a new WidgetsWidget 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 NewWidgetsWidgetWithDefaults added in v0.0.18

func NewWidgetsWidgetWithDefaults() *WidgetsWidget

NewWidgetsWidgetWithDefaults instantiates a new WidgetsWidget 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 (*WidgetsWidget) GetColor added in v0.0.18

func (o *WidgetsWidget) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*WidgetsWidget) GetColorOk added in v0.0.18

func (o *WidgetsWidget) GetColorOk() (*string, bool)

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

func (*WidgetsWidget) GetConfiguration added in v0.0.18

func (o *WidgetsWidget) GetConfiguration() []ConfigurationField

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*WidgetsWidget) GetConfigurationOk added in v0.0.18

func (o *WidgetsWidget) GetConfigurationOk() ([]ConfigurationField, bool)

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

func (*WidgetsWidget) GetDescription added in v0.0.18

func (o *WidgetsWidget) GetDescription() string

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

func (*WidgetsWidget) GetDescriptionOk added in v0.0.18

func (o *WidgetsWidget) 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 (*WidgetsWidget) GetIcon added in v0.0.18

func (o *WidgetsWidget) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*WidgetsWidget) GetIconOk added in v0.0.18

func (o *WidgetsWidget) GetIconOk() (*string, bool)

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

func (*WidgetsWidget) GetLabel added in v0.0.18

func (o *WidgetsWidget) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*WidgetsWidget) GetLabelOk added in v0.0.18

func (o *WidgetsWidget) GetLabelOk() (*string, bool)

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

func (*WidgetsWidget) GetName added in v0.0.18

func (o *WidgetsWidget) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WidgetsWidget) GetNameOk added in v0.0.18

func (o *WidgetsWidget) GetNameOk() (*string, bool)

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

func (*WidgetsWidget) HasColor added in v0.0.18

func (o *WidgetsWidget) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*WidgetsWidget) HasConfiguration added in v0.0.18

func (o *WidgetsWidget) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*WidgetsWidget) HasDescription added in v0.0.18

func (o *WidgetsWidget) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WidgetsWidget) HasIcon added in v0.0.18

func (o *WidgetsWidget) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*WidgetsWidget) HasLabel added in v0.0.18

func (o *WidgetsWidget) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*WidgetsWidget) HasName added in v0.0.18

func (o *WidgetsWidget) HasName() bool

HasName returns a boolean if a field has been set.

func (WidgetsWidget) MarshalJSON added in v0.0.18

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

func (*WidgetsWidget) SetColor added in v0.0.18

func (o *WidgetsWidget) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*WidgetsWidget) SetConfiguration added in v0.0.18

func (o *WidgetsWidget) SetConfiguration(v []ConfigurationField)

SetConfiguration gets a reference to the given []ConfigurationField and assigns it to the Configuration field.

func (*WidgetsWidget) SetDescription added in v0.0.18

func (o *WidgetsWidget) SetDescription(v string)

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

func (*WidgetsWidget) SetIcon added in v0.0.18

func (o *WidgetsWidget) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*WidgetsWidget) SetLabel added in v0.0.18

func (o *WidgetsWidget) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*WidgetsWidget) SetName added in v0.0.18

func (o *WidgetsWidget) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (WidgetsWidget) ToMap added in v0.0.18

func (o WidgetsWidget) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL