steampipecloud

package module
v0.6.0 Latest Latest
Warning

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

Go to latest
Published: May 3, 2023 License: Apache-2.0 Imports: 22 Imported by: 1

README

Go SDK for Steampipe Cloud

Steampipe Cloud is a hosted version of Steampipe (https://steampipe.io), an open source tool to instantly query your cloud services (e.g. AWS, Azure, GCP and more) with SQL. No DB required.

For help on getting started with Steampipe Cloud, please visit https://steampipe.io/docs/cloud/getting-started.

Getting Started

Here's an example of listing the workspaces for your user:

package main

import (
    "context"
    "fmt"
    "os"

    steampipecloud "github.com/turbot/steampipe-cloud-sdk-go"
)

func main() {
    // Create a default configuration
    configuration := steampipecloud.NewConfiguration()

    // Add your Steampipe Cloud user token as an auth header
    configuration.AddDefaultHeader("Authorization", fmt.Sprintf("Bearer %s", os.Getenv("STEAMPIPE_CLOUD_TOKEN")))

    // Create a client
    client := steampipecloud.NewAPIClient(configuration)

    // Find your authenticated user info
    actor, _, err := client.Actors.Get(context.Background()).Execute()

    if err != nil {
      // Do something with the error
      return
    }

    // List your workspaces
    workspaces, _, err := client.UserWorkspaces.List(context.Background(), actor.Handle).Execute()

    if err != nil {
      // Do something with the error
      return
    }
}

Usages

For more detailed examples of using the SDK, please check out the following open source projects:

Documentation for API Endpoints

All URIs are relative to https://cloud.steampipe.io/api/v0

Class Method HTTP request Description
Actors Get Get /actor Actor information
Actors ListActivity Get /actor/activity List actor activity
Actors ListConnections Get /actor/conn List actor connections
Actors ListOrgInvites Get /actor/org/invite List org invites for actor
Actors ListOrgs Get /actor/org List actor orgs
Actors ListWorkspaces Get /actor/workspace List actor workspaces
Auth ConfirmLogin Get /login/confirm Confirm user login
Auth ConfirmSignup Get /signup/confirm Confirm user signup
Auth Login Post /login User login
Auth LoginTokenCreate Post /login/token Generate temporary token request
Auth LoginTokenDelete Delete /login/token/{temporary_token_request_id} Delete temporary token request
Auth LoginTokenGet Get /login/token/{temporary_token_request_id} Get temporary token request
Auth LoginTokenUpdate Patch /login/token/{temporary_token_request_id} Update temporary token request
Auth Logout Get /logout/{provider} User logout
Auth Provider Get /auth/{provider} Auth Provider
Auth ProviderCallback Get /auth/{provider}/callback Auth provider callback
Auth Signup Post /signup User signup
Identities Get Get /identity/{identity_handle} Get identity
Identities GetAvatar Get /identity/{identity_handle}/avatar Get identity avatar
Identities List Get /identity List identities
OrgConnections Create Post /org/{org_handle}/connection Create org connection
OrgConnections CreateDeprecated Post /org/{org_handle}/conn Create org connection
OrgConnections Delete Delete /org/{org_handle}/connection/{connection_handle} Delete org connection
OrgConnections DeleteDeprecated Delete /org/{org_handle}/conn/{conn_handle} Delete org connection
OrgConnections Get Get /org/{org_handle}/connection/{connection_handle} Get org connection
OrgConnections GetDeprecated Get /org/{org_handle}/conn/{conn_handle} Get org connection
OrgConnections List Get /org/{org_handle}/connection List org connections
OrgConnections ListDeprecated Get /org/{org_handle}/conn List org connections
OrgConnections ListWorkspaces Get /org/{org_handle}/connection/{connection_handle}/workspace List org connection workspaces
OrgConnections ListWorkspacesDeprecated Get /org/{org_handle}/conn/{conn_handle}/workspace List org connection workspaces
OrgConnections Test Post /org/{org_handle}/connection/{connection_handle}/test Test org connection
OrgConnections TestDeprecated Post /org/{org_handle}/conn/{conn_handle}/test Test org connection
OrgConnections Update Patch /org/{org_handle}/connection/{connection_handle} Update org connection
OrgConnections UpdateDeprecated Patch /org/{org_handle}/conn/{conn_handle} Update org connection
OrgMembers ConfirmInvite Get /org/{org_handle}/member/invite/confirm Confirm org member invite
OrgMembers Delete Delete /org/{org_handle}/member/{user_handle} Delete org member
OrgMembers DeleteInvite Delete /org/{org_handle}/member/invite Delete org member invite
OrgMembers Get Get /org/{org_handle}/member/{user_handle} Get org member
OrgMembers Invite Post /org/{org_handle}/member/invite Invite org member
OrgMembers List Get /org/{org_handle}/member List Organization Members
OrgMembers Update Patch /org/{org_handle}/member/{user_handle} Update org member
OrgProcesses Get Get /org/{org_handle}/process/{process_id} Get Org process
OrgProcesses List Get /org/{org_handle}/process List Org processes
OrgProcesses Log Get /org/{org_handle}/process/{process_id}/log/{log_file}.{content_type} List Org process logs
OrgWorkspaceAggregators Create Post /org/{org_handle}/workspace/{workspace_handle}/aggregator Create an aggregator for an org workspace
OrgWorkspaceAggregators Delete Delete /org/{org_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle} Delete an aggregator for a org workspace
OrgWorkspaceAggregators Get Get /org/{org_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle} Get an aggregator for a org workspace
OrgWorkspaceAggregators GetConnection Get /org/{org_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}/connection/{connection_handle} Get a connection in the scope of an aggregator for a org workspace
OrgWorkspaceAggregators List Get /org/{org_handle}/workspace/{workspace_handle}/aggregator List aggregators for an org workspace
OrgWorkspaceAggregators ListConnections Get /org/{org_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}/connection List connections in the scope of an aggregator for a org workspace
OrgWorkspaceAggregators Update Patch /org/{org_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle} Update an aggregator for a org workspace
OrgWorkspaceConnectionAssociations Create Post /org/{org_handle}/workspace/{workspace_handle}/conn Create org workspace connection association
OrgWorkspaceConnectionAssociations Delete Delete /org/{org_handle}/workspace/{workspace_handle}/conn/{conn_handle} Delete org workspace connection association
OrgWorkspaceConnectionAssociations Get Get /org/{org_handle}/workspace/{workspace_handle}/conn/{conn_handle} Get org workspace connection association
OrgWorkspaceConnectionAssociations List Get /org/{org_handle}/workspace/{workspace_handle}/conn List org workspace connection associations
OrgWorkspaceMembers Create Post /org/{org_handle}/workspace/{workspace_handle}/member Create Org Workspace Member
OrgWorkspaceMembers Delete Delete /org/{org_handle}/workspace/{workspace_handle}/member/{user_handle} Delete Org Workspace Member
OrgWorkspaceMembers Get Get /org/{org_handle}/workspace/{workspace_handle}/member/{user_handle} Get Org Workspace Member
OrgWorkspaceMembers List Get /org/{org_handle}/workspace/{workspace_handle}/member List Organization Workspace Members
OrgWorkspaceMembers Update Patch /org/{org_handle}/workspace/{workspace_handle}/member/{user_handle} Update Org Workspace Member
OrgWorkspaceModVariables CreateSetting Post /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable Create a setting for a mod variable in an organization workspace
OrgWorkspaceModVariables DeleteSetting Delete /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name} Delete setting for a mod variable in an organization workspace
OrgWorkspaceModVariables GetSetting Get /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name} Get setting for a mod variable in an organization workspace
OrgWorkspaceModVariables List Get /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable List variables in an organization workspace mod
OrgWorkspaceModVariables UpdateSetting Patch /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name} Update setting for a mod variable in an organization workspace
OrgWorkspaceMods Get Get /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias} Get organization workspace installed mod
OrgWorkspaceMods Install Post /org/{org_handle}/workspace/{workspace_handle}/mod Install a mod to an organization workspace
OrgWorkspaceMods List Get /org/{org_handle}/workspace/{workspace_handle}/mod List organization workspace installed mods
OrgWorkspaceMods Uninstall Delete /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias} Uninstall mod from organization workspace.
OrgWorkspaceMods Update Patch /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias} Update a mod in an organization workspace
OrgWorkspacePipelines Command Post /org/{org_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id}/command Run org workspace pipeline command
OrgWorkspacePipelines Create Post /org/{org_handle}/workspace/{workspace_handle}/pipeline Create org workspace pipeline
OrgWorkspacePipelines Delete Delete /org/{org_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id} Delete org workspace pipeline
OrgWorkspacePipelines Get Get /org/{org_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id} Get org workspace pipeline
OrgWorkspacePipelines List Get /org/{org_handle}/workspace/{workspace_handle}/pipeline List org workspace pipelines
OrgWorkspacePipelines Update Patch /org/{org_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id} Update org workspace pipeline
OrgWorkspaceProcesses Get Get /org/{org_handle}/workspace/{workspace_handle}/process/{process_id} Get org workspace process
OrgWorkspaceProcesses List Get /org/{org_handle}/workspace/{workspace_handle}/process List org workspace processes
OrgWorkspaceProcesses Log Get /org/{org_handle}/workspace/{workspace_handle}/process/{process_id}/log/{log_file}.{content_type} List org workspace process logs
OrgWorkspaceSnapshots Create Post /org/{org_handle}/workspace/{workspace_handle}/snapshot Create org workspace snapshot
OrgWorkspaceSnapshots Delete Delete /org/{org_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id} Delete org workspace snapshot
OrgWorkspaceSnapshots Download Get /org/{org_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id}.{content_type} Download org workspace snapshot
OrgWorkspaceSnapshots Get Get /org/{org_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id} Get org workspace snapshot
OrgWorkspaceSnapshots List Get /org/{org_handle}/workspace/{workspace_handle}/snapshot List org workspace snapshots
OrgWorkspaceSnapshots Update Patch /org/{org_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id} Update org workspace snapshot
OrgWorkspaces Command Post /org/{org_handle}/workspace/{workspace_handle}/command Run org workspace command
OrgWorkspaces Create Post /org/{org_handle}/workspace Create org workspace
OrgWorkspaces Delete Delete /org/{org_handle}/workspace/{workspace_handle} Delete org workspace
OrgWorkspaces Get Get /org/{org_handle}/workspace/{workspace_handle} Get org workspace
OrgWorkspaces GetQuery Get /org/{org_handle}/workspace/{workspace_handle}/query Query org workspace
OrgWorkspaces GetQueryWithExtensions Get /org/{org_handle}/workspace/{workspace_handle}/query/data.{extensions} Query org workspace with extensions
OrgWorkspaces GetSchema Get /org/{org_handle}/workspace/{workspace_handle}/schema Get org workspace schemas
OrgWorkspaces List Get /org/{org_handle}/workspace List org workspaces
OrgWorkspaces ListAuditLogs Get /org/{org_handle}/workspace/{workspace_handle}/audit_log Org workspace audit logs
OrgWorkspaces ListDBLogs Get /org/{org_handle}/workspace/{workspace_handle}/db_log Org workspace logs
OrgWorkspaces PostQuery Post /org/{org_handle}/workspace/{workspace_handle}/query Query org workspace
OrgWorkspaces PostQueryWithExtensions Post /org/{org_handle}/workspace/{workspace_handle}/query/data.{extensions} Query org workspace with extensions
OrgWorkspaces Update Patch /org/{org_handle}/workspace/{workspace_handle} Update org workspace
Orgs Create Post /org Create org
Orgs CreateAvatar Post /org/{org_handle}/avatar Create org avatar
Orgs Delete Delete /org/{org_handle} Delete org
Orgs DeleteAvatar Delete /org/{org_handle}/avatar Delete org avatar
Orgs Get Get /org/{org_handle} Get org
Orgs GetQuota Get /org/{org_handle}/quota Org quota
Orgs List Get /org List orgs
Orgs ListAuditLogs Get /org/{org_handle}/audit_log Org audit logs
Orgs ListFeatures Get /org/{org_handle}/feature Org features
Orgs Update Patch /org/{org_handle} Update org
UserConnections Create Post /user/{user_handle}/connection Create user connection
UserConnections CreateDeprecated Post /user/{user_handle}/conn Create user connection
UserConnections Delete Delete /user/{user_handle}/connection/{connection_handle} Delete user connection
UserConnections DeleteDeprecated Delete /user/{user_handle}/conn/{conn_handle} Delete user connection
UserConnections Get Get /user/{user_handle}/connection/{connection_handle} Get user connection
UserConnections GetDeprecated Get /user/{user_handle}/conn/{conn_handle} Get user connection
UserConnections List Get /user/{user_handle}/connection List user connections
UserConnections ListDeprecated Get /user/{user_handle}/conn List user connections
UserConnections ListWorkspaces Get /user/{user_handle}/connection/{connection_handle}/workspace List user connection workspaces
UserConnections ListWorkspacesDeprecated Get /user/{user_handle}/conn/{conn_handle}/workspace List user connection workspaces
UserConnections Test Post /user/{user_handle}/connection/{connection_handle}/test Test user connection
UserConnections TestDeprecated Post /user/{user_handle}/conn/{conn_handle}/test Test user connection
UserConnections Update Patch /user/{user_handle}/connection/{connection_handle} Update user connection
UserConnections UpdateDeprecated Patch /user/{user_handle}/conn/{conn_handle} Update user connection
UserProcesses Get Get /user/{user_handle}/process/{process_id} Get User process
UserProcesses List Get /user/{user_handle}/process List User processes
UserProcesses Log Get /user/{user_handle}/process/{process_id}/log/{log_file}.{content_type} List user process logs
UserTokens Create Post /user/{user_handle}/token Create token
UserTokens Delete Delete /user/{user_handle}/token/{token_id} Delete token
UserTokens Get Get /user/{user_handle}/token/{token_id} Get token
UserTokens List Get /user/{user_handle}/token List tokens
UserTokens Update Patch /user/{user_handle}/token/{token_id} Update token
UserWorkspaceAggregators Create Post /user/{user_handle}/workspace/{workspace_handle}/aggregator Create an aggregator for a user workspace
UserWorkspaceAggregators Delete Delete /user/{user_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle} Delete an aggregator for a user workspace
UserWorkspaceAggregators Get Get /user/{user_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle} Get an aggregator for a user workspace
UserWorkspaceAggregators GetConnection Get /user/{user_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}/connection/{connection_handle} Get a connection in the scope of an aggregator for a user workspace
UserWorkspaceAggregators List Get /user/{user_handle}/workspace/{workspace_handle}/aggregator List aggregators for a user workspace
UserWorkspaceAggregators ListConnections Get /user/{user_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}/connection List connections in the scope of an aggregator for a user workspace
UserWorkspaceAggregators Update Patch /user/{user_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle} Update an aggregator for a user workspace
UserWorkspaceConnectionAssociations Create Post /user/{user_handle}/workspace/{workspace_handle}/conn Create user workspace connection association
UserWorkspaceConnectionAssociations Delete Delete /user/{user_handle}/workspace/{workspace_handle}/conn/{conn_handle} Delete user workspace connection association
UserWorkspaceConnectionAssociations Get Get /user/{user_handle}/workspace/{workspace_handle}/conn/{conn_handle} Get user workspace connection association
UserWorkspaceConnectionAssociations List Get /user/{user_handle}/workspace/{workspace_handle}/conn List user workspace connection associations
UserWorkspaceModVariables CreateSetting Post /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable Create a setting for a mod variable in a user workspace
UserWorkspaceModVariables DeleteSetting Delete /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name} Delete setting for a mod variable in a user workspace
UserWorkspaceModVariables GetSetting Get /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name} Get setting for a mod variable in a user workspace
UserWorkspaceModVariables List Get /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable List variables for a user workspace mod
UserWorkspaceModVariables UpdateSetting Patch /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name} Update setting for a mod variable in a user workspace
UserWorkspaceMods Get Get /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias} Get user workspace installed mod
UserWorkspaceMods Install Post /user/{user_handle}/workspace/{workspace_handle}/mod Install a mod to a user's workspace
UserWorkspaceMods List Get /user/{user_handle}/workspace/{workspace_handle}/mod List user workspace installed mods
UserWorkspaceMods Uninstall Delete /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias} Uninstall mod from a user's workspace.
UserWorkspaceMods Update Patch /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias} Update a mod in a user's workspace
UserWorkspacePipelines Command Post /user/{user_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id}/command Run user workspace pipeline command
UserWorkspacePipelines Create Post /user/{user_handle}/workspace/{workspace_handle}/pipeline Create user workspace pipeline
UserWorkspacePipelines Delete Delete /user/{user_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id} Delete user workspace pipeline
UserWorkspacePipelines Get Get /user/{user_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id} Get user workspace pipeline
UserWorkspacePipelines List Get /user/{user_handle}/workspace/{workspace_handle}/pipeline List user workspace pipelines
UserWorkspacePipelines Update Patch /user/{user_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id} Update user workspace pipeline
UserWorkspaceProcesses Get Get /user/{user_handle}/workspace/{workspace_handle}/process/{process_id} Get user workspace process
UserWorkspaceProcesses List Get /user/{user_handle}/workspace/{workspace_handle}/process List user workspace processes
UserWorkspaceProcesses Log Get /user/{user_handle}/workspace/{workspace_handle}/process/{process_id}/log/{log_file}.{content_type} List user workspace process logs
UserWorkspaceSnapshots Create Post /user/{user_handle}/workspace/{workspace_handle}/snapshot Create user workspace snapshot
UserWorkspaceSnapshots Delete Delete /user/{user_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id} Delete user workspace snapshot
UserWorkspaceSnapshots Download Get /user/{user_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id}.{content_type} Download user workspace snapshot
UserWorkspaceSnapshots Get Get /user/{user_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id} Get user workspace snapshot
UserWorkspaceSnapshots List Get /user/{user_handle}/workspace/{workspace_handle}/snapshot List user workspace snapshots
UserWorkspaceSnapshots Update Patch /user/{user_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id} Update user workspace snapshot
UserWorkspaces Command Post /user/{user_handle}/workspace/{workspace_handle}/command Run user workspace command
UserWorkspaces Create Post /user/{user_handle}/workspace Create user workspace
UserWorkspaces Delete Delete /user/{user_handle}/workspace/{workspace_handle} Delete user workspace
UserWorkspaces Get Get /user/{user_handle}/workspace/{workspace_handle} Get user workspace
UserWorkspaces GetQuery Get /user/{user_handle}/workspace/{workspace_handle}/query Query user workspace
UserWorkspaces GetQueryWithExtensions Get /user/{user_handle}/workspace/{workspace_handle}/query/data.{extensions} Query user workspace with extensions
UserWorkspaces GetSchema Get /user/{user_handle}/workspace/{workspace_handle}/schema Get user workspace schemas
UserWorkspaces List Get /user/{user_handle}/workspace List user workspaces
UserWorkspaces ListAuditLogs Get /user/{user_handle}/workspace/{workspace_handle}/audit_log User workspace audit logs
UserWorkspaces ListDBLogs Get /user/{user_handle}/workspace/{workspace_handle}/db_log User workspace logs
UserWorkspaces PostQuery Post /user/{user_handle}/workspace/{workspace_handle}/query Query user workspace
UserWorkspaces PostQueryWithExtensions Post /user/{user_handle}/workspace/{workspace_handle}/query/data.{extensions} Query user workspace with extensions
UserWorkspaces Update Patch /user/{user_handle}/workspace/{workspace_handle} Update user workspace
Users Create Post /user Create user
Users CreateAvatar Post /user/{user_handle}/avatar Create user avatar
Users CreateDBPassword Post /user/{user_handle}/password Create user password
Users Delete Delete /user/{user_handle} Delete user
Users DeleteAvatar Delete /user/{user_handle}/avatar Delete user avatar
Users Get Get /user/{user_handle} Get user
Users GetDBPassword Get /user/{user_handle}/password Get user password
Users GetEmail Get /user/{user_handle}/email/{email_id} Get user email
Users GetPreferences Get /user/{user_handle}/preferences Get user preferences
Users GetQuota Get /user/{user_handle}/quota User quota
Users List Get /user List users
Users ListAuditLogs Get /user/{user_handle}/audit_log User audit logs
Users ListEmails Get /user/{user_handle}/email List user emails
Users ListFeatures Get /user/{user_handle}/feature User features
Users Update Patch /user/{user_handle} Update user
Users UpdatePreferences Patch /user/{user_handle}/preferences Update user preferences

Documentation For Models

Documentation For Authorization

ApiKeyAuth
  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Authorization and passed in as the auth context for each request.

Documentation for Utility Methods

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

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

Author

help@steampipe.io

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

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

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

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

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

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	Actors *ActorsService

	Auth *AuthService

	Identities *IdentitiesService

	OrgConnections *OrgConnectionsService

	OrgMembers *OrgMembersService

	OrgProcesses *OrgProcessesService

	OrgWorkspaceAggregators *OrgWorkspaceAggregatorsService

	OrgWorkspaceConnectionAssociations *OrgWorkspaceConnectionAssociationsService

	OrgWorkspaceMembers *OrgWorkspaceMembersService

	OrgWorkspaceModVariables *OrgWorkspaceModVariablesService

	OrgWorkspaceMods *OrgWorkspaceModsService

	OrgWorkspacePipelines *OrgWorkspacePipelinesService

	OrgWorkspaceProcesses *OrgWorkspaceProcessesService

	OrgWorkspaceSnapshots *OrgWorkspaceSnapshotsService

	OrgWorkspaces *OrgWorkspacesService

	Orgs *OrgsService

	UserConnections *UserConnectionsService

	UserProcesses *UserProcessesService

	UserTokens *UserTokensService

	UserWorkspaceAggregators *UserWorkspaceAggregatorsService

	UserWorkspaceConnectionAssociations *UserWorkspaceConnectionAssociationsService

	UserWorkspaceModVariables *UserWorkspaceModVariablesService

	UserWorkspaceMods *UserWorkspaceModsService

	UserWorkspacePipelines *UserWorkspacePipelinesService

	UserWorkspaceProcesses *UserWorkspaceProcessesService

	UserWorkspaceSnapshots *UserWorkspaceSnapshotsService

	UserWorkspaces *UserWorkspacesService

	Users *UsersService
	// contains filtered or unexported fields
}

APIClient manages communication with the Steampipe Cloud API v{{OPEN_API_VERSION}} 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 ActorOrg added in v0.1.1

type ActorOrg struct {
	Org Org `json:"org"`
	// The role of the actor in the org.
	Role string `json:"role"`
	// Any workspaces the actor has explicit permission to within the org. Any org owner will have implicit owner roles over all workspaces, so they will not be listed here.
	Workspaces *[]ActorOrgWorkspace `json:"workspaces,omitempty"`
}

ActorOrg struct for ActorOrg

func NewActorOrg added in v0.1.1

func NewActorOrg(org Org, role string) *ActorOrg

NewActorOrg instantiates a new ActorOrg 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 NewActorOrgWithDefaults added in v0.1.1

func NewActorOrgWithDefaults() *ActorOrg

NewActorOrgWithDefaults instantiates a new ActorOrg 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 (*ActorOrg) GetOrg added in v0.1.1

func (o *ActorOrg) GetOrg() Org

GetOrg returns the Org field value

func (*ActorOrg) GetOrgOk added in v0.1.1

func (o *ActorOrg) GetOrgOk() (*Org, bool)

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

func (*ActorOrg) GetRole added in v0.1.1

func (o *ActorOrg) GetRole() string

GetRole returns the Role field value

func (*ActorOrg) GetRoleOk added in v0.1.1

func (o *ActorOrg) GetRoleOk() (*string, bool)

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

func (*ActorOrg) GetWorkspaces added in v0.1.1

func (o *ActorOrg) GetWorkspaces() []ActorOrgWorkspace

GetWorkspaces returns the Workspaces field value if set, zero value otherwise.

func (*ActorOrg) GetWorkspacesOk added in v0.1.1

func (o *ActorOrg) GetWorkspacesOk() (*[]ActorOrgWorkspace, bool)

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

func (*ActorOrg) HasWorkspaces added in v0.1.1

func (o *ActorOrg) HasWorkspaces() bool

HasWorkspaces returns a boolean if a field has been set.

func (ActorOrg) MarshalJSON added in v0.1.1

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

func (*ActorOrg) SetOrg added in v0.1.1

func (o *ActorOrg) SetOrg(v Org)

SetOrg sets field value

func (*ActorOrg) SetRole added in v0.1.1

func (o *ActorOrg) SetRole(v string)

SetRole sets field value

func (*ActorOrg) SetWorkspaces added in v0.1.1

func (o *ActorOrg) SetWorkspaces(v []ActorOrgWorkspace)

SetWorkspaces gets a reference to the given []ActorOrgWorkspace and assigns it to the Workspaces field.

type ActorOrgWorkspace added in v0.1.1

type ActorOrgWorkspace struct {
	// The role of the actor in the workspace.
	Role      string     `json:"role"`
	Workspace *Workspace `json:"workspace,omitempty"`
}

ActorOrgWorkspace struct for ActorOrgWorkspace

func NewActorOrgWorkspace added in v0.1.1

func NewActorOrgWorkspace(role string) *ActorOrgWorkspace

NewActorOrgWorkspace instantiates a new ActorOrgWorkspace 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 NewActorOrgWorkspaceWithDefaults added in v0.1.1

func NewActorOrgWorkspaceWithDefaults() *ActorOrgWorkspace

NewActorOrgWorkspaceWithDefaults instantiates a new ActorOrgWorkspace 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 (*ActorOrgWorkspace) GetRole added in v0.1.1

func (o *ActorOrgWorkspace) GetRole() string

GetRole returns the Role field value

func (*ActorOrgWorkspace) GetRoleOk added in v0.1.1

func (o *ActorOrgWorkspace) GetRoleOk() (*string, bool)

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

func (*ActorOrgWorkspace) GetWorkspace added in v0.1.1

func (o *ActorOrgWorkspace) GetWorkspace() Workspace

GetWorkspace returns the Workspace field value if set, zero value otherwise.

func (*ActorOrgWorkspace) GetWorkspaceOk added in v0.1.1

func (o *ActorOrgWorkspace) GetWorkspaceOk() (*Workspace, bool)

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

func (*ActorOrgWorkspace) HasWorkspace added in v0.1.1

func (o *ActorOrgWorkspace) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (ActorOrgWorkspace) MarshalJSON added in v0.1.1

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

func (*ActorOrgWorkspace) SetRole added in v0.1.1

func (o *ActorOrgWorkspace) SetRole(v string)

SetRole sets field value

func (*ActorOrgWorkspace) SetWorkspace added in v0.1.1

func (o *ActorOrgWorkspace) SetWorkspace(v Workspace)

SetWorkspace gets a reference to the given Workspace and assigns it to the Workspace field.

type ActorWorkspace added in v0.1.1

type ActorWorkspace struct {
	DatabaseName *string    `json:"database_name,omitempty"`
	Handle       *string    `json:"handle,omitempty"`
	Host         *string    `json:"host,omitempty"`
	Id           *string    `json:"id,omitempty"`
	Identity     *Identity  `json:"identity,omitempty"`
	IdentityId   *string    `json:"identity_id,omitempty"`
	Role         *string    `json:"role,omitempty"`
	Workspace    *Workspace `json:"workspace,omitempty"`
	WorkspaceId  *string    `json:"workspace_id,omitempty"`
}

ActorWorkspace struct for ActorWorkspace

func NewActorWorkspace added in v0.1.1

func NewActorWorkspace() *ActorWorkspace

NewActorWorkspace instantiates a new ActorWorkspace 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 NewActorWorkspaceWithDefaults added in v0.1.1

func NewActorWorkspaceWithDefaults() *ActorWorkspace

NewActorWorkspaceWithDefaults instantiates a new ActorWorkspace 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 (*ActorWorkspace) GetDatabaseName added in v0.1.3

func (o *ActorWorkspace) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*ActorWorkspace) GetDatabaseNameOk added in v0.1.3

func (o *ActorWorkspace) GetDatabaseNameOk() (*string, bool)

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

func (*ActorWorkspace) GetHandle added in v0.1.3

func (o *ActorWorkspace) GetHandle() string

GetHandle returns the Handle field value if set, zero value otherwise.

func (*ActorWorkspace) GetHandleOk added in v0.1.3

func (o *ActorWorkspace) GetHandleOk() (*string, bool)

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

func (*ActorWorkspace) GetHost added in v0.1.3

func (o *ActorWorkspace) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*ActorWorkspace) GetHostOk added in v0.1.3

func (o *ActorWorkspace) GetHostOk() (*string, bool)

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

func (*ActorWorkspace) GetId added in v0.1.3

func (o *ActorWorkspace) GetId() string

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

func (*ActorWorkspace) GetIdOk added in v0.1.3

func (o *ActorWorkspace) 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 (*ActorWorkspace) GetIdentity added in v0.1.1

func (o *ActorWorkspace) GetIdentity() Identity

GetIdentity returns the Identity field value if set, zero value otherwise.

func (*ActorWorkspace) GetIdentityId added in v0.1.1

func (o *ActorWorkspace) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise.

func (*ActorWorkspace) GetIdentityIdOk added in v0.1.1

func (o *ActorWorkspace) GetIdentityIdOk() (*string, bool)

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

func (*ActorWorkspace) GetIdentityOk added in v0.1.1

func (o *ActorWorkspace) GetIdentityOk() (*Identity, bool)

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

func (*ActorWorkspace) GetRole added in v0.1.1

func (o *ActorWorkspace) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*ActorWorkspace) GetRoleOk added in v0.1.1

func (o *ActorWorkspace) 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 (*ActorWorkspace) GetWorkspace added in v0.1.1

func (o *ActorWorkspace) GetWorkspace() Workspace

GetWorkspace returns the Workspace field value if set, zero value otherwise.

func (*ActorWorkspace) GetWorkspaceId added in v0.1.1

func (o *ActorWorkspace) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise.

func (*ActorWorkspace) GetWorkspaceIdOk added in v0.1.1

func (o *ActorWorkspace) GetWorkspaceIdOk() (*string, bool)

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

func (*ActorWorkspace) GetWorkspaceOk added in v0.1.1

func (o *ActorWorkspace) GetWorkspaceOk() (*Workspace, bool)

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

func (*ActorWorkspace) HasDatabaseName added in v0.1.3

func (o *ActorWorkspace) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*ActorWorkspace) HasHandle added in v0.1.3

func (o *ActorWorkspace) HasHandle() bool

HasHandle returns a boolean if a field has been set.

func (*ActorWorkspace) HasHost added in v0.1.3

func (o *ActorWorkspace) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*ActorWorkspace) HasId added in v0.1.3

func (o *ActorWorkspace) HasId() bool

HasId returns a boolean if a field has been set.

func (*ActorWorkspace) HasIdentity added in v0.1.1

func (o *ActorWorkspace) HasIdentity() bool

HasIdentity returns a boolean if a field has been set.

func (*ActorWorkspace) HasIdentityId added in v0.1.1

func (o *ActorWorkspace) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (*ActorWorkspace) HasRole added in v0.1.1

func (o *ActorWorkspace) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*ActorWorkspace) HasWorkspace added in v0.1.1

func (o *ActorWorkspace) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (*ActorWorkspace) HasWorkspaceId added in v0.1.1

func (o *ActorWorkspace) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (ActorWorkspace) MarshalJSON added in v0.1.1

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

func (*ActorWorkspace) SetDatabaseName added in v0.1.3

func (o *ActorWorkspace) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*ActorWorkspace) SetHandle added in v0.1.3

func (o *ActorWorkspace) SetHandle(v string)

SetHandle gets a reference to the given string and assigns it to the Handle field.

func (*ActorWorkspace) SetHost added in v0.1.3

func (o *ActorWorkspace) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*ActorWorkspace) SetId added in v0.1.3

func (o *ActorWorkspace) SetId(v string)

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

func (*ActorWorkspace) SetIdentity added in v0.1.1

func (o *ActorWorkspace) SetIdentity(v Identity)

SetIdentity gets a reference to the given Identity and assigns it to the Identity field.

func (*ActorWorkspace) SetIdentityId added in v0.1.1

func (o *ActorWorkspace) SetIdentityId(v string)

SetIdentityId gets a reference to the given string and assigns it to the IdentityId field.

func (*ActorWorkspace) SetRole added in v0.1.1

func (o *ActorWorkspace) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (*ActorWorkspace) SetWorkspace added in v0.1.1

func (o *ActorWorkspace) SetWorkspace(v Workspace)

SetWorkspace gets a reference to the given Workspace and assigns it to the Workspace field.

func (*ActorWorkspace) SetWorkspaceId added in v0.1.1

func (o *ActorWorkspace) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given string and assigns it to the WorkspaceId field.

type ActorsApiGetRequest

type ActorsApiGetRequest struct {
	ApiService *ActorsService
	// contains filtered or unexported fields
}

func (ActorsApiGetRequest) Execute

func (r ActorsApiGetRequest) Execute() (User, *_nethttp.Response, error)

type ActorsApiListActivityRequest

type ActorsApiListActivityRequest struct {
	ApiService *ActorsService
	// contains filtered or unexported fields
}

func (ActorsApiListActivityRequest) Execute

func (ActorsApiListActivityRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (ActorsApiListActivityRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type ActorsApiListConnectionsRequest

type ActorsApiListConnectionsRequest struct {
	ApiService *ActorsService
	// contains filtered or unexported fields
}

func (ActorsApiListConnectionsRequest) Execute

func (ActorsApiListConnectionsRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (ActorsApiListConnectionsRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type ActorsApiListOrgInvitesRequest added in v0.1.1

type ActorsApiListOrgInvitesRequest struct {
	ApiService *ActorsService
	// contains filtered or unexported fields
}

func (ActorsApiListOrgInvitesRequest) Execute added in v0.1.1

func (ActorsApiListOrgInvitesRequest) Limit added in v0.1.1

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (ActorsApiListOrgInvitesRequest) NextToken added in v0.1.1

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type ActorsApiListOrgsRequest added in v0.1.1

type ActorsApiListOrgsRequest struct {
	ApiService *ActorsService
	// contains filtered or unexported fields
}

func (ActorsApiListOrgsRequest) Execute added in v0.1.1

func (ActorsApiListOrgsRequest) Limit added in v0.1.1

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (ActorsApiListOrgsRequest) NextToken added in v0.1.1

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type ActorsApiListWorkspacesRequest

type ActorsApiListWorkspacesRequest struct {
	ApiService *ActorsService
	// contains filtered or unexported fields
}

func (ActorsApiListWorkspacesRequest) Execute

func (ActorsApiListWorkspacesRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (ActorsApiListWorkspacesRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type ActorsService

type ActorsService service

ActorsService Actors service

func (*ActorsService) Get

Get Actor information

Returns the actor information.

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

func (*ActorsService) GetExecute

Execute executes the request

@return User

func (*ActorsService) ListActivity

ListActivity List actor activity

List the activity for an actor.

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

func (*ActorsService) ListActivityExecute

Execute executes the request

@return ListAuditLogsResponse

func (*ActorsService) ListConnections

ListConnections List actor connections

List the connections for an actor.

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

func (*ActorsService) ListConnectionsExecute

Execute executes the request

@return ListConnectionsResponse

func (*ActorsService) ListOrgInvites added in v0.1.1

ListOrgInvites List org invites for actor

List the orgs to which the actor has been invited.

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

func (*ActorsService) ListOrgInvitesExecute added in v0.1.1

Execute executes the request

@return ListUserOrgsResponse

func (*ActorsService) ListOrgs added in v0.1.1

ListOrgs List actor orgs

List the orgs and org workspaces for an actor, along with role within each.

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

func (*ActorsService) ListOrgsExecute added in v0.1.1

Execute executes the request

@return ListUserOrgsResponse

func (*ActorsService) ListWorkspaces

ListWorkspaces List actor workspaces

List the workspaces for an actor.

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

func (*ActorsService) ListWorkspacesExecute

Execute executes the request

@return ListActorWorkspacesResponse

type AuditRecord added in v0.0.2

type AuditRecord struct {
	// The action performed on the resource.
	ActionType     string `json:"action_type"`
	ActorAvatarUrl string `json:"actor_avatar_url"`
	// The display name of an actor.
	ActorDisplayName string `json:"actor_display_name"`
	// The handle name of an actor.
	ActorHandle string `json:"actor_handle"`
	// The unique identifier of an actor.
	ActorId string `json:"actor_id"`
	ActorIp string `json:"actor_ip"`
	// The time when the audit log was recorded.
	CreatedAt string                 `json:"created_at"`
	Data      map[string]interface{} `json:"data"`
	// The unique identifier for an audit log.
	Id string `json:"id"`
	// The handle name for an identity where the action has been performed.
	IdentityHandle string `json:"identity_handle"`
	// The unique identifier for an identity where the action has been performed.
	IdentityId string  `json:"identity_id"`
	ProcessId  *string `json:"process_id,omitempty"`
	// The handle name of the entity on which the action has been performed.
	TargetHandle *string `json:"target_handle,omitempty"`
	// The unique identifier of the entity on which the action has been performed.
	TargetId *string `json:"target_id,omitempty"`
}

AuditRecord struct for AuditRecord

func NewAuditRecord added in v0.0.2

func NewAuditRecord(actionType string, actorAvatarUrl string, actorDisplayName string, actorHandle string, actorId string, actorIp string, createdAt string, data map[string]interface{}, id string, identityHandle string, identityId string) *AuditRecord

NewAuditRecord instantiates a new AuditRecord 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 NewAuditRecordWithDefaults added in v0.0.2

func NewAuditRecordWithDefaults() *AuditRecord

NewAuditRecordWithDefaults instantiates a new AuditRecord 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 (*AuditRecord) GetActionType added in v0.0.2

func (o *AuditRecord) GetActionType() string

GetActionType returns the ActionType field value

func (*AuditRecord) GetActionTypeOk added in v0.0.2

func (o *AuditRecord) GetActionTypeOk() (*string, bool)

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

func (*AuditRecord) GetActorAvatarUrl added in v0.0.2

func (o *AuditRecord) GetActorAvatarUrl() string

GetActorAvatarUrl returns the ActorAvatarUrl field value

func (*AuditRecord) GetActorAvatarUrlOk added in v0.0.2

func (o *AuditRecord) GetActorAvatarUrlOk() (*string, bool)

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

func (*AuditRecord) GetActorDisplayName added in v0.0.2

func (o *AuditRecord) GetActorDisplayName() string

GetActorDisplayName returns the ActorDisplayName field value

func (*AuditRecord) GetActorDisplayNameOk added in v0.0.2

func (o *AuditRecord) GetActorDisplayNameOk() (*string, bool)

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

func (*AuditRecord) GetActorHandle added in v0.0.2

func (o *AuditRecord) GetActorHandle() string

GetActorHandle returns the ActorHandle field value

func (*AuditRecord) GetActorHandleOk added in v0.0.2

func (o *AuditRecord) GetActorHandleOk() (*string, bool)

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

func (*AuditRecord) GetActorId added in v0.0.2

func (o *AuditRecord) GetActorId() string

GetActorId returns the ActorId field value

func (*AuditRecord) GetActorIdOk added in v0.0.2

func (o *AuditRecord) GetActorIdOk() (*string, bool)

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

func (*AuditRecord) GetActorIp added in v0.0.2

func (o *AuditRecord) GetActorIp() string

GetActorIp returns the ActorIp field value

func (*AuditRecord) GetActorIpOk added in v0.0.2

func (o *AuditRecord) GetActorIpOk() (*string, bool)

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

func (*AuditRecord) GetCreatedAt added in v0.0.2

func (o *AuditRecord) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*AuditRecord) GetCreatedAtOk added in v0.0.2

func (o *AuditRecord) GetCreatedAtOk() (*string, bool)

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

func (*AuditRecord) GetData added in v0.0.2

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

GetData returns the Data field value

func (*AuditRecord) GetDataOk added in v0.0.2

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

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

func (*AuditRecord) GetId added in v0.0.2

func (o *AuditRecord) GetId() string

GetId returns the Id field value

func (*AuditRecord) GetIdOk added in v0.0.2

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

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

func (*AuditRecord) GetIdentityHandle added in v0.0.2

func (o *AuditRecord) GetIdentityHandle() string

GetIdentityHandle returns the IdentityHandle field value

func (*AuditRecord) GetIdentityHandleOk added in v0.0.2

func (o *AuditRecord) GetIdentityHandleOk() (*string, bool)

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

func (*AuditRecord) GetIdentityId added in v0.0.2

func (o *AuditRecord) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*AuditRecord) GetIdentityIdOk added in v0.0.2

func (o *AuditRecord) GetIdentityIdOk() (*string, bool)

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

func (*AuditRecord) GetProcessId added in v0.1.3

func (o *AuditRecord) GetProcessId() string

GetProcessId returns the ProcessId field value if set, zero value otherwise.

func (*AuditRecord) GetProcessIdOk added in v0.1.3

func (o *AuditRecord) GetProcessIdOk() (*string, bool)

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

func (*AuditRecord) GetTargetHandle added in v0.0.2

func (o *AuditRecord) GetTargetHandle() string

GetTargetHandle returns the TargetHandle field value if set, zero value otherwise.

func (*AuditRecord) GetTargetHandleOk added in v0.0.2

func (o *AuditRecord) GetTargetHandleOk() (*string, bool)

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

func (*AuditRecord) GetTargetId added in v0.0.2

func (o *AuditRecord) GetTargetId() string

GetTargetId returns the TargetId field value if set, zero value otherwise.

func (*AuditRecord) GetTargetIdOk added in v0.0.2

func (o *AuditRecord) 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 (*AuditRecord) HasProcessId added in v0.1.3

func (o *AuditRecord) HasProcessId() bool

HasProcessId returns a boolean if a field has been set.

func (*AuditRecord) HasTargetHandle added in v0.0.2

func (o *AuditRecord) HasTargetHandle() bool

HasTargetHandle returns a boolean if a field has been set.

func (*AuditRecord) HasTargetId added in v0.0.2

func (o *AuditRecord) HasTargetId() bool

HasTargetId returns a boolean if a field has been set.

func (AuditRecord) MarshalJSON added in v0.0.2

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

func (*AuditRecord) SetActionType added in v0.0.2

func (o *AuditRecord) SetActionType(v string)

SetActionType sets field value

func (*AuditRecord) SetActorAvatarUrl added in v0.0.2

func (o *AuditRecord) SetActorAvatarUrl(v string)

SetActorAvatarUrl sets field value

func (*AuditRecord) SetActorDisplayName added in v0.0.2

func (o *AuditRecord) SetActorDisplayName(v string)

SetActorDisplayName sets field value

func (*AuditRecord) SetActorHandle added in v0.0.2

func (o *AuditRecord) SetActorHandle(v string)

SetActorHandle sets field value

func (*AuditRecord) SetActorId added in v0.0.2

func (o *AuditRecord) SetActorId(v string)

SetActorId sets field value

func (*AuditRecord) SetActorIp added in v0.0.2

func (o *AuditRecord) SetActorIp(v string)

SetActorIp sets field value

func (*AuditRecord) SetCreatedAt added in v0.0.2

func (o *AuditRecord) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*AuditRecord) SetData added in v0.0.2

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

SetData sets field value

func (*AuditRecord) SetId added in v0.0.2

func (o *AuditRecord) SetId(v string)

SetId sets field value

func (*AuditRecord) SetIdentityHandle added in v0.0.2

func (o *AuditRecord) SetIdentityHandle(v string)

SetIdentityHandle sets field value

func (*AuditRecord) SetIdentityId added in v0.0.2

func (o *AuditRecord) SetIdentityId(v string)

SetIdentityId sets field value

func (*AuditRecord) SetProcessId added in v0.1.3

func (o *AuditRecord) SetProcessId(v string)

SetProcessId gets a reference to the given string and assigns it to the ProcessId field.

func (*AuditRecord) SetTargetHandle added in v0.0.2

func (o *AuditRecord) SetTargetHandle(v string)

SetTargetHandle gets a reference to the given string and assigns it to the TargetHandle field.

func (*AuditRecord) SetTargetId added in v0.0.2

func (o *AuditRecord) SetTargetId(v string)

SetTargetId gets a reference to the given string and assigns it to the TargetId field.

type AuthApiConfirmLoginRequest

type AuthApiConfirmLoginRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiConfirmLoginRequest) Execute

func (AuthApiConfirmLoginRequest) T

Specify the token.

type AuthApiConfirmSignupRequest

type AuthApiConfirmSignupRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiConfirmSignupRequest) Execute

func (AuthApiConfirmSignupRequest) T

Specify the token.

type AuthApiLoginRequest

type AuthApiLoginRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiLoginRequest) Execute

func (r AuthApiLoginRequest) Execute() (*_nethttp.Response, error)

func (AuthApiLoginRequest) Request

The request body to login.

type AuthApiLoginTokenCreateRequest added in v0.2.0

type AuthApiLoginTokenCreateRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiLoginTokenCreateRequest) Execute added in v0.2.0

type AuthApiLoginTokenDeleteRequest added in v0.2.0

type AuthApiLoginTokenDeleteRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiLoginTokenDeleteRequest) Execute added in v0.2.0

type AuthApiLoginTokenGetRequest added in v0.2.0

type AuthApiLoginTokenGetRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiLoginTokenGetRequest) Code added in v0.2.0

The challenge code to request the temporary token. Will only be obtained after confirming the login request in the Steampipe Cloud UI.

func (AuthApiLoginTokenGetRequest) Execute added in v0.2.0

type AuthApiLoginTokenUpdateRequest added in v0.2.0

type AuthApiLoginTokenUpdateRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiLoginTokenUpdateRequest) Execute added in v0.2.0

func (AuthApiLoginTokenUpdateRequest) Request added in v0.2.0

The request body containing updates for the temporary token request.

type AuthApiLogoutRequest

type AuthApiLogoutRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiLogoutRequest) Execute

func (r AuthApiLogoutRequest) Execute() (*_nethttp.Response, error)

type AuthApiProviderCallbackRequest

type AuthApiProviderCallbackRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiProviderCallbackRequest) Execute

type AuthApiProviderRequest

type AuthApiProviderRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiProviderRequest) Execute

type AuthApiSignupRequest

type AuthApiSignupRequest struct {
	ApiService *AuthService
	// contains filtered or unexported fields
}

func (AuthApiSignupRequest) Execute

func (r AuthApiSignupRequest) Execute() (*_nethttp.Response, error)

func (AuthApiSignupRequest) Request

The request body to signup.

type AuthService

type AuthService service

AuthService Auth service

func (*AuthService) ConfirmLogin

ConfirmLogin Confirm user login

Confirm user login.

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

func (*AuthService) ConfirmLoginExecute

func (a *AuthService) ConfirmLoginExecute(r AuthApiConfirmLoginRequest) (*_nethttp.Response, error)

Execute executes the request

func (*AuthService) ConfirmSignup

ConfirmSignup Confirm user signup

Confirm user signup.

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

func (*AuthService) ConfirmSignupExecute

func (a *AuthService) ConfirmSignupExecute(r AuthApiConfirmSignupRequest) (*_nethttp.Response, error)

Execute executes the request

func (*AuthService) Login

Login User login

User login.

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

func (*AuthService) LoginExecute

func (a *AuthService) LoginExecute(r AuthApiLoginRequest) (*_nethttp.Response, error)

Execute executes the request

func (*AuthService) LoginTokenCreate added in v0.2.0

LoginTokenCreate Generate temporary token request

Generate a temporary token request for CLI login.

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

func (*AuthService) LoginTokenCreateExecute added in v0.2.0

Execute executes the request

@return TemporaryTokenRequest

func (*AuthService) LoginTokenDelete added in v0.2.0

func (a *AuthService) LoginTokenDelete(ctx _context.Context, temporaryTokenRequestId string) AuthApiLoginTokenDeleteRequest

LoginTokenDelete Delete temporary token request

Delete a temporary token request status.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param temporaryTokenRequestId The ID of the temporary token request to delete.
@return AuthApiLoginTokenDeleteRequest

func (*AuthService) LoginTokenDeleteExecute added in v0.2.0

Execute executes the request

@return TemporaryTokenRequest

func (*AuthService) LoginTokenGet added in v0.2.0

func (a *AuthService) LoginTokenGet(ctx _context.Context, temporaryTokenRequestId string) AuthApiLoginTokenGetRequest

LoginTokenGet Get temporary token request

Get a temporary token request status with token.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param temporaryTokenRequestId The ID of the temporary token request to get.
@return AuthApiLoginTokenGetRequest

func (*AuthService) LoginTokenGetExecute added in v0.2.0

Execute executes the request

@return TemporaryTokenRequest

func (*AuthService) LoginTokenUpdate added in v0.2.0

func (a *AuthService) LoginTokenUpdate(ctx _context.Context, temporaryTokenRequestId string) AuthApiLoginTokenUpdateRequest

LoginTokenUpdate Update temporary token request

Update a temporary token request status.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param temporaryTokenRequestId The ID of the temporary token request to update.
@return AuthApiLoginTokenUpdateRequest

func (*AuthService) LoginTokenUpdateExecute added in v0.2.0

Execute executes the request

@return TemporaryTokenRequest

func (*AuthService) Logout

func (a *AuthService) Logout(ctx _context.Context, provider string) AuthApiLogoutRequest

Logout User logout

Removes the session that is associated with the user.

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

func (*AuthService) LogoutExecute

func (a *AuthService) LogoutExecute(r AuthApiLogoutRequest) (*_nethttp.Response, error)

Execute executes the request

func (*AuthService) Provider

func (a *AuthService) Provider(ctx _context.Context, provider string) AuthApiProviderRequest

Provider Auth Provider

With an authentication provider, users can access Steampipe Cloud with single sign-on (SSO) using credentials from a third party. Steampipe Cloud currently supports GitHub as an authentication provider.

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

func (*AuthService) ProviderCallback

func (a *AuthService) ProviderCallback(ctx _context.Context, provider string) AuthApiProviderCallbackRequest

ProviderCallback Auth provider callback

Auth provider callback.

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

func (*AuthService) ProviderCallbackExecute

func (a *AuthService) ProviderCallbackExecute(r AuthApiProviderCallbackRequest) (*_nethttp.Response, error)

Execute executes the request

func (*AuthService) ProviderExecute

func (a *AuthService) ProviderExecute(r AuthApiProviderRequest) (*_nethttp.Response, error)

Execute executes the request

func (*AuthService) Signup

Signup User signup

New user signup.

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

func (*AuthService) SignupExecute

func (a *AuthService) SignupExecute(r AuthApiSignupRequest) (*_nethttp.Response, error)

Execute executes the request

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 BillingInfo added in v0.6.0

type BillingInfo struct {
	// The time when a subscription will be cancelled in stripe.
	DeleteAt *string `json:"delete_at,omitempty"`
	// The time when the org will be suspended due to failed billing in ISO 8601 UTC.
	DisableAt *string `json:"disable_at,omitempty"`
	// The billing status for the org in stripe i.e. whether its pending verification or verified.
	Status string `json:"status"`
}

BillingInfo struct for BillingInfo

func NewBillingInfo added in v0.6.0

func NewBillingInfo(status string) *BillingInfo

NewBillingInfo instantiates a new BillingInfo 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 NewBillingInfoWithDefaults added in v0.6.0

func NewBillingInfoWithDefaults() *BillingInfo

NewBillingInfoWithDefaults instantiates a new BillingInfo 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 (*BillingInfo) GetDeleteAt added in v0.6.0

func (o *BillingInfo) GetDeleteAt() string

GetDeleteAt returns the DeleteAt field value if set, zero value otherwise.

func (*BillingInfo) GetDeleteAtOk added in v0.6.0

func (o *BillingInfo) GetDeleteAtOk() (*string, bool)

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

func (*BillingInfo) GetDisableAt added in v0.6.0

func (o *BillingInfo) GetDisableAt() string

GetDisableAt returns the DisableAt field value if set, zero value otherwise.

func (*BillingInfo) GetDisableAtOk added in v0.6.0

func (o *BillingInfo) GetDisableAtOk() (*string, bool)

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

func (*BillingInfo) GetStatus added in v0.6.0

func (o *BillingInfo) GetStatus() string

GetStatus returns the Status field value

func (*BillingInfo) GetStatusOk added in v0.6.0

func (o *BillingInfo) GetStatusOk() (*string, bool)

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

func (*BillingInfo) HasDeleteAt added in v0.6.0

func (o *BillingInfo) HasDeleteAt() bool

HasDeleteAt returns a boolean if a field has been set.

func (*BillingInfo) HasDisableAt added in v0.6.0

func (o *BillingInfo) HasDisableAt() bool

HasDisableAt returns a boolean if a field has been set.

func (BillingInfo) MarshalJSON added in v0.6.0

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

func (*BillingInfo) SetDeleteAt added in v0.6.0

func (o *BillingInfo) SetDeleteAt(v string)

SetDeleteAt gets a reference to the given string and assigns it to the DeleteAt field.

func (*BillingInfo) SetDisableAt added in v0.6.0

func (o *BillingInfo) SetDisableAt(v string)

SetDisableAt gets a reference to the given string and assigns it to the DisableAt field.

func (*BillingInfo) SetStatus added in v0.6.0

func (o *BillingInfo) SetStatus(v string)

SetStatus sets field value

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type Connection added in v0.0.2

type Connection struct {
	Config *map[string]interface{} `json:"config,omitempty"`
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The time of the last update in ISO 8601 UTC.
	DeletedAt *string `json:"deleted_at,omitempty"`
	DeletedBy *User   `json:"deleted_by,omitempty"`
	// The ID of the user that performed the deletion.
	DeletedById string `json:"deleted_by_id"`
	// The handle name of the  connection.
	Handle string `json:"handle"`
	// The unique identifier for the connection.
	Id string `json:"id"`
	// The unique identifier for an identity where the connection has been created.
	IdentityId string `json:"identity_id"`
	// The plugin name for the connection.
	Plugin *string `json:"plugin,omitempty"`
	// The plugin version for the connection.
	PluginVersion *string `json:"plugin_version,omitempty"`
	// Type of connection i.e aggregator or connection.
	Type *string `json:"type,omitempty"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
}

Connection struct for Connection

func NewConnection added in v0.0.2

func NewConnection(createdAt string, createdById string, deletedById string, handle string, id string, identityId string, updatedById string, versionId int32) *Connection

NewConnection instantiates a new Connection 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 NewConnectionWithDefaults added in v0.0.2

func NewConnectionWithDefaults() *Connection

NewConnectionWithDefaults instantiates a new Connection 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 (*Connection) GetConfig added in v0.0.2

func (o *Connection) GetConfig() map[string]interface{}

GetConfig returns the Config field value if set, zero value otherwise.

func (*Connection) GetConfigOk added in v0.0.2

func (o *Connection) GetConfigOk() (*map[string]interface{}, bool)

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

func (*Connection) GetCreatedAt added in v0.0.2

func (o *Connection) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*Connection) GetCreatedAtOk added in v0.0.2

func (o *Connection) GetCreatedAtOk() (*string, bool)

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

func (*Connection) GetCreatedBy added in v0.1.0

func (o *Connection) GetCreatedBy() User

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

func (*Connection) GetCreatedById added in v0.1.0

func (o *Connection) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*Connection) GetCreatedByIdOk added in v0.1.0

func (o *Connection) GetCreatedByIdOk() (*string, bool)

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

func (*Connection) GetCreatedByOk added in v0.1.0

func (o *Connection) GetCreatedByOk() (*User, 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 (*Connection) GetDeletedAt added in v0.2.0

func (o *Connection) GetDeletedAt() string

GetDeletedAt returns the DeletedAt field value if set, zero value otherwise.

func (*Connection) GetDeletedAtOk added in v0.2.0

func (o *Connection) GetDeletedAtOk() (*string, bool)

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

func (*Connection) GetDeletedBy added in v0.2.0

func (o *Connection) GetDeletedBy() User

GetDeletedBy returns the DeletedBy field value if set, zero value otherwise.

func (*Connection) GetDeletedById added in v0.2.0

func (o *Connection) GetDeletedById() string

GetDeletedById returns the DeletedById field value

func (*Connection) GetDeletedByIdOk added in v0.2.0

func (o *Connection) GetDeletedByIdOk() (*string, bool)

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

func (*Connection) GetDeletedByOk added in v0.2.0

func (o *Connection) GetDeletedByOk() (*User, bool)

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

func (*Connection) GetHandle added in v0.0.2

func (o *Connection) GetHandle() string

GetHandle returns the Handle field value

func (*Connection) GetHandleOk added in v0.0.2

func (o *Connection) GetHandleOk() (*string, bool)

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

func (*Connection) GetId added in v0.0.2

func (o *Connection) GetId() string

GetId returns the Id field value

func (*Connection) GetIdOk added in v0.0.2

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

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

func (*Connection) GetIdentityId added in v0.0.2

func (o *Connection) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*Connection) GetIdentityIdOk added in v0.0.2

func (o *Connection) GetIdentityIdOk() (*string, bool)

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

func (*Connection) GetPlugin added in v0.0.2

func (o *Connection) GetPlugin() string

GetPlugin returns the Plugin field value if set, zero value otherwise.

func (*Connection) GetPluginOk added in v0.0.2

func (o *Connection) GetPluginOk() (*string, bool)

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

func (*Connection) GetPluginVersion added in v0.5.0

func (o *Connection) GetPluginVersion() string

GetPluginVersion returns the PluginVersion field value if set, zero value otherwise.

func (*Connection) GetPluginVersionOk added in v0.5.0

func (o *Connection) GetPluginVersionOk() (*string, bool)

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

func (*Connection) GetType added in v0.0.2

func (o *Connection) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Connection) GetTypeOk added in v0.0.2

func (o *Connection) 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 (*Connection) GetUpdatedAt added in v0.0.2

func (o *Connection) GetUpdatedAt() string

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

func (*Connection) GetUpdatedAtOk added in v0.0.2

func (o *Connection) GetUpdatedAtOk() (*string, 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 (*Connection) GetUpdatedBy added in v0.1.0

func (o *Connection) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*Connection) GetUpdatedById added in v0.1.0

func (o *Connection) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*Connection) GetUpdatedByIdOk added in v0.1.0

func (o *Connection) GetUpdatedByIdOk() (*string, bool)

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

func (*Connection) GetUpdatedByOk added in v0.1.0

func (o *Connection) GetUpdatedByOk() (*User, bool)

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

func (*Connection) GetVersionId added in v0.0.2

func (o *Connection) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*Connection) GetVersionIdOk added in v0.0.2

func (o *Connection) GetVersionIdOk() (*int32, bool)

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

func (*Connection) HasConfig added in v0.0.2

func (o *Connection) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*Connection) HasCreatedBy added in v0.1.0

func (o *Connection) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Connection) HasDeletedAt added in v0.2.0

func (o *Connection) HasDeletedAt() bool

HasDeletedAt returns a boolean if a field has been set.

func (*Connection) HasDeletedBy added in v0.2.0

func (o *Connection) HasDeletedBy() bool

HasDeletedBy returns a boolean if a field has been set.

func (*Connection) HasPlugin added in v0.0.2

func (o *Connection) HasPlugin() bool

HasPlugin returns a boolean if a field has been set.

func (*Connection) HasPluginVersion added in v0.5.0

func (o *Connection) HasPluginVersion() bool

HasPluginVersion returns a boolean if a field has been set.

func (*Connection) HasType added in v0.0.2

func (o *Connection) HasType() bool

HasType returns a boolean if a field has been set.

func (*Connection) HasUpdatedAt added in v0.0.2

func (o *Connection) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Connection) HasUpdatedBy added in v0.1.0

func (o *Connection) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (Connection) MarshalJSON added in v0.0.2

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

func (*Connection) SetConfig added in v0.0.2

func (o *Connection) SetConfig(v map[string]interface{})

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

func (*Connection) SetCreatedAt added in v0.0.2

func (o *Connection) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*Connection) SetCreatedBy added in v0.1.0

func (o *Connection) SetCreatedBy(v User)

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

func (*Connection) SetCreatedById added in v0.1.0

func (o *Connection) SetCreatedById(v string)

SetCreatedById sets field value

func (*Connection) SetDeletedAt added in v0.2.0

func (o *Connection) SetDeletedAt(v string)

SetDeletedAt gets a reference to the given string and assigns it to the DeletedAt field.

func (*Connection) SetDeletedBy added in v0.2.0

func (o *Connection) SetDeletedBy(v User)

SetDeletedBy gets a reference to the given User and assigns it to the DeletedBy field.

func (*Connection) SetDeletedById added in v0.2.0

func (o *Connection) SetDeletedById(v string)

SetDeletedById sets field value

func (*Connection) SetHandle added in v0.0.2

func (o *Connection) SetHandle(v string)

SetHandle sets field value

func (*Connection) SetId added in v0.0.2

func (o *Connection) SetId(v string)

SetId sets field value

func (*Connection) SetIdentityId added in v0.0.2

func (o *Connection) SetIdentityId(v string)

SetIdentityId sets field value

func (*Connection) SetPlugin added in v0.0.2

func (o *Connection) SetPlugin(v string)

SetPlugin gets a reference to the given string and assigns it to the Plugin field.

func (*Connection) SetPluginVersion added in v0.5.0

func (o *Connection) SetPluginVersion(v string)

SetPluginVersion gets a reference to the given string and assigns it to the PluginVersion field.

func (*Connection) SetType added in v0.0.2

func (o *Connection) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Connection) SetUpdatedAt added in v0.0.2

func (o *Connection) SetUpdatedAt(v string)

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

func (*Connection) SetUpdatedBy added in v0.1.0

func (o *Connection) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*Connection) SetUpdatedById added in v0.1.0

func (o *Connection) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*Connection) SetVersionId added in v0.0.2

func (o *Connection) SetVersionId(v int32)

SetVersionId sets field value

type ConnectionTestResult added in v0.0.2

type ConnectionTestResult struct {
	Reason *string `json:"reason,omitempty"`
	Status *string `json:"status,omitempty"`
}

ConnectionTestResult struct for ConnectionTestResult

func NewConnectionTestResult added in v0.0.2

func NewConnectionTestResult() *ConnectionTestResult

NewConnectionTestResult instantiates a new ConnectionTestResult 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 NewConnectionTestResultWithDefaults added in v0.0.2

func NewConnectionTestResultWithDefaults() *ConnectionTestResult

NewConnectionTestResultWithDefaults instantiates a new ConnectionTestResult 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 (*ConnectionTestResult) GetReason added in v0.0.2

func (o *ConnectionTestResult) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*ConnectionTestResult) GetReasonOk added in v0.0.2

func (o *ConnectionTestResult) GetReasonOk() (*string, bool)

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

func (*ConnectionTestResult) GetStatus added in v0.0.2

func (o *ConnectionTestResult) GetStatus() string

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

func (*ConnectionTestResult) GetStatusOk added in v0.0.2

func (o *ConnectionTestResult) GetStatusOk() (*string, bool)

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

func (*ConnectionTestResult) HasReason added in v0.0.2

func (o *ConnectionTestResult) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*ConnectionTestResult) HasStatus added in v0.0.2

func (o *ConnectionTestResult) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectionTestResult) MarshalJSON added in v0.0.2

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

func (*ConnectionTestResult) SetReason added in v0.0.2

func (o *ConnectionTestResult) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*ConnectionTestResult) SetStatus added in v0.0.2

func (o *ConnectionTestResult) SetStatus(v string)

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

type CreateConnectionRequest added in v0.0.2

type CreateConnectionRequest struct {
	Config *map[string]interface{} `json:"config,omitempty"`
	Handle string                  `json:"handle"`
	// Type   string                 `json:\"type\" binding:\"required,steampipe_connection_type\"`
	Plugin string `json:"plugin"`
}

CreateConnectionRequest struct for CreateConnectionRequest

func NewCreateConnectionRequest added in v0.0.2

func NewCreateConnectionRequest(handle string, plugin string) *CreateConnectionRequest

NewCreateConnectionRequest instantiates a new CreateConnectionRequest 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 NewCreateConnectionRequestWithDefaults added in v0.0.2

func NewCreateConnectionRequestWithDefaults() *CreateConnectionRequest

NewCreateConnectionRequestWithDefaults instantiates a new CreateConnectionRequest 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 (*CreateConnectionRequest) GetConfig added in v0.0.2

func (o *CreateConnectionRequest) GetConfig() map[string]interface{}

GetConfig returns the Config field value if set, zero value otherwise.

func (*CreateConnectionRequest) GetConfigOk added in v0.0.2

func (o *CreateConnectionRequest) GetConfigOk() (*map[string]interface{}, bool)

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

func (*CreateConnectionRequest) GetHandle added in v0.0.2

func (o *CreateConnectionRequest) GetHandle() string

GetHandle returns the Handle field value

func (*CreateConnectionRequest) GetHandleOk added in v0.0.2

func (o *CreateConnectionRequest) GetHandleOk() (*string, bool)

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

func (*CreateConnectionRequest) GetPlugin added in v0.0.2

func (o *CreateConnectionRequest) GetPlugin() string

GetPlugin returns the Plugin field value

func (*CreateConnectionRequest) GetPluginOk added in v0.0.2

func (o *CreateConnectionRequest) GetPluginOk() (*string, bool)

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

func (*CreateConnectionRequest) HasConfig added in v0.0.2

func (o *CreateConnectionRequest) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (CreateConnectionRequest) MarshalJSON added in v0.0.2

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

func (*CreateConnectionRequest) SetConfig added in v0.0.2

func (o *CreateConnectionRequest) SetConfig(v map[string]interface{})

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

func (*CreateConnectionRequest) SetHandle added in v0.0.2

func (o *CreateConnectionRequest) SetHandle(v string)

SetHandle sets field value

func (*CreateConnectionRequest) SetPlugin added in v0.0.2

func (o *CreateConnectionRequest) SetPlugin(v string)

SetPlugin sets field value

type CreateOrgAvatarResponse added in v0.6.0

type CreateOrgAvatarResponse struct {
	// The URL of the uploaded avatar.
	AvatarUrl *string `json:"avatar_url,omitempty"`
}

CreateOrgAvatarResponse struct for CreateOrgAvatarResponse

func NewCreateOrgAvatarResponse added in v0.6.0

func NewCreateOrgAvatarResponse() *CreateOrgAvatarResponse

NewCreateOrgAvatarResponse instantiates a new CreateOrgAvatarResponse 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 NewCreateOrgAvatarResponseWithDefaults added in v0.6.0

func NewCreateOrgAvatarResponseWithDefaults() *CreateOrgAvatarResponse

NewCreateOrgAvatarResponseWithDefaults instantiates a new CreateOrgAvatarResponse 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 (*CreateOrgAvatarResponse) GetAvatarUrl added in v0.6.0

func (o *CreateOrgAvatarResponse) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*CreateOrgAvatarResponse) GetAvatarUrlOk added in v0.6.0

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

func (o *CreateOrgAvatarResponse) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (CreateOrgAvatarResponse) MarshalJSON added in v0.6.0

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

func (*CreateOrgAvatarResponse) SetAvatarUrl added in v0.6.0

func (o *CreateOrgAvatarResponse) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

type CreateOrgRequest added in v0.0.2

type CreateOrgRequest struct {
	DisplayName *string `json:"display_name,omitempty"`
	Handle      string  `json:"handle"`
	PlanId      *string `json:"plan_id,omitempty"`
	Url         *string `json:"url,omitempty"`
}

CreateOrgRequest struct for CreateOrgRequest

func NewCreateOrgRequest added in v0.0.2

func NewCreateOrgRequest(handle string) *CreateOrgRequest

NewCreateOrgRequest instantiates a new CreateOrgRequest 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 NewCreateOrgRequestWithDefaults added in v0.0.2

func NewCreateOrgRequestWithDefaults() *CreateOrgRequest

NewCreateOrgRequestWithDefaults instantiates a new CreateOrgRequest 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 (*CreateOrgRequest) GetDisplayName added in v0.0.2

func (o *CreateOrgRequest) GetDisplayName() string

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

func (*CreateOrgRequest) GetDisplayNameOk added in v0.0.2

func (o *CreateOrgRequest) 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 (*CreateOrgRequest) GetHandle added in v0.0.2

func (o *CreateOrgRequest) GetHandle() string

GetHandle returns the Handle field value

func (*CreateOrgRequest) GetHandleOk added in v0.0.2

func (o *CreateOrgRequest) GetHandleOk() (*string, bool)

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

func (*CreateOrgRequest) GetPlanId added in v0.6.0

func (o *CreateOrgRequest) GetPlanId() string

GetPlanId returns the PlanId field value if set, zero value otherwise.

func (*CreateOrgRequest) GetPlanIdOk added in v0.6.0

func (o *CreateOrgRequest) GetPlanIdOk() (*string, bool)

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

func (*CreateOrgRequest) GetUrl added in v0.0.2

func (o *CreateOrgRequest) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*CreateOrgRequest) GetUrlOk added in v0.0.2

func (o *CreateOrgRequest) 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 (*CreateOrgRequest) HasDisplayName added in v0.0.2

func (o *CreateOrgRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CreateOrgRequest) HasPlanId added in v0.6.0

func (o *CreateOrgRequest) HasPlanId() bool

HasPlanId returns a boolean if a field has been set.

func (*CreateOrgRequest) HasUrl added in v0.0.2

func (o *CreateOrgRequest) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (CreateOrgRequest) MarshalJSON added in v0.0.2

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

func (*CreateOrgRequest) SetDisplayName added in v0.0.2

func (o *CreateOrgRequest) SetDisplayName(v string)

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

func (*CreateOrgRequest) SetHandle added in v0.0.2

func (o *CreateOrgRequest) SetHandle(v string)

SetHandle sets field value

func (*CreateOrgRequest) SetPlanId added in v0.6.0

func (o *CreateOrgRequest) SetPlanId(v string)

SetPlanId gets a reference to the given string and assigns it to the PlanId field.

func (*CreateOrgRequest) SetUrl added in v0.0.2

func (o *CreateOrgRequest) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type CreateOrgWorkspaceUserRequest added in v0.1.2

type CreateOrgWorkspaceUserRequest struct {
	Handle string `json:"handle"`
	Role   string `json:"role"`
}

CreateOrgWorkspaceUserRequest struct for CreateOrgWorkspaceUserRequest

func NewCreateOrgWorkspaceUserRequest added in v0.1.2

func NewCreateOrgWorkspaceUserRequest(handle string, role string) *CreateOrgWorkspaceUserRequest

NewCreateOrgWorkspaceUserRequest instantiates a new CreateOrgWorkspaceUserRequest 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 NewCreateOrgWorkspaceUserRequestWithDefaults added in v0.1.2

func NewCreateOrgWorkspaceUserRequestWithDefaults() *CreateOrgWorkspaceUserRequest

NewCreateOrgWorkspaceUserRequestWithDefaults instantiates a new CreateOrgWorkspaceUserRequest 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 (*CreateOrgWorkspaceUserRequest) GetHandle added in v0.1.2

func (o *CreateOrgWorkspaceUserRequest) GetHandle() string

GetHandle returns the Handle field value

func (*CreateOrgWorkspaceUserRequest) GetHandleOk added in v0.1.2

func (o *CreateOrgWorkspaceUserRequest) GetHandleOk() (*string, bool)

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

func (*CreateOrgWorkspaceUserRequest) GetRole added in v0.1.2

GetRole returns the Role field value

func (*CreateOrgWorkspaceUserRequest) GetRoleOk added in v0.1.2

func (o *CreateOrgWorkspaceUserRequest) GetRoleOk() (*string, bool)

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

func (CreateOrgWorkspaceUserRequest) MarshalJSON added in v0.1.2

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

func (*CreateOrgWorkspaceUserRequest) SetHandle added in v0.1.2

func (o *CreateOrgWorkspaceUserRequest) SetHandle(v string)

SetHandle sets field value

func (*CreateOrgWorkspaceUserRequest) SetRole added in v0.1.2

func (o *CreateOrgWorkspaceUserRequest) SetRole(v string)

SetRole sets field value

type CreatePipelineRequest added in v0.5.0

type CreatePipelineRequest struct {
	Args      interface{}       `json:"args"`
	Frequency PipelineFrequency `json:"frequency"`
	// The name of the pipeline to be executed.
	Pipeline string      `json:"pipeline"`
	Tags     interface{} `json:"tags,omitempty"`
	// The title of the pipeline.
	Title string `json:"title"`
}

CreatePipelineRequest struct for CreatePipelineRequest

func NewCreatePipelineRequest added in v0.5.0

func NewCreatePipelineRequest(args interface{}, frequency PipelineFrequency, pipeline string, title string) *CreatePipelineRequest

NewCreatePipelineRequest instantiates a new CreatePipelineRequest 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 NewCreatePipelineRequestWithDefaults added in v0.5.0

func NewCreatePipelineRequestWithDefaults() *CreatePipelineRequest

NewCreatePipelineRequestWithDefaults instantiates a new CreatePipelineRequest 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 (*CreatePipelineRequest) GetArgs added in v0.5.0

func (o *CreatePipelineRequest) GetArgs() interface{}

GetArgs returns the Args field value If the value is explicit nil, the zero value for interface{} will be returned

func (*CreatePipelineRequest) GetArgsOk added in v0.5.0

func (o *CreatePipelineRequest) GetArgsOk() (*interface{}, bool)

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

func (*CreatePipelineRequest) GetFrequency added in v0.5.0

func (o *CreatePipelineRequest) GetFrequency() PipelineFrequency

GetFrequency returns the Frequency field value

func (*CreatePipelineRequest) GetFrequencyOk added in v0.5.0

func (o *CreatePipelineRequest) GetFrequencyOk() (*PipelineFrequency, bool)

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

func (*CreatePipelineRequest) GetPipeline added in v0.5.0

func (o *CreatePipelineRequest) GetPipeline() string

GetPipeline returns the Pipeline field value

func (*CreatePipelineRequest) GetPipelineOk added in v0.5.0

func (o *CreatePipelineRequest) GetPipelineOk() (*string, bool)

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

func (*CreatePipelineRequest) GetTags added in v0.5.0

func (o *CreatePipelineRequest) GetTags() interface{}

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

func (*CreatePipelineRequest) GetTagsOk added in v0.5.0

func (o *CreatePipelineRequest) GetTagsOk() (*interface{}, bool)

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

func (*CreatePipelineRequest) GetTitle added in v0.5.0

func (o *CreatePipelineRequest) GetTitle() string

GetTitle returns the Title field value

func (*CreatePipelineRequest) GetTitleOk added in v0.5.0

func (o *CreatePipelineRequest) GetTitleOk() (*string, bool)

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

func (*CreatePipelineRequest) HasTags added in v0.5.0

func (o *CreatePipelineRequest) HasTags() bool

HasTags returns a boolean if a field has been set.

func (CreatePipelineRequest) MarshalJSON added in v0.5.0

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

func (*CreatePipelineRequest) SetArgs added in v0.5.0

func (o *CreatePipelineRequest) SetArgs(v interface{})

SetArgs sets field value

func (*CreatePipelineRequest) SetFrequency added in v0.5.0

func (o *CreatePipelineRequest) SetFrequency(v PipelineFrequency)

SetFrequency sets field value

func (*CreatePipelineRequest) SetPipeline added in v0.5.0

func (o *CreatePipelineRequest) SetPipeline(v string)

SetPipeline sets field value

func (*CreatePipelineRequest) SetTags added in v0.5.0

func (o *CreatePipelineRequest) SetTags(v interface{})

SetTags gets a reference to the given interface{} and assigns it to the Tags field.

func (*CreatePipelineRequest) SetTitle added in v0.5.0

func (o *CreatePipelineRequest) SetTitle(v string)

SetTitle sets field value

type CreateUserAvatarResponse added in v0.6.0

type CreateUserAvatarResponse struct {
	// The URL of the uploaded avatar.
	AvatarUrl *string `json:"avatar_url,omitempty"`
}

CreateUserAvatarResponse struct for CreateUserAvatarResponse

func NewCreateUserAvatarResponse added in v0.6.0

func NewCreateUserAvatarResponse() *CreateUserAvatarResponse

NewCreateUserAvatarResponse instantiates a new CreateUserAvatarResponse 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 NewCreateUserAvatarResponseWithDefaults added in v0.6.0

func NewCreateUserAvatarResponseWithDefaults() *CreateUserAvatarResponse

NewCreateUserAvatarResponseWithDefaults instantiates a new CreateUserAvatarResponse 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 (*CreateUserAvatarResponse) GetAvatarUrl added in v0.6.0

func (o *CreateUserAvatarResponse) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*CreateUserAvatarResponse) GetAvatarUrlOk added in v0.6.0

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

func (o *CreateUserAvatarResponse) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (CreateUserAvatarResponse) MarshalJSON added in v0.6.0

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

func (*CreateUserAvatarResponse) SetAvatarUrl added in v0.6.0

func (o *CreateUserAvatarResponse) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

type CreateUserPasswordRequest added in v0.0.2

type CreateUserPasswordRequest struct {
	ExpiresInMinutes *int32 `json:"expires_in_minutes,omitempty"`
}

CreateUserPasswordRequest struct for CreateUserPasswordRequest

func NewCreateUserPasswordRequest added in v0.0.2

func NewCreateUserPasswordRequest() *CreateUserPasswordRequest

NewCreateUserPasswordRequest instantiates a new CreateUserPasswordRequest 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 NewCreateUserPasswordRequestWithDefaults added in v0.0.2

func NewCreateUserPasswordRequestWithDefaults() *CreateUserPasswordRequest

NewCreateUserPasswordRequestWithDefaults instantiates a new CreateUserPasswordRequest 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 (*CreateUserPasswordRequest) GetExpiresInMinutes added in v0.0.2

func (o *CreateUserPasswordRequest) GetExpiresInMinutes() int32

GetExpiresInMinutes returns the ExpiresInMinutes field value if set, zero value otherwise.

func (*CreateUserPasswordRequest) GetExpiresInMinutesOk added in v0.0.2

func (o *CreateUserPasswordRequest) GetExpiresInMinutesOk() (*int32, bool)

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

func (*CreateUserPasswordRequest) HasExpiresInMinutes added in v0.0.2

func (o *CreateUserPasswordRequest) HasExpiresInMinutes() bool

HasExpiresInMinutes returns a boolean if a field has been set.

func (CreateUserPasswordRequest) MarshalJSON added in v0.0.2

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

func (*CreateUserPasswordRequest) SetExpiresInMinutes added in v0.0.2

func (o *CreateUserPasswordRequest) SetExpiresInMinutes(v int32)

SetExpiresInMinutes gets a reference to the given int32 and assigns it to the ExpiresInMinutes field.

type CreateUserRequest added in v0.0.2

type CreateUserRequest struct {
	DisplayName *string `json:"display_name,omitempty"`
	Email       string  `json:"email"`
	Handle      string  `json:"handle"`
	Url         *string `json:"url,omitempty"`
}

CreateUserRequest struct for CreateUserRequest

func NewCreateUserRequest added in v0.0.2

func NewCreateUserRequest(email string, handle string) *CreateUserRequest

NewCreateUserRequest instantiates a new CreateUserRequest 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 NewCreateUserRequestWithDefaults added in v0.0.2

func NewCreateUserRequestWithDefaults() *CreateUserRequest

NewCreateUserRequestWithDefaults instantiates a new CreateUserRequest 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 (*CreateUserRequest) GetDisplayName added in v0.0.2

func (o *CreateUserRequest) GetDisplayName() string

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

func (*CreateUserRequest) GetDisplayNameOk added in v0.0.2

func (o *CreateUserRequest) 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 (*CreateUserRequest) GetEmail added in v0.0.2

func (o *CreateUserRequest) GetEmail() string

GetEmail returns the Email field value

func (*CreateUserRequest) GetEmailOk added in v0.0.2

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

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

func (*CreateUserRequest) GetHandle added in v0.0.2

func (o *CreateUserRequest) GetHandle() string

GetHandle returns the Handle field value

func (*CreateUserRequest) GetHandleOk added in v0.0.2

func (o *CreateUserRequest) GetHandleOk() (*string, bool)

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

func (*CreateUserRequest) GetUrl added in v0.0.2

func (o *CreateUserRequest) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*CreateUserRequest) GetUrlOk added in v0.0.2

func (o *CreateUserRequest) 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 (*CreateUserRequest) HasDisplayName added in v0.0.2

func (o *CreateUserRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CreateUserRequest) HasUrl added in v0.0.2

func (o *CreateUserRequest) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (CreateUserRequest) MarshalJSON added in v0.0.2

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

func (*CreateUserRequest) SetDisplayName added in v0.0.2

func (o *CreateUserRequest) SetDisplayName(v string)

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

func (*CreateUserRequest) SetEmail added in v0.0.2

func (o *CreateUserRequest) SetEmail(v string)

SetEmail sets field value

func (*CreateUserRequest) SetHandle added in v0.0.2

func (o *CreateUserRequest) SetHandle(v string)

SetHandle sets field value

func (*CreateUserRequest) SetUrl added in v0.0.2

func (o *CreateUserRequest) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type CreateWorkspaceAggregatorRequest added in v0.6.0

type CreateWorkspaceAggregatorRequest struct {
	// The connections that are a part of the aggregator.
	Connections []string `json:"connections"`
	// The handle of the aggregator.
	Handle string `json:"handle"`
	// The plugin which this aggregator belongs to.
	Plugin string `json:"plugin"`
}

CreateWorkspaceAggregatorRequest struct for CreateWorkspaceAggregatorRequest

func NewCreateWorkspaceAggregatorRequest added in v0.6.0

func NewCreateWorkspaceAggregatorRequest(connections []string, handle string, plugin string) *CreateWorkspaceAggregatorRequest

NewCreateWorkspaceAggregatorRequest instantiates a new CreateWorkspaceAggregatorRequest 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 NewCreateWorkspaceAggregatorRequestWithDefaults added in v0.6.0

func NewCreateWorkspaceAggregatorRequestWithDefaults() *CreateWorkspaceAggregatorRequest

NewCreateWorkspaceAggregatorRequestWithDefaults instantiates a new CreateWorkspaceAggregatorRequest 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 (*CreateWorkspaceAggregatorRequest) GetConnections added in v0.6.0

func (o *CreateWorkspaceAggregatorRequest) GetConnections() []string

GetConnections returns the Connections field value

func (*CreateWorkspaceAggregatorRequest) GetConnectionsOk added in v0.6.0

func (o *CreateWorkspaceAggregatorRequest) GetConnectionsOk() (*[]string, bool)

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

func (*CreateWorkspaceAggregatorRequest) GetHandle added in v0.6.0

GetHandle returns the Handle field value

func (*CreateWorkspaceAggregatorRequest) GetHandleOk added in v0.6.0

func (o *CreateWorkspaceAggregatorRequest) GetHandleOk() (*string, bool)

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

func (*CreateWorkspaceAggregatorRequest) GetPlugin added in v0.6.0

GetPlugin returns the Plugin field value

func (*CreateWorkspaceAggregatorRequest) GetPluginOk added in v0.6.0

func (o *CreateWorkspaceAggregatorRequest) GetPluginOk() (*string, bool)

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

func (CreateWorkspaceAggregatorRequest) MarshalJSON added in v0.6.0

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

func (*CreateWorkspaceAggregatorRequest) SetConnections added in v0.6.0

func (o *CreateWorkspaceAggregatorRequest) SetConnections(v []string)

SetConnections sets field value

func (*CreateWorkspaceAggregatorRequest) SetHandle added in v0.6.0

func (o *CreateWorkspaceAggregatorRequest) SetHandle(v string)

SetHandle sets field value

func (*CreateWorkspaceAggregatorRequest) SetPlugin added in v0.6.0

func (o *CreateWorkspaceAggregatorRequest) SetPlugin(v string)

SetPlugin sets field value

type CreateWorkspaceConnRequest added in v0.0.2

type CreateWorkspaceConnRequest struct {
	ConnectionHandle string `json:"connection_handle"`
}

CreateWorkspaceConnRequest struct for CreateWorkspaceConnRequest

func NewCreateWorkspaceConnRequest added in v0.0.2

func NewCreateWorkspaceConnRequest(connectionHandle string) *CreateWorkspaceConnRequest

NewCreateWorkspaceConnRequest instantiates a new CreateWorkspaceConnRequest 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 NewCreateWorkspaceConnRequestWithDefaults added in v0.0.2

func NewCreateWorkspaceConnRequestWithDefaults() *CreateWorkspaceConnRequest

NewCreateWorkspaceConnRequestWithDefaults instantiates a new CreateWorkspaceConnRequest 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 (*CreateWorkspaceConnRequest) GetConnectionHandle added in v0.0.2

func (o *CreateWorkspaceConnRequest) GetConnectionHandle() string

GetConnectionHandle returns the ConnectionHandle field value

func (*CreateWorkspaceConnRequest) GetConnectionHandleOk added in v0.0.2

func (o *CreateWorkspaceConnRequest) GetConnectionHandleOk() (*string, bool)

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

func (CreateWorkspaceConnRequest) MarshalJSON added in v0.0.2

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

func (*CreateWorkspaceConnRequest) SetConnectionHandle added in v0.0.2

func (o *CreateWorkspaceConnRequest) SetConnectionHandle(v string)

SetConnectionHandle sets field value

type CreateWorkspaceModRequest added in v0.0.4

type CreateWorkspaceModRequest struct {
	Constraint *string `json:"constraint,omitempty"`
	Path       string  `json:"path"`
}

CreateWorkspaceModRequest struct for CreateWorkspaceModRequest

func NewCreateWorkspaceModRequest added in v0.0.4

func NewCreateWorkspaceModRequest(path string) *CreateWorkspaceModRequest

NewCreateWorkspaceModRequest instantiates a new CreateWorkspaceModRequest 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 NewCreateWorkspaceModRequestWithDefaults added in v0.0.4

func NewCreateWorkspaceModRequestWithDefaults() *CreateWorkspaceModRequest

NewCreateWorkspaceModRequestWithDefaults instantiates a new CreateWorkspaceModRequest 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 (*CreateWorkspaceModRequest) GetConstraint added in v0.0.4

func (o *CreateWorkspaceModRequest) GetConstraint() string

GetConstraint returns the Constraint field value if set, zero value otherwise.

func (*CreateWorkspaceModRequest) GetConstraintOk added in v0.0.4

func (o *CreateWorkspaceModRequest) GetConstraintOk() (*string, bool)

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

func (*CreateWorkspaceModRequest) GetPath added in v0.0.4

func (o *CreateWorkspaceModRequest) GetPath() string

GetPath returns the Path field value

func (*CreateWorkspaceModRequest) GetPathOk added in v0.0.4

func (o *CreateWorkspaceModRequest) GetPathOk() (*string, bool)

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

func (*CreateWorkspaceModRequest) HasConstraint added in v0.0.4

func (o *CreateWorkspaceModRequest) HasConstraint() bool

HasConstraint returns a boolean if a field has been set.

func (CreateWorkspaceModRequest) MarshalJSON added in v0.0.4

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

func (*CreateWorkspaceModRequest) SetConstraint added in v0.0.4

func (o *CreateWorkspaceModRequest) SetConstraint(v string)

SetConstraint gets a reference to the given string and assigns it to the Constraint field.

func (*CreateWorkspaceModRequest) SetPath added in v0.0.4

func (o *CreateWorkspaceModRequest) SetPath(v string)

SetPath sets field value

type CreateWorkspaceModVariableSettingRequest added in v0.0.4

type CreateWorkspaceModVariableSettingRequest struct {
	Name    string      `json:"name"`
	Setting interface{} `json:"setting"`
}

CreateWorkspaceModVariableSettingRequest struct for CreateWorkspaceModVariableSettingRequest

func NewCreateWorkspaceModVariableSettingRequest added in v0.0.4

func NewCreateWorkspaceModVariableSettingRequest(name string, setting interface{}) *CreateWorkspaceModVariableSettingRequest

NewCreateWorkspaceModVariableSettingRequest instantiates a new CreateWorkspaceModVariableSettingRequest 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 NewCreateWorkspaceModVariableSettingRequestWithDefaults added in v0.0.4

func NewCreateWorkspaceModVariableSettingRequestWithDefaults() *CreateWorkspaceModVariableSettingRequest

NewCreateWorkspaceModVariableSettingRequestWithDefaults instantiates a new CreateWorkspaceModVariableSettingRequest 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 (*CreateWorkspaceModVariableSettingRequest) GetName added in v0.0.4

GetName returns the Name field value

func (*CreateWorkspaceModVariableSettingRequest) GetNameOk added in v0.0.4

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

func (*CreateWorkspaceModVariableSettingRequest) GetSetting added in v0.0.4

func (o *CreateWorkspaceModVariableSettingRequest) GetSetting() interface{}

GetSetting returns the Setting field value If the value is explicit nil, the zero value for interface{} will be returned

func (*CreateWorkspaceModVariableSettingRequest) GetSettingOk added in v0.0.4

func (o *CreateWorkspaceModVariableSettingRequest) GetSettingOk() (*interface{}, bool)

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

func (CreateWorkspaceModVariableSettingRequest) MarshalJSON added in v0.0.4

func (*CreateWorkspaceModVariableSettingRequest) SetName added in v0.0.4

SetName sets field value

func (*CreateWorkspaceModVariableSettingRequest) SetSetting added in v0.0.4

func (o *CreateWorkspaceModVariableSettingRequest) SetSetting(v interface{})

SetSetting sets field value

type CreateWorkspaceRequest added in v0.0.2

type CreateWorkspaceRequest struct {
	Handle string `json:"handle"`
}

CreateWorkspaceRequest struct for CreateWorkspaceRequest

func NewCreateWorkspaceRequest added in v0.0.2

func NewCreateWorkspaceRequest(handle string) *CreateWorkspaceRequest

NewCreateWorkspaceRequest instantiates a new CreateWorkspaceRequest 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 NewCreateWorkspaceRequestWithDefaults added in v0.0.2

func NewCreateWorkspaceRequestWithDefaults() *CreateWorkspaceRequest

NewCreateWorkspaceRequestWithDefaults instantiates a new CreateWorkspaceRequest 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 (*CreateWorkspaceRequest) GetHandle added in v0.0.2

func (o *CreateWorkspaceRequest) GetHandle() string

GetHandle returns the Handle field value

func (*CreateWorkspaceRequest) GetHandleOk added in v0.0.2

func (o *CreateWorkspaceRequest) GetHandleOk() (*string, bool)

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

func (CreateWorkspaceRequest) MarshalJSON added in v0.0.2

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

func (*CreateWorkspaceRequest) SetHandle added in v0.0.2

func (o *CreateWorkspaceRequest) SetHandle(v string)

SetHandle sets field value

type CreateWorkspaceSnapshotRequest added in v0.1.3

type CreateWorkspaceSnapshotRequest struct {
	Data WorkspaceSnapshotData `json:"data"`
	Tags interface{}           `json:"tags,omitempty"`
	// The title of the snapshot.
	Title *string `json:"title,omitempty"`
	// The visibility of the snapshot to create.
	Visibility *string `json:"visibility,omitempty"`
}

CreateWorkspaceSnapshotRequest struct for CreateWorkspaceSnapshotRequest

func NewCreateWorkspaceSnapshotRequest added in v0.1.3

func NewCreateWorkspaceSnapshotRequest(data WorkspaceSnapshotData) *CreateWorkspaceSnapshotRequest

NewCreateWorkspaceSnapshotRequest instantiates a new CreateWorkspaceSnapshotRequest 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 NewCreateWorkspaceSnapshotRequestWithDefaults added in v0.1.3

func NewCreateWorkspaceSnapshotRequestWithDefaults() *CreateWorkspaceSnapshotRequest

NewCreateWorkspaceSnapshotRequestWithDefaults instantiates a new CreateWorkspaceSnapshotRequest 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 (*CreateWorkspaceSnapshotRequest) GetData added in v0.1.3

GetData returns the Data field value

func (*CreateWorkspaceSnapshotRequest) GetDataOk added in v0.1.3

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

func (*CreateWorkspaceSnapshotRequest) GetTags added in v0.1.3

func (o *CreateWorkspaceSnapshotRequest) GetTags() interface{}

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

func (*CreateWorkspaceSnapshotRequest) GetTagsOk added in v0.1.3

func (o *CreateWorkspaceSnapshotRequest) GetTagsOk() (*interface{}, bool)

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

func (*CreateWorkspaceSnapshotRequest) GetTitle added in v0.2.0

func (o *CreateWorkspaceSnapshotRequest) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*CreateWorkspaceSnapshotRequest) GetTitleOk added in v0.2.0

func (o *CreateWorkspaceSnapshotRequest) GetTitleOk() (*string, bool)

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

func (*CreateWorkspaceSnapshotRequest) GetVisibility added in v0.1.3

func (o *CreateWorkspaceSnapshotRequest) GetVisibility() string

GetVisibility returns the Visibility field value if set, zero value otherwise.

func (*CreateWorkspaceSnapshotRequest) GetVisibilityOk added in v0.1.3

func (o *CreateWorkspaceSnapshotRequest) GetVisibilityOk() (*string, bool)

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

func (*CreateWorkspaceSnapshotRequest) HasTags added in v0.1.3

func (o *CreateWorkspaceSnapshotRequest) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*CreateWorkspaceSnapshotRequest) HasTitle added in v0.2.0

func (o *CreateWorkspaceSnapshotRequest) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*CreateWorkspaceSnapshotRequest) HasVisibility added in v0.1.3

func (o *CreateWorkspaceSnapshotRequest) HasVisibility() bool

HasVisibility returns a boolean if a field has been set.

func (CreateWorkspaceSnapshotRequest) MarshalJSON added in v0.1.3

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

func (*CreateWorkspaceSnapshotRequest) SetData added in v0.1.3

SetData sets field value

func (*CreateWorkspaceSnapshotRequest) SetTags added in v0.1.3

func (o *CreateWorkspaceSnapshotRequest) SetTags(v interface{})

SetTags gets a reference to the given interface{} and assigns it to the Tags field.

func (*CreateWorkspaceSnapshotRequest) SetTitle added in v0.2.0

func (o *CreateWorkspaceSnapshotRequest) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*CreateWorkspaceSnapshotRequest) SetVisibility added in v0.1.3

func (o *CreateWorkspaceSnapshotRequest) SetVisibility(v string)

SetVisibility gets a reference to the given string and assigns it to the Visibility field.

type DeleteOrgAvatarResponse added in v0.6.0

type DeleteOrgAvatarResponse struct {
	// The URL of the deleted avatar.
	AvatarUrl *string `json:"avatar_url,omitempty"`
}

DeleteOrgAvatarResponse struct for DeleteOrgAvatarResponse

func NewDeleteOrgAvatarResponse added in v0.6.0

func NewDeleteOrgAvatarResponse() *DeleteOrgAvatarResponse

NewDeleteOrgAvatarResponse instantiates a new DeleteOrgAvatarResponse 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 NewDeleteOrgAvatarResponseWithDefaults added in v0.6.0

func NewDeleteOrgAvatarResponseWithDefaults() *DeleteOrgAvatarResponse

NewDeleteOrgAvatarResponseWithDefaults instantiates a new DeleteOrgAvatarResponse 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 (*DeleteOrgAvatarResponse) GetAvatarUrl added in v0.6.0

func (o *DeleteOrgAvatarResponse) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*DeleteOrgAvatarResponse) GetAvatarUrlOk added in v0.6.0

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

func (o *DeleteOrgAvatarResponse) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (DeleteOrgAvatarResponse) MarshalJSON added in v0.6.0

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

func (*DeleteOrgAvatarResponse) SetAvatarUrl added in v0.6.0

func (o *DeleteOrgAvatarResponse) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

type DeleteUserAvatarResponse added in v0.6.0

type DeleteUserAvatarResponse struct {
	// The URL of the deleted avatar.
	AvatarUrl *string `json:"avatar_url,omitempty"`
}

DeleteUserAvatarResponse struct for DeleteUserAvatarResponse

func NewDeleteUserAvatarResponse added in v0.6.0

func NewDeleteUserAvatarResponse() *DeleteUserAvatarResponse

NewDeleteUserAvatarResponse instantiates a new DeleteUserAvatarResponse 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 NewDeleteUserAvatarResponseWithDefaults added in v0.6.0

func NewDeleteUserAvatarResponseWithDefaults() *DeleteUserAvatarResponse

NewDeleteUserAvatarResponseWithDefaults instantiates a new DeleteUserAvatarResponse 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 (*DeleteUserAvatarResponse) GetAvatarUrl added in v0.6.0

func (o *DeleteUserAvatarResponse) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*DeleteUserAvatarResponse) GetAvatarUrlOk added in v0.6.0

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

func (o *DeleteUserAvatarResponse) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (DeleteUserAvatarResponse) MarshalJSON added in v0.6.0

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

func (*DeleteUserAvatarResponse) SetAvatarUrl added in v0.6.0

func (o *DeleteUserAvatarResponse) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

type ErrorDetailModel added in v0.0.2

type ErrorDetailModel struct {
	Location *string `json:"location,omitempty"`
	Message  *string `json:"message,omitempty"`
}

ErrorDetailModel struct for ErrorDetailModel

func NewErrorDetailModel added in v0.0.2

func NewErrorDetailModel() *ErrorDetailModel

NewErrorDetailModel instantiates a new ErrorDetailModel 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 NewErrorDetailModelWithDefaults added in v0.0.2

func NewErrorDetailModelWithDefaults() *ErrorDetailModel

NewErrorDetailModelWithDefaults instantiates a new ErrorDetailModel 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 (*ErrorDetailModel) GetLocation added in v0.0.2

func (o *ErrorDetailModel) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*ErrorDetailModel) GetLocationOk added in v0.0.2

func (o *ErrorDetailModel) GetLocationOk() (*string, bool)

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

func (*ErrorDetailModel) GetMessage added in v0.0.2

func (o *ErrorDetailModel) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ErrorDetailModel) GetMessageOk added in v0.0.2

func (o *ErrorDetailModel) 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 (*ErrorDetailModel) HasLocation added in v0.0.2

func (o *ErrorDetailModel) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*ErrorDetailModel) HasMessage added in v0.0.2

func (o *ErrorDetailModel) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (ErrorDetailModel) MarshalJSON added in v0.0.2

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

func (*ErrorDetailModel) SetLocation added in v0.0.2

func (o *ErrorDetailModel) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*ErrorDetailModel) SetMessage added in v0.0.2

func (o *ErrorDetailModel) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

type ErrorModel added in v0.0.2

type ErrorModel struct {
	Detail           *string             `json:"detail,omitempty"`
	Instance         string              `json:"instance"`
	Status           int32               `json:"status"`
	Title            string              `json:"title"`
	Type             string              `json:"type"`
	ValidationErrors *[]ErrorDetailModel `json:"validation_errors,omitempty"`
}

ErrorModel struct for ErrorModel

func NewErrorModel added in v0.0.2

func NewErrorModel(instance string, status int32, title string, type_ string) *ErrorModel

NewErrorModel instantiates a new ErrorModel 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 NewErrorModelWithDefaults added in v0.0.2

func NewErrorModelWithDefaults() *ErrorModel

NewErrorModelWithDefaults instantiates a new ErrorModel 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 (*ErrorModel) GetDetail added in v0.0.2

func (o *ErrorModel) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ErrorModel) GetDetailOk added in v0.0.2

func (o *ErrorModel) GetDetailOk() (*string, bool)

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

func (*ErrorModel) GetInstance added in v0.0.2

func (o *ErrorModel) GetInstance() string

GetInstance returns the Instance field value

func (*ErrorModel) GetInstanceOk added in v0.0.2

func (o *ErrorModel) GetInstanceOk() (*string, bool)

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

func (*ErrorModel) GetStatus added in v0.0.2

func (o *ErrorModel) GetStatus() int32

GetStatus returns the Status field value

func (*ErrorModel) GetStatusOk added in v0.0.2

func (o *ErrorModel) GetStatusOk() (*int32, bool)

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

func (*ErrorModel) GetTitle added in v0.0.2

func (o *ErrorModel) GetTitle() string

GetTitle returns the Title field value

func (*ErrorModel) GetTitleOk added in v0.0.2

func (o *ErrorModel) GetTitleOk() (*string, bool)

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

func (*ErrorModel) GetType added in v0.0.2

func (o *ErrorModel) GetType() string

GetType returns the Type field value

func (*ErrorModel) GetTypeOk added in v0.0.2

func (o *ErrorModel) GetTypeOk() (*string, bool)

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

func (*ErrorModel) GetValidationErrors added in v0.4.0

func (o *ErrorModel) GetValidationErrors() []ErrorDetailModel

GetValidationErrors returns the ValidationErrors field value if set, zero value otherwise.

func (*ErrorModel) GetValidationErrorsOk added in v0.4.0

func (o *ErrorModel) GetValidationErrorsOk() (*[]ErrorDetailModel, bool)

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

func (*ErrorModel) HasDetail added in v0.0.2

func (o *ErrorModel) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ErrorModel) HasValidationErrors added in v0.4.0

func (o *ErrorModel) HasValidationErrors() bool

HasValidationErrors returns a boolean if a field has been set.

func (ErrorModel) MarshalJSON added in v0.0.2

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

func (*ErrorModel) SetDetail added in v0.0.2

func (o *ErrorModel) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ErrorModel) SetInstance added in v0.0.2

func (o *ErrorModel) SetInstance(v string)

SetInstance sets field value

func (*ErrorModel) SetStatus added in v0.0.2

func (o *ErrorModel) SetStatus(v int32)

SetStatus sets field value

func (*ErrorModel) SetTitle added in v0.0.2

func (o *ErrorModel) SetTitle(v string)

SetTitle sets field value

func (*ErrorModel) SetType added in v0.0.2

func (o *ErrorModel) SetType(v string)

SetType sets field value

func (*ErrorModel) SetValidationErrors added in v0.4.0

func (o *ErrorModel) SetValidationErrors(v []ErrorDetailModel)

SetValidationErrors gets a reference to the given []ErrorDetailModel and assigns it to the ValidationErrors field.

type Feature added in v0.0.4

type Feature struct {
	// The creation time of the feature.
	CreatedAt string `json:"created_at"`
	// The key of the feature
	Key *string `json:"key,omitempty"`
	// The update time of the feature.
	UpdatedAt *string `json:"updated_at,omitempty"`
	// The value of the feature
	Value *string `json:"value,omitempty"`
	// The current version of the feature.
	VersionId int32 `json:"version_id"`
}

Feature struct for Feature

func NewFeature added in v0.0.4

func NewFeature(createdAt string, versionId int32) *Feature

NewFeature instantiates a new Feature 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 NewFeatureWithDefaults added in v0.0.4

func NewFeatureWithDefaults() *Feature

NewFeatureWithDefaults instantiates a new Feature 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 (*Feature) GetCreatedAt added in v0.0.4

func (o *Feature) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*Feature) GetCreatedAtOk added in v0.0.4

func (o *Feature) GetCreatedAtOk() (*string, bool)

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

func (*Feature) GetKey added in v0.0.4

func (o *Feature) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*Feature) GetKeyOk added in v0.0.4

func (o *Feature) GetKeyOk() (*string, bool)

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

func (*Feature) GetUpdatedAt added in v0.0.4

func (o *Feature) GetUpdatedAt() string

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

func (*Feature) GetUpdatedAtOk added in v0.0.4

func (o *Feature) GetUpdatedAtOk() (*string, 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 (*Feature) GetValue added in v0.0.4

func (o *Feature) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*Feature) GetValueOk added in v0.0.4

func (o *Feature) 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 (*Feature) GetVersionId added in v0.0.4

func (o *Feature) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*Feature) GetVersionIdOk added in v0.0.4

func (o *Feature) GetVersionIdOk() (*int32, bool)

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

func (*Feature) HasKey added in v0.0.4

func (o *Feature) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*Feature) HasUpdatedAt added in v0.0.4

func (o *Feature) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Feature) HasValue added in v0.0.4

func (o *Feature) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Feature) MarshalJSON added in v0.0.4

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

func (*Feature) SetCreatedAt added in v0.0.4

func (o *Feature) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*Feature) SetKey added in v0.0.4

func (o *Feature) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*Feature) SetUpdatedAt added in v0.0.4

func (o *Feature) SetUpdatedAt(v string)

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

func (*Feature) SetValue added in v0.0.4

func (o *Feature) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (*Feature) SetVersionId added in v0.0.4

func (o *Feature) SetVersionId(v int32)

SetVersionId sets field value

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type IdentitiesApiGetAvatarRequest added in v0.6.0

type IdentitiesApiGetAvatarRequest struct {
	ApiService *IdentitiesService
	// contains filtered or unexported fields
}

func (IdentitiesApiGetAvatarRequest) Execute added in v0.6.0

type IdentitiesApiGetRequest added in v0.1.0

type IdentitiesApiGetRequest struct {
	ApiService *IdentitiesService
	// contains filtered or unexported fields
}

func (IdentitiesApiGetRequest) Execute added in v0.1.0

type IdentitiesApiListRequest added in v0.1.0

type IdentitiesApiListRequest struct {
	ApiService *IdentitiesService
	// contains filtered or unexported fields
}

func (IdentitiesApiListRequest) Execute added in v0.1.0

func (IdentitiesApiListRequest) Limit added in v0.1.1

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (IdentitiesApiListRequest) NextToken added in v0.1.1

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

func (IdentitiesApiListRequest) Q added in v0.1.0

Optional free-text search to filter the identities.

type IdentitiesService

type IdentitiesService service

IdentitiesService Identities service

func (*IdentitiesService) Get added in v0.1.0

func (a *IdentitiesService) Get(ctx _context.Context, identityHandle string) IdentitiesApiGetRequest

Get Get identity

Get public information for an identity.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identityHandle Specify the handle of the identity whose information you want to retrieve.
@return IdentitiesApiGetRequest

func (*IdentitiesService) GetAvatar added in v0.6.0

func (a *IdentitiesService) GetAvatar(ctx _context.Context, identityHandle string) IdentitiesApiGetAvatarRequest

GetAvatar Get identity avatar

Get public avatar for an identity.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identityHandle Specify the handle of the identity whose avatar you want to retrieve.
@return IdentitiesApiGetAvatarRequest

func (*IdentitiesService) GetAvatarExecute added in v0.6.0

Execute executes the request

@return WorkspaceSnapshotData

func (*IdentitiesService) GetExecute added in v0.1.0

Execute executes the request

@return Identity

func (*IdentitiesService) List added in v0.1.0

List List identities

List identities with their public information.

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

func (*IdentitiesService) ListExecute added in v0.1.0

Execute executes the request

@return ListIdentitiesResponse

type Identity added in v0.0.2

type Identity struct {
	// The avatar URL of the identity.
	AvatarUrl *string `json:"avatar_url,omitempty"`
	// The display name of the identity.
	DisplayName *string `json:"display_name,omitempty"`
	// The handle name of the identity.
	Handle string `json:"handle"`
	// The unique identifier of the identity.
	Id string `json:"id"`
	// The type of identity e.g. user or org.
	Type string `json:"type"`
}

Identity struct for Identity

func NewIdentity added in v0.0.2

func NewIdentity(handle string, id string, type_ string) *Identity

NewIdentity instantiates a new Identity 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 NewIdentityWithDefaults added in v0.0.2

func NewIdentityWithDefaults() *Identity

NewIdentityWithDefaults instantiates a new Identity 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 (*Identity) GetAvatarUrl added in v0.1.0

func (o *Identity) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*Identity) GetAvatarUrlOk added in v0.1.0

func (o *Identity) 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 (*Identity) GetDisplayName added in v0.0.2

func (o *Identity) GetDisplayName() string

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

func (*Identity) GetDisplayNameOk added in v0.0.2

func (o *Identity) 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 (*Identity) GetHandle added in v0.0.2

func (o *Identity) GetHandle() string

GetHandle returns the Handle field value

func (*Identity) GetHandleOk added in v0.0.2

func (o *Identity) GetHandleOk() (*string, bool)

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

func (*Identity) GetId added in v0.0.2

func (o *Identity) GetId() string

GetId returns the Id field value

func (*Identity) GetIdOk added in v0.0.2

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

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

func (*Identity) GetType added in v0.0.2

func (o *Identity) GetType() string

GetType returns the Type field value

func (*Identity) GetTypeOk added in v0.0.2

func (o *Identity) GetTypeOk() (*string, bool)

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

func (*Identity) HasAvatarUrl added in v0.1.0

func (o *Identity) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*Identity) HasDisplayName added in v0.0.2

func (o *Identity) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (Identity) MarshalJSON added in v0.0.2

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

func (*Identity) SetAvatarUrl added in v0.1.0

func (o *Identity) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*Identity) SetDisplayName added in v0.0.2

func (o *Identity) SetDisplayName(v string)

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

func (*Identity) SetHandle added in v0.0.2

func (o *Identity) SetHandle(v string)

SetHandle sets field value

func (*Identity) SetId added in v0.0.2

func (o *Identity) SetId(v string)

SetId sets field value

func (*Identity) SetType added in v0.0.2

func (o *Identity) SetType(v string)

SetType sets field value

type IdentitySearch added in v0.0.2

type IdentitySearch struct {
	AvatarUrl   *string `json:"avatar_url,omitempty"`
	DisplayName *string `json:"display_name,omitempty"`
	Handle      string  `json:"handle"`
	Id          string  `json:"id"`
}

IdentitySearch struct for IdentitySearch

func NewIdentitySearch added in v0.0.2

func NewIdentitySearch(handle string, id string) *IdentitySearch

NewIdentitySearch instantiates a new IdentitySearch 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 NewIdentitySearchWithDefaults added in v0.0.2

func NewIdentitySearchWithDefaults() *IdentitySearch

NewIdentitySearchWithDefaults instantiates a new IdentitySearch 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 (*IdentitySearch) GetAvatarUrl added in v0.0.2

func (o *IdentitySearch) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*IdentitySearch) GetAvatarUrlOk added in v0.0.2

func (o *IdentitySearch) 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 (*IdentitySearch) GetDisplayName added in v0.0.2

func (o *IdentitySearch) GetDisplayName() string

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

func (*IdentitySearch) GetDisplayNameOk added in v0.0.2

func (o *IdentitySearch) 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 (*IdentitySearch) GetHandle added in v0.0.2

func (o *IdentitySearch) GetHandle() string

GetHandle returns the Handle field value

func (*IdentitySearch) GetHandleOk added in v0.0.2

func (o *IdentitySearch) GetHandleOk() (*string, bool)

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

func (*IdentitySearch) GetId added in v0.0.2

func (o *IdentitySearch) GetId() string

GetId returns the Id field value

func (*IdentitySearch) GetIdOk added in v0.0.2

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

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

func (*IdentitySearch) HasAvatarUrl added in v0.0.2

func (o *IdentitySearch) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*IdentitySearch) HasDisplayName added in v0.0.2

func (o *IdentitySearch) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (IdentitySearch) MarshalJSON added in v0.0.2

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

func (*IdentitySearch) SetAvatarUrl added in v0.0.2

func (o *IdentitySearch) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*IdentitySearch) SetDisplayName added in v0.0.2

func (o *IdentitySearch) SetDisplayName(v string)

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

func (*IdentitySearch) SetHandle added in v0.0.2

func (o *IdentitySearch) SetHandle(v string)

SetHandle sets field value

func (*IdentitySearch) SetId added in v0.0.2

func (o *IdentitySearch) SetId(v string)

SetId sets field value

type InviteOrgUserRequest added in v0.0.2

type InviteOrgUserRequest struct {
	Email  *string `json:"email,omitempty"`
	Handle *string `json:"handle,omitempty"`
	Role   string  `json:"role"`
}

InviteOrgUserRequest struct for InviteOrgUserRequest

func NewInviteOrgUserRequest added in v0.0.2

func NewInviteOrgUserRequest(role string) *InviteOrgUserRequest

NewInviteOrgUserRequest instantiates a new InviteOrgUserRequest 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 NewInviteOrgUserRequestWithDefaults added in v0.0.2

func NewInviteOrgUserRequestWithDefaults() *InviteOrgUserRequest

NewInviteOrgUserRequestWithDefaults instantiates a new InviteOrgUserRequest 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 (*InviteOrgUserRequest) GetEmail added in v0.0.2

func (o *InviteOrgUserRequest) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*InviteOrgUserRequest) GetEmailOk added in v0.0.2

func (o *InviteOrgUserRequest) 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 (*InviteOrgUserRequest) GetHandle added in v0.0.2

func (o *InviteOrgUserRequest) GetHandle() string

GetHandle returns the Handle field value if set, zero value otherwise.

func (*InviteOrgUserRequest) GetHandleOk added in v0.0.2

func (o *InviteOrgUserRequest) GetHandleOk() (*string, bool)

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

func (*InviteOrgUserRequest) GetRole added in v0.0.2

func (o *InviteOrgUserRequest) GetRole() string

GetRole returns the Role field value

func (*InviteOrgUserRequest) GetRoleOk added in v0.0.2

func (o *InviteOrgUserRequest) GetRoleOk() (*string, bool)

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

func (*InviteOrgUserRequest) HasEmail added in v0.0.2

func (o *InviteOrgUserRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*InviteOrgUserRequest) HasHandle added in v0.0.2

func (o *InviteOrgUserRequest) HasHandle() bool

HasHandle returns a boolean if a field has been set.

func (InviteOrgUserRequest) MarshalJSON added in v0.0.2

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

func (*InviteOrgUserRequest) SetEmail added in v0.0.2

func (o *InviteOrgUserRequest) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*InviteOrgUserRequest) SetHandle added in v0.0.2

func (o *InviteOrgUserRequest) SetHandle(v string)

SetHandle gets a reference to the given string and assigns it to the Handle field.

func (*InviteOrgUserRequest) SetRole added in v0.0.2

func (o *InviteOrgUserRequest) SetRole(v string)

SetRole sets field value

type InviteOrgWorkspaceUserRequest added in v0.1.0

type InviteOrgWorkspaceUserRequest struct {
	Email  *string `json:"email,omitempty"`
	Handle *string `json:"handle,omitempty"`
	Role   string  `json:"role"`
}

InviteOrgWorkspaceUserRequest struct for InviteOrgWorkspaceUserRequest

func NewInviteOrgWorkspaceUserRequest added in v0.1.0

func NewInviteOrgWorkspaceUserRequest(role string) *InviteOrgWorkspaceUserRequest

NewInviteOrgWorkspaceUserRequest instantiates a new InviteOrgWorkspaceUserRequest 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 NewInviteOrgWorkspaceUserRequestWithDefaults added in v0.1.0

func NewInviteOrgWorkspaceUserRequestWithDefaults() *InviteOrgWorkspaceUserRequest

NewInviteOrgWorkspaceUserRequestWithDefaults instantiates a new InviteOrgWorkspaceUserRequest 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 (*InviteOrgWorkspaceUserRequest) GetEmail added in v0.1.0

func (o *InviteOrgWorkspaceUserRequest) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*InviteOrgWorkspaceUserRequest) GetEmailOk added in v0.1.0

func (o *InviteOrgWorkspaceUserRequest) 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 (*InviteOrgWorkspaceUserRequest) GetHandle added in v0.1.0

func (o *InviteOrgWorkspaceUserRequest) GetHandle() string

GetHandle returns the Handle field value if set, zero value otherwise.

func (*InviteOrgWorkspaceUserRequest) GetHandleOk added in v0.1.0

func (o *InviteOrgWorkspaceUserRequest) GetHandleOk() (*string, bool)

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

func (*InviteOrgWorkspaceUserRequest) GetRole added in v0.1.0

GetRole returns the Role field value

func (*InviteOrgWorkspaceUserRequest) GetRoleOk added in v0.1.0

func (o *InviteOrgWorkspaceUserRequest) GetRoleOk() (*string, bool)

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

func (*InviteOrgWorkspaceUserRequest) HasEmail added in v0.1.0

func (o *InviteOrgWorkspaceUserRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*InviteOrgWorkspaceUserRequest) HasHandle added in v0.1.0

func (o *InviteOrgWorkspaceUserRequest) HasHandle() bool

HasHandle returns a boolean if a field has been set.

func (InviteOrgWorkspaceUserRequest) MarshalJSON added in v0.1.0

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

func (*InviteOrgWorkspaceUserRequest) SetEmail added in v0.1.0

func (o *InviteOrgWorkspaceUserRequest) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*InviteOrgWorkspaceUserRequest) SetHandle added in v0.1.0

func (o *InviteOrgWorkspaceUserRequest) SetHandle(v string)

SetHandle gets a reference to the given string and assigns it to the Handle field.

func (*InviteOrgWorkspaceUserRequest) SetRole added in v0.1.0

func (o *InviteOrgWorkspaceUserRequest) SetRole(v string)

SetRole sets field value

type JSONTime added in v0.6.0

type JSONTime struct {
	TimeTime *string `json:"time.Time,omitempty"`
}

JSONTime struct for JSONTime

func NewJSONTime added in v0.6.0

func NewJSONTime() *JSONTime

NewJSONTime instantiates a new JSONTime 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 NewJSONTimeWithDefaults added in v0.6.0

func NewJSONTimeWithDefaults() *JSONTime

NewJSONTimeWithDefaults instantiates a new JSONTime 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 (*JSONTime) GetTimeTime added in v0.6.0

func (o *JSONTime) GetTimeTime() string

GetTimeTime returns the TimeTime field value if set, zero value otherwise.

func (*JSONTime) GetTimeTimeOk added in v0.6.0

func (o *JSONTime) GetTimeTimeOk() (*string, bool)

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

func (*JSONTime) HasTimeTime added in v0.6.0

func (o *JSONTime) HasTimeTime() bool

HasTimeTime returns a boolean if a field has been set.

func (JSONTime) MarshalJSON added in v0.6.0

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

func (*JSONTime) SetTimeTime added in v0.6.0

func (o *JSONTime) SetTimeTime(v string)

SetTimeTime gets a reference to the given string and assigns it to the TimeTime field.

type ListActorOrgsResponse added in v0.1.1

type ListActorOrgsResponse struct {
	Items     *[]ActorOrg `json:"items,omitempty"`
	NextToken *string     `json:"next_token,omitempty"`
}

ListActorOrgsResponse struct for ListActorOrgsResponse

func NewListActorOrgsResponse added in v0.1.1

func NewListActorOrgsResponse() *ListActorOrgsResponse

NewListActorOrgsResponse instantiates a new ListActorOrgsResponse 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 NewListActorOrgsResponseWithDefaults added in v0.1.1

func NewListActorOrgsResponseWithDefaults() *ListActorOrgsResponse

NewListActorOrgsResponseWithDefaults instantiates a new ListActorOrgsResponse 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 (*ListActorOrgsResponse) GetItems added in v0.1.1

func (o *ListActorOrgsResponse) GetItems() []ActorOrg

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

func (*ListActorOrgsResponse) GetItemsOk added in v0.1.1

func (o *ListActorOrgsResponse) GetItemsOk() (*[]ActorOrg, bool)

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 (*ListActorOrgsResponse) GetNextToken added in v0.1.1

func (o *ListActorOrgsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListActorOrgsResponse) GetNextTokenOk added in v0.1.1

func (o *ListActorOrgsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListActorOrgsResponse) HasItems added in v0.1.1

func (o *ListActorOrgsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListActorOrgsResponse) HasNextToken added in v0.1.1

func (o *ListActorOrgsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListActorOrgsResponse) MarshalJSON added in v0.1.1

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

func (*ListActorOrgsResponse) SetItems added in v0.1.1

func (o *ListActorOrgsResponse) SetItems(v []ActorOrg)

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

func (*ListActorOrgsResponse) SetNextToken added in v0.1.1

func (o *ListActorOrgsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListActorWorkspacesResponse added in v0.1.1

type ListActorWorkspacesResponse struct {
	Items     *[]ActorWorkspace `json:"items,omitempty"`
	NextToken *string           `json:"next_token,omitempty"`
}

ListActorWorkspacesResponse struct for ListActorWorkspacesResponse

func NewListActorWorkspacesResponse added in v0.1.1

func NewListActorWorkspacesResponse() *ListActorWorkspacesResponse

NewListActorWorkspacesResponse instantiates a new ListActorWorkspacesResponse 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 NewListActorWorkspacesResponseWithDefaults added in v0.1.1

func NewListActorWorkspacesResponseWithDefaults() *ListActorWorkspacesResponse

NewListActorWorkspacesResponseWithDefaults instantiates a new ListActorWorkspacesResponse 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 (*ListActorWorkspacesResponse) GetItems added in v0.1.1

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

func (*ListActorWorkspacesResponse) GetItemsOk added in v0.1.1

func (o *ListActorWorkspacesResponse) GetItemsOk() (*[]ActorWorkspace, bool)

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 (*ListActorWorkspacesResponse) GetNextToken added in v0.1.1

func (o *ListActorWorkspacesResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListActorWorkspacesResponse) GetNextTokenOk added in v0.1.1

func (o *ListActorWorkspacesResponse) GetNextTokenOk() (*string, bool)

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

func (*ListActorWorkspacesResponse) HasItems added in v0.1.1

func (o *ListActorWorkspacesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListActorWorkspacesResponse) HasNextToken added in v0.1.1

func (o *ListActorWorkspacesResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListActorWorkspacesResponse) MarshalJSON added in v0.1.1

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

func (*ListActorWorkspacesResponse) SetItems added in v0.1.1

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

func (*ListActorWorkspacesResponse) SetNextToken added in v0.1.1

func (o *ListActorWorkspacesResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListAuditLogsResponse added in v0.0.2

type ListAuditLogsResponse struct {
	Items     *[]AuditRecord `json:"items,omitempty"`
	NextToken *string        `json:"next_token,omitempty"`
}

ListAuditLogsResponse struct for ListAuditLogsResponse

func NewListAuditLogsResponse added in v0.0.2

func NewListAuditLogsResponse() *ListAuditLogsResponse

NewListAuditLogsResponse instantiates a new ListAuditLogsResponse 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 NewListAuditLogsResponseWithDefaults added in v0.0.2

func NewListAuditLogsResponseWithDefaults() *ListAuditLogsResponse

NewListAuditLogsResponseWithDefaults instantiates a new ListAuditLogsResponse 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 (*ListAuditLogsResponse) GetItems added in v0.0.2

func (o *ListAuditLogsResponse) GetItems() []AuditRecord

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

func (*ListAuditLogsResponse) GetItemsOk added in v0.0.2

func (o *ListAuditLogsResponse) GetItemsOk() (*[]AuditRecord, bool)

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 (*ListAuditLogsResponse) GetNextToken added in v0.0.2

func (o *ListAuditLogsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListAuditLogsResponse) GetNextTokenOk added in v0.0.2

func (o *ListAuditLogsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListAuditLogsResponse) HasItems added in v0.0.2

func (o *ListAuditLogsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListAuditLogsResponse) HasNextToken added in v0.0.2

func (o *ListAuditLogsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListAuditLogsResponse) MarshalJSON added in v0.0.2

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

func (*ListAuditLogsResponse) SetItems added in v0.0.2

func (o *ListAuditLogsResponse) SetItems(v []AuditRecord)

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

func (*ListAuditLogsResponse) SetNextToken added in v0.0.2

func (o *ListAuditLogsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListConnectionsResponse added in v0.0.2

type ListConnectionsResponse struct {
	Items     *[]Connection `json:"items,omitempty"`
	NextToken *string       `json:"next_token,omitempty"`
}

ListConnectionsResponse struct for ListConnectionsResponse

func NewListConnectionsResponse added in v0.0.2

func NewListConnectionsResponse() *ListConnectionsResponse

NewListConnectionsResponse instantiates a new ListConnectionsResponse 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 NewListConnectionsResponseWithDefaults added in v0.0.2

func NewListConnectionsResponseWithDefaults() *ListConnectionsResponse

NewListConnectionsResponseWithDefaults instantiates a new ListConnectionsResponse 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 (*ListConnectionsResponse) GetItems added in v0.0.2

func (o *ListConnectionsResponse) GetItems() []Connection

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

func (*ListConnectionsResponse) GetItemsOk added in v0.0.2

func (o *ListConnectionsResponse) GetItemsOk() (*[]Connection, bool)

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 (*ListConnectionsResponse) GetNextToken added in v0.0.2

func (o *ListConnectionsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListConnectionsResponse) GetNextTokenOk added in v0.0.2

func (o *ListConnectionsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListConnectionsResponse) HasItems added in v0.0.2

func (o *ListConnectionsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListConnectionsResponse) HasNextToken added in v0.0.2

func (o *ListConnectionsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListConnectionsResponse) MarshalJSON added in v0.0.2

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

func (*ListConnectionsResponse) SetItems added in v0.0.2

func (o *ListConnectionsResponse) SetItems(v []Connection)

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

func (*ListConnectionsResponse) SetNextToken added in v0.0.2

func (o *ListConnectionsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListFeaturesResponse added in v0.0.4

type ListFeaturesResponse struct {
	Items *[]Feature `json:"items,omitempty"`
}

ListFeaturesResponse struct for ListFeaturesResponse

func NewListFeaturesResponse added in v0.0.4

func NewListFeaturesResponse() *ListFeaturesResponse

NewListFeaturesResponse instantiates a new ListFeaturesResponse 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 NewListFeaturesResponseWithDefaults added in v0.0.4

func NewListFeaturesResponseWithDefaults() *ListFeaturesResponse

NewListFeaturesResponseWithDefaults instantiates a new ListFeaturesResponse 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 (*ListFeaturesResponse) GetItems added in v0.0.4

func (o *ListFeaturesResponse) GetItems() []Feature

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

func (*ListFeaturesResponse) GetItemsOk added in v0.0.4

func (o *ListFeaturesResponse) GetItemsOk() (*[]Feature, bool)

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 (*ListFeaturesResponse) HasItems added in v0.0.4

func (o *ListFeaturesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ListFeaturesResponse) MarshalJSON added in v0.0.4

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

func (*ListFeaturesResponse) SetItems added in v0.0.4

func (o *ListFeaturesResponse) SetItems(v []Feature)

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

type ListIdentitiesResponse added in v0.1.0

type ListIdentitiesResponse struct {
	Items     *[]Identity `json:"items,omitempty"`
	NextToken *string     `json:"next_token,omitempty"`
}

ListIdentitiesResponse struct for ListIdentitiesResponse

func NewListIdentitiesResponse added in v0.1.0

func NewListIdentitiesResponse() *ListIdentitiesResponse

NewListIdentitiesResponse instantiates a new ListIdentitiesResponse 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 NewListIdentitiesResponseWithDefaults added in v0.1.0

func NewListIdentitiesResponseWithDefaults() *ListIdentitiesResponse

NewListIdentitiesResponseWithDefaults instantiates a new ListIdentitiesResponse 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 (*ListIdentitiesResponse) GetItems added in v0.1.0

func (o *ListIdentitiesResponse) GetItems() []Identity

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

func (*ListIdentitiesResponse) GetItemsOk added in v0.1.0

func (o *ListIdentitiesResponse) GetItemsOk() (*[]Identity, bool)

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 (*ListIdentitiesResponse) GetNextToken added in v0.1.0

func (o *ListIdentitiesResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListIdentitiesResponse) GetNextTokenOk added in v0.1.0

func (o *ListIdentitiesResponse) GetNextTokenOk() (*string, bool)

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

func (*ListIdentitiesResponse) HasItems added in v0.1.0

func (o *ListIdentitiesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListIdentitiesResponse) HasNextToken added in v0.1.0

func (o *ListIdentitiesResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListIdentitiesResponse) MarshalJSON added in v0.1.0

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

func (*ListIdentitiesResponse) SetItems added in v0.1.0

func (o *ListIdentitiesResponse) SetItems(v []Identity)

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

func (*ListIdentitiesResponse) SetNextToken added in v0.1.0

func (o *ListIdentitiesResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListLogsResponse added in v0.0.2

type ListLogsResponse struct {
	Items     *[]LogRecord `json:"items,omitempty"`
	NextToken *string      `json:"next_token,omitempty"`
}

ListLogsResponse struct for ListLogsResponse

func NewListLogsResponse added in v0.0.2

func NewListLogsResponse() *ListLogsResponse

NewListLogsResponse instantiates a new ListLogsResponse 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 NewListLogsResponseWithDefaults added in v0.0.2

func NewListLogsResponseWithDefaults() *ListLogsResponse

NewListLogsResponseWithDefaults instantiates a new ListLogsResponse 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 (*ListLogsResponse) GetItems added in v0.0.2

func (o *ListLogsResponse) GetItems() []LogRecord

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

func (*ListLogsResponse) GetItemsOk added in v0.0.2

func (o *ListLogsResponse) GetItemsOk() (*[]LogRecord, bool)

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 (*ListLogsResponse) GetNextToken added in v0.0.2

func (o *ListLogsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListLogsResponse) GetNextTokenOk added in v0.0.2

func (o *ListLogsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListLogsResponse) HasItems added in v0.0.2

func (o *ListLogsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListLogsResponse) HasNextToken added in v0.0.2

func (o *ListLogsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListLogsResponse) MarshalJSON added in v0.0.2

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

func (*ListLogsResponse) SetItems added in v0.0.2

func (o *ListLogsResponse) SetItems(v []LogRecord)

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

func (*ListLogsResponse) SetNextToken added in v0.0.2

func (o *ListLogsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListOrgUsersResponse added in v0.0.2

type ListOrgUsersResponse struct {
	Items     *[]OrgUser `json:"items,omitempty"`
	NextToken *string    `json:"next_token,omitempty"`
}

ListOrgUsersResponse struct for ListOrgUsersResponse

func NewListOrgUsersResponse added in v0.0.2

func NewListOrgUsersResponse() *ListOrgUsersResponse

NewListOrgUsersResponse instantiates a new ListOrgUsersResponse 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 NewListOrgUsersResponseWithDefaults added in v0.0.2

func NewListOrgUsersResponseWithDefaults() *ListOrgUsersResponse

NewListOrgUsersResponseWithDefaults instantiates a new ListOrgUsersResponse 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 (*ListOrgUsersResponse) GetItems added in v0.0.2

func (o *ListOrgUsersResponse) GetItems() []OrgUser

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

func (*ListOrgUsersResponse) GetItemsOk added in v0.0.2

func (o *ListOrgUsersResponse) GetItemsOk() (*[]OrgUser, bool)

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 (*ListOrgUsersResponse) GetNextToken added in v0.0.2

func (o *ListOrgUsersResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListOrgUsersResponse) GetNextTokenOk added in v0.0.2

func (o *ListOrgUsersResponse) GetNextTokenOk() (*string, bool)

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

func (*ListOrgUsersResponse) HasItems added in v0.0.2

func (o *ListOrgUsersResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListOrgUsersResponse) HasNextToken added in v0.0.2

func (o *ListOrgUsersResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListOrgUsersResponse) MarshalJSON added in v0.0.2

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

func (*ListOrgUsersResponse) SetItems added in v0.0.2

func (o *ListOrgUsersResponse) SetItems(v []OrgUser)

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

func (*ListOrgUsersResponse) SetNextToken added in v0.0.2

func (o *ListOrgUsersResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListOrgWorkspaceUsersResponse added in v0.1.0

type ListOrgWorkspaceUsersResponse struct {
	Items     *[]OrgWorkspaceUser `json:"items,omitempty"`
	NextToken *string             `json:"next_token,omitempty"`
}

ListOrgWorkspaceUsersResponse struct for ListOrgWorkspaceUsersResponse

func NewListOrgWorkspaceUsersResponse added in v0.1.0

func NewListOrgWorkspaceUsersResponse() *ListOrgWorkspaceUsersResponse

NewListOrgWorkspaceUsersResponse instantiates a new ListOrgWorkspaceUsersResponse 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 NewListOrgWorkspaceUsersResponseWithDefaults added in v0.1.0

func NewListOrgWorkspaceUsersResponseWithDefaults() *ListOrgWorkspaceUsersResponse

NewListOrgWorkspaceUsersResponseWithDefaults instantiates a new ListOrgWorkspaceUsersResponse 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 (*ListOrgWorkspaceUsersResponse) GetItems added in v0.1.0

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

func (*ListOrgWorkspaceUsersResponse) GetItemsOk added in v0.1.0

func (o *ListOrgWorkspaceUsersResponse) GetItemsOk() (*[]OrgWorkspaceUser, bool)

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 (*ListOrgWorkspaceUsersResponse) GetNextToken added in v0.1.0

func (o *ListOrgWorkspaceUsersResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListOrgWorkspaceUsersResponse) GetNextTokenOk added in v0.1.0

func (o *ListOrgWorkspaceUsersResponse) GetNextTokenOk() (*string, bool)

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

func (*ListOrgWorkspaceUsersResponse) HasItems added in v0.1.0

func (o *ListOrgWorkspaceUsersResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListOrgWorkspaceUsersResponse) HasNextToken added in v0.1.0

func (o *ListOrgWorkspaceUsersResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListOrgWorkspaceUsersResponse) MarshalJSON added in v0.1.0

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

func (*ListOrgWorkspaceUsersResponse) SetItems added in v0.1.0

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

func (*ListOrgWorkspaceUsersResponse) SetNextToken added in v0.1.0

func (o *ListOrgWorkspaceUsersResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListOrgsResponse added in v0.0.2

type ListOrgsResponse struct {
	Items     *[]Org  `json:"items,omitempty"`
	NextToken *string `json:"next_token,omitempty"`
}

ListOrgsResponse struct for ListOrgsResponse

func NewListOrgsResponse added in v0.0.2

func NewListOrgsResponse() *ListOrgsResponse

NewListOrgsResponse instantiates a new ListOrgsResponse 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 NewListOrgsResponseWithDefaults added in v0.0.2

func NewListOrgsResponseWithDefaults() *ListOrgsResponse

NewListOrgsResponseWithDefaults instantiates a new ListOrgsResponse 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 (*ListOrgsResponse) GetItems added in v0.0.2

func (o *ListOrgsResponse) GetItems() []Org

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

func (*ListOrgsResponse) GetItemsOk added in v0.0.2

func (o *ListOrgsResponse) GetItemsOk() (*[]Org, bool)

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 (*ListOrgsResponse) GetNextToken added in v0.0.2

func (o *ListOrgsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListOrgsResponse) GetNextTokenOk added in v0.0.2

func (o *ListOrgsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListOrgsResponse) HasItems added in v0.0.2

func (o *ListOrgsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListOrgsResponse) HasNextToken added in v0.0.2

func (o *ListOrgsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListOrgsResponse) MarshalJSON added in v0.0.2

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

func (*ListOrgsResponse) SetItems added in v0.0.2

func (o *ListOrgsResponse) SetItems(v []Org)

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

func (*ListOrgsResponse) SetNextToken added in v0.0.2

func (o *ListOrgsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListPipelinesResponse added in v0.5.0

type ListPipelinesResponse struct {
	Items     *[]Pipeline `json:"items,omitempty"`
	NextToken *string     `json:"next_token,omitempty"`
}

ListPipelinesResponse struct for ListPipelinesResponse

func NewListPipelinesResponse added in v0.5.0

func NewListPipelinesResponse() *ListPipelinesResponse

NewListPipelinesResponse instantiates a new ListPipelinesResponse 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 NewListPipelinesResponseWithDefaults added in v0.5.0

func NewListPipelinesResponseWithDefaults() *ListPipelinesResponse

NewListPipelinesResponseWithDefaults instantiates a new ListPipelinesResponse 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 (*ListPipelinesResponse) GetItems added in v0.5.0

func (o *ListPipelinesResponse) GetItems() []Pipeline

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

func (*ListPipelinesResponse) GetItemsOk added in v0.5.0

func (o *ListPipelinesResponse) GetItemsOk() (*[]Pipeline, bool)

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 (*ListPipelinesResponse) GetNextToken added in v0.5.0

func (o *ListPipelinesResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListPipelinesResponse) GetNextTokenOk added in v0.5.0

func (o *ListPipelinesResponse) GetNextTokenOk() (*string, bool)

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

func (*ListPipelinesResponse) HasItems added in v0.5.0

func (o *ListPipelinesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListPipelinesResponse) HasNextToken added in v0.5.0

func (o *ListPipelinesResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListPipelinesResponse) MarshalJSON added in v0.5.0

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

func (*ListPipelinesResponse) SetItems added in v0.5.0

func (o *ListPipelinesResponse) SetItems(v []Pipeline)

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

func (*ListPipelinesResponse) SetNextToken added in v0.5.0

func (o *ListPipelinesResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListProcessesResponse added in v0.5.0

type ListProcessesResponse struct {
	Items     *[]SpProcess `json:"items,omitempty"`
	NextToken *string      `json:"next_token,omitempty"`
}

ListProcessesResponse struct for ListProcessesResponse

func NewListProcessesResponse added in v0.5.0

func NewListProcessesResponse() *ListProcessesResponse

NewListProcessesResponse instantiates a new ListProcessesResponse 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 NewListProcessesResponseWithDefaults added in v0.5.0

func NewListProcessesResponseWithDefaults() *ListProcessesResponse

NewListProcessesResponseWithDefaults instantiates a new ListProcessesResponse 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 (*ListProcessesResponse) GetItems added in v0.5.0

func (o *ListProcessesResponse) GetItems() []SpProcess

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

func (*ListProcessesResponse) GetItemsOk added in v0.5.0

func (o *ListProcessesResponse) GetItemsOk() (*[]SpProcess, bool)

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 (*ListProcessesResponse) GetNextToken added in v0.5.0

func (o *ListProcessesResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListProcessesResponse) GetNextTokenOk added in v0.5.0

func (o *ListProcessesResponse) GetNextTokenOk() (*string, bool)

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

func (*ListProcessesResponse) HasItems added in v0.5.0

func (o *ListProcessesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListProcessesResponse) HasNextToken added in v0.5.0

func (o *ListProcessesResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListProcessesResponse) MarshalJSON added in v0.5.0

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

func (*ListProcessesResponse) SetItems added in v0.5.0

func (o *ListProcessesResponse) SetItems(v []SpProcess)

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

func (*ListProcessesResponse) SetNextToken added in v0.5.0

func (o *ListProcessesResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListTokensResponse added in v0.0.2

type ListTokensResponse struct {
	Items     *[]Token `json:"items,omitempty"`
	NextToken *string  `json:"next_token,omitempty"`
}

ListTokensResponse struct for ListTokensResponse

func NewListTokensResponse added in v0.0.2

func NewListTokensResponse() *ListTokensResponse

NewListTokensResponse instantiates a new ListTokensResponse 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 NewListTokensResponseWithDefaults added in v0.0.2

func NewListTokensResponseWithDefaults() *ListTokensResponse

NewListTokensResponseWithDefaults instantiates a new ListTokensResponse 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 (*ListTokensResponse) GetItems added in v0.0.2

func (o *ListTokensResponse) GetItems() []Token

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

func (*ListTokensResponse) GetItemsOk added in v0.0.2

func (o *ListTokensResponse) GetItemsOk() (*[]Token, bool)

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 (*ListTokensResponse) GetNextToken added in v0.0.2

func (o *ListTokensResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListTokensResponse) GetNextTokenOk added in v0.0.2

func (o *ListTokensResponse) GetNextTokenOk() (*string, bool)

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

func (*ListTokensResponse) HasItems added in v0.0.2

func (o *ListTokensResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListTokensResponse) HasNextToken added in v0.0.2

func (o *ListTokensResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListTokensResponse) MarshalJSON added in v0.0.2

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

func (*ListTokensResponse) SetItems added in v0.0.2

func (o *ListTokensResponse) SetItems(v []Token)

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

func (*ListTokensResponse) SetNextToken added in v0.0.2

func (o *ListTokensResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListUserEmailsResponse added in v0.2.0

type ListUserEmailsResponse struct {
	Items     *[]UserEmail `json:"items,omitempty"`
	NextToken *string      `json:"next_token,omitempty"`
}

ListUserEmailsResponse struct for ListUserEmailsResponse

func NewListUserEmailsResponse added in v0.2.0

func NewListUserEmailsResponse() *ListUserEmailsResponse

NewListUserEmailsResponse instantiates a new ListUserEmailsResponse 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 NewListUserEmailsResponseWithDefaults added in v0.2.0

func NewListUserEmailsResponseWithDefaults() *ListUserEmailsResponse

NewListUserEmailsResponseWithDefaults instantiates a new ListUserEmailsResponse 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 (*ListUserEmailsResponse) GetItems added in v0.2.0

func (o *ListUserEmailsResponse) GetItems() []UserEmail

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

func (*ListUserEmailsResponse) GetItemsOk added in v0.2.0

func (o *ListUserEmailsResponse) GetItemsOk() (*[]UserEmail, bool)

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 (*ListUserEmailsResponse) GetNextToken added in v0.2.0

func (o *ListUserEmailsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListUserEmailsResponse) GetNextTokenOk added in v0.2.0

func (o *ListUserEmailsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListUserEmailsResponse) HasItems added in v0.2.0

func (o *ListUserEmailsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListUserEmailsResponse) HasNextToken added in v0.2.0

func (o *ListUserEmailsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListUserEmailsResponse) MarshalJSON added in v0.2.0

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

func (*ListUserEmailsResponse) SetItems added in v0.2.0

func (o *ListUserEmailsResponse) SetItems(v []UserEmail)

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

func (*ListUserEmailsResponse) SetNextToken added in v0.2.0

func (o *ListUserEmailsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListUserOrgsResponse added in v0.0.2

type ListUserOrgsResponse struct {
	Items     *[]UserOrg `json:"items,omitempty"`
	NextToken *string    `json:"next_token,omitempty"`
}

ListUserOrgsResponse struct for ListUserOrgsResponse

func NewListUserOrgsResponse added in v0.0.2

func NewListUserOrgsResponse() *ListUserOrgsResponse

NewListUserOrgsResponse instantiates a new ListUserOrgsResponse 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 NewListUserOrgsResponseWithDefaults added in v0.0.2

func NewListUserOrgsResponseWithDefaults() *ListUserOrgsResponse

NewListUserOrgsResponseWithDefaults instantiates a new ListUserOrgsResponse 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 (*ListUserOrgsResponse) GetItems added in v0.0.2

func (o *ListUserOrgsResponse) GetItems() []UserOrg

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

func (*ListUserOrgsResponse) GetItemsOk added in v0.0.2

func (o *ListUserOrgsResponse) GetItemsOk() (*[]UserOrg, bool)

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 (*ListUserOrgsResponse) GetNextToken added in v0.0.2

func (o *ListUserOrgsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListUserOrgsResponse) GetNextTokenOk added in v0.0.2

func (o *ListUserOrgsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListUserOrgsResponse) HasItems added in v0.0.2

func (o *ListUserOrgsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListUserOrgsResponse) HasNextToken added in v0.0.2

func (o *ListUserOrgsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListUserOrgsResponse) MarshalJSON added in v0.0.2

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

func (*ListUserOrgsResponse) SetItems added in v0.0.2

func (o *ListUserOrgsResponse) SetItems(v []UserOrg)

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

func (*ListUserOrgsResponse) SetNextToken added in v0.0.2

func (o *ListUserOrgsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListUsersResponse added in v0.0.2

type ListUsersResponse struct {
	Items     *[]User `json:"items,omitempty"`
	NextToken *string `json:"next_token,omitempty"`
}

ListUsersResponse struct for ListUsersResponse

func NewListUsersResponse added in v0.0.2

func NewListUsersResponse() *ListUsersResponse

NewListUsersResponse instantiates a new ListUsersResponse 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 NewListUsersResponseWithDefaults added in v0.0.2

func NewListUsersResponseWithDefaults() *ListUsersResponse

NewListUsersResponseWithDefaults instantiates a new ListUsersResponse 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 (*ListUsersResponse) GetItems added in v0.0.2

func (o *ListUsersResponse) GetItems() []User

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

func (*ListUsersResponse) GetItemsOk added in v0.0.2

func (o *ListUsersResponse) GetItemsOk() (*[]User, bool)

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 (*ListUsersResponse) GetNextToken added in v0.0.2

func (o *ListUsersResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListUsersResponse) GetNextTokenOk added in v0.0.2

func (o *ListUsersResponse) GetNextTokenOk() (*string, bool)

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

func (*ListUsersResponse) HasItems added in v0.0.2

func (o *ListUsersResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListUsersResponse) HasNextToken added in v0.0.2

func (o *ListUsersResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListUsersResponse) MarshalJSON added in v0.0.2

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

func (*ListUsersResponse) SetItems added in v0.0.2

func (o *ListUsersResponse) SetItems(v []User)

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

func (*ListUsersResponse) SetNextToken added in v0.0.2

func (o *ListUsersResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListWorkspaceAggregatorsResponse added in v0.6.0

type ListWorkspaceAggregatorsResponse struct {
	Items     *[]WorkspaceAggregator `json:"items,omitempty"`
	NextToken *string                `json:"next_token,omitempty"`
}

ListWorkspaceAggregatorsResponse struct for ListWorkspaceAggregatorsResponse

func NewListWorkspaceAggregatorsResponse added in v0.6.0

func NewListWorkspaceAggregatorsResponse() *ListWorkspaceAggregatorsResponse

NewListWorkspaceAggregatorsResponse instantiates a new ListWorkspaceAggregatorsResponse 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 NewListWorkspaceAggregatorsResponseWithDefaults added in v0.6.0

func NewListWorkspaceAggregatorsResponseWithDefaults() *ListWorkspaceAggregatorsResponse

NewListWorkspaceAggregatorsResponseWithDefaults instantiates a new ListWorkspaceAggregatorsResponse 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 (*ListWorkspaceAggregatorsResponse) GetItems added in v0.6.0

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

func (*ListWorkspaceAggregatorsResponse) 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 (*ListWorkspaceAggregatorsResponse) GetNextToken added in v0.6.0

func (o *ListWorkspaceAggregatorsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListWorkspaceAggregatorsResponse) GetNextTokenOk added in v0.6.0

func (o *ListWorkspaceAggregatorsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListWorkspaceAggregatorsResponse) HasItems added in v0.6.0

func (o *ListWorkspaceAggregatorsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListWorkspaceAggregatorsResponse) HasNextToken added in v0.6.0

func (o *ListWorkspaceAggregatorsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListWorkspaceAggregatorsResponse) MarshalJSON added in v0.6.0

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

func (*ListWorkspaceAggregatorsResponse) SetItems added in v0.6.0

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

func (*ListWorkspaceAggregatorsResponse) SetNextToken added in v0.6.0

func (o *ListWorkspaceAggregatorsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListWorkspaceConnResponse added in v0.0.2

type ListWorkspaceConnResponse struct {
	Items     *[]WorkspaceConn `json:"items,omitempty"`
	NextToken *string          `json:"next_token,omitempty"`
}

ListWorkspaceConnResponse struct for ListWorkspaceConnResponse

func NewListWorkspaceConnResponse added in v0.0.2

func NewListWorkspaceConnResponse() *ListWorkspaceConnResponse

NewListWorkspaceConnResponse instantiates a new ListWorkspaceConnResponse 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 NewListWorkspaceConnResponseWithDefaults added in v0.0.2

func NewListWorkspaceConnResponseWithDefaults() *ListWorkspaceConnResponse

NewListWorkspaceConnResponseWithDefaults instantiates a new ListWorkspaceConnResponse 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 (*ListWorkspaceConnResponse) GetItems added in v0.0.2

func (o *ListWorkspaceConnResponse) GetItems() []WorkspaceConn

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

func (*ListWorkspaceConnResponse) GetItemsOk added in v0.0.2

func (o *ListWorkspaceConnResponse) GetItemsOk() (*[]WorkspaceConn, bool)

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 (*ListWorkspaceConnResponse) GetNextToken added in v0.0.2

func (o *ListWorkspaceConnResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListWorkspaceConnResponse) GetNextTokenOk added in v0.0.2

func (o *ListWorkspaceConnResponse) GetNextTokenOk() (*string, bool)

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

func (*ListWorkspaceConnResponse) HasItems added in v0.0.2

func (o *ListWorkspaceConnResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListWorkspaceConnResponse) HasNextToken added in v0.0.2

func (o *ListWorkspaceConnResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListWorkspaceConnResponse) MarshalJSON added in v0.0.2

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

func (*ListWorkspaceConnResponse) SetItems added in v0.0.2

func (o *ListWorkspaceConnResponse) SetItems(v []WorkspaceConn)

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

func (*ListWorkspaceConnResponse) SetNextToken added in v0.0.2

func (o *ListWorkspaceConnResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListWorkspaceConnectionAssociationsResponse added in v0.6.0

type ListWorkspaceConnectionAssociationsResponse struct {
	Items     *[]WorkspaceConnectionAssociation `json:"items,omitempty"`
	NextToken *string                           `json:"next_token,omitempty"`
}

ListWorkspaceConnectionAssociationsResponse struct for ListWorkspaceConnectionAssociationsResponse

func NewListWorkspaceConnectionAssociationsResponse added in v0.6.0

func NewListWorkspaceConnectionAssociationsResponse() *ListWorkspaceConnectionAssociationsResponse

NewListWorkspaceConnectionAssociationsResponse instantiates a new ListWorkspaceConnectionAssociationsResponse 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 NewListWorkspaceConnectionAssociationsResponseWithDefaults added in v0.6.0

func NewListWorkspaceConnectionAssociationsResponseWithDefaults() *ListWorkspaceConnectionAssociationsResponse

NewListWorkspaceConnectionAssociationsResponseWithDefaults instantiates a new ListWorkspaceConnectionAssociationsResponse 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 (*ListWorkspaceConnectionAssociationsResponse) GetItems added in v0.6.0

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

func (*ListWorkspaceConnectionAssociationsResponse) 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 (*ListWorkspaceConnectionAssociationsResponse) GetNextToken added in v0.6.0

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListWorkspaceConnectionAssociationsResponse) GetNextTokenOk added in v0.6.0

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

func (*ListWorkspaceConnectionAssociationsResponse) HasItems added in v0.6.0

HasItems returns a boolean if a field has been set.

func (*ListWorkspaceConnectionAssociationsResponse) HasNextToken added in v0.6.0

HasNextToken returns a boolean if a field has been set.

func (ListWorkspaceConnectionAssociationsResponse) MarshalJSON added in v0.6.0

func (*ListWorkspaceConnectionAssociationsResponse) SetItems added in v0.6.0

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

func (*ListWorkspaceConnectionAssociationsResponse) SetNextToken added in v0.6.0

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListWorkspaceConnectionsResponse added in v0.6.0

type ListWorkspaceConnectionsResponse struct {
	Items     *[]WorkspaceConnection `json:"items,omitempty"`
	NextToken *string                `json:"next_token,omitempty"`
}

ListWorkspaceConnectionsResponse struct for ListWorkspaceConnectionsResponse

func NewListWorkspaceConnectionsResponse added in v0.6.0

func NewListWorkspaceConnectionsResponse() *ListWorkspaceConnectionsResponse

NewListWorkspaceConnectionsResponse instantiates a new ListWorkspaceConnectionsResponse 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 NewListWorkspaceConnectionsResponseWithDefaults added in v0.6.0

func NewListWorkspaceConnectionsResponseWithDefaults() *ListWorkspaceConnectionsResponse

NewListWorkspaceConnectionsResponseWithDefaults instantiates a new ListWorkspaceConnectionsResponse 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 (*ListWorkspaceConnectionsResponse) GetItems added in v0.6.0

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

func (*ListWorkspaceConnectionsResponse) 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 (*ListWorkspaceConnectionsResponse) GetNextToken added in v0.6.0

func (o *ListWorkspaceConnectionsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListWorkspaceConnectionsResponse) GetNextTokenOk added in v0.6.0

func (o *ListWorkspaceConnectionsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListWorkspaceConnectionsResponse) HasItems added in v0.6.0

func (o *ListWorkspaceConnectionsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListWorkspaceConnectionsResponse) HasNextToken added in v0.6.0

func (o *ListWorkspaceConnectionsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListWorkspaceConnectionsResponse) MarshalJSON added in v0.6.0

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

func (*ListWorkspaceConnectionsResponse) SetItems added in v0.6.0

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

func (*ListWorkspaceConnectionsResponse) SetNextToken added in v0.6.0

func (o *ListWorkspaceConnectionsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListWorkspaceModVariablesResponse added in v0.0.4

type ListWorkspaceModVariablesResponse struct {
	Items     *[]WorkspaceModVariable `json:"items,omitempty"`
	NextToken *string                 `json:"next_token,omitempty"`
}

ListWorkspaceModVariablesResponse struct for ListWorkspaceModVariablesResponse

func NewListWorkspaceModVariablesResponse added in v0.0.4

func NewListWorkspaceModVariablesResponse() *ListWorkspaceModVariablesResponse

NewListWorkspaceModVariablesResponse instantiates a new ListWorkspaceModVariablesResponse 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 NewListWorkspaceModVariablesResponseWithDefaults added in v0.0.4

func NewListWorkspaceModVariablesResponseWithDefaults() *ListWorkspaceModVariablesResponse

NewListWorkspaceModVariablesResponseWithDefaults instantiates a new ListWorkspaceModVariablesResponse 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 (*ListWorkspaceModVariablesResponse) GetItems added in v0.0.4

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

func (*ListWorkspaceModVariablesResponse) GetItemsOk added in v0.0.4

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 (*ListWorkspaceModVariablesResponse) GetNextToken added in v0.0.4

func (o *ListWorkspaceModVariablesResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListWorkspaceModVariablesResponse) GetNextTokenOk added in v0.0.4

func (o *ListWorkspaceModVariablesResponse) GetNextTokenOk() (*string, bool)

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

func (*ListWorkspaceModVariablesResponse) HasItems added in v0.0.4

HasItems returns a boolean if a field has been set.

func (*ListWorkspaceModVariablesResponse) HasNextToken added in v0.0.4

func (o *ListWorkspaceModVariablesResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListWorkspaceModVariablesResponse) MarshalJSON added in v0.0.4

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

func (*ListWorkspaceModVariablesResponse) SetItems added in v0.0.4

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

func (*ListWorkspaceModVariablesResponse) SetNextToken added in v0.0.4

func (o *ListWorkspaceModVariablesResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListWorkspaceModsResponse added in v0.0.4

type ListWorkspaceModsResponse struct {
	Items     *[]WorkspaceMod `json:"items,omitempty"`
	NextToken *string         `json:"next_token,omitempty"`
}

ListWorkspaceModsResponse struct for ListWorkspaceModsResponse

func NewListWorkspaceModsResponse added in v0.0.4

func NewListWorkspaceModsResponse() *ListWorkspaceModsResponse

NewListWorkspaceModsResponse instantiates a new ListWorkspaceModsResponse 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 NewListWorkspaceModsResponseWithDefaults added in v0.0.4

func NewListWorkspaceModsResponseWithDefaults() *ListWorkspaceModsResponse

NewListWorkspaceModsResponseWithDefaults instantiates a new ListWorkspaceModsResponse 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 (*ListWorkspaceModsResponse) GetItems added in v0.0.4

func (o *ListWorkspaceModsResponse) GetItems() []WorkspaceMod

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

func (*ListWorkspaceModsResponse) GetItemsOk added in v0.0.4

func (o *ListWorkspaceModsResponse) GetItemsOk() (*[]WorkspaceMod, bool)

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 (*ListWorkspaceModsResponse) GetNextToken added in v0.0.4

func (o *ListWorkspaceModsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListWorkspaceModsResponse) GetNextTokenOk added in v0.0.4

func (o *ListWorkspaceModsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListWorkspaceModsResponse) HasItems added in v0.0.4

func (o *ListWorkspaceModsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListWorkspaceModsResponse) HasNextToken added in v0.0.4

func (o *ListWorkspaceModsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListWorkspaceModsResponse) MarshalJSON added in v0.0.4

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

func (*ListWorkspaceModsResponse) SetItems added in v0.0.4

func (o *ListWorkspaceModsResponse) SetItems(v []WorkspaceMod)

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

func (*ListWorkspaceModsResponse) SetNextToken added in v0.0.4

func (o *ListWorkspaceModsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListWorkspaceSnapshotsResponse added in v0.1.3

type ListWorkspaceSnapshotsResponse struct {
	// Metadata  ListResponseMetadata `json:\"metadata\"`
	Items     *[]WorkspaceSnapshot `json:"items,omitempty"`
	NextToken *string              `json:"next_token,omitempty"`
}

ListWorkspaceSnapshotsResponse struct for ListWorkspaceSnapshotsResponse

func NewListWorkspaceSnapshotsResponse added in v0.1.3

func NewListWorkspaceSnapshotsResponse() *ListWorkspaceSnapshotsResponse

NewListWorkspaceSnapshotsResponse instantiates a new ListWorkspaceSnapshotsResponse 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 NewListWorkspaceSnapshotsResponseWithDefaults added in v0.1.3

func NewListWorkspaceSnapshotsResponseWithDefaults() *ListWorkspaceSnapshotsResponse

NewListWorkspaceSnapshotsResponseWithDefaults instantiates a new ListWorkspaceSnapshotsResponse 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 (*ListWorkspaceSnapshotsResponse) GetItems added in v0.1.3

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

func (*ListWorkspaceSnapshotsResponse) GetItemsOk added in v0.1.3

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 (*ListWorkspaceSnapshotsResponse) GetNextToken added in v0.1.3

func (o *ListWorkspaceSnapshotsResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListWorkspaceSnapshotsResponse) GetNextTokenOk added in v0.1.3

func (o *ListWorkspaceSnapshotsResponse) GetNextTokenOk() (*string, bool)

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

func (*ListWorkspaceSnapshotsResponse) HasItems added in v0.1.3

func (o *ListWorkspaceSnapshotsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListWorkspaceSnapshotsResponse) HasNextToken added in v0.1.3

func (o *ListWorkspaceSnapshotsResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListWorkspaceSnapshotsResponse) MarshalJSON added in v0.1.3

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

func (*ListWorkspaceSnapshotsResponse) SetItems added in v0.1.3

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

func (*ListWorkspaceSnapshotsResponse) SetNextToken added in v0.1.3

func (o *ListWorkspaceSnapshotsResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type ListWorkspacesResponse added in v0.0.2

type ListWorkspacesResponse struct {
	Items     *[]Workspace `json:"items,omitempty"`
	NextToken *string      `json:"next_token,omitempty"`
}

ListWorkspacesResponse struct for ListWorkspacesResponse

func NewListWorkspacesResponse added in v0.0.2

func NewListWorkspacesResponse() *ListWorkspacesResponse

NewListWorkspacesResponse instantiates a new ListWorkspacesResponse 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 NewListWorkspacesResponseWithDefaults added in v0.0.2

func NewListWorkspacesResponseWithDefaults() *ListWorkspacesResponse

NewListWorkspacesResponseWithDefaults instantiates a new ListWorkspacesResponse 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 (*ListWorkspacesResponse) GetItems added in v0.0.2

func (o *ListWorkspacesResponse) GetItems() []Workspace

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

func (*ListWorkspacesResponse) GetItemsOk added in v0.0.2

func (o *ListWorkspacesResponse) GetItemsOk() (*[]Workspace, bool)

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 (*ListWorkspacesResponse) GetNextToken added in v0.0.2

func (o *ListWorkspacesResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListWorkspacesResponse) GetNextTokenOk added in v0.0.2

func (o *ListWorkspacesResponse) GetNextTokenOk() (*string, bool)

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

func (*ListWorkspacesResponse) HasItems added in v0.0.2

func (o *ListWorkspacesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListWorkspacesResponse) HasNextToken added in v0.0.2

func (o *ListWorkspacesResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListWorkspacesResponse) MarshalJSON added in v0.0.2

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

func (*ListWorkspacesResponse) SetItems added in v0.0.2

func (o *ListWorkspacesResponse) SetItems(v []Workspace)

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

func (*ListWorkspacesResponse) SetNextToken added in v0.0.2

func (o *ListWorkspacesResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

type LogRecord added in v0.0.2

type LogRecord struct {
	// The avatar URL of the actor.
	ActorAvatarUrl string `json:"actor_avatar_url"`
	// The display name of the actor.
	ActorDisplayName string `json:"actor_display_name"`
	// The actor handle who executed the query.
	ActorHandle string `json:"actor_handle"`
	// The actor ID who executed the query.
	ActorId string `json:"actor_id"`
	// The created time of the log.
	CreatedAt string `json:"created_at"`
	// The duration of the query.
	Duration *int32 `json:"duration,omitempty"`
	// The unique identifier of the DB log.
	Id string `json:"id"`
	// The time when the log got captured in the postgres.
	LogTimestamp *string `json:"log_timestamp,omitempty"`
	// The query being executed in the workspace.
	Query *string `json:"query,omitempty"`
	// The workspace handle where the query was executed.
	WorkspaceHandle string `json:"workspace_handle"`
	// The workspace ID where the query was executed.
	WorkspaceId string `json:"workspace_id"`
}

LogRecord struct for LogRecord

func NewLogRecord added in v0.0.2

func NewLogRecord(actorAvatarUrl string, actorDisplayName string, actorHandle string, actorId string, createdAt string, id string, workspaceHandle string, workspaceId string) *LogRecord

NewLogRecord instantiates a new LogRecord 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 NewLogRecordWithDefaults added in v0.0.2

func NewLogRecordWithDefaults() *LogRecord

NewLogRecordWithDefaults instantiates a new LogRecord 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 (*LogRecord) GetActorAvatarUrl added in v0.0.2

func (o *LogRecord) GetActorAvatarUrl() string

GetActorAvatarUrl returns the ActorAvatarUrl field value

func (*LogRecord) GetActorAvatarUrlOk added in v0.0.2

func (o *LogRecord) GetActorAvatarUrlOk() (*string, bool)

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

func (*LogRecord) GetActorDisplayName added in v0.0.2

func (o *LogRecord) GetActorDisplayName() string

GetActorDisplayName returns the ActorDisplayName field value

func (*LogRecord) GetActorDisplayNameOk added in v0.0.2

func (o *LogRecord) GetActorDisplayNameOk() (*string, bool)

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

func (*LogRecord) GetActorHandle added in v0.0.2

func (o *LogRecord) GetActorHandle() string

GetActorHandle returns the ActorHandle field value

func (*LogRecord) GetActorHandleOk added in v0.0.2

func (o *LogRecord) GetActorHandleOk() (*string, bool)

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

func (*LogRecord) GetActorId added in v0.0.2

func (o *LogRecord) GetActorId() string

GetActorId returns the ActorId field value

func (*LogRecord) GetActorIdOk added in v0.0.2

func (o *LogRecord) GetActorIdOk() (*string, bool)

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

func (*LogRecord) GetCreatedAt added in v0.0.2

func (o *LogRecord) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*LogRecord) GetCreatedAtOk added in v0.0.2

func (o *LogRecord) GetCreatedAtOk() (*string, bool)

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

func (*LogRecord) GetDuration added in v0.0.2

func (o *LogRecord) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*LogRecord) GetDurationOk added in v0.0.2

func (o *LogRecord) GetDurationOk() (*int32, bool)

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

func (*LogRecord) GetId added in v0.0.2

func (o *LogRecord) GetId() string

GetId returns the Id field value

func (*LogRecord) GetIdOk added in v0.0.2

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

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

func (*LogRecord) GetLogTimestamp added in v0.0.2

func (o *LogRecord) GetLogTimestamp() string

GetLogTimestamp returns the LogTimestamp field value if set, zero value otherwise.

func (*LogRecord) GetLogTimestampOk added in v0.0.2

func (o *LogRecord) GetLogTimestampOk() (*string, bool)

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

func (*LogRecord) GetQuery added in v0.0.2

func (o *LogRecord) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*LogRecord) GetQueryOk added in v0.0.2

func (o *LogRecord) GetQueryOk() (*string, bool)

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

func (*LogRecord) GetWorkspaceHandle added in v0.0.2

func (o *LogRecord) GetWorkspaceHandle() string

GetWorkspaceHandle returns the WorkspaceHandle field value

func (*LogRecord) GetWorkspaceHandleOk added in v0.0.2

func (o *LogRecord) GetWorkspaceHandleOk() (*string, bool)

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

func (*LogRecord) GetWorkspaceId added in v0.0.2

func (o *LogRecord) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*LogRecord) GetWorkspaceIdOk added in v0.0.2

func (o *LogRecord) GetWorkspaceIdOk() (*string, bool)

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

func (*LogRecord) HasDuration added in v0.0.2

func (o *LogRecord) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*LogRecord) HasLogTimestamp added in v0.0.2

func (o *LogRecord) HasLogTimestamp() bool

HasLogTimestamp returns a boolean if a field has been set.

func (*LogRecord) HasQuery added in v0.0.2

func (o *LogRecord) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (LogRecord) MarshalJSON added in v0.0.2

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

func (*LogRecord) SetActorAvatarUrl added in v0.0.2

func (o *LogRecord) SetActorAvatarUrl(v string)

SetActorAvatarUrl sets field value

func (*LogRecord) SetActorDisplayName added in v0.0.2

func (o *LogRecord) SetActorDisplayName(v string)

SetActorDisplayName sets field value

func (*LogRecord) SetActorHandle added in v0.0.2

func (o *LogRecord) SetActorHandle(v string)

SetActorHandle sets field value

func (*LogRecord) SetActorId added in v0.0.2

func (o *LogRecord) SetActorId(v string)

SetActorId sets field value

func (*LogRecord) SetCreatedAt added in v0.0.2

func (o *LogRecord) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*LogRecord) SetDuration added in v0.0.2

func (o *LogRecord) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*LogRecord) SetId added in v0.0.2

func (o *LogRecord) SetId(v string)

SetId sets field value

func (*LogRecord) SetLogTimestamp added in v0.0.2

func (o *LogRecord) SetLogTimestamp(v string)

SetLogTimestamp gets a reference to the given string and assigns it to the LogTimestamp field.

func (*LogRecord) SetQuery added in v0.0.2

func (o *LogRecord) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

func (*LogRecord) SetWorkspaceHandle added in v0.0.2

func (o *LogRecord) SetWorkspaceHandle(v string)

SetWorkspaceHandle sets field value

func (*LogRecord) SetWorkspaceId added in v0.0.2

func (o *LogRecord) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type NullableActorOrg added in v0.1.1

type NullableActorOrg struct {
	// contains filtered or unexported fields
}

func NewNullableActorOrg added in v0.1.1

func NewNullableActorOrg(val *ActorOrg) *NullableActorOrg

func (NullableActorOrg) Get added in v0.1.1

func (v NullableActorOrg) Get() *ActorOrg

func (NullableActorOrg) IsSet added in v0.1.1

func (v NullableActorOrg) IsSet() bool

func (NullableActorOrg) MarshalJSON added in v0.1.1

func (v NullableActorOrg) MarshalJSON() ([]byte, error)

func (*NullableActorOrg) Set added in v0.1.1

func (v *NullableActorOrg) Set(val *ActorOrg)

func (*NullableActorOrg) UnmarshalJSON added in v0.1.1

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

func (*NullableActorOrg) Unset added in v0.1.1

func (v *NullableActorOrg) Unset()

type NullableActorOrgWorkspace added in v0.1.1

type NullableActorOrgWorkspace struct {
	// contains filtered or unexported fields
}

func NewNullableActorOrgWorkspace added in v0.1.1

func NewNullableActorOrgWorkspace(val *ActorOrgWorkspace) *NullableActorOrgWorkspace

func (NullableActorOrgWorkspace) Get added in v0.1.1

func (NullableActorOrgWorkspace) IsSet added in v0.1.1

func (v NullableActorOrgWorkspace) IsSet() bool

func (NullableActorOrgWorkspace) MarshalJSON added in v0.1.1

func (v NullableActorOrgWorkspace) MarshalJSON() ([]byte, error)

func (*NullableActorOrgWorkspace) Set added in v0.1.1

func (*NullableActorOrgWorkspace) UnmarshalJSON added in v0.1.1

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

func (*NullableActorOrgWorkspace) Unset added in v0.1.1

func (v *NullableActorOrgWorkspace) Unset()

type NullableActorWorkspace added in v0.1.1

type NullableActorWorkspace struct {
	// contains filtered or unexported fields
}

func NewNullableActorWorkspace added in v0.1.1

func NewNullableActorWorkspace(val *ActorWorkspace) *NullableActorWorkspace

func (NullableActorWorkspace) Get added in v0.1.1

func (NullableActorWorkspace) IsSet added in v0.1.1

func (v NullableActorWorkspace) IsSet() bool

func (NullableActorWorkspace) MarshalJSON added in v0.1.1

func (v NullableActorWorkspace) MarshalJSON() ([]byte, error)

func (*NullableActorWorkspace) Set added in v0.1.1

func (*NullableActorWorkspace) UnmarshalJSON added in v0.1.1

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

func (*NullableActorWorkspace) Unset added in v0.1.1

func (v *NullableActorWorkspace) Unset()

type NullableAuditRecord added in v0.0.2

type NullableAuditRecord struct {
	// contains filtered or unexported fields
}

func NewNullableAuditRecord added in v0.0.2

func NewNullableAuditRecord(val *AuditRecord) *NullableAuditRecord

func (NullableAuditRecord) Get added in v0.0.2

func (NullableAuditRecord) IsSet added in v0.0.2

func (v NullableAuditRecord) IsSet() bool

func (NullableAuditRecord) MarshalJSON added in v0.0.2

func (v NullableAuditRecord) MarshalJSON() ([]byte, error)

func (*NullableAuditRecord) Set added in v0.0.2

func (v *NullableAuditRecord) Set(val *AuditRecord)

func (*NullableAuditRecord) UnmarshalJSON added in v0.0.2

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

func (*NullableAuditRecord) Unset added in v0.0.2

func (v *NullableAuditRecord) Unset()

type NullableBillingInfo added in v0.6.0

type NullableBillingInfo struct {
	// contains filtered or unexported fields
}

func NewNullableBillingInfo added in v0.6.0

func NewNullableBillingInfo(val *BillingInfo) *NullableBillingInfo

func (NullableBillingInfo) Get added in v0.6.0

func (NullableBillingInfo) IsSet added in v0.6.0

func (v NullableBillingInfo) IsSet() bool

func (NullableBillingInfo) MarshalJSON added in v0.6.0

func (v NullableBillingInfo) MarshalJSON() ([]byte, error)

func (*NullableBillingInfo) Set added in v0.6.0

func (v *NullableBillingInfo) Set(val *BillingInfo)

func (*NullableBillingInfo) UnmarshalJSON added in v0.6.0

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

func (*NullableBillingInfo) Unset added in v0.6.0

func (v *NullableBillingInfo) 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 NullableConnection added in v0.0.2

type NullableConnection struct {
	// contains filtered or unexported fields
}

func NewNullableConnection added in v0.0.2

func NewNullableConnection(val *Connection) *NullableConnection

func (NullableConnection) Get added in v0.0.2

func (v NullableConnection) Get() *Connection

func (NullableConnection) IsSet added in v0.0.2

func (v NullableConnection) IsSet() bool

func (NullableConnection) MarshalJSON added in v0.0.2

func (v NullableConnection) MarshalJSON() ([]byte, error)

func (*NullableConnection) Set added in v0.0.2

func (v *NullableConnection) Set(val *Connection)

func (*NullableConnection) UnmarshalJSON added in v0.0.2

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

func (*NullableConnection) Unset added in v0.0.2

func (v *NullableConnection) Unset()

type NullableConnectionTestResult added in v0.0.2

type NullableConnectionTestResult struct {
	// contains filtered or unexported fields
}

func NewNullableConnectionTestResult added in v0.0.2

func NewNullableConnectionTestResult(val *ConnectionTestResult) *NullableConnectionTestResult

func (NullableConnectionTestResult) Get added in v0.0.2

func (NullableConnectionTestResult) IsSet added in v0.0.2

func (NullableConnectionTestResult) MarshalJSON added in v0.0.2

func (v NullableConnectionTestResult) MarshalJSON() ([]byte, error)

func (*NullableConnectionTestResult) Set added in v0.0.2

func (*NullableConnectionTestResult) UnmarshalJSON added in v0.0.2

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

func (*NullableConnectionTestResult) Unset added in v0.0.2

func (v *NullableConnectionTestResult) Unset()

type NullableCreateConnectionRequest added in v0.0.2

type NullableCreateConnectionRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateConnectionRequest added in v0.0.2

func NewNullableCreateConnectionRequest(val *CreateConnectionRequest) *NullableCreateConnectionRequest

func (NullableCreateConnectionRequest) Get added in v0.0.2

func (NullableCreateConnectionRequest) IsSet added in v0.0.2

func (NullableCreateConnectionRequest) MarshalJSON added in v0.0.2

func (v NullableCreateConnectionRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateConnectionRequest) Set added in v0.0.2

func (*NullableCreateConnectionRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableCreateConnectionRequest) Unset added in v0.0.2

type NullableCreateOrgAvatarResponse added in v0.6.0

type NullableCreateOrgAvatarResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCreateOrgAvatarResponse added in v0.6.0

func NewNullableCreateOrgAvatarResponse(val *CreateOrgAvatarResponse) *NullableCreateOrgAvatarResponse

func (NullableCreateOrgAvatarResponse) Get added in v0.6.0

func (NullableCreateOrgAvatarResponse) IsSet added in v0.6.0

func (NullableCreateOrgAvatarResponse) MarshalJSON added in v0.6.0

func (v NullableCreateOrgAvatarResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateOrgAvatarResponse) Set added in v0.6.0

func (*NullableCreateOrgAvatarResponse) UnmarshalJSON added in v0.6.0

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

func (*NullableCreateOrgAvatarResponse) Unset added in v0.6.0

type NullableCreateOrgRequest added in v0.0.2

type NullableCreateOrgRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateOrgRequest added in v0.0.2

func NewNullableCreateOrgRequest(val *CreateOrgRequest) *NullableCreateOrgRequest

func (NullableCreateOrgRequest) Get added in v0.0.2

func (NullableCreateOrgRequest) IsSet added in v0.0.2

func (v NullableCreateOrgRequest) IsSet() bool

func (NullableCreateOrgRequest) MarshalJSON added in v0.0.2

func (v NullableCreateOrgRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateOrgRequest) Set added in v0.0.2

func (*NullableCreateOrgRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableCreateOrgRequest) Unset added in v0.0.2

func (v *NullableCreateOrgRequest) Unset()

type NullableCreateOrgWorkspaceUserRequest added in v0.1.2

type NullableCreateOrgWorkspaceUserRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateOrgWorkspaceUserRequest added in v0.1.2

func NewNullableCreateOrgWorkspaceUserRequest(val *CreateOrgWorkspaceUserRequest) *NullableCreateOrgWorkspaceUserRequest

func (NullableCreateOrgWorkspaceUserRequest) Get added in v0.1.2

func (NullableCreateOrgWorkspaceUserRequest) IsSet added in v0.1.2

func (NullableCreateOrgWorkspaceUserRequest) MarshalJSON added in v0.1.2

func (v NullableCreateOrgWorkspaceUserRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateOrgWorkspaceUserRequest) Set added in v0.1.2

func (*NullableCreateOrgWorkspaceUserRequest) UnmarshalJSON added in v0.1.2

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

func (*NullableCreateOrgWorkspaceUserRequest) Unset added in v0.1.2

type NullableCreatePipelineRequest added in v0.5.0

type NullableCreatePipelineRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreatePipelineRequest added in v0.5.0

func NewNullableCreatePipelineRequest(val *CreatePipelineRequest) *NullableCreatePipelineRequest

func (NullableCreatePipelineRequest) Get added in v0.5.0

func (NullableCreatePipelineRequest) IsSet added in v0.5.0

func (NullableCreatePipelineRequest) MarshalJSON added in v0.5.0

func (v NullableCreatePipelineRequest) MarshalJSON() ([]byte, error)

func (*NullableCreatePipelineRequest) Set added in v0.5.0

func (*NullableCreatePipelineRequest) UnmarshalJSON added in v0.5.0

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

func (*NullableCreatePipelineRequest) Unset added in v0.5.0

func (v *NullableCreatePipelineRequest) Unset()

type NullableCreateUserAvatarResponse added in v0.6.0

type NullableCreateUserAvatarResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCreateUserAvatarResponse added in v0.6.0

func NewNullableCreateUserAvatarResponse(val *CreateUserAvatarResponse) *NullableCreateUserAvatarResponse

func (NullableCreateUserAvatarResponse) Get added in v0.6.0

func (NullableCreateUserAvatarResponse) IsSet added in v0.6.0

func (NullableCreateUserAvatarResponse) MarshalJSON added in v0.6.0

func (v NullableCreateUserAvatarResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateUserAvatarResponse) Set added in v0.6.0

func (*NullableCreateUserAvatarResponse) UnmarshalJSON added in v0.6.0

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

func (*NullableCreateUserAvatarResponse) Unset added in v0.6.0

type NullableCreateUserPasswordRequest added in v0.0.2

type NullableCreateUserPasswordRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateUserPasswordRequest added in v0.0.2

func NewNullableCreateUserPasswordRequest(val *CreateUserPasswordRequest) *NullableCreateUserPasswordRequest

func (NullableCreateUserPasswordRequest) Get added in v0.0.2

func (NullableCreateUserPasswordRequest) IsSet added in v0.0.2

func (NullableCreateUserPasswordRequest) MarshalJSON added in v0.0.2

func (v NullableCreateUserPasswordRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateUserPasswordRequest) Set added in v0.0.2

func (*NullableCreateUserPasswordRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableCreateUserPasswordRequest) Unset added in v0.0.2

type NullableCreateUserRequest added in v0.0.2

type NullableCreateUserRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateUserRequest added in v0.0.2

func NewNullableCreateUserRequest(val *CreateUserRequest) *NullableCreateUserRequest

func (NullableCreateUserRequest) Get added in v0.0.2

func (NullableCreateUserRequest) IsSet added in v0.0.2

func (v NullableCreateUserRequest) IsSet() bool

func (NullableCreateUserRequest) MarshalJSON added in v0.0.2

func (v NullableCreateUserRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateUserRequest) Set added in v0.0.2

func (*NullableCreateUserRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableCreateUserRequest) Unset added in v0.0.2

func (v *NullableCreateUserRequest) Unset()

type NullableCreateWorkspaceAggregatorRequest added in v0.6.0

type NullableCreateWorkspaceAggregatorRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateWorkspaceAggregatorRequest added in v0.6.0

func NewNullableCreateWorkspaceAggregatorRequest(val *CreateWorkspaceAggregatorRequest) *NullableCreateWorkspaceAggregatorRequest

func (NullableCreateWorkspaceAggregatorRequest) Get added in v0.6.0

func (NullableCreateWorkspaceAggregatorRequest) IsSet added in v0.6.0

func (NullableCreateWorkspaceAggregatorRequest) MarshalJSON added in v0.6.0

func (*NullableCreateWorkspaceAggregatorRequest) Set added in v0.6.0

func (*NullableCreateWorkspaceAggregatorRequest) UnmarshalJSON added in v0.6.0

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

func (*NullableCreateWorkspaceAggregatorRequest) Unset added in v0.6.0

type NullableCreateWorkspaceConnRequest added in v0.0.2

type NullableCreateWorkspaceConnRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateWorkspaceConnRequest added in v0.0.2

func NewNullableCreateWorkspaceConnRequest(val *CreateWorkspaceConnRequest) *NullableCreateWorkspaceConnRequest

func (NullableCreateWorkspaceConnRequest) Get added in v0.0.2

func (NullableCreateWorkspaceConnRequest) IsSet added in v0.0.2

func (NullableCreateWorkspaceConnRequest) MarshalJSON added in v0.0.2

func (v NullableCreateWorkspaceConnRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateWorkspaceConnRequest) Set added in v0.0.2

func (*NullableCreateWorkspaceConnRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableCreateWorkspaceConnRequest) Unset added in v0.0.2

type NullableCreateWorkspaceModRequest added in v0.0.4

type NullableCreateWorkspaceModRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateWorkspaceModRequest added in v0.0.4

func NewNullableCreateWorkspaceModRequest(val *CreateWorkspaceModRequest) *NullableCreateWorkspaceModRequest

func (NullableCreateWorkspaceModRequest) Get added in v0.0.4

func (NullableCreateWorkspaceModRequest) IsSet added in v0.0.4

func (NullableCreateWorkspaceModRequest) MarshalJSON added in v0.0.4

func (v NullableCreateWorkspaceModRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateWorkspaceModRequest) Set added in v0.0.4

func (*NullableCreateWorkspaceModRequest) UnmarshalJSON added in v0.0.4

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

func (*NullableCreateWorkspaceModRequest) Unset added in v0.0.4

type NullableCreateWorkspaceModVariableSettingRequest added in v0.0.4

type NullableCreateWorkspaceModVariableSettingRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateWorkspaceModVariableSettingRequest) Get added in v0.0.4

func (NullableCreateWorkspaceModVariableSettingRequest) IsSet added in v0.0.4

func (NullableCreateWorkspaceModVariableSettingRequest) MarshalJSON added in v0.0.4

func (*NullableCreateWorkspaceModVariableSettingRequest) Set added in v0.0.4

func (*NullableCreateWorkspaceModVariableSettingRequest) UnmarshalJSON added in v0.0.4

func (*NullableCreateWorkspaceModVariableSettingRequest) Unset added in v0.0.4

type NullableCreateWorkspaceRequest added in v0.0.2

type NullableCreateWorkspaceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateWorkspaceRequest added in v0.0.2

func NewNullableCreateWorkspaceRequest(val *CreateWorkspaceRequest) *NullableCreateWorkspaceRequest

func (NullableCreateWorkspaceRequest) Get added in v0.0.2

func (NullableCreateWorkspaceRequest) IsSet added in v0.0.2

func (NullableCreateWorkspaceRequest) MarshalJSON added in v0.0.2

func (v NullableCreateWorkspaceRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateWorkspaceRequest) Set added in v0.0.2

func (*NullableCreateWorkspaceRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableCreateWorkspaceRequest) Unset added in v0.0.2

func (v *NullableCreateWorkspaceRequest) Unset()

type NullableCreateWorkspaceSnapshotRequest added in v0.1.3

type NullableCreateWorkspaceSnapshotRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateWorkspaceSnapshotRequest added in v0.1.3

func NewNullableCreateWorkspaceSnapshotRequest(val *CreateWorkspaceSnapshotRequest) *NullableCreateWorkspaceSnapshotRequest

func (NullableCreateWorkspaceSnapshotRequest) Get added in v0.1.3

func (NullableCreateWorkspaceSnapshotRequest) IsSet added in v0.1.3

func (NullableCreateWorkspaceSnapshotRequest) MarshalJSON added in v0.1.3

func (v NullableCreateWorkspaceSnapshotRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateWorkspaceSnapshotRequest) Set added in v0.1.3

func (*NullableCreateWorkspaceSnapshotRequest) UnmarshalJSON added in v0.1.3

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

func (*NullableCreateWorkspaceSnapshotRequest) Unset added in v0.1.3

type NullableDeleteOrgAvatarResponse added in v0.6.0

type NullableDeleteOrgAvatarResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteOrgAvatarResponse added in v0.6.0

func NewNullableDeleteOrgAvatarResponse(val *DeleteOrgAvatarResponse) *NullableDeleteOrgAvatarResponse

func (NullableDeleteOrgAvatarResponse) Get added in v0.6.0

func (NullableDeleteOrgAvatarResponse) IsSet added in v0.6.0

func (NullableDeleteOrgAvatarResponse) MarshalJSON added in v0.6.0

func (v NullableDeleteOrgAvatarResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteOrgAvatarResponse) Set added in v0.6.0

func (*NullableDeleteOrgAvatarResponse) UnmarshalJSON added in v0.6.0

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

func (*NullableDeleteOrgAvatarResponse) Unset added in v0.6.0

type NullableDeleteUserAvatarResponse added in v0.6.0

type NullableDeleteUserAvatarResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteUserAvatarResponse added in v0.6.0

func NewNullableDeleteUserAvatarResponse(val *DeleteUserAvatarResponse) *NullableDeleteUserAvatarResponse

func (NullableDeleteUserAvatarResponse) Get added in v0.6.0

func (NullableDeleteUserAvatarResponse) IsSet added in v0.6.0

func (NullableDeleteUserAvatarResponse) MarshalJSON added in v0.6.0

func (v NullableDeleteUserAvatarResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteUserAvatarResponse) Set added in v0.6.0

func (*NullableDeleteUserAvatarResponse) UnmarshalJSON added in v0.6.0

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

func (*NullableDeleteUserAvatarResponse) Unset added in v0.6.0

type NullableErrorDetailModel added in v0.0.2

type NullableErrorDetailModel struct {
	// contains filtered or unexported fields
}

func NewNullableErrorDetailModel added in v0.0.2

func NewNullableErrorDetailModel(val *ErrorDetailModel) *NullableErrorDetailModel

func (NullableErrorDetailModel) Get added in v0.0.2

func (NullableErrorDetailModel) IsSet added in v0.0.2

func (v NullableErrorDetailModel) IsSet() bool

func (NullableErrorDetailModel) MarshalJSON added in v0.0.2

func (v NullableErrorDetailModel) MarshalJSON() ([]byte, error)

func (*NullableErrorDetailModel) Set added in v0.0.2

func (*NullableErrorDetailModel) UnmarshalJSON added in v0.0.2

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

func (*NullableErrorDetailModel) Unset added in v0.0.2

func (v *NullableErrorDetailModel) Unset()

type NullableErrorModel added in v0.0.2

type NullableErrorModel struct {
	// contains filtered or unexported fields
}

func NewNullableErrorModel added in v0.0.2

func NewNullableErrorModel(val *ErrorModel) *NullableErrorModel

func (NullableErrorModel) Get added in v0.0.2

func (v NullableErrorModel) Get() *ErrorModel

func (NullableErrorModel) IsSet added in v0.0.2

func (v NullableErrorModel) IsSet() bool

func (NullableErrorModel) MarshalJSON added in v0.0.2

func (v NullableErrorModel) MarshalJSON() ([]byte, error)

func (*NullableErrorModel) Set added in v0.0.2

func (v *NullableErrorModel) Set(val *ErrorModel)

func (*NullableErrorModel) UnmarshalJSON added in v0.0.2

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

func (*NullableErrorModel) Unset added in v0.0.2

func (v *NullableErrorModel) Unset()

type NullableFeature added in v0.0.4

type NullableFeature struct {
	// contains filtered or unexported fields
}

func NewNullableFeature added in v0.0.4

func NewNullableFeature(val *Feature) *NullableFeature

func (NullableFeature) Get added in v0.0.4

func (v NullableFeature) Get() *Feature

func (NullableFeature) IsSet added in v0.0.4

func (v NullableFeature) IsSet() bool

func (NullableFeature) MarshalJSON added in v0.0.4

func (v NullableFeature) MarshalJSON() ([]byte, error)

func (*NullableFeature) Set added in v0.0.4

func (v *NullableFeature) Set(val *Feature)

func (*NullableFeature) UnmarshalJSON added in v0.0.4

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

func (*NullableFeature) Unset added in v0.0.4

func (v *NullableFeature) 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 NullableIdentity added in v0.0.2

type NullableIdentity struct {
	// contains filtered or unexported fields
}

func NewNullableIdentity added in v0.0.2

func NewNullableIdentity(val *Identity) *NullableIdentity

func (NullableIdentity) Get added in v0.0.2

func (v NullableIdentity) Get() *Identity

func (NullableIdentity) IsSet added in v0.0.2

func (v NullableIdentity) IsSet() bool

func (NullableIdentity) MarshalJSON added in v0.0.2

func (v NullableIdentity) MarshalJSON() ([]byte, error)

func (*NullableIdentity) Set added in v0.0.2

func (v *NullableIdentity) Set(val *Identity)

func (*NullableIdentity) UnmarshalJSON added in v0.0.2

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

func (*NullableIdentity) Unset added in v0.0.2

func (v *NullableIdentity) Unset()

type NullableIdentitySearch added in v0.0.2

type NullableIdentitySearch struct {
	// contains filtered or unexported fields
}

func NewNullableIdentitySearch added in v0.0.2

func NewNullableIdentitySearch(val *IdentitySearch) *NullableIdentitySearch

func (NullableIdentitySearch) Get added in v0.0.2

func (NullableIdentitySearch) IsSet added in v0.0.2

func (v NullableIdentitySearch) IsSet() bool

func (NullableIdentitySearch) MarshalJSON added in v0.0.2

func (v NullableIdentitySearch) MarshalJSON() ([]byte, error)

func (*NullableIdentitySearch) Set added in v0.0.2

func (*NullableIdentitySearch) UnmarshalJSON added in v0.0.2

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

func (*NullableIdentitySearch) Unset added in v0.0.2

func (v *NullableIdentitySearch) 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 NullableInviteOrgUserRequest added in v0.0.2

type NullableInviteOrgUserRequest struct {
	// contains filtered or unexported fields
}

func NewNullableInviteOrgUserRequest added in v0.0.2

func NewNullableInviteOrgUserRequest(val *InviteOrgUserRequest) *NullableInviteOrgUserRequest

func (NullableInviteOrgUserRequest) Get added in v0.0.2

func (NullableInviteOrgUserRequest) IsSet added in v0.0.2

func (NullableInviteOrgUserRequest) MarshalJSON added in v0.0.2

func (v NullableInviteOrgUserRequest) MarshalJSON() ([]byte, error)

func (*NullableInviteOrgUserRequest) Set added in v0.0.2

func (*NullableInviteOrgUserRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableInviteOrgUserRequest) Unset added in v0.0.2

func (v *NullableInviteOrgUserRequest) Unset()

type NullableInviteOrgWorkspaceUserRequest added in v0.1.0

type NullableInviteOrgWorkspaceUserRequest struct {
	// contains filtered or unexported fields
}

func NewNullableInviteOrgWorkspaceUserRequest added in v0.1.0

func NewNullableInviteOrgWorkspaceUserRequest(val *InviteOrgWorkspaceUserRequest) *NullableInviteOrgWorkspaceUserRequest

func (NullableInviteOrgWorkspaceUserRequest) Get added in v0.1.0

func (NullableInviteOrgWorkspaceUserRequest) IsSet added in v0.1.0

func (NullableInviteOrgWorkspaceUserRequest) MarshalJSON added in v0.1.0

func (v NullableInviteOrgWorkspaceUserRequest) MarshalJSON() ([]byte, error)

func (*NullableInviteOrgWorkspaceUserRequest) Set added in v0.1.0

func (*NullableInviteOrgWorkspaceUserRequest) UnmarshalJSON added in v0.1.0

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

func (*NullableInviteOrgWorkspaceUserRequest) Unset added in v0.1.0

type NullableJSONTime added in v0.6.0

type NullableJSONTime struct {
	// contains filtered or unexported fields
}

func NewNullableJSONTime added in v0.6.0

func NewNullableJSONTime(val *JSONTime) *NullableJSONTime

func (NullableJSONTime) Get added in v0.6.0

func (v NullableJSONTime) Get() *JSONTime

func (NullableJSONTime) IsSet added in v0.6.0

func (v NullableJSONTime) IsSet() bool

func (NullableJSONTime) MarshalJSON added in v0.6.0

func (v NullableJSONTime) MarshalJSON() ([]byte, error)

func (*NullableJSONTime) Set added in v0.6.0

func (v *NullableJSONTime) Set(val *JSONTime)

func (*NullableJSONTime) UnmarshalJSON added in v0.6.0

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

func (*NullableJSONTime) Unset added in v0.6.0

func (v *NullableJSONTime) Unset()

type NullableListActorOrgsResponse added in v0.1.1

type NullableListActorOrgsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListActorOrgsResponse added in v0.1.1

func NewNullableListActorOrgsResponse(val *ListActorOrgsResponse) *NullableListActorOrgsResponse

func (NullableListActorOrgsResponse) Get added in v0.1.1

func (NullableListActorOrgsResponse) IsSet added in v0.1.1

func (NullableListActorOrgsResponse) MarshalJSON added in v0.1.1

func (v NullableListActorOrgsResponse) MarshalJSON() ([]byte, error)

func (*NullableListActorOrgsResponse) Set added in v0.1.1

func (*NullableListActorOrgsResponse) UnmarshalJSON added in v0.1.1

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

func (*NullableListActorOrgsResponse) Unset added in v0.1.1

func (v *NullableListActorOrgsResponse) Unset()

type NullableListActorWorkspacesResponse added in v0.1.1

type NullableListActorWorkspacesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListActorWorkspacesResponse added in v0.1.1

func NewNullableListActorWorkspacesResponse(val *ListActorWorkspacesResponse) *NullableListActorWorkspacesResponse

func (NullableListActorWorkspacesResponse) Get added in v0.1.1

func (NullableListActorWorkspacesResponse) IsSet added in v0.1.1

func (NullableListActorWorkspacesResponse) MarshalJSON added in v0.1.1

func (v NullableListActorWorkspacesResponse) MarshalJSON() ([]byte, error)

func (*NullableListActorWorkspacesResponse) Set added in v0.1.1

func (*NullableListActorWorkspacesResponse) UnmarshalJSON added in v0.1.1

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

func (*NullableListActorWorkspacesResponse) Unset added in v0.1.1

type NullableListAuditLogsResponse added in v0.0.2

type NullableListAuditLogsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListAuditLogsResponse added in v0.0.2

func NewNullableListAuditLogsResponse(val *ListAuditLogsResponse) *NullableListAuditLogsResponse

func (NullableListAuditLogsResponse) Get added in v0.0.2

func (NullableListAuditLogsResponse) IsSet added in v0.0.2

func (NullableListAuditLogsResponse) MarshalJSON added in v0.0.2

func (v NullableListAuditLogsResponse) MarshalJSON() ([]byte, error)

func (*NullableListAuditLogsResponse) Set added in v0.0.2

func (*NullableListAuditLogsResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableListAuditLogsResponse) Unset added in v0.0.2

func (v *NullableListAuditLogsResponse) Unset()

type NullableListConnectionsResponse added in v0.0.2

type NullableListConnectionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListConnectionsResponse added in v0.0.2

func NewNullableListConnectionsResponse(val *ListConnectionsResponse) *NullableListConnectionsResponse

func (NullableListConnectionsResponse) Get added in v0.0.2

func (NullableListConnectionsResponse) IsSet added in v0.0.2

func (NullableListConnectionsResponse) MarshalJSON added in v0.0.2

func (v NullableListConnectionsResponse) MarshalJSON() ([]byte, error)

func (*NullableListConnectionsResponse) Set added in v0.0.2

func (*NullableListConnectionsResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableListConnectionsResponse) Unset added in v0.0.2

type NullableListFeaturesResponse added in v0.0.4

type NullableListFeaturesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListFeaturesResponse added in v0.0.4

func NewNullableListFeaturesResponse(val *ListFeaturesResponse) *NullableListFeaturesResponse

func (NullableListFeaturesResponse) Get added in v0.0.4

func (NullableListFeaturesResponse) IsSet added in v0.0.4

func (NullableListFeaturesResponse) MarshalJSON added in v0.0.4

func (v NullableListFeaturesResponse) MarshalJSON() ([]byte, error)

func (*NullableListFeaturesResponse) Set added in v0.0.4

func (*NullableListFeaturesResponse) UnmarshalJSON added in v0.0.4

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

func (*NullableListFeaturesResponse) Unset added in v0.0.4

func (v *NullableListFeaturesResponse) Unset()

type NullableListIdentitiesResponse added in v0.1.0

type NullableListIdentitiesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListIdentitiesResponse added in v0.1.0

func NewNullableListIdentitiesResponse(val *ListIdentitiesResponse) *NullableListIdentitiesResponse

func (NullableListIdentitiesResponse) Get added in v0.1.0

func (NullableListIdentitiesResponse) IsSet added in v0.1.0

func (NullableListIdentitiesResponse) MarshalJSON added in v0.1.0

func (v NullableListIdentitiesResponse) MarshalJSON() ([]byte, error)

func (*NullableListIdentitiesResponse) Set added in v0.1.0

func (*NullableListIdentitiesResponse) UnmarshalJSON added in v0.1.0

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

func (*NullableListIdentitiesResponse) Unset added in v0.1.0

func (v *NullableListIdentitiesResponse) Unset()

type NullableListLogsResponse added in v0.0.2

type NullableListLogsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListLogsResponse added in v0.0.2

func NewNullableListLogsResponse(val *ListLogsResponse) *NullableListLogsResponse

func (NullableListLogsResponse) Get added in v0.0.2

func (NullableListLogsResponse) IsSet added in v0.0.2

func (v NullableListLogsResponse) IsSet() bool

func (NullableListLogsResponse) MarshalJSON added in v0.0.2

func (v NullableListLogsResponse) MarshalJSON() ([]byte, error)

func (*NullableListLogsResponse) Set added in v0.0.2

func (*NullableListLogsResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableListLogsResponse) Unset added in v0.0.2

func (v *NullableListLogsResponse) Unset()

type NullableListOrgUsersResponse added in v0.0.2

type NullableListOrgUsersResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListOrgUsersResponse added in v0.0.2

func NewNullableListOrgUsersResponse(val *ListOrgUsersResponse) *NullableListOrgUsersResponse

func (NullableListOrgUsersResponse) Get added in v0.0.2

func (NullableListOrgUsersResponse) IsSet added in v0.0.2

func (NullableListOrgUsersResponse) MarshalJSON added in v0.0.2

func (v NullableListOrgUsersResponse) MarshalJSON() ([]byte, error)

func (*NullableListOrgUsersResponse) Set added in v0.0.2

func (*NullableListOrgUsersResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableListOrgUsersResponse) Unset added in v0.0.2

func (v *NullableListOrgUsersResponse) Unset()

type NullableListOrgWorkspaceUsersResponse added in v0.1.0

type NullableListOrgWorkspaceUsersResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListOrgWorkspaceUsersResponse added in v0.1.0

func NewNullableListOrgWorkspaceUsersResponse(val *ListOrgWorkspaceUsersResponse) *NullableListOrgWorkspaceUsersResponse

func (NullableListOrgWorkspaceUsersResponse) Get added in v0.1.0

func (NullableListOrgWorkspaceUsersResponse) IsSet added in v0.1.0

func (NullableListOrgWorkspaceUsersResponse) MarshalJSON added in v0.1.0

func (v NullableListOrgWorkspaceUsersResponse) MarshalJSON() ([]byte, error)

func (*NullableListOrgWorkspaceUsersResponse) Set added in v0.1.0

func (*NullableListOrgWorkspaceUsersResponse) UnmarshalJSON added in v0.1.0

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

func (*NullableListOrgWorkspaceUsersResponse) Unset added in v0.1.0

type NullableListOrgsResponse added in v0.0.2

type NullableListOrgsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListOrgsResponse added in v0.0.2

func NewNullableListOrgsResponse(val *ListOrgsResponse) *NullableListOrgsResponse

func (NullableListOrgsResponse) Get added in v0.0.2

func (NullableListOrgsResponse) IsSet added in v0.0.2

func (v NullableListOrgsResponse) IsSet() bool

func (NullableListOrgsResponse) MarshalJSON added in v0.0.2

func (v NullableListOrgsResponse) MarshalJSON() ([]byte, error)

func (*NullableListOrgsResponse) Set added in v0.0.2

func (*NullableListOrgsResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableListOrgsResponse) Unset added in v0.0.2

func (v *NullableListOrgsResponse) Unset()

type NullableListPipelinesResponse added in v0.5.0

type NullableListPipelinesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListPipelinesResponse added in v0.5.0

func NewNullableListPipelinesResponse(val *ListPipelinesResponse) *NullableListPipelinesResponse

func (NullableListPipelinesResponse) Get added in v0.5.0

func (NullableListPipelinesResponse) IsSet added in v0.5.0

func (NullableListPipelinesResponse) MarshalJSON added in v0.5.0

func (v NullableListPipelinesResponse) MarshalJSON() ([]byte, error)

func (*NullableListPipelinesResponse) Set added in v0.5.0

func (*NullableListPipelinesResponse) UnmarshalJSON added in v0.5.0

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

func (*NullableListPipelinesResponse) Unset added in v0.5.0

func (v *NullableListPipelinesResponse) Unset()

type NullableListProcessesResponse added in v0.5.0

type NullableListProcessesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListProcessesResponse added in v0.5.0

func NewNullableListProcessesResponse(val *ListProcessesResponse) *NullableListProcessesResponse

func (NullableListProcessesResponse) Get added in v0.5.0

func (NullableListProcessesResponse) IsSet added in v0.5.0

func (NullableListProcessesResponse) MarshalJSON added in v0.5.0

func (v NullableListProcessesResponse) MarshalJSON() ([]byte, error)

func (*NullableListProcessesResponse) Set added in v0.5.0

func (*NullableListProcessesResponse) UnmarshalJSON added in v0.5.0

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

func (*NullableListProcessesResponse) Unset added in v0.5.0

func (v *NullableListProcessesResponse) Unset()

type NullableListTokensResponse added in v0.0.2

type NullableListTokensResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListTokensResponse added in v0.0.2

func NewNullableListTokensResponse(val *ListTokensResponse) *NullableListTokensResponse

func (NullableListTokensResponse) Get added in v0.0.2

func (NullableListTokensResponse) IsSet added in v0.0.2

func (v NullableListTokensResponse) IsSet() bool

func (NullableListTokensResponse) MarshalJSON added in v0.0.2

func (v NullableListTokensResponse) MarshalJSON() ([]byte, error)

func (*NullableListTokensResponse) Set added in v0.0.2

func (*NullableListTokensResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableListTokensResponse) Unset added in v0.0.2

func (v *NullableListTokensResponse) Unset()

type NullableListUserEmailsResponse added in v0.2.0

type NullableListUserEmailsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListUserEmailsResponse added in v0.2.0

func NewNullableListUserEmailsResponse(val *ListUserEmailsResponse) *NullableListUserEmailsResponse

func (NullableListUserEmailsResponse) Get added in v0.2.0

func (NullableListUserEmailsResponse) IsSet added in v0.2.0

func (NullableListUserEmailsResponse) MarshalJSON added in v0.2.0

func (v NullableListUserEmailsResponse) MarshalJSON() ([]byte, error)

func (*NullableListUserEmailsResponse) Set added in v0.2.0

func (*NullableListUserEmailsResponse) UnmarshalJSON added in v0.2.0

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

func (*NullableListUserEmailsResponse) Unset added in v0.2.0

func (v *NullableListUserEmailsResponse) Unset()

type NullableListUserOrgsResponse added in v0.0.2

type NullableListUserOrgsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListUserOrgsResponse added in v0.0.2

func NewNullableListUserOrgsResponse(val *ListUserOrgsResponse) *NullableListUserOrgsResponse

func (NullableListUserOrgsResponse) Get added in v0.0.2

func (NullableListUserOrgsResponse) IsSet added in v0.0.2

func (NullableListUserOrgsResponse) MarshalJSON added in v0.0.2

func (v NullableListUserOrgsResponse) MarshalJSON() ([]byte, error)

func (*NullableListUserOrgsResponse) Set added in v0.0.2

func (*NullableListUserOrgsResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableListUserOrgsResponse) Unset added in v0.0.2

func (v *NullableListUserOrgsResponse) Unset()

type NullableListUsersResponse added in v0.0.2

type NullableListUsersResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListUsersResponse added in v0.0.2

func NewNullableListUsersResponse(val *ListUsersResponse) *NullableListUsersResponse

func (NullableListUsersResponse) Get added in v0.0.2

func (NullableListUsersResponse) IsSet added in v0.0.2

func (v NullableListUsersResponse) IsSet() bool

func (NullableListUsersResponse) MarshalJSON added in v0.0.2

func (v NullableListUsersResponse) MarshalJSON() ([]byte, error)

func (*NullableListUsersResponse) Set added in v0.0.2

func (*NullableListUsersResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableListUsersResponse) Unset added in v0.0.2

func (v *NullableListUsersResponse) Unset()

type NullableListWorkspaceAggregatorsResponse added in v0.6.0

type NullableListWorkspaceAggregatorsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListWorkspaceAggregatorsResponse added in v0.6.0

func NewNullableListWorkspaceAggregatorsResponse(val *ListWorkspaceAggregatorsResponse) *NullableListWorkspaceAggregatorsResponse

func (NullableListWorkspaceAggregatorsResponse) Get added in v0.6.0

func (NullableListWorkspaceAggregatorsResponse) IsSet added in v0.6.0

func (NullableListWorkspaceAggregatorsResponse) MarshalJSON added in v0.6.0

func (*NullableListWorkspaceAggregatorsResponse) Set added in v0.6.0

func (*NullableListWorkspaceAggregatorsResponse) UnmarshalJSON added in v0.6.0

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

func (*NullableListWorkspaceAggregatorsResponse) Unset added in v0.6.0

type NullableListWorkspaceConnResponse added in v0.0.2

type NullableListWorkspaceConnResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListWorkspaceConnResponse added in v0.0.2

func NewNullableListWorkspaceConnResponse(val *ListWorkspaceConnResponse) *NullableListWorkspaceConnResponse

func (NullableListWorkspaceConnResponse) Get added in v0.0.2

func (NullableListWorkspaceConnResponse) IsSet added in v0.0.2

func (NullableListWorkspaceConnResponse) MarshalJSON added in v0.0.2

func (v NullableListWorkspaceConnResponse) MarshalJSON() ([]byte, error)

func (*NullableListWorkspaceConnResponse) Set added in v0.0.2

func (*NullableListWorkspaceConnResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableListWorkspaceConnResponse) Unset added in v0.0.2

type NullableListWorkspaceConnectionAssociationsResponse added in v0.6.0

type NullableListWorkspaceConnectionAssociationsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListWorkspaceConnectionAssociationsResponse) Get added in v0.6.0

func (NullableListWorkspaceConnectionAssociationsResponse) IsSet added in v0.6.0

func (NullableListWorkspaceConnectionAssociationsResponse) MarshalJSON added in v0.6.0

func (*NullableListWorkspaceConnectionAssociationsResponse) Set added in v0.6.0

func (*NullableListWorkspaceConnectionAssociationsResponse) UnmarshalJSON added in v0.6.0

func (*NullableListWorkspaceConnectionAssociationsResponse) Unset added in v0.6.0

type NullableListWorkspaceConnectionsResponse added in v0.6.0

type NullableListWorkspaceConnectionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListWorkspaceConnectionsResponse added in v0.6.0

func NewNullableListWorkspaceConnectionsResponse(val *ListWorkspaceConnectionsResponse) *NullableListWorkspaceConnectionsResponse

func (NullableListWorkspaceConnectionsResponse) Get added in v0.6.0

func (NullableListWorkspaceConnectionsResponse) IsSet added in v0.6.0

func (NullableListWorkspaceConnectionsResponse) MarshalJSON added in v0.6.0

func (*NullableListWorkspaceConnectionsResponse) Set added in v0.6.0

func (*NullableListWorkspaceConnectionsResponse) UnmarshalJSON added in v0.6.0

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

func (*NullableListWorkspaceConnectionsResponse) Unset added in v0.6.0

type NullableListWorkspaceModVariablesResponse added in v0.0.4

type NullableListWorkspaceModVariablesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListWorkspaceModVariablesResponse added in v0.0.4

func NewNullableListWorkspaceModVariablesResponse(val *ListWorkspaceModVariablesResponse) *NullableListWorkspaceModVariablesResponse

func (NullableListWorkspaceModVariablesResponse) Get added in v0.0.4

func (NullableListWorkspaceModVariablesResponse) IsSet added in v0.0.4

func (NullableListWorkspaceModVariablesResponse) MarshalJSON added in v0.0.4

func (*NullableListWorkspaceModVariablesResponse) Set added in v0.0.4

func (*NullableListWorkspaceModVariablesResponse) UnmarshalJSON added in v0.0.4

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

func (*NullableListWorkspaceModVariablesResponse) Unset added in v0.0.4

type NullableListWorkspaceModsResponse added in v0.0.4

type NullableListWorkspaceModsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListWorkspaceModsResponse added in v0.0.4

func NewNullableListWorkspaceModsResponse(val *ListWorkspaceModsResponse) *NullableListWorkspaceModsResponse

func (NullableListWorkspaceModsResponse) Get added in v0.0.4

func (NullableListWorkspaceModsResponse) IsSet added in v0.0.4

func (NullableListWorkspaceModsResponse) MarshalJSON added in v0.0.4

func (v NullableListWorkspaceModsResponse) MarshalJSON() ([]byte, error)

func (*NullableListWorkspaceModsResponse) Set added in v0.0.4

func (*NullableListWorkspaceModsResponse) UnmarshalJSON added in v0.0.4

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

func (*NullableListWorkspaceModsResponse) Unset added in v0.0.4

type NullableListWorkspaceSnapshotsResponse added in v0.1.3

type NullableListWorkspaceSnapshotsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListWorkspaceSnapshotsResponse added in v0.1.3

func NewNullableListWorkspaceSnapshotsResponse(val *ListWorkspaceSnapshotsResponse) *NullableListWorkspaceSnapshotsResponse

func (NullableListWorkspaceSnapshotsResponse) Get added in v0.1.3

func (NullableListWorkspaceSnapshotsResponse) IsSet added in v0.1.3

func (NullableListWorkspaceSnapshotsResponse) MarshalJSON added in v0.1.3

func (v NullableListWorkspaceSnapshotsResponse) MarshalJSON() ([]byte, error)

func (*NullableListWorkspaceSnapshotsResponse) Set added in v0.1.3

func (*NullableListWorkspaceSnapshotsResponse) UnmarshalJSON added in v0.1.3

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

func (*NullableListWorkspaceSnapshotsResponse) Unset added in v0.1.3

type NullableListWorkspacesResponse added in v0.0.2

type NullableListWorkspacesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListWorkspacesResponse added in v0.0.2

func NewNullableListWorkspacesResponse(val *ListWorkspacesResponse) *NullableListWorkspacesResponse

func (NullableListWorkspacesResponse) Get added in v0.0.2

func (NullableListWorkspacesResponse) IsSet added in v0.0.2

func (NullableListWorkspacesResponse) MarshalJSON added in v0.0.2

func (v NullableListWorkspacesResponse) MarshalJSON() ([]byte, error)

func (*NullableListWorkspacesResponse) Set added in v0.0.2

func (*NullableListWorkspacesResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableListWorkspacesResponse) Unset added in v0.0.2

func (v *NullableListWorkspacesResponse) Unset()

type NullableLogRecord added in v0.0.2

type NullableLogRecord struct {
	// contains filtered or unexported fields
}

func NewNullableLogRecord added in v0.0.2

func NewNullableLogRecord(val *LogRecord) *NullableLogRecord

func (NullableLogRecord) Get added in v0.0.2

func (v NullableLogRecord) Get() *LogRecord

func (NullableLogRecord) IsSet added in v0.0.2

func (v NullableLogRecord) IsSet() bool

func (NullableLogRecord) MarshalJSON added in v0.0.2

func (v NullableLogRecord) MarshalJSON() ([]byte, error)

func (*NullableLogRecord) Set added in v0.0.2

func (v *NullableLogRecord) Set(val *LogRecord)

func (*NullableLogRecord) UnmarshalJSON added in v0.0.2

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

func (*NullableLogRecord) Unset added in v0.0.2

func (v *NullableLogRecord) Unset()

type NullableOrg added in v0.0.2

type NullableOrg struct {
	// contains filtered or unexported fields
}

func NewNullableOrg added in v0.0.2

func NewNullableOrg(val *Org) *NullableOrg

func (NullableOrg) Get added in v0.0.2

func (v NullableOrg) Get() *Org

func (NullableOrg) IsSet added in v0.0.2

func (v NullableOrg) IsSet() bool

func (NullableOrg) MarshalJSON added in v0.0.2

func (v NullableOrg) MarshalJSON() ([]byte, error)

func (*NullableOrg) Set added in v0.0.2

func (v *NullableOrg) Set(val *Org)

func (*NullableOrg) UnmarshalJSON added in v0.0.2

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

func (*NullableOrg) Unset added in v0.0.2

func (v *NullableOrg) Unset()

type NullableOrgQuota added in v0.0.2

type NullableOrgQuota struct {
	// contains filtered or unexported fields
}

func NewNullableOrgQuota added in v0.0.2

func NewNullableOrgQuota(val *OrgQuota) *NullableOrgQuota

func (NullableOrgQuota) Get added in v0.0.2

func (v NullableOrgQuota) Get() *OrgQuota

func (NullableOrgQuota) IsSet added in v0.0.2

func (v NullableOrgQuota) IsSet() bool

func (NullableOrgQuota) MarshalJSON added in v0.0.2

func (v NullableOrgQuota) MarshalJSON() ([]byte, error)

func (*NullableOrgQuota) Set added in v0.0.2

func (v *NullableOrgQuota) Set(val *OrgQuota)

func (*NullableOrgQuota) UnmarshalJSON added in v0.0.2

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

func (*NullableOrgQuota) Unset added in v0.0.2

func (v *NullableOrgQuota) Unset()

type NullableOrgUser added in v0.0.2

type NullableOrgUser struct {
	// contains filtered or unexported fields
}

func NewNullableOrgUser added in v0.0.2

func NewNullableOrgUser(val *OrgUser) *NullableOrgUser

func (NullableOrgUser) Get added in v0.0.2

func (v NullableOrgUser) Get() *OrgUser

func (NullableOrgUser) IsSet added in v0.0.2

func (v NullableOrgUser) IsSet() bool

func (NullableOrgUser) MarshalJSON added in v0.0.2

func (v NullableOrgUser) MarshalJSON() ([]byte, error)

func (*NullableOrgUser) Set added in v0.0.2

func (v *NullableOrgUser) Set(val *OrgUser)

func (*NullableOrgUser) UnmarshalJSON added in v0.0.2

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

func (*NullableOrgUser) Unset added in v0.0.2

func (v *NullableOrgUser) Unset()

type NullableOrgWorkspaceUser added in v0.1.0

type NullableOrgWorkspaceUser struct {
	// contains filtered or unexported fields
}

func NewNullableOrgWorkspaceUser added in v0.1.0

func NewNullableOrgWorkspaceUser(val *OrgWorkspaceUser) *NullableOrgWorkspaceUser

func (NullableOrgWorkspaceUser) Get added in v0.1.0

func (NullableOrgWorkspaceUser) IsSet added in v0.1.0

func (v NullableOrgWorkspaceUser) IsSet() bool

func (NullableOrgWorkspaceUser) MarshalJSON added in v0.1.0

func (v NullableOrgWorkspaceUser) MarshalJSON() ([]byte, error)

func (*NullableOrgWorkspaceUser) Set added in v0.1.0

func (*NullableOrgWorkspaceUser) UnmarshalJSON added in v0.1.0

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

func (*NullableOrgWorkspaceUser) Unset added in v0.1.0

func (v *NullableOrgWorkspaceUser) Unset()

type NullablePipeline added in v0.5.0

type NullablePipeline struct {
	// contains filtered or unexported fields
}

func NewNullablePipeline added in v0.5.0

func NewNullablePipeline(val *Pipeline) *NullablePipeline

func (NullablePipeline) Get added in v0.5.0

func (v NullablePipeline) Get() *Pipeline

func (NullablePipeline) IsSet added in v0.5.0

func (v NullablePipeline) IsSet() bool

func (NullablePipeline) MarshalJSON added in v0.5.0

func (v NullablePipeline) MarshalJSON() ([]byte, error)

func (*NullablePipeline) Set added in v0.5.0

func (v *NullablePipeline) Set(val *Pipeline)

func (*NullablePipeline) UnmarshalJSON added in v0.5.0

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

func (*NullablePipeline) Unset added in v0.5.0

func (v *NullablePipeline) Unset()

type NullablePipelineCommandRequest added in v0.5.0

type NullablePipelineCommandRequest struct {
	// contains filtered or unexported fields
}

func NewNullablePipelineCommandRequest added in v0.5.0

func NewNullablePipelineCommandRequest(val *PipelineCommandRequest) *NullablePipelineCommandRequest

func (NullablePipelineCommandRequest) Get added in v0.5.0

func (NullablePipelineCommandRequest) IsSet added in v0.5.0

func (NullablePipelineCommandRequest) MarshalJSON added in v0.5.0

func (v NullablePipelineCommandRequest) MarshalJSON() ([]byte, error)

func (*NullablePipelineCommandRequest) Set added in v0.5.0

func (*NullablePipelineCommandRequest) UnmarshalJSON added in v0.5.0

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

func (*NullablePipelineCommandRequest) Unset added in v0.5.0

func (v *NullablePipelineCommandRequest) Unset()

type NullablePipelineCommandResponse added in v0.5.0

type NullablePipelineCommandResponse struct {
	// contains filtered or unexported fields
}

func NewNullablePipelineCommandResponse added in v0.5.0

func NewNullablePipelineCommandResponse(val *PipelineCommandResponse) *NullablePipelineCommandResponse

func (NullablePipelineCommandResponse) Get added in v0.5.0

func (NullablePipelineCommandResponse) IsSet added in v0.5.0

func (NullablePipelineCommandResponse) MarshalJSON added in v0.5.0

func (v NullablePipelineCommandResponse) MarshalJSON() ([]byte, error)

func (*NullablePipelineCommandResponse) Set added in v0.5.0

func (*NullablePipelineCommandResponse) UnmarshalJSON added in v0.5.0

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

func (*NullablePipelineCommandResponse) Unset added in v0.5.0

type NullablePipelineFrequency added in v0.5.0

type NullablePipelineFrequency struct {
	// contains filtered or unexported fields
}

func NewNullablePipelineFrequency added in v0.5.0

func NewNullablePipelineFrequency(val *PipelineFrequency) *NullablePipelineFrequency

func (NullablePipelineFrequency) Get added in v0.5.0

func (NullablePipelineFrequency) IsSet added in v0.5.0

func (v NullablePipelineFrequency) IsSet() bool

func (NullablePipelineFrequency) MarshalJSON added in v0.5.0

func (v NullablePipelineFrequency) MarshalJSON() ([]byte, error)

func (*NullablePipelineFrequency) Set added in v0.5.0

func (*NullablePipelineFrequency) UnmarshalJSON added in v0.5.0

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

func (*NullablePipelineFrequency) Unset added in v0.5.0

func (v *NullablePipelineFrequency) Unset()

type NullableQuota added in v0.0.2

type NullableQuota struct {
	// contains filtered or unexported fields
}

func NewNullableQuota added in v0.0.2

func NewNullableQuota(val *Quota) *NullableQuota

func (NullableQuota) Get added in v0.0.2

func (v NullableQuota) Get() *Quota

func (NullableQuota) IsSet added in v0.0.2

func (v NullableQuota) IsSet() bool

func (NullableQuota) MarshalJSON added in v0.0.2

func (v NullableQuota) MarshalJSON() ([]byte, error)

func (*NullableQuota) Set added in v0.0.2

func (v *NullableQuota) Set(val *Quota)

func (*NullableQuota) UnmarshalJSON added in v0.0.2

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

func (*NullableQuota) Unset added in v0.0.2

func (v *NullableQuota) Unset()

type NullableSchemaInfo added in v0.0.2

type NullableSchemaInfo struct {
	// contains filtered or unexported fields
}

func NewNullableSchemaInfo added in v0.0.2

func NewNullableSchemaInfo(val *SchemaInfo) *NullableSchemaInfo

func (NullableSchemaInfo) Get added in v0.0.2

func (v NullableSchemaInfo) Get() *SchemaInfo

func (NullableSchemaInfo) IsSet added in v0.0.2

func (v NullableSchemaInfo) IsSet() bool

func (NullableSchemaInfo) MarshalJSON added in v0.0.2

func (v NullableSchemaInfo) MarshalJSON() ([]byte, error)

func (*NullableSchemaInfo) Set added in v0.0.2

func (v *NullableSchemaInfo) Set(val *SchemaInfo)

func (*NullableSchemaInfo) UnmarshalJSON added in v0.0.2

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

func (*NullableSchemaInfo) Unset added in v0.0.2

func (v *NullableSchemaInfo) Unset()

type NullableSchemaTable added in v0.0.2

type NullableSchemaTable struct {
	// contains filtered or unexported fields
}

func NewNullableSchemaTable added in v0.0.2

func NewNullableSchemaTable(val *SchemaTable) *NullableSchemaTable

func (NullableSchemaTable) Get added in v0.0.2

func (NullableSchemaTable) IsSet added in v0.0.2

func (v NullableSchemaTable) IsSet() bool

func (NullableSchemaTable) MarshalJSON added in v0.0.2

func (v NullableSchemaTable) MarshalJSON() ([]byte, error)

func (*NullableSchemaTable) Set added in v0.0.2

func (v *NullableSchemaTable) Set(val *SchemaTable)

func (*NullableSchemaTable) UnmarshalJSON added in v0.0.2

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

func (*NullableSchemaTable) Unset added in v0.0.2

func (v *NullableSchemaTable) Unset()

type NullableSchemaTableColumn added in v0.0.2

type NullableSchemaTableColumn struct {
	// contains filtered or unexported fields
}

func NewNullableSchemaTableColumn added in v0.0.2

func NewNullableSchemaTableColumn(val *SchemaTableColumn) *NullableSchemaTableColumn

func (NullableSchemaTableColumn) Get added in v0.0.2

func (NullableSchemaTableColumn) IsSet added in v0.0.2

func (v NullableSchemaTableColumn) IsSet() bool

func (NullableSchemaTableColumn) MarshalJSON added in v0.0.2

func (v NullableSchemaTableColumn) MarshalJSON() ([]byte, error)

func (*NullableSchemaTableColumn) Set added in v0.0.2

func (*NullableSchemaTableColumn) UnmarshalJSON added in v0.0.2

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

func (*NullableSchemaTableColumn) Unset added in v0.0.2

func (v *NullableSchemaTableColumn) Unset()

type NullableSearchIdentitiesResponse added in v0.0.2

type NullableSearchIdentitiesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchIdentitiesResponse added in v0.0.2

func NewNullableSearchIdentitiesResponse(val *SearchIdentitiesResponse) *NullableSearchIdentitiesResponse

func (NullableSearchIdentitiesResponse) Get added in v0.0.2

func (NullableSearchIdentitiesResponse) IsSet added in v0.0.2

func (NullableSearchIdentitiesResponse) MarshalJSON added in v0.0.2

func (v NullableSearchIdentitiesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchIdentitiesResponse) Set added in v0.0.2

func (*NullableSearchIdentitiesResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableSearchIdentitiesResponse) Unset added in v0.0.2

type NullableSearchUsersResponse added in v0.0.2

type NullableSearchUsersResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchUsersResponse added in v0.0.2

func NewNullableSearchUsersResponse(val *SearchUsersResponse) *NullableSearchUsersResponse

func (NullableSearchUsersResponse) Get added in v0.0.2

func (NullableSearchUsersResponse) IsSet added in v0.0.2

func (NullableSearchUsersResponse) MarshalJSON added in v0.0.2

func (v NullableSearchUsersResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchUsersResponse) Set added in v0.0.2

func (*NullableSearchUsersResponse) UnmarshalJSON added in v0.0.2

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

func (*NullableSearchUsersResponse) Unset added in v0.0.2

func (v *NullableSearchUsersResponse) Unset()

type NullableSpProcess added in v0.5.0

type NullableSpProcess struct {
	// contains filtered or unexported fields
}

func NewNullableSpProcess added in v0.5.0

func NewNullableSpProcess(val *SpProcess) *NullableSpProcess

func (NullableSpProcess) Get added in v0.5.0

func (v NullableSpProcess) Get() *SpProcess

func (NullableSpProcess) IsSet added in v0.5.0

func (v NullableSpProcess) IsSet() bool

func (NullableSpProcess) MarshalJSON added in v0.5.0

func (v NullableSpProcess) MarshalJSON() ([]byte, error)

func (*NullableSpProcess) Set added in v0.5.0

func (v *NullableSpProcess) Set(val *SpProcess)

func (*NullableSpProcess) UnmarshalJSON added in v0.5.0

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

func (*NullableSpProcess) Unset added in v0.5.0

func (v *NullableSpProcess) 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 NullableTemporaryTokenRequest added in v0.2.0

type NullableTemporaryTokenRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTemporaryTokenRequest added in v0.2.0

func NewNullableTemporaryTokenRequest(val *TemporaryTokenRequest) *NullableTemporaryTokenRequest

func (NullableTemporaryTokenRequest) Get added in v0.2.0

func (NullableTemporaryTokenRequest) IsSet added in v0.2.0

func (NullableTemporaryTokenRequest) MarshalJSON added in v0.2.0

func (v NullableTemporaryTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableTemporaryTokenRequest) Set added in v0.2.0

func (*NullableTemporaryTokenRequest) UnmarshalJSON added in v0.2.0

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

func (*NullableTemporaryTokenRequest) Unset added in v0.2.0

func (v *NullableTemporaryTokenRequest) Unset()

type NullableTestConnectionRequest added in v0.6.0

type NullableTestConnectionRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTestConnectionRequest added in v0.6.0

func NewNullableTestConnectionRequest(val *TestConnectionRequest) *NullableTestConnectionRequest

func (NullableTestConnectionRequest) Get added in v0.6.0

func (NullableTestConnectionRequest) IsSet added in v0.6.0

func (NullableTestConnectionRequest) MarshalJSON added in v0.6.0

func (v NullableTestConnectionRequest) MarshalJSON() ([]byte, error)

func (*NullableTestConnectionRequest) Set added in v0.6.0

func (*NullableTestConnectionRequest) UnmarshalJSON added in v0.6.0

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

func (*NullableTestConnectionRequest) Unset added in v0.6.0

func (v *NullableTestConnectionRequest) 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 NullableToken added in v0.0.2

type NullableToken struct {
	// contains filtered or unexported fields
}

func NewNullableToken added in v0.0.2

func NewNullableToken(val *Token) *NullableToken

func (NullableToken) Get added in v0.0.2

func (v NullableToken) Get() *Token

func (NullableToken) IsSet added in v0.0.2

func (v NullableToken) IsSet() bool

func (NullableToken) MarshalJSON added in v0.0.2

func (v NullableToken) MarshalJSON() ([]byte, error)

func (*NullableToken) Set added in v0.0.2

func (v *NullableToken) Set(val *Token)

func (*NullableToken) UnmarshalJSON added in v0.0.2

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

func (*NullableToken) Unset added in v0.0.2

func (v *NullableToken) Unset()

type NullableUpdateConnectionRequest added in v0.0.2

type NullableUpdateConnectionRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateConnectionRequest added in v0.0.2

func NewNullableUpdateConnectionRequest(val *UpdateConnectionRequest) *NullableUpdateConnectionRequest

func (NullableUpdateConnectionRequest) Get added in v0.0.2

func (NullableUpdateConnectionRequest) IsSet added in v0.0.2

func (NullableUpdateConnectionRequest) MarshalJSON added in v0.0.2

func (v NullableUpdateConnectionRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateConnectionRequest) Set added in v0.0.2

func (*NullableUpdateConnectionRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableUpdateConnectionRequest) Unset added in v0.0.2

type NullableUpdateOrgRequest added in v0.0.2

type NullableUpdateOrgRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateOrgRequest added in v0.0.2

func NewNullableUpdateOrgRequest(val *UpdateOrgRequest) *NullableUpdateOrgRequest

func (NullableUpdateOrgRequest) Get added in v0.0.2

func (NullableUpdateOrgRequest) IsSet added in v0.0.2

func (v NullableUpdateOrgRequest) IsSet() bool

func (NullableUpdateOrgRequest) MarshalJSON added in v0.0.2

func (v NullableUpdateOrgRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateOrgRequest) Set added in v0.0.2

func (*NullableUpdateOrgRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableUpdateOrgRequest) Unset added in v0.0.2

func (v *NullableUpdateOrgRequest) Unset()

type NullableUpdateOrgUserRequest added in v0.0.2

type NullableUpdateOrgUserRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateOrgUserRequest added in v0.0.2

func NewNullableUpdateOrgUserRequest(val *UpdateOrgUserRequest) *NullableUpdateOrgUserRequest

func (NullableUpdateOrgUserRequest) Get added in v0.0.2

func (NullableUpdateOrgUserRequest) IsSet added in v0.0.2

func (NullableUpdateOrgUserRequest) MarshalJSON added in v0.0.2

func (v NullableUpdateOrgUserRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateOrgUserRequest) Set added in v0.0.2

func (*NullableUpdateOrgUserRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableUpdateOrgUserRequest) Unset added in v0.0.2

func (v *NullableUpdateOrgUserRequest) Unset()

type NullableUpdateOrgWorkspaceUserRequest added in v0.1.0

type NullableUpdateOrgWorkspaceUserRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateOrgWorkspaceUserRequest added in v0.1.0

func NewNullableUpdateOrgWorkspaceUserRequest(val *UpdateOrgWorkspaceUserRequest) *NullableUpdateOrgWorkspaceUserRequest

func (NullableUpdateOrgWorkspaceUserRequest) Get added in v0.1.0

func (NullableUpdateOrgWorkspaceUserRequest) IsSet added in v0.1.0

func (NullableUpdateOrgWorkspaceUserRequest) MarshalJSON added in v0.1.0

func (v NullableUpdateOrgWorkspaceUserRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateOrgWorkspaceUserRequest) Set added in v0.1.0

func (*NullableUpdateOrgWorkspaceUserRequest) UnmarshalJSON added in v0.1.0

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

func (*NullableUpdateOrgWorkspaceUserRequest) Unset added in v0.1.0

type NullableUpdatePipelineRequest added in v0.5.0

type NullableUpdatePipelineRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdatePipelineRequest added in v0.5.0

func NewNullableUpdatePipelineRequest(val *UpdatePipelineRequest) *NullableUpdatePipelineRequest

func (NullableUpdatePipelineRequest) Get added in v0.5.0

func (NullableUpdatePipelineRequest) IsSet added in v0.5.0

func (NullableUpdatePipelineRequest) MarshalJSON added in v0.5.0

func (v NullableUpdatePipelineRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdatePipelineRequest) Set added in v0.5.0

func (*NullableUpdatePipelineRequest) UnmarshalJSON added in v0.5.0

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

func (*NullableUpdatePipelineRequest) Unset added in v0.5.0

func (v *NullableUpdatePipelineRequest) Unset()

type NullableUpdateTemporaryTokenRequest added in v0.2.0

type NullableUpdateTemporaryTokenRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateTemporaryTokenRequest added in v0.2.0

func NewNullableUpdateTemporaryTokenRequest(val *UpdateTemporaryTokenRequest) *NullableUpdateTemporaryTokenRequest

func (NullableUpdateTemporaryTokenRequest) Get added in v0.2.0

func (NullableUpdateTemporaryTokenRequest) IsSet added in v0.2.0

func (NullableUpdateTemporaryTokenRequest) MarshalJSON added in v0.2.0

func (v NullableUpdateTemporaryTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateTemporaryTokenRequest) Set added in v0.2.0

func (*NullableUpdateTemporaryTokenRequest) UnmarshalJSON added in v0.2.0

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

func (*NullableUpdateTemporaryTokenRequest) Unset added in v0.2.0

type NullableUpdateTokenRequest added in v0.0.2

type NullableUpdateTokenRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateTokenRequest added in v0.0.2

func NewNullableUpdateTokenRequest(val *UpdateTokenRequest) *NullableUpdateTokenRequest

func (NullableUpdateTokenRequest) Get added in v0.0.2

func (NullableUpdateTokenRequest) IsSet added in v0.0.2

func (v NullableUpdateTokenRequest) IsSet() bool

func (NullableUpdateTokenRequest) MarshalJSON added in v0.0.2

func (v NullableUpdateTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateTokenRequest) Set added in v0.0.2

func (*NullableUpdateTokenRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableUpdateTokenRequest) Unset added in v0.0.2

func (v *NullableUpdateTokenRequest) Unset()

type NullableUpdateUserPreferencesRequest added in v0.2.0

type NullableUpdateUserPreferencesRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateUserPreferencesRequest added in v0.2.0

func NewNullableUpdateUserPreferencesRequest(val *UpdateUserPreferencesRequest) *NullableUpdateUserPreferencesRequest

func (NullableUpdateUserPreferencesRequest) Get added in v0.2.0

func (NullableUpdateUserPreferencesRequest) IsSet added in v0.2.0

func (NullableUpdateUserPreferencesRequest) MarshalJSON added in v0.2.0

func (v NullableUpdateUserPreferencesRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateUserPreferencesRequest) Set added in v0.2.0

func (*NullableUpdateUserPreferencesRequest) UnmarshalJSON added in v0.2.0

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

func (*NullableUpdateUserPreferencesRequest) Unset added in v0.2.0

type NullableUpdateUserRequest added in v0.0.2

type NullableUpdateUserRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateUserRequest added in v0.0.2

func NewNullableUpdateUserRequest(val *UpdateUserRequest) *NullableUpdateUserRequest

func (NullableUpdateUserRequest) Get added in v0.0.2

func (NullableUpdateUserRequest) IsSet added in v0.0.2

func (v NullableUpdateUserRequest) IsSet() bool

func (NullableUpdateUserRequest) MarshalJSON added in v0.0.2

func (v NullableUpdateUserRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateUserRequest) Set added in v0.0.2

func (*NullableUpdateUserRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableUpdateUserRequest) Unset added in v0.0.2

func (v *NullableUpdateUserRequest) Unset()

type NullableUpdateWorkspaceAggregatorRequest added in v0.6.0

type NullableUpdateWorkspaceAggregatorRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateWorkspaceAggregatorRequest added in v0.6.0

func NewNullableUpdateWorkspaceAggregatorRequest(val *UpdateWorkspaceAggregatorRequest) *NullableUpdateWorkspaceAggregatorRequest

func (NullableUpdateWorkspaceAggregatorRequest) Get added in v0.6.0

func (NullableUpdateWorkspaceAggregatorRequest) IsSet added in v0.6.0

func (NullableUpdateWorkspaceAggregatorRequest) MarshalJSON added in v0.6.0

func (*NullableUpdateWorkspaceAggregatorRequest) Set added in v0.6.0

func (*NullableUpdateWorkspaceAggregatorRequest) UnmarshalJSON added in v0.6.0

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

func (*NullableUpdateWorkspaceAggregatorRequest) Unset added in v0.6.0

type NullableUpdateWorkspaceModRequest added in v0.0.4

type NullableUpdateWorkspaceModRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateWorkspaceModRequest added in v0.0.4

func NewNullableUpdateWorkspaceModRequest(val *UpdateWorkspaceModRequest) *NullableUpdateWorkspaceModRequest

func (NullableUpdateWorkspaceModRequest) Get added in v0.0.4

func (NullableUpdateWorkspaceModRequest) IsSet added in v0.0.4

func (NullableUpdateWorkspaceModRequest) MarshalJSON added in v0.0.4

func (v NullableUpdateWorkspaceModRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspaceModRequest) Set added in v0.0.4

func (*NullableUpdateWorkspaceModRequest) UnmarshalJSON added in v0.0.4

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

func (*NullableUpdateWorkspaceModRequest) Unset added in v0.0.4

type NullableUpdateWorkspaceModVariableSettingRequest added in v0.0.4

type NullableUpdateWorkspaceModVariableSettingRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspaceModVariableSettingRequest) Get added in v0.0.4

func (NullableUpdateWorkspaceModVariableSettingRequest) IsSet added in v0.0.4

func (NullableUpdateWorkspaceModVariableSettingRequest) MarshalJSON added in v0.0.4

func (*NullableUpdateWorkspaceModVariableSettingRequest) Set added in v0.0.4

func (*NullableUpdateWorkspaceModVariableSettingRequest) UnmarshalJSON added in v0.0.4

func (*NullableUpdateWorkspaceModVariableSettingRequest) Unset added in v0.0.4

type NullableUpdateWorkspaceRequest added in v0.0.2

type NullableUpdateWorkspaceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateWorkspaceRequest added in v0.0.2

func NewNullableUpdateWorkspaceRequest(val *UpdateWorkspaceRequest) *NullableUpdateWorkspaceRequest

func (NullableUpdateWorkspaceRequest) Get added in v0.0.2

func (NullableUpdateWorkspaceRequest) IsSet added in v0.0.2

func (NullableUpdateWorkspaceRequest) MarshalJSON added in v0.0.2

func (v NullableUpdateWorkspaceRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspaceRequest) Set added in v0.0.2

func (*NullableUpdateWorkspaceRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableUpdateWorkspaceRequest) Unset added in v0.0.2

func (v *NullableUpdateWorkspaceRequest) Unset()

type NullableUpdateWorkspaceSnapshotRequest added in v0.1.3

type NullableUpdateWorkspaceSnapshotRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateWorkspaceSnapshotRequest added in v0.1.3

func NewNullableUpdateWorkspaceSnapshotRequest(val *UpdateWorkspaceSnapshotRequest) *NullableUpdateWorkspaceSnapshotRequest

func (NullableUpdateWorkspaceSnapshotRequest) Get added in v0.1.3

func (NullableUpdateWorkspaceSnapshotRequest) IsSet added in v0.1.3

func (NullableUpdateWorkspaceSnapshotRequest) MarshalJSON added in v0.1.3

func (v NullableUpdateWorkspaceSnapshotRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspaceSnapshotRequest) Set added in v0.1.3

func (*NullableUpdateWorkspaceSnapshotRequest) UnmarshalJSON added in v0.1.3

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

func (*NullableUpdateWorkspaceSnapshotRequest) Unset added in v0.1.3

type NullableUser added in v0.0.2

type NullableUser struct {
	// contains filtered or unexported fields
}

func NewNullableUser added in v0.0.2

func NewNullableUser(val *User) *NullableUser

func (NullableUser) Get added in v0.0.2

func (v NullableUser) Get() *User

func (NullableUser) IsSet added in v0.0.2

func (v NullableUser) IsSet() bool

func (NullableUser) MarshalJSON added in v0.0.2

func (v NullableUser) MarshalJSON() ([]byte, error)

func (*NullableUser) Set added in v0.0.2

func (v *NullableUser) Set(val *User)

func (*NullableUser) UnmarshalJSON added in v0.0.2

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

func (*NullableUser) Unset added in v0.0.2

func (v *NullableUser) Unset()

type NullableUserDatabasePassword added in v0.0.2

type NullableUserDatabasePassword struct {
	// contains filtered or unexported fields
}

func NewNullableUserDatabasePassword added in v0.0.2

func NewNullableUserDatabasePassword(val *UserDatabasePassword) *NullableUserDatabasePassword

func (NullableUserDatabasePassword) Get added in v0.0.2

func (NullableUserDatabasePassword) IsSet added in v0.0.2

func (NullableUserDatabasePassword) MarshalJSON added in v0.0.2

func (v NullableUserDatabasePassword) MarshalJSON() ([]byte, error)

func (*NullableUserDatabasePassword) Set added in v0.0.2

func (*NullableUserDatabasePassword) UnmarshalJSON added in v0.0.2

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

func (*NullableUserDatabasePassword) Unset added in v0.0.2

func (v *NullableUserDatabasePassword) Unset()

type NullableUserEmail added in v0.2.0

type NullableUserEmail struct {
	// contains filtered or unexported fields
}

func NewNullableUserEmail added in v0.2.0

func NewNullableUserEmail(val *UserEmail) *NullableUserEmail

func (NullableUserEmail) Get added in v0.2.0

func (v NullableUserEmail) Get() *UserEmail

func (NullableUserEmail) IsSet added in v0.2.0

func (v NullableUserEmail) IsSet() bool

func (NullableUserEmail) MarshalJSON added in v0.2.0

func (v NullableUserEmail) MarshalJSON() ([]byte, error)

func (*NullableUserEmail) Set added in v0.2.0

func (v *NullableUserEmail) Set(val *UserEmail)

func (*NullableUserEmail) UnmarshalJSON added in v0.2.0

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

func (*NullableUserEmail) Unset added in v0.2.0

func (v *NullableUserEmail) Unset()

type NullableUserLoginRequest added in v0.0.2

type NullableUserLoginRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUserLoginRequest added in v0.0.2

func NewNullableUserLoginRequest(val *UserLoginRequest) *NullableUserLoginRequest

func (NullableUserLoginRequest) Get added in v0.0.2

func (NullableUserLoginRequest) IsSet added in v0.0.2

func (v NullableUserLoginRequest) IsSet() bool

func (NullableUserLoginRequest) MarshalJSON added in v0.0.2

func (v NullableUserLoginRequest) MarshalJSON() ([]byte, error)

func (*NullableUserLoginRequest) Set added in v0.0.2

func (*NullableUserLoginRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableUserLoginRequest) Unset added in v0.0.2

func (v *NullableUserLoginRequest) Unset()

type NullableUserOrg added in v0.0.2

type NullableUserOrg struct {
	// contains filtered or unexported fields
}

func NewNullableUserOrg added in v0.0.2

func NewNullableUserOrg(val *UserOrg) *NullableUserOrg

func (NullableUserOrg) Get added in v0.0.2

func (v NullableUserOrg) Get() *UserOrg

func (NullableUserOrg) IsSet added in v0.0.2

func (v NullableUserOrg) IsSet() bool

func (NullableUserOrg) MarshalJSON added in v0.0.2

func (v NullableUserOrg) MarshalJSON() ([]byte, error)

func (*NullableUserOrg) Set added in v0.0.2

func (v *NullableUserOrg) Set(val *UserOrg)

func (*NullableUserOrg) UnmarshalJSON added in v0.0.2

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

func (*NullableUserOrg) Unset added in v0.0.2

func (v *NullableUserOrg) Unset()

type NullableUserPreferences added in v0.2.0

type NullableUserPreferences struct {
	// contains filtered or unexported fields
}

func NewNullableUserPreferences added in v0.2.0

func NewNullableUserPreferences(val *UserPreferences) *NullableUserPreferences

func (NullableUserPreferences) Get added in v0.2.0

func (NullableUserPreferences) IsSet added in v0.2.0

func (v NullableUserPreferences) IsSet() bool

func (NullableUserPreferences) MarshalJSON added in v0.2.0

func (v NullableUserPreferences) MarshalJSON() ([]byte, error)

func (*NullableUserPreferences) Set added in v0.2.0

func (*NullableUserPreferences) UnmarshalJSON added in v0.2.0

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

func (*NullableUserPreferences) Unset added in v0.2.0

func (v *NullableUserPreferences) Unset()

type NullableUserQuota added in v0.0.2

type NullableUserQuota struct {
	// contains filtered or unexported fields
}

func NewNullableUserQuota added in v0.0.2

func NewNullableUserQuota(val *UserQuota) *NullableUserQuota

func (NullableUserQuota) Get added in v0.0.2

func (v NullableUserQuota) Get() *UserQuota

func (NullableUserQuota) IsSet added in v0.0.2

func (v NullableUserQuota) IsSet() bool

func (NullableUserQuota) MarshalJSON added in v0.0.2

func (v NullableUserQuota) MarshalJSON() ([]byte, error)

func (*NullableUserQuota) Set added in v0.0.2

func (v *NullableUserQuota) Set(val *UserQuota)

func (*NullableUserQuota) UnmarshalJSON added in v0.0.2

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

func (*NullableUserQuota) Unset added in v0.0.2

func (v *NullableUserQuota) Unset()

type NullableUserSearch added in v0.0.2

type NullableUserSearch struct {
	// contains filtered or unexported fields
}

func NewNullableUserSearch added in v0.0.2

func NewNullableUserSearch(val *UserSearch) *NullableUserSearch

func (NullableUserSearch) Get added in v0.0.2

func (v NullableUserSearch) Get() *UserSearch

func (NullableUserSearch) IsSet added in v0.0.2

func (v NullableUserSearch) IsSet() bool

func (NullableUserSearch) MarshalJSON added in v0.0.2

func (v NullableUserSearch) MarshalJSON() ([]byte, error)

func (*NullableUserSearch) Set added in v0.0.2

func (v *NullableUserSearch) Set(val *UserSearch)

func (*NullableUserSearch) UnmarshalJSON added in v0.0.2

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

func (*NullableUserSearch) Unset added in v0.0.2

func (v *NullableUserSearch) Unset()

type NullableUserSignupRequest added in v0.0.2

type NullableUserSignupRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUserSignupRequest added in v0.0.2

func NewNullableUserSignupRequest(val *UserSignupRequest) *NullableUserSignupRequest

func (NullableUserSignupRequest) Get added in v0.0.2

func (NullableUserSignupRequest) IsSet added in v0.0.2

func (v NullableUserSignupRequest) IsSet() bool

func (NullableUserSignupRequest) MarshalJSON added in v0.0.2

func (v NullableUserSignupRequest) MarshalJSON() ([]byte, error)

func (*NullableUserSignupRequest) Set added in v0.0.2

func (*NullableUserSignupRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableUserSignupRequest) Unset added in v0.0.2

func (v *NullableUserSignupRequest) Unset()

type NullableWorkspace added in v0.0.2

type NullableWorkspace struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspace added in v0.0.2

func NewNullableWorkspace(val *Workspace) *NullableWorkspace

func (NullableWorkspace) Get added in v0.0.2

func (v NullableWorkspace) Get() *Workspace

func (NullableWorkspace) IsSet added in v0.0.2

func (v NullableWorkspace) IsSet() bool

func (NullableWorkspace) MarshalJSON added in v0.0.2

func (v NullableWorkspace) MarshalJSON() ([]byte, error)

func (*NullableWorkspace) Set added in v0.0.2

func (v *NullableWorkspace) Set(val *Workspace)

func (*NullableWorkspace) UnmarshalJSON added in v0.0.2

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

func (*NullableWorkspace) Unset added in v0.0.2

func (v *NullableWorkspace) Unset()

type NullableWorkspaceAggregator added in v0.6.0

type NullableWorkspaceAggregator struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceAggregator added in v0.6.0

func NewNullableWorkspaceAggregator(val *WorkspaceAggregator) *NullableWorkspaceAggregator

func (NullableWorkspaceAggregator) Get added in v0.6.0

func (NullableWorkspaceAggregator) IsSet added in v0.6.0

func (NullableWorkspaceAggregator) MarshalJSON added in v0.6.0

func (v NullableWorkspaceAggregator) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceAggregator) Set added in v0.6.0

func (*NullableWorkspaceAggregator) UnmarshalJSON added in v0.6.0

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

func (*NullableWorkspaceAggregator) Unset added in v0.6.0

func (v *NullableWorkspaceAggregator) Unset()

type NullableWorkspaceCommandRequest added in v0.2.0

type NullableWorkspaceCommandRequest struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceCommandRequest added in v0.2.0

func NewNullableWorkspaceCommandRequest(val *WorkspaceCommandRequest) *NullableWorkspaceCommandRequest

func (NullableWorkspaceCommandRequest) Get added in v0.2.0

func (NullableWorkspaceCommandRequest) IsSet added in v0.2.0

func (NullableWorkspaceCommandRequest) MarshalJSON added in v0.2.0

func (v NullableWorkspaceCommandRequest) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceCommandRequest) Set added in v0.2.0

func (*NullableWorkspaceCommandRequest) UnmarshalJSON added in v0.2.0

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

func (*NullableWorkspaceCommandRequest) Unset added in v0.2.0

type NullableWorkspaceCommandResponse added in v0.2.0

type NullableWorkspaceCommandResponse struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceCommandResponse added in v0.2.0

func NewNullableWorkspaceCommandResponse(val *WorkspaceCommandResponse) *NullableWorkspaceCommandResponse

func (NullableWorkspaceCommandResponse) Get added in v0.2.0

func (NullableWorkspaceCommandResponse) IsSet added in v0.2.0

func (NullableWorkspaceCommandResponse) MarshalJSON added in v0.2.0

func (v NullableWorkspaceCommandResponse) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceCommandResponse) Set added in v0.2.0

func (*NullableWorkspaceCommandResponse) UnmarshalJSON added in v0.2.0

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

func (*NullableWorkspaceCommandResponse) Unset added in v0.2.0

type NullableWorkspaceConn added in v0.0.2

type NullableWorkspaceConn struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceConn added in v0.0.2

func NewNullableWorkspaceConn(val *WorkspaceConn) *NullableWorkspaceConn

func (NullableWorkspaceConn) Get added in v0.0.2

func (NullableWorkspaceConn) IsSet added in v0.0.2

func (v NullableWorkspaceConn) IsSet() bool

func (NullableWorkspaceConn) MarshalJSON added in v0.0.2

func (v NullableWorkspaceConn) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceConn) Set added in v0.0.2

func (v *NullableWorkspaceConn) Set(val *WorkspaceConn)

func (*NullableWorkspaceConn) UnmarshalJSON added in v0.0.2

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

func (*NullableWorkspaceConn) Unset added in v0.0.2

func (v *NullableWorkspaceConn) Unset()

type NullableWorkspaceConnection added in v0.6.0

type NullableWorkspaceConnection struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceConnection added in v0.6.0

func NewNullableWorkspaceConnection(val *WorkspaceConnection) *NullableWorkspaceConnection

func (NullableWorkspaceConnection) Get added in v0.6.0

func (NullableWorkspaceConnection) IsSet added in v0.6.0

func (NullableWorkspaceConnection) MarshalJSON added in v0.6.0

func (v NullableWorkspaceConnection) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceConnection) Set added in v0.6.0

func (*NullableWorkspaceConnection) UnmarshalJSON added in v0.6.0

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

func (*NullableWorkspaceConnection) Unset added in v0.6.0

func (v *NullableWorkspaceConnection) Unset()

type NullableWorkspaceConnectionAssociation added in v0.6.0

type NullableWorkspaceConnectionAssociation struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceConnectionAssociation added in v0.6.0

func NewNullableWorkspaceConnectionAssociation(val *WorkspaceConnectionAssociation) *NullableWorkspaceConnectionAssociation

func (NullableWorkspaceConnectionAssociation) Get added in v0.6.0

func (NullableWorkspaceConnectionAssociation) IsSet added in v0.6.0

func (NullableWorkspaceConnectionAssociation) MarshalJSON added in v0.6.0

func (v NullableWorkspaceConnectionAssociation) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceConnectionAssociation) Set added in v0.6.0

func (*NullableWorkspaceConnectionAssociation) UnmarshalJSON added in v0.6.0

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

func (*NullableWorkspaceConnectionAssociation) Unset added in v0.6.0

type NullableWorkspaceMod added in v0.0.4

type NullableWorkspaceMod struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceMod added in v0.0.4

func NewNullableWorkspaceMod(val *WorkspaceMod) *NullableWorkspaceMod

func (NullableWorkspaceMod) Get added in v0.0.4

func (NullableWorkspaceMod) IsSet added in v0.0.4

func (v NullableWorkspaceMod) IsSet() bool

func (NullableWorkspaceMod) MarshalJSON added in v0.0.4

func (v NullableWorkspaceMod) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceMod) Set added in v0.0.4

func (v *NullableWorkspaceMod) Set(val *WorkspaceMod)

func (*NullableWorkspaceMod) UnmarshalJSON added in v0.0.4

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

func (*NullableWorkspaceMod) Unset added in v0.0.4

func (v *NullableWorkspaceMod) Unset()

type NullableWorkspaceModVariable added in v0.0.4

type NullableWorkspaceModVariable struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceModVariable added in v0.0.4

func NewNullableWorkspaceModVariable(val *WorkspaceModVariable) *NullableWorkspaceModVariable

func (NullableWorkspaceModVariable) Get added in v0.0.4

func (NullableWorkspaceModVariable) IsSet added in v0.0.4

func (NullableWorkspaceModVariable) MarshalJSON added in v0.0.4

func (v NullableWorkspaceModVariable) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceModVariable) Set added in v0.0.4

func (*NullableWorkspaceModVariable) UnmarshalJSON added in v0.0.4

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

func (*NullableWorkspaceModVariable) Unset added in v0.0.4

func (v *NullableWorkspaceModVariable) Unset()

type NullableWorkspaceQueryResult added in v0.0.2

type NullableWorkspaceQueryResult struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceQueryResult added in v0.0.2

func NewNullableWorkspaceQueryResult(val *WorkspaceQueryResult) *NullableWorkspaceQueryResult

func (NullableWorkspaceQueryResult) Get added in v0.0.2

func (NullableWorkspaceQueryResult) IsSet added in v0.0.2

func (NullableWorkspaceQueryResult) MarshalJSON added in v0.0.2

func (v NullableWorkspaceQueryResult) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceQueryResult) Set added in v0.0.2

func (*NullableWorkspaceQueryResult) UnmarshalJSON added in v0.0.2

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

func (*NullableWorkspaceQueryResult) Unset added in v0.0.2

func (v *NullableWorkspaceQueryResult) Unset()

type NullableWorkspaceQueryResultColumn added in v0.0.2

type NullableWorkspaceQueryResultColumn struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceQueryResultColumn added in v0.0.2

func NewNullableWorkspaceQueryResultColumn(val *WorkspaceQueryResultColumn) *NullableWorkspaceQueryResultColumn

func (NullableWorkspaceQueryResultColumn) Get added in v0.0.2

func (NullableWorkspaceQueryResultColumn) IsSet added in v0.0.2

func (NullableWorkspaceQueryResultColumn) MarshalJSON added in v0.0.2

func (v NullableWorkspaceQueryResultColumn) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceQueryResultColumn) Set added in v0.0.2

func (*NullableWorkspaceQueryResultColumn) UnmarshalJSON added in v0.0.2

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

func (*NullableWorkspaceQueryResultColumn) Unset added in v0.0.2

type NullableWorkspaceSchema added in v0.0.2

type NullableWorkspaceSchema struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceSchema added in v0.0.2

func NewNullableWorkspaceSchema(val *WorkspaceSchema) *NullableWorkspaceSchema

func (NullableWorkspaceSchema) Get added in v0.0.2

func (NullableWorkspaceSchema) IsSet added in v0.0.2

func (v NullableWorkspaceSchema) IsSet() bool

func (NullableWorkspaceSchema) MarshalJSON added in v0.0.2

func (v NullableWorkspaceSchema) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceSchema) Set added in v0.0.2

func (*NullableWorkspaceSchema) UnmarshalJSON added in v0.0.2

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

func (*NullableWorkspaceSchema) Unset added in v0.0.2

func (v *NullableWorkspaceSchema) Unset()

type NullableWorkspaceSnapshot added in v0.1.3

type NullableWorkspaceSnapshot struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceSnapshot added in v0.1.3

func NewNullableWorkspaceSnapshot(val *WorkspaceSnapshot) *NullableWorkspaceSnapshot

func (NullableWorkspaceSnapshot) Get added in v0.1.3

func (NullableWorkspaceSnapshot) IsSet added in v0.1.3

func (v NullableWorkspaceSnapshot) IsSet() bool

func (NullableWorkspaceSnapshot) MarshalJSON added in v0.1.3

func (v NullableWorkspaceSnapshot) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceSnapshot) Set added in v0.1.3

func (*NullableWorkspaceSnapshot) UnmarshalJSON added in v0.1.3

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

func (*NullableWorkspaceSnapshot) Unset added in v0.1.3

func (v *NullableWorkspaceSnapshot) Unset()

type NullableWorkspaceSnapshotData added in v0.1.3

type NullableWorkspaceSnapshotData struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceSnapshotData added in v0.1.3

func NewNullableWorkspaceSnapshotData(val *WorkspaceSnapshotData) *NullableWorkspaceSnapshotData

func (NullableWorkspaceSnapshotData) Get added in v0.1.3

func (NullableWorkspaceSnapshotData) IsSet added in v0.1.3

func (NullableWorkspaceSnapshotData) MarshalJSON added in v0.1.3

func (v NullableWorkspaceSnapshotData) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceSnapshotData) Set added in v0.1.3

func (*NullableWorkspaceSnapshotData) UnmarshalJSON added in v0.1.3

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

func (*NullableWorkspaceSnapshotData) Unset added in v0.1.3

func (v *NullableWorkspaceSnapshotData) Unset()

type NullableWorkspaceSnapshotDataLayout added in v0.5.0

type NullableWorkspaceSnapshotDataLayout struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceSnapshotDataLayout added in v0.5.0

func NewNullableWorkspaceSnapshotDataLayout(val *WorkspaceSnapshotDataLayout) *NullableWorkspaceSnapshotDataLayout

func (NullableWorkspaceSnapshotDataLayout) Get added in v0.5.0

func (NullableWorkspaceSnapshotDataLayout) IsSet added in v0.5.0

func (NullableWorkspaceSnapshotDataLayout) MarshalJSON added in v0.5.0

func (v NullableWorkspaceSnapshotDataLayout) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceSnapshotDataLayout) Set added in v0.5.0

func (*NullableWorkspaceSnapshotDataLayout) UnmarshalJSON added in v0.5.0

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

func (*NullableWorkspaceSnapshotDataLayout) Unset added in v0.5.0

type Org added in v0.0.2

type Org struct {
	// The avatar of an org.
	AvatarUrl *string      `json:"avatar_url,omitempty"`
	Billing   *BillingInfo `json:"billing,omitempty"`
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The time of the last update in ISO 8601 UTC.
	DeletedAt *string `json:"deleted_at,omitempty"`
	DeletedBy *User   `json:"deleted_by,omitempty"`
	// The ID of the user that performed the deletion.
	DeletedById string `json:"deleted_by_id"`
	// The display name of an org.
	DisplayName *string `json:"display_name,omitempty"`
	// The handle name for an org.
	Handle string `json:"handle"`
	// The unique identifier for an org.
	Id string `json:"id"`
	// The state of the org.
	State string `json:"state"`
	// The reason for the state of the org
	StateReason      *string   `json:"state_reason,omitempty"`
	TokenMinIssuedAt *JSONTime `json:"token_min_issued_at,omitempty"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string  `json:"updated_by_id"`
	Url         *string `json:"url,omitempty"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
}

Org struct for Org

func NewOrg added in v0.0.2

func NewOrg(createdAt string, createdById string, deletedById string, handle string, id string, state string, updatedById string, versionId int32) *Org

NewOrg instantiates a new Org 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 NewOrgWithDefaults added in v0.0.2

func NewOrgWithDefaults() *Org

NewOrgWithDefaults instantiates a new Org 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 (*Org) GetAvatarUrl added in v0.0.2

func (o *Org) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*Org) GetAvatarUrlOk added in v0.0.2

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

func (o *Org) GetBilling() BillingInfo

GetBilling returns the Billing field value if set, zero value otherwise.

func (*Org) GetBillingOk added in v0.6.0

func (o *Org) GetBillingOk() (*BillingInfo, bool)

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

func (*Org) GetCreatedAt added in v0.0.2

func (o *Org) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*Org) GetCreatedAtOk added in v0.0.2

func (o *Org) GetCreatedAtOk() (*string, bool)

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

func (*Org) GetCreatedBy added in v0.1.0

func (o *Org) GetCreatedBy() User

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

func (*Org) GetCreatedById added in v0.1.0

func (o *Org) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*Org) GetCreatedByIdOk added in v0.1.0

func (o *Org) GetCreatedByIdOk() (*string, bool)

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

func (*Org) GetCreatedByOk added in v0.1.0

func (o *Org) GetCreatedByOk() (*User, 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 (*Org) GetDeletedAt added in v0.2.0

func (o *Org) GetDeletedAt() string

GetDeletedAt returns the DeletedAt field value if set, zero value otherwise.

func (*Org) GetDeletedAtOk added in v0.2.0

func (o *Org) GetDeletedAtOk() (*string, bool)

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

func (*Org) GetDeletedBy added in v0.2.0

func (o *Org) GetDeletedBy() User

GetDeletedBy returns the DeletedBy field value if set, zero value otherwise.

func (*Org) GetDeletedById added in v0.2.0

func (o *Org) GetDeletedById() string

GetDeletedById returns the DeletedById field value

func (*Org) GetDeletedByIdOk added in v0.2.0

func (o *Org) GetDeletedByIdOk() (*string, bool)

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

func (*Org) GetDeletedByOk added in v0.2.0

func (o *Org) GetDeletedByOk() (*User, bool)

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

func (*Org) GetDisplayName added in v0.0.2

func (o *Org) GetDisplayName() string

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

func (*Org) GetDisplayNameOk added in v0.0.2

func (o *Org) 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 (*Org) GetHandle added in v0.0.2

func (o *Org) GetHandle() string

GetHandle returns the Handle field value

func (*Org) GetHandleOk added in v0.0.2

func (o *Org) GetHandleOk() (*string, bool)

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

func (*Org) GetId added in v0.0.2

func (o *Org) GetId() string

GetId returns the Id field value

func (*Org) GetIdOk added in v0.0.2

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

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

func (*Org) GetState added in v0.6.0

func (o *Org) GetState() string

GetState returns the State field value

func (*Org) GetStateOk added in v0.6.0

func (o *Org) GetStateOk() (*string, bool)

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

func (*Org) GetStateReason added in v0.6.0

func (o *Org) GetStateReason() string

GetStateReason returns the StateReason field value if set, zero value otherwise.

func (*Org) GetStateReasonOk added in v0.6.0

func (o *Org) GetStateReasonOk() (*string, bool)

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

func (*Org) GetTokenMinIssuedAt added in v0.6.0

func (o *Org) GetTokenMinIssuedAt() JSONTime

GetTokenMinIssuedAt returns the TokenMinIssuedAt field value if set, zero value otherwise.

func (*Org) GetTokenMinIssuedAtOk added in v0.6.0

func (o *Org) GetTokenMinIssuedAtOk() (*JSONTime, bool)

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

func (*Org) GetUpdatedAt added in v0.0.2

func (o *Org) GetUpdatedAt() string

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

func (*Org) GetUpdatedAtOk added in v0.0.2

func (o *Org) GetUpdatedAtOk() (*string, 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 (*Org) GetUpdatedBy added in v0.1.0

func (o *Org) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*Org) GetUpdatedById added in v0.1.0

func (o *Org) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*Org) GetUpdatedByIdOk added in v0.1.0

func (o *Org) GetUpdatedByIdOk() (*string, bool)

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

func (*Org) GetUpdatedByOk added in v0.1.0

func (o *Org) GetUpdatedByOk() (*User, bool)

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

func (*Org) GetUrl added in v0.0.2

func (o *Org) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*Org) GetUrlOk added in v0.0.2

func (o *Org) 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 (*Org) GetVersionId added in v0.0.2

func (o *Org) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*Org) GetVersionIdOk added in v0.0.2

func (o *Org) GetVersionIdOk() (*int32, bool)

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

func (*Org) HasAvatarUrl added in v0.0.2

func (o *Org) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*Org) HasBilling added in v0.6.0

func (o *Org) HasBilling() bool

HasBilling returns a boolean if a field has been set.

func (*Org) HasCreatedBy added in v0.1.0

func (o *Org) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Org) HasDeletedAt added in v0.2.0

func (o *Org) HasDeletedAt() bool

HasDeletedAt returns a boolean if a field has been set.

func (*Org) HasDeletedBy added in v0.2.0

func (o *Org) HasDeletedBy() bool

HasDeletedBy returns a boolean if a field has been set.

func (*Org) HasDisplayName added in v0.0.2

func (o *Org) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*Org) HasStateReason added in v0.6.0

func (o *Org) HasStateReason() bool

HasStateReason returns a boolean if a field has been set.

func (*Org) HasTokenMinIssuedAt added in v0.6.0

func (o *Org) HasTokenMinIssuedAt() bool

HasTokenMinIssuedAt returns a boolean if a field has been set.

func (*Org) HasUpdatedAt added in v0.0.2

func (o *Org) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Org) HasUpdatedBy added in v0.1.0

func (o *Org) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*Org) HasUrl added in v0.0.2

func (o *Org) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (Org) MarshalJSON added in v0.0.2

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

func (*Org) SetAvatarUrl added in v0.0.2

func (o *Org) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*Org) SetBilling added in v0.6.0

func (o *Org) SetBilling(v BillingInfo)

SetBilling gets a reference to the given BillingInfo and assigns it to the Billing field.

func (*Org) SetCreatedAt added in v0.0.2

func (o *Org) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*Org) SetCreatedBy added in v0.1.0

func (o *Org) SetCreatedBy(v User)

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

func (*Org) SetCreatedById added in v0.1.0

func (o *Org) SetCreatedById(v string)

SetCreatedById sets field value

func (*Org) SetDeletedAt added in v0.2.0

func (o *Org) SetDeletedAt(v string)

SetDeletedAt gets a reference to the given string and assigns it to the DeletedAt field.

func (*Org) SetDeletedBy added in v0.2.0

func (o *Org) SetDeletedBy(v User)

SetDeletedBy gets a reference to the given User and assigns it to the DeletedBy field.

func (*Org) SetDeletedById added in v0.2.0

func (o *Org) SetDeletedById(v string)

SetDeletedById sets field value

func (*Org) SetDisplayName added in v0.0.2

func (o *Org) SetDisplayName(v string)

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

func (*Org) SetHandle added in v0.0.2

func (o *Org) SetHandle(v string)

SetHandle sets field value

func (*Org) SetId added in v0.0.2

func (o *Org) SetId(v string)

SetId sets field value

func (*Org) SetState added in v0.6.0

func (o *Org) SetState(v string)

SetState sets field value

func (*Org) SetStateReason added in v0.6.0

func (o *Org) SetStateReason(v string)

SetStateReason gets a reference to the given string and assigns it to the StateReason field.

func (*Org) SetTokenMinIssuedAt added in v0.6.0

func (o *Org) SetTokenMinIssuedAt(v JSONTime)

SetTokenMinIssuedAt gets a reference to the given JSONTime and assigns it to the TokenMinIssuedAt field.

func (*Org) SetUpdatedAt added in v0.0.2

func (o *Org) SetUpdatedAt(v string)

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

func (*Org) SetUpdatedBy added in v0.1.0

func (o *Org) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*Org) SetUpdatedById added in v0.1.0

func (o *Org) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*Org) SetUrl added in v0.0.2

func (o *Org) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*Org) SetVersionId added in v0.0.2

func (o *Org) SetVersionId(v int32)

SetVersionId sets field value

type OrgConnectionsApiCreateDeprecatedRequest added in v0.6.0

type OrgConnectionsApiCreateDeprecatedRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiCreateDeprecatedRequest) Execute added in v0.6.0

func (OrgConnectionsApiCreateDeprecatedRequest) Mode added in v0.6.0

The mode of this request

func (OrgConnectionsApiCreateDeprecatedRequest) Request added in v0.6.0

The request body for the connection to be created.

type OrgConnectionsApiCreateRequest

type OrgConnectionsApiCreateRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiCreateRequest) Execute

func (OrgConnectionsApiCreateRequest) Mode added in v0.6.0

The mode of this request

func (OrgConnectionsApiCreateRequest) Request

The request body for the connection to be created.

type OrgConnectionsApiDeleteDeprecatedRequest added in v0.6.0

type OrgConnectionsApiDeleteDeprecatedRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiDeleteDeprecatedRequest) Execute added in v0.6.0

type OrgConnectionsApiDeleteRequest

type OrgConnectionsApiDeleteRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiDeleteRequest) Execute

type OrgConnectionsApiGetDeprecatedRequest added in v0.6.0

type OrgConnectionsApiGetDeprecatedRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiGetDeprecatedRequest) Execute added in v0.6.0

type OrgConnectionsApiGetRequest

type OrgConnectionsApiGetRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiGetRequest) Execute

type OrgConnectionsApiListDeprecatedRequest added in v0.6.0

type OrgConnectionsApiListDeprecatedRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiListDeprecatedRequest) Execute added in v0.6.0

func (OrgConnectionsApiListDeprecatedRequest) Limit added in v0.6.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgConnectionsApiListDeprecatedRequest) NextToken added in v0.6.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgConnectionsApiListRequest

type OrgConnectionsApiListRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiListRequest) Execute

func (OrgConnectionsApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgConnectionsApiListRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgConnectionsApiListWorkspacesDeprecatedRequest added in v0.6.0

type OrgConnectionsApiListWorkspacesDeprecatedRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiListWorkspacesDeprecatedRequest) Execute added in v0.6.0

func (OrgConnectionsApiListWorkspacesDeprecatedRequest) Limit added in v0.6.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgConnectionsApiListWorkspacesDeprecatedRequest) NextToken added in v0.6.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgConnectionsApiListWorkspacesRequest added in v0.6.0

type OrgConnectionsApiListWorkspacesRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiListWorkspacesRequest) Execute added in v0.6.0

func (OrgConnectionsApiListWorkspacesRequest) Limit added in v0.6.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgConnectionsApiListWorkspacesRequest) NextToken added in v0.6.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgConnectionsApiTestDeprecatedRequest added in v0.6.0

type OrgConnectionsApiTestDeprecatedRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiTestDeprecatedRequest) Execute added in v0.6.0

func (OrgConnectionsApiTestDeprecatedRequest) Request added in v0.6.0

The request body for the connection to be tested.

type OrgConnectionsApiTestRequest

type OrgConnectionsApiTestRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiTestRequest) Execute

func (OrgConnectionsApiTestRequest) Request added in v0.6.0

The request body for the connection to be tested.

type OrgConnectionsApiUpdateDeprecatedRequest added in v0.6.0

type OrgConnectionsApiUpdateDeprecatedRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiUpdateDeprecatedRequest) Execute added in v0.6.0

func (OrgConnectionsApiUpdateDeprecatedRequest) Mode added in v0.6.0

The mode of this request

func (OrgConnectionsApiUpdateDeprecatedRequest) Request added in v0.6.0

The request body for the connection which needs to be updated.

type OrgConnectionsApiUpdateRequest

type OrgConnectionsApiUpdateRequest struct {
	ApiService *OrgConnectionsService
	// contains filtered or unexported fields
}

func (OrgConnectionsApiUpdateRequest) Execute

func (OrgConnectionsApiUpdateRequest) Mode added in v0.6.0

The mode of this request

func (OrgConnectionsApiUpdateRequest) Request

The request body of the connection which needs to be updated.

type OrgConnectionsService

type OrgConnectionsService service

OrgConnectionsService OrgConnections service

func (*OrgConnectionsService) Create

Create Create org connection

Creates a new connection for an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where we want to create the connection.
@return OrgConnectionsApiCreateRequest

func (*OrgConnectionsService) CreateDeprecated added in v0.6.0

CreateDeprecated Create org connection

Creates a new connection for an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where we want to create the connection.
@return OrgConnectionsApiCreateDeprecatedRequest

Deprecated

func (*OrgConnectionsService) CreateDeprecatedExecute added in v0.6.0

Execute executes the request

@return Connection

Deprecated

func (*OrgConnectionsService) CreateExecute

Execute executes the request

@return Connection

func (*OrgConnectionsService) Delete

func (a *OrgConnectionsService) Delete(ctx _context.Context, orgHandle string, connectionHandle string) OrgConnectionsApiDeleteRequest

Delete Delete org connection

Deletes a connection belonging to an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where the connection exists.
@param connectionHandle The handle of the connection that needs to be deleted.
@return OrgConnectionsApiDeleteRequest

func (*OrgConnectionsService) DeleteDeprecated added in v0.6.0

func (a *OrgConnectionsService) DeleteDeprecated(ctx _context.Context, orgHandle string, connHandle string) OrgConnectionsApiDeleteDeprecatedRequest

DeleteDeprecated Delete org connection

Delete a connection belonging to an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where the connection exist.
@param connHandle The handle of the connection that needs to be deleted.
@return OrgConnectionsApiDeleteDeprecatedRequest

Deprecated

func (*OrgConnectionsService) DeleteDeprecatedExecute added in v0.6.0

Execute executes the request

@return Connection

Deprecated

func (*OrgConnectionsService) DeleteExecute

Execute executes the request

@return Connection

func (*OrgConnectionsService) Get

func (a *OrgConnectionsService) Get(ctx _context.Context, orgHandle string, connectionHandle string) OrgConnectionsApiGetRequest

Get Get org connection

Get the details of a connection belonging to an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization where the connection exists.
@param connectionHandle The handle of the connection whose detail needs to be fetched.
@return OrgConnectionsApiGetRequest

func (*OrgConnectionsService) GetDeprecated added in v0.6.0

func (a *OrgConnectionsService) GetDeprecated(ctx _context.Context, orgHandle string, connHandle string) OrgConnectionsApiGetDeprecatedRequest

GetDeprecated Get org connection

Get the details for a connection belonging to an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization where the connection exists.
@param connHandle The handle of the connection whose detail needs to be fetched.
@return OrgConnectionsApiGetDeprecatedRequest

Deprecated

func (*OrgConnectionsService) GetDeprecatedExecute added in v0.6.0

Execute executes the request

@return Connection

Deprecated

func (*OrgConnectionsService) GetExecute

Execute executes the request

@return Connection

func (*OrgConnectionsService) List

List List org connections

List connections for an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization for which we want to list connections.
@return OrgConnectionsApiListRequest

func (*OrgConnectionsService) ListDeprecated added in v0.6.0

ListDeprecated List org connections

List connections for an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org for which we want to list connections.
@return OrgConnectionsApiListDeprecatedRequest

Deprecated

func (*OrgConnectionsService) ListDeprecatedExecute added in v0.6.0

Execute executes the request

@return ListConnectionsResponse

Deprecated

func (*OrgConnectionsService) ListExecute

Execute executes the request

@return ListConnectionsResponse

func (*OrgConnectionsService) ListWorkspaces added in v0.6.0

func (a *OrgConnectionsService) ListWorkspaces(ctx _context.Context, orgHandle string, connectionHandle string) OrgConnectionsApiListWorkspacesRequest

ListWorkspaces List org connection workspaces

List the workspaces that an org connection has been added to.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where the connection exists.
@param connectionHandle The handle of the connection for which we want to list workspaces.
@return OrgConnectionsApiListWorkspacesRequest

func (*OrgConnectionsService) ListWorkspacesDeprecated added in v0.6.0

func (a *OrgConnectionsService) ListWorkspacesDeprecated(ctx _context.Context, orgHandle string, connHandle string) OrgConnectionsApiListWorkspacesDeprecatedRequest

ListWorkspacesDeprecated List org connection workspaces

List the workspaces that an org connection has been added to.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where the connection exists.
@param connHandle The handle of the connection for which we want to list workspaces.
@return OrgConnectionsApiListWorkspacesDeprecatedRequest

Deprecated

func (*OrgConnectionsService) ListWorkspacesDeprecatedExecute added in v0.6.0

Execute executes the request

@return ListWorkspaceConnResponse

Deprecated

func (*OrgConnectionsService) ListWorkspacesExecute added in v0.6.0

Execute executes the request

@return ListWorkspaceConnectionAssociationsResponse

func (*OrgConnectionsService) Test

func (a *OrgConnectionsService) Test(ctx _context.Context, orgHandle string, connectionHandle string) OrgConnectionsApiTestRequest

Test Test org connection

Test the config for an org connection to check for basic connectivity before you create it.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org performing the action.
@param connectionHandle The handle of the connection to be tested. For connections that are not yet created, use underscore `_` as the handle, else pass the handle of the existing connection.
@return OrgConnectionsApiTestRequest

func (*OrgConnectionsService) TestDeprecated added in v0.6.0

func (a *OrgConnectionsService) TestDeprecated(ctx _context.Context, orgHandle string, connHandle string) OrgConnectionsApiTestDeprecatedRequest

TestDeprecated Test org connection

Test the config for an org connection to check for basic connectivity.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org where the connection exists / intends to be created.
@param connHandle The handle of the connection to be tested. For connections that are not yet created, use underscore `_` as the handle, else pass the handle of the existing connection.
@return OrgConnectionsApiTestDeprecatedRequest

Deprecated

func (*OrgConnectionsService) TestDeprecatedExecute added in v0.6.0

Execute executes the request

@return ConnectionTestResult

Deprecated

func (*OrgConnectionsService) TestExecute

Execute executes the request

@return ConnectionTestResult

func (*OrgConnectionsService) Update

func (a *OrgConnectionsService) Update(ctx _context.Context, orgHandle string, connectionHandle string) OrgConnectionsApiUpdateRequest

Update Update org connection

Update the details of a connection belonging to an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where the connection exists.
@param connectionHandle The handle of the connection which needs to be updated.
@return OrgConnectionsApiUpdateRequest

func (*OrgConnectionsService) UpdateDeprecated added in v0.6.0

func (a *OrgConnectionsService) UpdateDeprecated(ctx _context.Context, orgHandle string, connHandle string) OrgConnectionsApiUpdateDeprecatedRequest

UpdateDeprecated Update org connection

Update the details of a connection belonging to an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where the connection exist.
@param connHandle The handle of the connection which needs to be updated.
@return OrgConnectionsApiUpdateDeprecatedRequest

Deprecated

func (*OrgConnectionsService) UpdateDeprecatedExecute added in v0.6.0

Execute executes the request

@return Connection

Deprecated

func (*OrgConnectionsService) UpdateExecute

Execute executes the request

@return Connection

type OrgMembersApiConfirmInviteRequest

type OrgMembersApiConfirmInviteRequest struct {
	ApiService *OrgMembersService
	// contains filtered or unexported fields
}

func (OrgMembersApiConfirmInviteRequest) Execute

func (OrgMembersApiConfirmInviteRequest) T

Specify the token.

type OrgMembersApiDeleteInviteRequest

type OrgMembersApiDeleteInviteRequest struct {
	ApiService *OrgMembersService
	// contains filtered or unexported fields
}

func (OrgMembersApiDeleteInviteRequest) Execute

func (OrgMembersApiDeleteInviteRequest) T

Specify the token to be rejected.

type OrgMembersApiDeleteRequest

type OrgMembersApiDeleteRequest struct {
	ApiService *OrgMembersService
	// contains filtered or unexported fields
}

func (OrgMembersApiDeleteRequest) Execute

type OrgMembersApiGetRequest

type OrgMembersApiGetRequest struct {
	ApiService *OrgMembersService
	// contains filtered or unexported fields
}

func (OrgMembersApiGetRequest) Execute

type OrgMembersApiInviteRequest

type OrgMembersApiInviteRequest struct {
	ApiService *OrgMembersService
	// contains filtered or unexported fields
}

func (OrgMembersApiInviteRequest) Execute

func (OrgMembersApiInviteRequest) Request

The request body to invite a member to an organization.

type OrgMembersApiListRequest added in v0.1.1

type OrgMembersApiListRequest struct {
	ApiService *OrgMembersService
	// contains filtered or unexported fields
}

func (OrgMembersApiListRequest) Execute added in v0.1.1

func (OrgMembersApiListRequest) Limit added in v0.1.1

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgMembersApiListRequest) NextToken added in v0.1.1

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

func (OrgMembersApiListRequest) Q added in v0.1.2

Optional free-text search to filter the org members.

type OrgMembersApiUpdateRequest

type OrgMembersApiUpdateRequest struct {
	ApiService *OrgMembersService
	// contains filtered or unexported fields
}

func (OrgMembersApiUpdateRequest) Execute

func (OrgMembersApiUpdateRequest) Request

The request body for the member.

type OrgMembersService

type OrgMembersService service

OrgMembersService OrgMembers service

func (*OrgMembersService) ConfirmInvite

ConfirmInvite Confirm org member invite

Confirm org member invite.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of an organization where the member need to be invited.
@return OrgMembersApiConfirmInviteRequest

func (*OrgMembersService) ConfirmInviteExecute

Execute executes the request

func (*OrgMembersService) Delete

func (a *OrgMembersService) Delete(ctx _context.Context, orgHandle string, userHandle string) OrgMembersApiDeleteRequest

Delete Delete org member

Delete the user from the org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of the organization where the member exists.
@param userHandle Specify the handle of the user which need to be removed.
@return OrgMembersApiDeleteRequest

func (*OrgMembersService) DeleteExecute

Execute executes the request

@return OrgUser

func (*OrgMembersService) DeleteInvite

DeleteInvite Delete org member invite

Delete the org member invite.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the organization handle.
@return OrgMembersApiDeleteInviteRequest

func (*OrgMembersService) DeleteInviteExecute

Execute executes the request

func (*OrgMembersService) Get

func (a *OrgMembersService) Get(ctx _context.Context, orgHandle string, userHandle string) OrgMembersApiGetRequest

Get Get org member

Get org member.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the organization handle where the member is associated.
@param userHandle Specify the handle of the user whose information you want to retrieve.
@return OrgMembersApiGetRequest

func (*OrgMembersService) GetExecute

Execute executes the request

@return OrgUser

func (*OrgMembersService) Invite

Invite Invite org member

Invite member to an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of an organization where the member need to be invited.
@return OrgMembersApiInviteRequest

func (*OrgMembersService) InviteExecute

Execute executes the request

@return OrgUser

func (*OrgMembersService) List added in v0.1.1

List List Organization Members

List all members of an organization who are invited / accepted.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the organization handle.
@return OrgMembersApiListRequest

func (*OrgMembersService) ListExecute added in v0.1.1

Execute executes the request

@return ListOrgUsersResponse

func (*OrgMembersService) Update

func (a *OrgMembersService) Update(ctx _context.Context, orgHandle string, userHandle string) OrgMembersApiUpdateRequest

Update Update org member

Update the role of the member.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of the organization where the member exists.
@param userHandle Specify the handle of the user whose role need to be updated.
@return OrgMembersApiUpdateRequest

func (*OrgMembersService) UpdateExecute

Execute executes the request

@return OrgUser

type OrgProcessesApiGetRequest added in v0.5.0

type OrgProcessesApiGetRequest struct {
	ApiService *OrgProcessesService
	// contains filtered or unexported fields
}

func (OrgProcessesApiGetRequest) Execute added in v0.5.0

type OrgProcessesApiListRequest added in v0.5.0

type OrgProcessesApiListRequest struct {
	ApiService *OrgProcessesService
	// contains filtered or unexported fields
}

func (OrgProcessesApiListRequest) Execute added in v0.5.0

func (OrgProcessesApiListRequest) Limit added in v0.5.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgProcessesApiListRequest) NextToken added in v0.5.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgProcessesApiLogRequest added in v0.5.0

type OrgProcessesApiLogRequest struct {
	ApiService *OrgProcessesService
	// contains filtered or unexported fields
}

func (OrgProcessesApiLogRequest) Execute added in v0.5.0

type OrgProcessesService added in v0.5.0

type OrgProcessesService service

OrgProcessesService OrgProcesses service

func (*OrgProcessesService) Get added in v0.5.0

func (a *OrgProcessesService) Get(ctx _context.Context, orgHandle string, processId string) OrgProcessesApiGetRequest

Get Get Org process

Get a process for an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization to get the process.
@param processId The id of the process to be fetched.
@return OrgProcessesApiGetRequest

func (*OrgProcessesService) GetExecute added in v0.5.0

Execute executes the request

@return SpProcess

func (*OrgProcessesService) List added in v0.5.0

List List Org processes

List processes for an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization to list the processes.
@return OrgProcessesApiListRequest

func (*OrgProcessesService) ListExecute added in v0.5.0

Execute executes the request

@return ListProcessesResponse

func (*OrgProcessesService) Log added in v0.5.0

func (a *OrgProcessesService) Log(ctx _context.Context, orgHandle string, processId string, logFile string, contentType string) OrgProcessesApiLogRequest

Log List Org process logs

List the process logs for a given process of an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization to list the process logs.
@param processId The id of the process where you want to list the process logs.
@param logFile The process logs file to be fetched.
@param contentType The required content type of the process logs.
@return OrgProcessesApiLogRequest

func (*OrgProcessesService) LogExecute added in v0.5.0

Execute executes the request

@return string

type OrgQuota added in v0.0.2

type OrgQuota struct {
	Aggregator  map[string]Quota `json:"aggregator"`
	Association map[string]Quota `json:"association"`
	Conn        Quota            `json:"conn"`
	Member      Quota            `json:"member"`
	Mod         map[string]Quota `json:"mod"`
	Pipeline    map[string]Quota `json:"pipeline"`
	Snapshot    map[string]Quota `json:"snapshot"`
	Workspace   Quota            `json:"workspace"`
}

OrgQuota struct for OrgQuota

func NewOrgQuota added in v0.0.2

func NewOrgQuota(aggregator map[string]Quota, association map[string]Quota, conn Quota, member Quota, mod map[string]Quota, pipeline map[string]Quota, snapshot map[string]Quota, workspace Quota) *OrgQuota

NewOrgQuota instantiates a new OrgQuota 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 NewOrgQuotaWithDefaults added in v0.0.2

func NewOrgQuotaWithDefaults() *OrgQuota

NewOrgQuotaWithDefaults instantiates a new OrgQuota 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 (*OrgQuota) GetAggregator added in v0.6.0

func (o *OrgQuota) GetAggregator() map[string]Quota

GetAggregator returns the Aggregator field value

func (*OrgQuota) GetAggregatorOk added in v0.6.0

func (o *OrgQuota) GetAggregatorOk() (*map[string]Quota, bool)

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

func (*OrgQuota) GetAssociation added in v0.0.2

func (o *OrgQuota) GetAssociation() map[string]Quota

GetAssociation returns the Association field value

func (*OrgQuota) GetAssociationOk added in v0.0.2

func (o *OrgQuota) GetAssociationOk() (*map[string]Quota, bool)

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

func (*OrgQuota) GetConn added in v0.0.2

func (o *OrgQuota) GetConn() Quota

GetConn returns the Conn field value

func (*OrgQuota) GetConnOk added in v0.0.2

func (o *OrgQuota) GetConnOk() (*Quota, bool)

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

func (*OrgQuota) GetMember added in v0.2.0

func (o *OrgQuota) GetMember() Quota

GetMember returns the Member field value

func (*OrgQuota) GetMemberOk added in v0.2.0

func (o *OrgQuota) GetMemberOk() (*Quota, bool)

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

func (*OrgQuota) GetMod added in v0.0.4

func (o *OrgQuota) GetMod() map[string]Quota

GetMod returns the Mod field value

func (*OrgQuota) GetModOk added in v0.0.4

func (o *OrgQuota) GetModOk() (*map[string]Quota, bool)

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

func (*OrgQuota) GetPipeline added in v0.2.0

func (o *OrgQuota) GetPipeline() map[string]Quota

GetPipeline returns the Pipeline field value

func (*OrgQuota) GetPipelineOk added in v0.2.0

func (o *OrgQuota) GetPipelineOk() (*map[string]Quota, bool)

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

func (*OrgQuota) GetSnapshot added in v0.2.0

func (o *OrgQuota) GetSnapshot() map[string]Quota

GetSnapshot returns the Snapshot field value

func (*OrgQuota) GetSnapshotOk added in v0.2.0

func (o *OrgQuota) GetSnapshotOk() (*map[string]Quota, bool)

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

func (*OrgQuota) GetWorkspace added in v0.0.2

func (o *OrgQuota) GetWorkspace() Quota

GetWorkspace returns the Workspace field value

func (*OrgQuota) GetWorkspaceOk added in v0.0.2

func (o *OrgQuota) GetWorkspaceOk() (*Quota, bool)

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

func (OrgQuota) MarshalJSON added in v0.0.2

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

func (*OrgQuota) SetAggregator added in v0.6.0

func (o *OrgQuota) SetAggregator(v map[string]Quota)

SetAggregator sets field value

func (*OrgQuota) SetAssociation added in v0.0.2

func (o *OrgQuota) SetAssociation(v map[string]Quota)

SetAssociation sets field value

func (*OrgQuota) SetConn added in v0.0.2

func (o *OrgQuota) SetConn(v Quota)

SetConn sets field value

func (*OrgQuota) SetMember added in v0.2.0

func (o *OrgQuota) SetMember(v Quota)

SetMember sets field value

func (*OrgQuota) SetMod added in v0.0.4

func (o *OrgQuota) SetMod(v map[string]Quota)

SetMod sets field value

func (*OrgQuota) SetPipeline added in v0.2.0

func (o *OrgQuota) SetPipeline(v map[string]Quota)

SetPipeline sets field value

func (*OrgQuota) SetSnapshot added in v0.2.0

func (o *OrgQuota) SetSnapshot(v map[string]Quota)

SetSnapshot sets field value

func (*OrgQuota) SetWorkspace added in v0.0.2

func (o *OrgQuota) SetWorkspace(v Quota)

SetWorkspace sets field value

type OrgUser added in v0.0.2

type OrgUser struct {
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The unique identifier of the org member.
	Id string `json:"id"`
	// The identifier of an org.
	OrgId string `json:"org_id"`
	// The role of the org user.
	Role *string `json:"role,omitempty"`
	// The scope of the role. Can be either of org / workspace
	Scope *string `json:"scope,omitempty"`
	// The status of the org member i.e invited or accepted.
	Status string `json:"status"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	User        *User  `json:"user,omitempty"`
	// The user handle of the member.
	UserHandle string `json:"user_handle"`
	// The identifier of a user.
	UserId string `json:"user_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
}

OrgUser struct for OrgUser

func NewOrgUser added in v0.0.2

func NewOrgUser(createdAt string, createdById string, id string, orgId string, status string, updatedById string, userHandle string, userId string, versionId int32) *OrgUser

NewOrgUser instantiates a new OrgUser 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 NewOrgUserWithDefaults added in v0.0.2

func NewOrgUserWithDefaults() *OrgUser

NewOrgUserWithDefaults instantiates a new OrgUser 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 (*OrgUser) GetCreatedAt added in v0.0.2

func (o *OrgUser) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*OrgUser) GetCreatedAtOk added in v0.0.2

func (o *OrgUser) GetCreatedAtOk() (*string, bool)

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

func (*OrgUser) GetCreatedBy added in v0.1.0

func (o *OrgUser) GetCreatedBy() User

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

func (*OrgUser) GetCreatedById added in v0.1.0

func (o *OrgUser) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*OrgUser) GetCreatedByIdOk added in v0.1.0

func (o *OrgUser) GetCreatedByIdOk() (*string, bool)

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

func (*OrgUser) GetCreatedByOk added in v0.1.0

func (o *OrgUser) GetCreatedByOk() (*User, 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 (*OrgUser) GetId added in v0.0.2

func (o *OrgUser) GetId() string

GetId returns the Id field value

func (*OrgUser) GetIdOk added in v0.0.2

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

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

func (*OrgUser) GetOrgId added in v0.0.2

func (o *OrgUser) GetOrgId() string

GetOrgId returns the OrgId field value

func (*OrgUser) GetOrgIdOk added in v0.0.2

func (o *OrgUser) GetOrgIdOk() (*string, bool)

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

func (*OrgUser) GetRole added in v0.0.2

func (o *OrgUser) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*OrgUser) GetRoleOk added in v0.0.2

func (o *OrgUser) 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 (*OrgUser) GetScope added in v0.1.2

func (o *OrgUser) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*OrgUser) GetScopeOk added in v0.1.2

func (o *OrgUser) GetScopeOk() (*string, bool)

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

func (*OrgUser) GetStatus added in v0.0.2

func (o *OrgUser) GetStatus() string

GetStatus returns the Status field value

func (*OrgUser) GetStatusOk added in v0.0.2

func (o *OrgUser) GetStatusOk() (*string, bool)

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

func (*OrgUser) GetUpdatedAt added in v0.0.2

func (o *OrgUser) GetUpdatedAt() string

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

func (*OrgUser) GetUpdatedAtOk added in v0.0.2

func (o *OrgUser) GetUpdatedAtOk() (*string, 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 (*OrgUser) GetUpdatedBy added in v0.1.0

func (o *OrgUser) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*OrgUser) GetUpdatedById added in v0.1.0

func (o *OrgUser) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*OrgUser) GetUpdatedByIdOk added in v0.1.0

func (o *OrgUser) GetUpdatedByIdOk() (*string, bool)

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

func (*OrgUser) GetUpdatedByOk added in v0.1.0

func (o *OrgUser) GetUpdatedByOk() (*User, bool)

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

func (*OrgUser) GetUser added in v0.0.2

func (o *OrgUser) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*OrgUser) GetUserHandle added in v0.0.2

func (o *OrgUser) GetUserHandle() string

GetUserHandle returns the UserHandle field value

func (*OrgUser) GetUserHandleOk added in v0.0.2

func (o *OrgUser) GetUserHandleOk() (*string, bool)

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

func (*OrgUser) GetUserId added in v0.0.2

func (o *OrgUser) GetUserId() string

GetUserId returns the UserId field value

func (*OrgUser) GetUserIdOk added in v0.0.2

func (o *OrgUser) GetUserIdOk() (*string, bool)

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

func (*OrgUser) GetUserOk added in v0.0.2

func (o *OrgUser) GetUserOk() (*User, bool)

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

func (*OrgUser) GetVersionId added in v0.0.2

func (o *OrgUser) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*OrgUser) GetVersionIdOk added in v0.0.2

func (o *OrgUser) GetVersionIdOk() (*int32, bool)

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

func (*OrgUser) HasCreatedBy added in v0.1.0

func (o *OrgUser) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*OrgUser) HasRole added in v0.0.2

func (o *OrgUser) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*OrgUser) HasScope added in v0.1.2

func (o *OrgUser) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*OrgUser) HasUpdatedAt added in v0.0.2

func (o *OrgUser) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*OrgUser) HasUpdatedBy added in v0.1.0

func (o *OrgUser) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*OrgUser) HasUser added in v0.0.2

func (o *OrgUser) HasUser() bool

HasUser returns a boolean if a field has been set.

func (OrgUser) MarshalJSON added in v0.0.2

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

func (*OrgUser) SetCreatedAt added in v0.0.2

func (o *OrgUser) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*OrgUser) SetCreatedBy added in v0.1.0

func (o *OrgUser) SetCreatedBy(v User)

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

func (*OrgUser) SetCreatedById added in v0.1.0

func (o *OrgUser) SetCreatedById(v string)

SetCreatedById sets field value

func (*OrgUser) SetId added in v0.0.2

func (o *OrgUser) SetId(v string)

SetId sets field value

func (*OrgUser) SetOrgId added in v0.0.2

func (o *OrgUser) SetOrgId(v string)

SetOrgId sets field value

func (*OrgUser) SetRole added in v0.0.2

func (o *OrgUser) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (*OrgUser) SetScope added in v0.1.2

func (o *OrgUser) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*OrgUser) SetStatus added in v0.0.2

func (o *OrgUser) SetStatus(v string)

SetStatus sets field value

func (*OrgUser) SetUpdatedAt added in v0.0.2

func (o *OrgUser) SetUpdatedAt(v string)

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

func (*OrgUser) SetUpdatedBy added in v0.1.0

func (o *OrgUser) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*OrgUser) SetUpdatedById added in v0.1.0

func (o *OrgUser) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*OrgUser) SetUser added in v0.0.2

func (o *OrgUser) SetUser(v User)

SetUser gets a reference to the given User and assigns it to the User field.

func (*OrgUser) SetUserHandle added in v0.0.2

func (o *OrgUser) SetUserHandle(v string)

SetUserHandle sets field value

func (*OrgUser) SetUserId added in v0.0.2

func (o *OrgUser) SetUserId(v string)

SetUserId sets field value

func (*OrgUser) SetVersionId added in v0.0.2

func (o *OrgUser) SetVersionId(v int32)

SetVersionId sets field value

type OrgWorkspaceAggregatorsApiCreateRequest added in v0.6.0

type OrgWorkspaceAggregatorsApiCreateRequest struct {
	ApiService *OrgWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceAggregatorsApiCreateRequest) Execute added in v0.6.0

func (OrgWorkspaceAggregatorsApiCreateRequest) Mode added in v0.6.0

The mode of this request

func (OrgWorkspaceAggregatorsApiCreateRequest) Request added in v0.6.0

The request body for the aggregator to the created.

type OrgWorkspaceAggregatorsApiDeleteRequest added in v0.6.0

type OrgWorkspaceAggregatorsApiDeleteRequest struct {
	ApiService *OrgWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceAggregatorsApiDeleteRequest) Execute added in v0.6.0

type OrgWorkspaceAggregatorsApiGetConnectionRequest added in v0.6.0

type OrgWorkspaceAggregatorsApiGetConnectionRequest struct {
	ApiService *OrgWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceAggregatorsApiGetConnectionRequest) Execute added in v0.6.0

type OrgWorkspaceAggregatorsApiGetRequest added in v0.6.0

type OrgWorkspaceAggregatorsApiGetRequest struct {
	ApiService *OrgWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceAggregatorsApiGetRequest) Execute added in v0.6.0

type OrgWorkspaceAggregatorsApiListConnectionsRequest added in v0.6.0

type OrgWorkspaceAggregatorsApiListConnectionsRequest struct {
	ApiService *OrgWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceAggregatorsApiListConnectionsRequest) Execute added in v0.6.0

func (OrgWorkspaceAggregatorsApiListConnectionsRequest) Limit added in v0.6.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspaceAggregatorsApiListConnectionsRequest) NextToken added in v0.6.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgWorkspaceAggregatorsApiListRequest added in v0.6.0

type OrgWorkspaceAggregatorsApiListRequest struct {
	ApiService *OrgWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceAggregatorsApiListRequest) Execute added in v0.6.0

func (OrgWorkspaceAggregatorsApiListRequest) Limit added in v0.6.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspaceAggregatorsApiListRequest) NextToken added in v0.6.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgWorkspaceAggregatorsApiUpdateRequest added in v0.6.0

type OrgWorkspaceAggregatorsApiUpdateRequest struct {
	ApiService *OrgWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceAggregatorsApiUpdateRequest) Execute added in v0.6.0

func (OrgWorkspaceAggregatorsApiUpdateRequest) Mode added in v0.6.0

The mode of this request

func (OrgWorkspaceAggregatorsApiUpdateRequest) Request added in v0.6.0

The request body for the aggregator which needs to be updated.

type OrgWorkspaceAggregatorsService added in v0.6.0

type OrgWorkspaceAggregatorsService service

OrgWorkspaceAggregatorsService OrgWorkspaceAggregators service

func (*OrgWorkspaceAggregatorsService) Create added in v0.6.0

Create Create an aggregator for an org workspace

Creates an aggregator for a workspace of an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator will be created.
@return OrgWorkspaceAggregatorsApiCreateRequest

func (*OrgWorkspaceAggregatorsService) CreateExecute added in v0.6.0

Execute executes the request

@return WorkspaceAggregator

func (*OrgWorkspaceAggregatorsService) Delete added in v0.6.0

func (a *OrgWorkspaceAggregatorsService) Delete(ctx _context.Context, orgHandle string, workspaceHandle string, aggregatorHandle string) OrgWorkspaceAggregatorsApiDeleteRequest

Delete Delete an aggregator for a org workspace

Deletes an aggregator belonging to a workspace of an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator exists.
@param aggregatorHandle The handle of the aggregator that needs to be deleted.
@return OrgWorkspaceAggregatorsApiDeleteRequest

func (*OrgWorkspaceAggregatorsService) DeleteExecute added in v0.6.0

Execute executes the request

@return WorkspaceAggregator

func (*OrgWorkspaceAggregatorsService) Get added in v0.6.0

func (a *OrgWorkspaceAggregatorsService) Get(ctx _context.Context, orgHandle string, workspaceHandle string, aggregatorHandle string) OrgWorkspaceAggregatorsApiGetRequest

Get Get an aggregator for a org workspace

Get the details of an aggregator belonging to a workspace of an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator exists.
@param aggregatorHandle The handle of the aggregator whose details needs to be fetched.
@return OrgWorkspaceAggregatorsApiGetRequest

func (*OrgWorkspaceAggregatorsService) GetConnection added in v0.6.0

func (a *OrgWorkspaceAggregatorsService) GetConnection(ctx _context.Context, orgHandle string, workspaceHandle string, aggregatorHandle string, connectionHandle string) OrgWorkspaceAggregatorsApiGetConnectionRequest

GetConnection Get a connection in the scope of an aggregator for a org workspace

Get a connection that is a part of an aggregator defined in a workspace of an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator exists.
@param aggregatorHandle The handle of the aggregator which the connection is a part of.
@param connectionHandle The handle of the connection whose details need to be fetched.
@return OrgWorkspaceAggregatorsApiGetConnectionRequest

func (*OrgWorkspaceAggregatorsService) GetConnectionExecute added in v0.6.0

Execute executes the request

@return WorkspaceConnection

func (*OrgWorkspaceAggregatorsService) GetExecute added in v0.6.0

Execute executes the request

@return WorkspaceAggregator

func (*OrgWorkspaceAggregatorsService) List added in v0.6.0

List List aggregators for an org workspace

List aggregators for a workspace of an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org to which the workspace belongs to.
@param workspaceHandle The handle of the workspace for which we will be listing aggregators.
@return OrgWorkspaceAggregatorsApiListRequest

func (*OrgWorkspaceAggregatorsService) ListConnections added in v0.6.0

func (a *OrgWorkspaceAggregatorsService) ListConnections(ctx _context.Context, orgHandle string, workspaceHandle string, aggregatorHandle string) OrgWorkspaceAggregatorsApiListConnectionsRequest

ListConnections List connections in the scope of an aggregator for a org workspace

List all connections that are a part of an aggregator defined in a workspace of an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator exists.
@param aggregatorHandle The handle of the aggregator whose connections need to be fetched.
@return OrgWorkspaceAggregatorsApiListConnectionsRequest

func (*OrgWorkspaceAggregatorsService) ListConnectionsExecute added in v0.6.0

Execute executes the request

@return ListWorkspaceConnectionsResponse

func (*OrgWorkspaceAggregatorsService) ListExecute added in v0.6.0

Execute executes the request

@return ListWorkspaceAggregatorsResponse

func (*OrgWorkspaceAggregatorsService) Update added in v0.6.0

func (a *OrgWorkspaceAggregatorsService) Update(ctx _context.Context, orgHandle string, workspaceHandle string, aggregatorHandle string) OrgWorkspaceAggregatorsApiUpdateRequest

Update Update an aggregator for a org workspace

Update the details of an aggregator belonging to a workspace of an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator exists.
@param aggregatorHandle The handle of the aggregator whose details needs to be updated.
@return OrgWorkspaceAggregatorsApiUpdateRequest

func (*OrgWorkspaceAggregatorsService) UpdateExecute added in v0.6.0

Execute executes the request

@return WorkspaceAggregator

type OrgWorkspaceConnectionAssociationsApiCreateRequest

type OrgWorkspaceConnectionAssociationsApiCreateRequest struct {
	ApiService *OrgWorkspaceConnectionAssociationsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceConnectionAssociationsApiCreateRequest) Execute

func (OrgWorkspaceConnectionAssociationsApiCreateRequest) Request

The request body for the association to be created.

type OrgWorkspaceConnectionAssociationsApiDeleteRequest

type OrgWorkspaceConnectionAssociationsApiDeleteRequest struct {
	ApiService *OrgWorkspaceConnectionAssociationsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceConnectionAssociationsApiDeleteRequest) Execute

type OrgWorkspaceConnectionAssociationsApiGetRequest

type OrgWorkspaceConnectionAssociationsApiGetRequest struct {
	ApiService *OrgWorkspaceConnectionAssociationsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceConnectionAssociationsApiGetRequest) Execute

type OrgWorkspaceConnectionAssociationsApiListRequest

type OrgWorkspaceConnectionAssociationsApiListRequest struct {
	ApiService *OrgWorkspaceConnectionAssociationsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceConnectionAssociationsApiListRequest) Execute

func (OrgWorkspaceConnectionAssociationsApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspaceConnectionAssociationsApiListRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgWorkspaceConnectionAssociationsService

type OrgWorkspaceConnectionAssociationsService service

OrgWorkspaceConnectionAssociationsService OrgWorkspaceConnectionAssociations service

func (*OrgWorkspaceConnectionAssociationsService) Create

Create Create org workspace connection association

Associate a connection with the workspace. A workspace can have multiple association.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where we want to create an association.
@param workspaceHandle The handle of the workspace where the connection will be associated.
@return OrgWorkspaceConnectionAssociationsApiCreateRequest

func (*OrgWorkspaceConnectionAssociationsService) CreateExecute

Execute executes the request

@return WorkspaceConn

func (*OrgWorkspaceConnectionAssociationsService) Delete

Delete Delete org workspace connection association

Dissociates or delete the workspace and connection association.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization where we want to delete the association.
@param workspaceHandle The handle of the workspace whose association needs to be deleted.
@param connHandle The handle of the conn whose association needs to be deleted.
@return OrgWorkspaceConnectionAssociationsApiDeleteRequest

func (*OrgWorkspaceConnectionAssociationsService) DeleteExecute

Execute executes the request

@return WorkspaceConn

func (*OrgWorkspaceConnectionAssociationsService) Get

Get Get org workspace connection association

Get the details for a workspace and connection association on an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org for which you want to get the association.
@param workspaceHandle The handle of the workspace where the connection exist.
@param connHandle The handle of the conn whose association details needs to be fetched.
@return OrgWorkspaceConnectionAssociationsApiGetRequest

func (*OrgWorkspaceConnectionAssociationsService) GetExecute

Execute executes the request

@return WorkspaceConn

func (*OrgWorkspaceConnectionAssociationsService) List

List List org workspace connection associations

List the connections associated with a workspace.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization for which you want to list the associations.
@param workspaceHandle The handle of the workspace where you want to list the associations.
@return OrgWorkspaceConnectionAssociationsApiListRequest

func (*OrgWorkspaceConnectionAssociationsService) ListExecute

Execute executes the request

@return ListWorkspaceConnResponse

type OrgWorkspaceMembersApiCreateRequest added in v0.1.2

type OrgWorkspaceMembersApiCreateRequest struct {
	ApiService *OrgWorkspaceMembersService
	// contains filtered or unexported fields
}

func (OrgWorkspaceMembersApiCreateRequest) Execute added in v0.1.2

func (OrgWorkspaceMembersApiCreateRequest) Request added in v0.1.2

The request body to invite a member to an organization.

type OrgWorkspaceMembersApiDeleteRequest added in v0.1.0

type OrgWorkspaceMembersApiDeleteRequest struct {
	ApiService *OrgWorkspaceMembersService
	// contains filtered or unexported fields
}

func (OrgWorkspaceMembersApiDeleteRequest) Execute added in v0.1.0

type OrgWorkspaceMembersApiGetRequest added in v0.1.0

type OrgWorkspaceMembersApiGetRequest struct {
	ApiService *OrgWorkspaceMembersService
	// contains filtered or unexported fields
}

func (OrgWorkspaceMembersApiGetRequest) Execute added in v0.1.0

type OrgWorkspaceMembersApiListRequest added in v0.1.1

type OrgWorkspaceMembersApiListRequest struct {
	ApiService *OrgWorkspaceMembersService
	// contains filtered or unexported fields
}

func (OrgWorkspaceMembersApiListRequest) Execute added in v0.1.1

func (OrgWorkspaceMembersApiListRequest) Limit added in v0.1.1

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspaceMembersApiListRequest) NextToken added in v0.1.1

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

func (OrgWorkspaceMembersApiListRequest) Q added in v0.1.2

Optional free-text search to filter the org workspace members.

type OrgWorkspaceMembersApiUpdateRequest added in v0.1.0

type OrgWorkspaceMembersApiUpdateRequest struct {
	ApiService *OrgWorkspaceMembersService
	// contains filtered or unexported fields
}

func (OrgWorkspaceMembersApiUpdateRequest) Execute added in v0.1.0

func (OrgWorkspaceMembersApiUpdateRequest) Request added in v0.1.0

The request body for the member.

type OrgWorkspaceMembersService added in v0.1.0

type OrgWorkspaceMembersService service

OrgWorkspaceMembersService OrgWorkspaceMembers service

func (*OrgWorkspaceMembersService) Create added in v0.1.2

Create Create Org Workspace Member

Add an individual as a member of a workspace in an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of the organization where the member need to be invited.
@param workspaceHandle Specify the handle of the workspace where the member need to be invited.
@return OrgWorkspaceMembersApiCreateRequest

func (*OrgWorkspaceMembersService) CreateExecute added in v0.1.2

Execute executes the request

@return OrgWorkspaceUser

func (*OrgWorkspaceMembersService) Delete added in v0.1.0

func (a *OrgWorkspaceMembersService) Delete(ctx _context.Context, orgHandle string, workspaceHandle string, userHandle string) OrgWorkspaceMembersApiDeleteRequest

Delete Delete Org Workspace Member

Remove a member from a workspace of an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of the organization where the member need to be invited.
@param workspaceHandle Specify the handle of the workspace where the member need to be invited.
@param userHandle Specify the handle of the user whose information you want to retrive.
@return OrgWorkspaceMembersApiDeleteRequest

func (*OrgWorkspaceMembersService) DeleteExecute added in v0.1.0

Execute executes the request

@return OrgWorkspaceUser

func (*OrgWorkspaceMembersService) Get added in v0.1.0

func (a *OrgWorkspaceMembersService) Get(ctx _context.Context, orgHandle string, workspaceHandle string, userHandle string) OrgWorkspaceMembersApiGetRequest

Get Get Org Workspace Member

Get details of a member belonging to a workspace of an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of the organization where the member need to be invited.
@param workspaceHandle Specify the handle of the workspace where the member need to be invited.
@param userHandle Specify the handle of the user whose information you want to retrive.
@return OrgWorkspaceMembersApiGetRequest

func (*OrgWorkspaceMembersService) GetExecute added in v0.1.0

Execute executes the request

@return OrgWorkspaceUser

func (*OrgWorkspaceMembersService) List added in v0.1.1

List List Organization Workspace Members

List all members of a workspace in an organization who has accepted / invited.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of the organization where the member need to be invited.
@param workspaceHandle Specify the handle of the workspace where the member need to be invited.
@return OrgWorkspaceMembersApiListRequest

func (*OrgWorkspaceMembersService) ListExecute added in v0.1.1

Execute executes the request

@return ListOrgWorkspaceUsersResponse

func (*OrgWorkspaceMembersService) Update added in v0.1.0

func (a *OrgWorkspaceMembersService) Update(ctx _context.Context, orgHandle string, workspaceHandle string, userHandle string) OrgWorkspaceMembersApiUpdateRequest

Update Update Org Workspace Member

Update the role of a member belonging to a workspace of an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of the organization where the member need to be invited.
@param workspaceHandle Specify the handle of the workspace where the member need to be invited.
@param userHandle Specify the handle of the user whose information you want to retrive.
@return OrgWorkspaceMembersApiUpdateRequest

func (*OrgWorkspaceMembersService) UpdateExecute added in v0.1.0

Execute executes the request

@return OrgWorkspaceUser

type OrgWorkspaceModVariablesApiCreateSettingRequest added in v0.0.4

type OrgWorkspaceModVariablesApiCreateSettingRequest struct {
	ApiService *OrgWorkspaceModVariablesService
	// contains filtered or unexported fields
}

func (OrgWorkspaceModVariablesApiCreateSettingRequest) Execute added in v0.0.4

func (OrgWorkspaceModVariablesApiCreateSettingRequest) Request added in v0.0.4

The request body to create setting for mod variable in the organization workspace.

type OrgWorkspaceModVariablesApiDeleteSettingRequest added in v0.0.4

type OrgWorkspaceModVariablesApiDeleteSettingRequest struct {
	ApiService *OrgWorkspaceModVariablesService
	// contains filtered or unexported fields
}

func (OrgWorkspaceModVariablesApiDeleteSettingRequest) Execute added in v0.0.4

type OrgWorkspaceModVariablesApiGetSettingRequest added in v0.0.4

type OrgWorkspaceModVariablesApiGetSettingRequest struct {
	ApiService *OrgWorkspaceModVariablesService
	// contains filtered or unexported fields
}

func (OrgWorkspaceModVariablesApiGetSettingRequest) Execute added in v0.0.4

type OrgWorkspaceModVariablesApiListRequest added in v0.0.4

type OrgWorkspaceModVariablesApiListRequest struct {
	ApiService *OrgWorkspaceModVariablesService
	// contains filtered or unexported fields
}

func (OrgWorkspaceModVariablesApiListRequest) Execute added in v0.0.4

func (OrgWorkspaceModVariablesApiListRequest) Limit added in v0.0.4

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspaceModVariablesApiListRequest) NextToken added in v0.0.4

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgWorkspaceModVariablesApiUpdateSettingRequest added in v0.0.4

type OrgWorkspaceModVariablesApiUpdateSettingRequest struct {
	ApiService *OrgWorkspaceModVariablesService
	// contains filtered or unexported fields
}

func (OrgWorkspaceModVariablesApiUpdateSettingRequest) Execute added in v0.0.4

func (OrgWorkspaceModVariablesApiUpdateSettingRequest) Request added in v0.0.4

The request body to update setting for mod variable in the organization workspace.

type OrgWorkspaceModVariablesService added in v0.0.4

type OrgWorkspaceModVariablesService service

OrgWorkspaceModVariablesService OrgWorkspaceModVariables service

func (*OrgWorkspaceModVariablesService) CreateSetting added in v0.0.4

func (a *OrgWorkspaceModVariablesService) CreateSetting(ctx _context.Context, orgHandle string, workspaceHandle string, modAlias string) OrgWorkspaceModVariablesApiCreateSettingRequest

CreateSetting Create a setting for a mod variable in an organization workspace

Create a setting for a mod variable in an organization workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization that owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID for which the variable setting is to be created.
@return OrgWorkspaceModVariablesApiCreateSettingRequest

func (*OrgWorkspaceModVariablesService) CreateSettingExecute added in v0.0.4

Execute executes the request

@return WorkspaceModVariable

func (*OrgWorkspaceModVariablesService) DeleteSetting added in v0.0.4

func (a *OrgWorkspaceModVariablesService) DeleteSetting(ctx _context.Context, orgHandle string, workspaceHandle string, modAlias string, variableName string) OrgWorkspaceModVariablesApiDeleteSettingRequest

DeleteSetting Delete setting for a mod variable in an organization workspace

Delete setting for a mod variable in an organization workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization that owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID which contains the variable.
@param variableName The name of the variable to delete the setting for.
@return OrgWorkspaceModVariablesApiDeleteSettingRequest

func (*OrgWorkspaceModVariablesService) DeleteSettingExecute added in v0.0.4

Execute executes the request

@return WorkspaceModVariable

func (*OrgWorkspaceModVariablesService) GetSetting added in v0.0.4

func (a *OrgWorkspaceModVariablesService) GetSetting(ctx _context.Context, orgHandle string, workspaceHandle string, modAlias string, variableName string) OrgWorkspaceModVariablesApiGetSettingRequest

GetSetting Get setting for a mod variable in an organization workspace

Get setting for a mod variable in an organization workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization that owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID for which the variable setting belongs to.
@param variableName The name of the variable to get the setting for.
@return OrgWorkspaceModVariablesApiGetSettingRequest

func (*OrgWorkspaceModVariablesService) GetSettingExecute added in v0.0.4

Execute executes the request

@return WorkspaceModVariable

func (*OrgWorkspaceModVariablesService) List added in v0.0.4

List List variables in an organization workspace mod

List all variables applicable for a mod in a workspace specific to an organization

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization that owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID for which we want the variables to be listed.
@return OrgWorkspaceModVariablesApiListRequest

func (*OrgWorkspaceModVariablesService) ListExecute added in v0.0.4

Execute executes the request

@return ListWorkspaceModVariablesResponse

func (*OrgWorkspaceModVariablesService) UpdateSetting added in v0.0.4

func (a *OrgWorkspaceModVariablesService) UpdateSetting(ctx _context.Context, orgHandle string, workspaceHandle string, modAlias string, variableName string) OrgWorkspaceModVariablesApiUpdateSettingRequest

UpdateSetting Update setting for a mod variable in an organization workspace

Update setting for a mod variable in an organization workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization that owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID which contains the variable.
@param variableName The name of the variable for which setting is to be updated.
@return OrgWorkspaceModVariablesApiUpdateSettingRequest

func (*OrgWorkspaceModVariablesService) UpdateSettingExecute added in v0.0.4

Execute executes the request

@return WorkspaceModVariable

type OrgWorkspaceModsApiGetRequest added in v0.0.4

type OrgWorkspaceModsApiGetRequest struct {
	ApiService *OrgWorkspaceModsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceModsApiGetRequest) Execute added in v0.0.4

type OrgWorkspaceModsApiInstallRequest added in v0.0.4

type OrgWorkspaceModsApiInstallRequest struct {
	ApiService *OrgWorkspaceModsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceModsApiInstallRequest) Execute added in v0.0.4

func (OrgWorkspaceModsApiInstallRequest) Request added in v0.0.4

The request body to install a mod in the mentioned workspace for this organization.

type OrgWorkspaceModsApiListRequest added in v0.0.4

type OrgWorkspaceModsApiListRequest struct {
	ApiService *OrgWorkspaceModsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceModsApiListRequest) Execute added in v0.0.4

func (OrgWorkspaceModsApiListRequest) Limit added in v0.0.4

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspaceModsApiListRequest) NextToken added in v0.0.4

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgWorkspaceModsApiUninstallRequest added in v0.0.4

type OrgWorkspaceModsApiUninstallRequest struct {
	ApiService *OrgWorkspaceModsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceModsApiUninstallRequest) Execute added in v0.0.4

type OrgWorkspaceModsApiUpdateRequest added in v0.0.4

type OrgWorkspaceModsApiUpdateRequest struct {
	ApiService *OrgWorkspaceModsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceModsApiUpdateRequest) Execute added in v0.0.4

func (OrgWorkspaceModsApiUpdateRequest) Request added in v0.0.4

The request body to update a mod for this workspace.

type OrgWorkspaceModsService added in v0.0.4

type OrgWorkspaceModsService service

OrgWorkspaceModsService OrgWorkspaceMods service

func (*OrgWorkspaceModsService) Get added in v0.0.4

func (a *OrgWorkspaceModsService) Get(ctx _context.Context, orgHandle string, workspaceHandle string, modAlias string) OrgWorkspaceModsApiGetRequest

Get Get organization workspace installed mod

Get organization workspace installed mod by mod alias

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization that owns the workspace.
@param workspaceHandle The handle of the workspace where mod was installed.
@param modAlias The mod alias or mod ID
@return OrgWorkspaceModsApiGetRequest

func (*OrgWorkspaceModsService) GetExecute added in v0.0.4

Execute executes the request

@return WorkspaceMod

func (*OrgWorkspaceModsService) Install added in v0.0.4

func (a *OrgWorkspaceModsService) Install(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspaceModsApiInstallRequest

Install Install a mod to an organization workspace

Install a mod to an organization workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization that owns the workspace.
@param workspaceHandle The handle of the workspace where the mod will be installed.
@return OrgWorkspaceModsApiInstallRequest

func (*OrgWorkspaceModsService) InstallExecute added in v0.0.4

Execute executes the request

@return WorkspaceMod

func (*OrgWorkspaceModsService) List added in v0.0.4

func (a *OrgWorkspaceModsService) List(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspaceModsApiListRequest

List List organization workspace installed mods

List organization workspace installed mods

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization that owns the workspace.
@param workspaceHandle The handle of the workspace where mods were installed
@return OrgWorkspaceModsApiListRequest

func (*OrgWorkspaceModsService) ListExecute added in v0.0.4

Execute executes the request

@return ListWorkspaceModsResponse

func (*OrgWorkspaceModsService) Uninstall added in v0.0.4

func (a *OrgWorkspaceModsService) Uninstall(ctx _context.Context, orgHandle string, workspaceHandle string, modAlias string) OrgWorkspaceModsApiUninstallRequest

Uninstall Uninstall mod from organization workspace.

Uninstall mod from organization workspace.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization that owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID to delete.
@return OrgWorkspaceModsApiUninstallRequest

func (*OrgWorkspaceModsService) UninstallExecute added in v0.0.4

Execute executes the request

@return WorkspaceMod

func (*OrgWorkspaceModsService) Update added in v0.0.4

func (a *OrgWorkspaceModsService) Update(ctx _context.Context, orgHandle string, workspaceHandle string, modAlias string) OrgWorkspaceModsApiUpdateRequest

Update Update a mod in an organization workspace

Update a mod in an organization workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization that owns the workspace.
@param workspaceHandle The handle of the workspace where the mod will be updated.
@param modAlias The mod alias or mod ID to update.
@return OrgWorkspaceModsApiUpdateRequest

func (*OrgWorkspaceModsService) UpdateExecute added in v0.0.4

Execute executes the request

@return WorkspaceMod

type OrgWorkspacePipelinesApiCommandRequest added in v0.5.0

type OrgWorkspacePipelinesApiCommandRequest struct {
	ApiService *OrgWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (OrgWorkspacePipelinesApiCommandRequest) Execute added in v0.5.0

func (OrgWorkspacePipelinesApiCommandRequest) Request added in v0.5.0

The request body of the pipeline command to run.

type OrgWorkspacePipelinesApiCreateRequest added in v0.5.0

type OrgWorkspacePipelinesApiCreateRequest struct {
	ApiService *OrgWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (OrgWorkspacePipelinesApiCreateRequest) Execute added in v0.5.0

func (OrgWorkspacePipelinesApiCreateRequest) Request added in v0.5.0

The request body for the pipeline to be created.

type OrgWorkspacePipelinesApiDeleteRequest added in v0.5.0

type OrgWorkspacePipelinesApiDeleteRequest struct {
	ApiService *OrgWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (OrgWorkspacePipelinesApiDeleteRequest) Execute added in v0.5.0

type OrgWorkspacePipelinesApiGetRequest added in v0.5.0

type OrgWorkspacePipelinesApiGetRequest struct {
	ApiService *OrgWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (OrgWorkspacePipelinesApiGetRequest) Execute added in v0.5.0

type OrgWorkspacePipelinesApiListRequest added in v0.5.0

type OrgWorkspacePipelinesApiListRequest struct {
	ApiService *OrgWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (OrgWorkspacePipelinesApiListRequest) Execute added in v0.5.0

func (OrgWorkspacePipelinesApiListRequest) Limit added in v0.5.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspacePipelinesApiListRequest) NextToken added in v0.5.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

func (OrgWorkspacePipelinesApiListRequest) Where added in v0.5.0

The SQL where filter you wish to apply to this request. The filter will be parsed and sanitised and checked against the supported columns for this API.

type OrgWorkspacePipelinesApiUpdateRequest added in v0.5.0

type OrgWorkspacePipelinesApiUpdateRequest struct {
	ApiService *OrgWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (OrgWorkspacePipelinesApiUpdateRequest) Execute added in v0.5.0

func (OrgWorkspacePipelinesApiUpdateRequest) Request added in v0.5.0

The request body for the pipeline which needs to be updated.

type OrgWorkspacePipelinesService added in v0.5.0

type OrgWorkspacePipelinesService service

OrgWorkspacePipelinesService OrgWorkspacePipelines service

func (*OrgWorkspacePipelinesService) Command added in v0.5.0

func (a *OrgWorkspacePipelinesService) Command(ctx _context.Context, orgHandle string, workspaceHandle string, pipelineId string) OrgWorkspacePipelinesApiCommandRequest

Command Run org workspace pipeline command

Run a command on a pipeline in a workspace belonging to an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization which contains the workspace.
@param workspaceHandle The handle of the workspace where the pipeline exists.
@param pipelineId Id of the pipeline on which the command will be run.
@return OrgWorkspacePipelinesApiCommandRequest

func (*OrgWorkspacePipelinesService) CommandExecute added in v0.5.0

Execute executes the request

@return PipelineCommandResponse

func (*OrgWorkspacePipelinesService) Create added in v0.5.0

Create Create org workspace pipeline

Creates a new pipeline for a workspace of an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization which contains the workspace.
@param workspaceHandle The handle of the workspace where we want to create the pipeline.
@return OrgWorkspacePipelinesApiCreateRequest

func (*OrgWorkspacePipelinesService) CreateExecute added in v0.5.0

Execute executes the request

@return Pipeline

func (*OrgWorkspacePipelinesService) Delete added in v0.5.0

func (a *OrgWorkspacePipelinesService) Delete(ctx _context.Context, orgHandle string, workspaceHandle string, pipelineId string) OrgWorkspacePipelinesApiDeleteRequest

Delete Delete org workspace pipeline

Deletes the pipeline specified in the request for a workspace of an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization which contains the workspace.
@param workspaceHandle The handle of the workspace where the pipeline exists.
@param pipelineId Provide the id of the pipeline which needs to be deleted.
@return OrgWorkspacePipelinesApiDeleteRequest

func (*OrgWorkspacePipelinesService) DeleteExecute added in v0.5.0

Execute executes the request

@return Pipeline

func (*OrgWorkspacePipelinesService) Get added in v0.5.0

func (a *OrgWorkspacePipelinesService) Get(ctx _context.Context, orgHandle string, workspaceHandle string, pipelineId string) OrgWorkspacePipelinesApiGetRequest

Get Get org workspace pipeline

Get the details of a pipeline for a workspace of an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization which contains the workspace.
@param workspaceHandle The handle of the workspace where the pipeline exists.
@param pipelineId The id of the pipeline whose detail needs to be fetched.
@return OrgWorkspacePipelinesApiGetRequest

func (*OrgWorkspacePipelinesService) GetExecute added in v0.5.0

Execute executes the request

@return Pipeline

func (*OrgWorkspacePipelinesService) List added in v0.5.0

List List org workspace pipelines

Lists the pipelines for a workspace of an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization which contains the workspace.
@param workspaceHandle The handle of the workspace for which we want to list the pipelines.
@return OrgWorkspacePipelinesApiListRequest

func (*OrgWorkspacePipelinesService) ListExecute added in v0.5.0

Execute executes the request

@return ListPipelinesResponse

func (*OrgWorkspacePipelinesService) Update added in v0.5.0

func (a *OrgWorkspacePipelinesService) Update(ctx _context.Context, orgHandle string, workspaceHandle string, pipelineId string) OrgWorkspacePipelinesApiUpdateRequest

Update Update org workspace pipeline

Updates a pipeline for a workspace of an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization which contains the workspace.
@param workspaceHandle The handle of the workspace where the pipeline exists.
@param pipelineId The id of the pipeline which needs to be updated.
@return OrgWorkspacePipelinesApiUpdateRequest

func (*OrgWorkspacePipelinesService) UpdateExecute added in v0.5.0

Execute executes the request

@return Pipeline

type OrgWorkspaceProcessesApiGetRequest added in v0.5.0

type OrgWorkspaceProcessesApiGetRequest struct {
	ApiService *OrgWorkspaceProcessesService
	// contains filtered or unexported fields
}

func (OrgWorkspaceProcessesApiGetRequest) Execute added in v0.5.0

type OrgWorkspaceProcessesApiListRequest added in v0.5.0

type OrgWorkspaceProcessesApiListRequest struct {
	ApiService *OrgWorkspaceProcessesService
	// contains filtered or unexported fields
}

func (OrgWorkspaceProcessesApiListRequest) Execute added in v0.5.0

func (OrgWorkspaceProcessesApiListRequest) Limit added in v0.5.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspaceProcessesApiListRequest) NextToken added in v0.5.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

func (OrgWorkspaceProcessesApiListRequest) Where added in v0.5.0

The SQL where filter you wish to apply to this request. The filter will be parsed and sanitised and checked against the supported columns for this API.

type OrgWorkspaceProcessesApiLogRequest added in v0.5.0

type OrgWorkspaceProcessesApiLogRequest struct {
	ApiService *OrgWorkspaceProcessesService
	// contains filtered or unexported fields
}

func (OrgWorkspaceProcessesApiLogRequest) Execute added in v0.5.0

type OrgWorkspaceProcessesService added in v0.5.0

type OrgWorkspaceProcessesService service

OrgWorkspaceProcessesService OrgWorkspaceProcesses service

func (*OrgWorkspaceProcessesService) Get added in v0.5.0

func (a *OrgWorkspaceProcessesService) Get(ctx _context.Context, orgHandle string, workspaceHandle string, processId string) OrgWorkspaceProcessesApiGetRequest

Get Get org workspace process

Get the details for the process.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org where the workspace exist.
@param workspaceHandle The handle of the workspace whose process needs to be fetched.
@param processId The id of the process to be fetched.
@return OrgWorkspaceProcessesApiGetRequest

func (*OrgWorkspaceProcessesService) GetExecute added in v0.5.0

Execute executes the request

@return SpProcess

func (*OrgWorkspaceProcessesService) List added in v0.5.0

List List org workspace processes

List the processes associated with an org workspace.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of an organization for which you want to list the processes.
@param workspaceHandle The handle of the workspace where you want to list the processes.
@return OrgWorkspaceProcessesApiListRequest

func (*OrgWorkspaceProcessesService) ListExecute added in v0.5.0

Execute executes the request

@return ListProcessesResponse

func (*OrgWorkspaceProcessesService) Log added in v0.5.0

func (a *OrgWorkspaceProcessesService) Log(ctx _context.Context, orgHandle string, workspaceHandle string, processId string, logFile string, contentType string) OrgWorkspaceProcessesApiLogRequest

Log List org workspace process logs

List the process logs associated with a workspace process.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org for which you want to list process logs.
@param workspaceHandle The handle of the workspace where you want to list the process logs.
@param processId The id of the process where you want to list the process logs.
@param logFile The process logs file to be fetched.
@param contentType The required content type of the process logs.
@return OrgWorkspaceProcessesApiLogRequest

func (*OrgWorkspaceProcessesService) LogExecute added in v0.5.0

Execute executes the request

@return string

type OrgWorkspaceSnapshotsApiCreateRequest added in v0.1.3

type OrgWorkspaceSnapshotsApiCreateRequest struct {
	ApiService *OrgWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceSnapshotsApiCreateRequest) Execute added in v0.1.3

func (OrgWorkspaceSnapshotsApiCreateRequest) Request added in v0.1.3

The request body for the org workspace snapshot to be created.

type OrgWorkspaceSnapshotsApiDeleteRequest added in v0.1.3

type OrgWorkspaceSnapshotsApiDeleteRequest struct {
	ApiService *OrgWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceSnapshotsApiDeleteRequest) Execute added in v0.1.3

type OrgWorkspaceSnapshotsApiDownloadRequest added in v0.1.3

type OrgWorkspaceSnapshotsApiDownloadRequest struct {
	ApiService *OrgWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceSnapshotsApiDownloadRequest) Execute added in v0.1.3

type OrgWorkspaceSnapshotsApiGetRequest added in v0.1.3

type OrgWorkspaceSnapshotsApiGetRequest struct {
	ApiService *OrgWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceSnapshotsApiGetRequest) Execute added in v0.1.3

type OrgWorkspaceSnapshotsApiListRequest added in v0.1.3

type OrgWorkspaceSnapshotsApiListRequest struct {
	ApiService *OrgWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceSnapshotsApiListRequest) Execute added in v0.1.3

func (OrgWorkspaceSnapshotsApiListRequest) Limit added in v0.1.3

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspaceSnapshotsApiListRequest) NextToken added in v0.1.3

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

func (OrgWorkspaceSnapshotsApiListRequest) Where added in v0.5.0

The SQL where filter you wish to apply to this request. The filter will be parsed and sanitised and checked against the supported columns for this API.

type OrgWorkspaceSnapshotsApiUpdateRequest added in v0.1.3

type OrgWorkspaceSnapshotsApiUpdateRequest struct {
	ApiService *OrgWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (OrgWorkspaceSnapshotsApiUpdateRequest) Execute added in v0.1.3

func (OrgWorkspaceSnapshotsApiUpdateRequest) Request added in v0.1.3

The request body for the org workspace snapshot to be updated.

type OrgWorkspaceSnapshotsService added in v0.1.3

type OrgWorkspaceSnapshotsService service

OrgWorkspaceSnapshotsService OrgWorkspaceSnapshots service

func (*OrgWorkspaceSnapshotsService) Create added in v0.1.3

Create Create org workspace snapshot

Creates a new workspace snapshot for an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org to create the workspace snapshot for.
@param workspaceHandle The handle of the org workspace to create the snapshot for.
@return OrgWorkspaceSnapshotsApiCreateRequest

func (*OrgWorkspaceSnapshotsService) CreateExecute added in v0.1.3

Execute executes the request

@return WorkspaceSnapshot

func (*OrgWorkspaceSnapshotsService) Delete added in v0.1.3

func (a *OrgWorkspaceSnapshotsService) Delete(ctx _context.Context, orgHandle string, workspaceHandle string, snapshotId string) OrgWorkspaceSnapshotsApiDeleteRequest

Delete Delete org workspace snapshot

Deletes an org workspace snapshot.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org that the workspace snapshot belongs to.
@param workspaceHandle The handle of the org workspace that the snapshot belongs to.
@param snapshotId The handle of the snapshot which needs to be deleted.
@return OrgWorkspaceSnapshotsApiDeleteRequest

func (*OrgWorkspaceSnapshotsService) DeleteExecute added in v0.1.3

Execute executes the request

@return WorkspaceSnapshot

func (*OrgWorkspaceSnapshotsService) Download added in v0.1.3

func (a *OrgWorkspaceSnapshotsService) Download(ctx _context.Context, orgHandle string, workspaceHandle string, snapshotId string, contentType string) OrgWorkspaceSnapshotsApiDownloadRequest

Download Download org workspace snapshot

Downloads the full data for an org workspace snapshot.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org that the workspace snapshot belongs to.
@param workspaceHandle The handle of the org workspace that the snapshot belongs to.
@param snapshotId The Id of the snapshot to be downloaded.
@param contentType The type of content to the downloaded.
@return OrgWorkspaceSnapshotsApiDownloadRequest

func (*OrgWorkspaceSnapshotsService) DownloadExecute added in v0.1.3

Execute executes the request

@return WorkspaceSnapshotData

func (*OrgWorkspaceSnapshotsService) Get added in v0.1.3

func (a *OrgWorkspaceSnapshotsService) Get(ctx _context.Context, orgHandle string, workspaceHandle string, snapshotId string) OrgWorkspaceSnapshotsApiGetRequest

Get Get org workspace snapshot

Get the details for an org workspace snapshot.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org that the workspace snapshot belongs to.
@param workspaceHandle The handle of the org workspace that the snapshot belongs to.
@param snapshotId The handle of the snapshot whose detail needs to be fetched.
@return OrgWorkspaceSnapshotsApiGetRequest

func (*OrgWorkspaceSnapshotsService) GetExecute added in v0.1.3

Execute executes the request

@return WorkspaceSnapshot

func (*OrgWorkspaceSnapshotsService) List added in v0.1.3

List List org workspace snapshots

List the workspace snapshots for an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org to list the workspace snapshots for.
@param workspaceHandle The handle of the org workspace to list snapshots for.
@return OrgWorkspaceSnapshotsApiListRequest

func (*OrgWorkspaceSnapshotsService) ListExecute added in v0.1.3

Execute executes the request

@return ListWorkspaceSnapshotsResponse

func (*OrgWorkspaceSnapshotsService) Update added in v0.1.3

func (a *OrgWorkspaceSnapshotsService) Update(ctx _context.Context, orgHandle string, workspaceHandle string, snapshotId string) OrgWorkspaceSnapshotsApiUpdateRequest

Update Update org workspace snapshot

Updates an org workspace snapshot.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org that the workspace snapshot belongs to.
@param workspaceHandle The handle of the org workspace that the snapshot belongs to.
@param snapshotId The handle of the snapshot to update.
@return OrgWorkspaceSnapshotsApiUpdateRequest

func (*OrgWorkspaceSnapshotsService) UpdateExecute added in v0.1.3

Execute executes the request

@return WorkspaceSnapshot

type OrgWorkspaceUser added in v0.1.0

type OrgWorkspaceUser struct {
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The unique identifier of the org member.
	Id string `json:"id"`
	// The identifier of an org.
	OrgId string `json:"org_id"`
	// The role of the workspace user.
	Role *string `json:"role,omitempty"`
	// The scope of the role. Can be either of org / workspace
	Scope *string `json:"scope,omitempty"`
	// The status of the org member i.e pending or accepted.
	Status string `json:"status"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	User        *User  `json:"user,omitempty"`
	// The user handle of the member.
	UserHandle string `json:"user_handle"`
	// The identifier of a user.
	UserId string `json:"user_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
	// The handle of the workspace with identifier WorkspaceID.
	WorkspaceHandle string `json:"workspace_handle"`
	// The identifier of a workspace belonging to the organization.
	WorkspaceId string `json:"workspace_id"`
}

OrgWorkspaceUser struct for OrgWorkspaceUser

func NewOrgWorkspaceUser added in v0.1.0

func NewOrgWorkspaceUser(createdAt string, createdById string, id string, orgId string, status string, updatedById string, userHandle string, userId string, versionId int32, workspaceHandle string, workspaceId string) *OrgWorkspaceUser

NewOrgWorkspaceUser instantiates a new OrgWorkspaceUser 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 NewOrgWorkspaceUserWithDefaults added in v0.1.0

func NewOrgWorkspaceUserWithDefaults() *OrgWorkspaceUser

NewOrgWorkspaceUserWithDefaults instantiates a new OrgWorkspaceUser 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 (*OrgWorkspaceUser) GetCreatedAt added in v0.1.0

func (o *OrgWorkspaceUser) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*OrgWorkspaceUser) GetCreatedAtOk added in v0.1.0

func (o *OrgWorkspaceUser) GetCreatedAtOk() (*string, bool)

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

func (*OrgWorkspaceUser) GetCreatedBy added in v0.1.0

func (o *OrgWorkspaceUser) GetCreatedBy() User

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

func (*OrgWorkspaceUser) GetCreatedById added in v0.1.0

func (o *OrgWorkspaceUser) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*OrgWorkspaceUser) GetCreatedByIdOk added in v0.1.0

func (o *OrgWorkspaceUser) GetCreatedByIdOk() (*string, bool)

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

func (*OrgWorkspaceUser) GetCreatedByOk added in v0.1.0

func (o *OrgWorkspaceUser) GetCreatedByOk() (*User, 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 (*OrgWorkspaceUser) GetId added in v0.1.0

func (o *OrgWorkspaceUser) GetId() string

GetId returns the Id field value

func (*OrgWorkspaceUser) GetIdOk added in v0.1.0

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

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

func (*OrgWorkspaceUser) GetOrgId added in v0.1.0

func (o *OrgWorkspaceUser) GetOrgId() string

GetOrgId returns the OrgId field value

func (*OrgWorkspaceUser) GetOrgIdOk added in v0.1.0

func (o *OrgWorkspaceUser) GetOrgIdOk() (*string, bool)

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

func (*OrgWorkspaceUser) GetRole added in v0.1.0

func (o *OrgWorkspaceUser) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*OrgWorkspaceUser) GetRoleOk added in v0.1.0

func (o *OrgWorkspaceUser) 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 (*OrgWorkspaceUser) GetScope added in v0.1.2

func (o *OrgWorkspaceUser) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*OrgWorkspaceUser) GetScopeOk added in v0.1.2

func (o *OrgWorkspaceUser) GetScopeOk() (*string, bool)

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

func (*OrgWorkspaceUser) GetStatus added in v0.1.0

func (o *OrgWorkspaceUser) GetStatus() string

GetStatus returns the Status field value

func (*OrgWorkspaceUser) GetStatusOk added in v0.1.0

func (o *OrgWorkspaceUser) GetStatusOk() (*string, bool)

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

func (*OrgWorkspaceUser) GetUpdatedAt added in v0.1.0

func (o *OrgWorkspaceUser) GetUpdatedAt() string

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

func (*OrgWorkspaceUser) GetUpdatedAtOk added in v0.1.0

func (o *OrgWorkspaceUser) GetUpdatedAtOk() (*string, 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 (*OrgWorkspaceUser) GetUpdatedBy added in v0.1.0

func (o *OrgWorkspaceUser) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*OrgWorkspaceUser) GetUpdatedById added in v0.1.0

func (o *OrgWorkspaceUser) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*OrgWorkspaceUser) GetUpdatedByIdOk added in v0.1.0

func (o *OrgWorkspaceUser) GetUpdatedByIdOk() (*string, bool)

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

func (*OrgWorkspaceUser) GetUpdatedByOk added in v0.1.0

func (o *OrgWorkspaceUser) GetUpdatedByOk() (*User, bool)

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

func (*OrgWorkspaceUser) GetUser added in v0.1.0

func (o *OrgWorkspaceUser) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*OrgWorkspaceUser) GetUserHandle added in v0.1.0

func (o *OrgWorkspaceUser) GetUserHandle() string

GetUserHandle returns the UserHandle field value

func (*OrgWorkspaceUser) GetUserHandleOk added in v0.1.0

func (o *OrgWorkspaceUser) GetUserHandleOk() (*string, bool)

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

func (*OrgWorkspaceUser) GetUserId added in v0.1.0

func (o *OrgWorkspaceUser) GetUserId() string

GetUserId returns the UserId field value

func (*OrgWorkspaceUser) GetUserIdOk added in v0.1.0

func (o *OrgWorkspaceUser) GetUserIdOk() (*string, bool)

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

func (*OrgWorkspaceUser) GetUserOk added in v0.1.0

func (o *OrgWorkspaceUser) GetUserOk() (*User, bool)

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

func (*OrgWorkspaceUser) GetVersionId added in v0.1.0

func (o *OrgWorkspaceUser) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*OrgWorkspaceUser) GetVersionIdOk added in v0.1.0

func (o *OrgWorkspaceUser) GetVersionIdOk() (*int32, bool)

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

func (*OrgWorkspaceUser) GetWorkspaceHandle added in v0.1.0

func (o *OrgWorkspaceUser) GetWorkspaceHandle() string

GetWorkspaceHandle returns the WorkspaceHandle field value

func (*OrgWorkspaceUser) GetWorkspaceHandleOk added in v0.1.0

func (o *OrgWorkspaceUser) GetWorkspaceHandleOk() (*string, bool)

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

func (*OrgWorkspaceUser) GetWorkspaceId added in v0.1.0

func (o *OrgWorkspaceUser) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*OrgWorkspaceUser) GetWorkspaceIdOk added in v0.1.0

func (o *OrgWorkspaceUser) GetWorkspaceIdOk() (*string, bool)

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

func (*OrgWorkspaceUser) HasCreatedBy added in v0.1.0

func (o *OrgWorkspaceUser) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*OrgWorkspaceUser) HasRole added in v0.1.0

func (o *OrgWorkspaceUser) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*OrgWorkspaceUser) HasScope added in v0.1.2

func (o *OrgWorkspaceUser) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*OrgWorkspaceUser) HasUpdatedAt added in v0.1.0

func (o *OrgWorkspaceUser) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*OrgWorkspaceUser) HasUpdatedBy added in v0.1.0

func (o *OrgWorkspaceUser) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*OrgWorkspaceUser) HasUser added in v0.1.0

func (o *OrgWorkspaceUser) HasUser() bool

HasUser returns a boolean if a field has been set.

func (OrgWorkspaceUser) MarshalJSON added in v0.1.0

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

func (*OrgWorkspaceUser) SetCreatedAt added in v0.1.0

func (o *OrgWorkspaceUser) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*OrgWorkspaceUser) SetCreatedBy added in v0.1.0

func (o *OrgWorkspaceUser) SetCreatedBy(v User)

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

func (*OrgWorkspaceUser) SetCreatedById added in v0.1.0

func (o *OrgWorkspaceUser) SetCreatedById(v string)

SetCreatedById sets field value

func (*OrgWorkspaceUser) SetId added in v0.1.0

func (o *OrgWorkspaceUser) SetId(v string)

SetId sets field value

func (*OrgWorkspaceUser) SetOrgId added in v0.1.0

func (o *OrgWorkspaceUser) SetOrgId(v string)

SetOrgId sets field value

func (*OrgWorkspaceUser) SetRole added in v0.1.0

func (o *OrgWorkspaceUser) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (*OrgWorkspaceUser) SetScope added in v0.1.2

func (o *OrgWorkspaceUser) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*OrgWorkspaceUser) SetStatus added in v0.1.0

func (o *OrgWorkspaceUser) SetStatus(v string)

SetStatus sets field value

func (*OrgWorkspaceUser) SetUpdatedAt added in v0.1.0

func (o *OrgWorkspaceUser) SetUpdatedAt(v string)

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

func (*OrgWorkspaceUser) SetUpdatedBy added in v0.1.0

func (o *OrgWorkspaceUser) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*OrgWorkspaceUser) SetUpdatedById added in v0.1.0

func (o *OrgWorkspaceUser) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*OrgWorkspaceUser) SetUser added in v0.1.0

func (o *OrgWorkspaceUser) SetUser(v User)

SetUser gets a reference to the given User and assigns it to the User field.

func (*OrgWorkspaceUser) SetUserHandle added in v0.1.0

func (o *OrgWorkspaceUser) SetUserHandle(v string)

SetUserHandle sets field value

func (*OrgWorkspaceUser) SetUserId added in v0.1.0

func (o *OrgWorkspaceUser) SetUserId(v string)

SetUserId sets field value

func (*OrgWorkspaceUser) SetVersionId added in v0.1.0

func (o *OrgWorkspaceUser) SetVersionId(v int32)

SetVersionId sets field value

func (*OrgWorkspaceUser) SetWorkspaceHandle added in v0.1.0

func (o *OrgWorkspaceUser) SetWorkspaceHandle(v string)

SetWorkspaceHandle sets field value

func (*OrgWorkspaceUser) SetWorkspaceId added in v0.1.0

func (o *OrgWorkspaceUser) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type OrgWorkspacesApiCommandRequest added in v0.2.0

type OrgWorkspacesApiCommandRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiCommandRequest) Execute added in v0.2.0

func (OrgWorkspacesApiCommandRequest) Request added in v0.2.0

The request body for the workspace command.

type OrgWorkspacesApiCreateRequest

type OrgWorkspacesApiCreateRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiCreateRequest) Execute

func (OrgWorkspacesApiCreateRequest) Request

The request body for the workspace to be created.

type OrgWorkspacesApiDeleteRequest

type OrgWorkspacesApiDeleteRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiDeleteRequest) Execute

type OrgWorkspacesApiGetQueryRequest added in v0.0.2

type OrgWorkspacesApiGetQueryRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiGetQueryRequest) ContentType added in v0.0.2

The required content type for the response. Defaults to application/json. Supported values are json, application/json, csv, text/csv, md and text/markdown.

func (OrgWorkspacesApiGetQueryRequest) Execute added in v0.0.2

func (OrgWorkspacesApiGetQueryRequest) Sql added in v0.0.2

The sql query to perform against the org workspace.

type OrgWorkspacesApiGetQueryWithExtensionsRequest added in v0.0.2

type OrgWorkspacesApiGetQueryWithExtensionsRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiGetQueryWithExtensionsRequest) ContentType added in v0.0.2

The required content type for the response. Defaults to application/json. Supported values are json, application/json, csv, text/csv, md and text/markdown.

func (OrgWorkspacesApiGetQueryWithExtensionsRequest) Execute added in v0.0.2

func (OrgWorkspacesApiGetQueryWithExtensionsRequest) Sql added in v0.0.2

The sql query to perform against the org workspace.

type OrgWorkspacesApiGetRequest

type OrgWorkspacesApiGetRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiGetRequest) Execute

type OrgWorkspacesApiGetSchemaRequest added in v0.0.2

type OrgWorkspacesApiGetSchemaRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiGetSchemaRequest) Execute added in v0.0.2

type OrgWorkspacesApiListAuditLogsRequest added in v0.1.3

type OrgWorkspacesApiListAuditLogsRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiListAuditLogsRequest) Execute added in v0.1.3

func (OrgWorkspacesApiListAuditLogsRequest) Limit added in v0.1.3

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspacesApiListAuditLogsRequest) NextToken added in v0.1.3

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgWorkspacesApiListDBLogsRequest

type OrgWorkspacesApiListDBLogsRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiListDBLogsRequest) Execute

func (OrgWorkspacesApiListDBLogsRequest) Limit added in v0.1.3

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspacesApiListDBLogsRequest) NextToken added in v0.1.3

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgWorkspacesApiListRequest

type OrgWorkspacesApiListRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiListRequest) Execute

func (OrgWorkspacesApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgWorkspacesApiListRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgWorkspacesApiPostQueryRequest added in v0.0.2

type OrgWorkspacesApiPostQueryRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiPostQueryRequest) ContentType added in v0.0.2

The required content type for the response. Defaults to application/json. Supported values are json, application/json, csv, text/csv, md and text/markdown.

func (OrgWorkspacesApiPostQueryRequest) Execute added in v0.0.2

func (OrgWorkspacesApiPostQueryRequest) Sql added in v0.0.2

The sql query to perform against the org workspace.

type OrgWorkspacesApiPostQueryWithExtensionsRequest added in v0.0.2

type OrgWorkspacesApiPostQueryWithExtensionsRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiPostQueryWithExtensionsRequest) ContentType added in v0.0.2

The required content type for the response. Defaults to application/json. Supported values are json, application/json, csv, text/csv, md and text/markdown.

func (OrgWorkspacesApiPostQueryWithExtensionsRequest) Execute added in v0.0.2

func (OrgWorkspacesApiPostQueryWithExtensionsRequest) Sql added in v0.0.2

The sql query to perform against the org workspace.

type OrgWorkspacesApiUpdateRequest

type OrgWorkspacesApiUpdateRequest struct {
	ApiService *OrgWorkspacesService
	// contains filtered or unexported fields
}

func (OrgWorkspacesApiUpdateRequest) Execute

func (OrgWorkspacesApiUpdateRequest) Request

The request body of the workspace which needs to be updated.

type OrgWorkspacesService

type OrgWorkspacesService service

OrgWorkspacesService OrgWorkspaces service

func (*OrgWorkspacesService) Command added in v0.2.0

func (a *OrgWorkspacesService) Command(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspacesApiCommandRequest

Command Run org workspace command

Run a command in the workspace. Valid commands are: reboot.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org where we want to run the workspace command.
@param workspaceHandle The handle of the workspace where command will be executed.
@return OrgWorkspacesApiCommandRequest

func (*OrgWorkspacesService) CommandExecute added in v0.2.0

Execute executes the request

@return WorkspaceCommandResponse

func (*OrgWorkspacesService) Create

Create Create org workspace

Creates a new workspace for an organization. The limit is 10 per organization. If you require more than 10, you must contact support to request an increase.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where we want to create the workspace.
@return OrgWorkspacesApiCreateRequest

func (*OrgWorkspacesService) CreateExecute

Execute executes the request

@return Workspace

func (*OrgWorkspacesService) Delete

func (a *OrgWorkspacesService) Delete(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspacesApiDeleteRequest

Delete Delete org workspace

Deletes the workspace specified in the request.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where the workspace exist.
@param workspaceHandle Provide the handle of the workspace which needs to be deleted.
@return OrgWorkspacesApiDeleteRequest

func (*OrgWorkspacesService) DeleteExecute

Execute executes the request

@return Workspace

func (*OrgWorkspacesService) Get

func (a *OrgWorkspacesService) Get(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspacesApiGetRequest

Get Get org workspace

Get the details for a workspace in an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle for an organization where the workspace exist.
@param workspaceHandle The handle of the workspace whose detail needs to be fetched.
@return OrgWorkspacesApiGetRequest

func (*OrgWorkspacesService) GetExecute

Execute executes the request

@return Workspace

func (*OrgWorkspacesService) GetQuery added in v0.0.2

func (a *OrgWorkspacesService) GetQuery(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspacesApiGetQueryRequest

GetQuery Query org workspace

Performs a query in an org workspace. Results are limited to 5000 rows or 30 seconds of query execution.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org that the workspace belongs to.
@param workspaceHandle The handle of the workspace to query.
@return OrgWorkspacesApiGetQueryRequest

func (*OrgWorkspacesService) GetQueryExecute added in v0.0.2

Execute executes the request

@return WorkspaceQueryResult

func (*OrgWorkspacesService) GetQueryWithExtensions added in v0.0.2

func (a *OrgWorkspacesService) GetQueryWithExtensions(ctx _context.Context, orgHandle string, workspaceHandle string, extensions string) OrgWorkspacesApiGetQueryWithExtensionsRequest

GetQueryWithExtensions Query org workspace with extensions

Performs a query in an org workspace, with content type and content encoding forming part of the API path. Results are limited to 5000 rows or 30 seconds of query execution.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org that the workspace belongs to.
@param workspaceHandle The handle of the workspace to query.
@param extensions The content type for the request. E.g.
@return OrgWorkspacesApiGetQueryWithExtensionsRequest

func (*OrgWorkspacesService) GetQueryWithExtensionsExecute added in v0.0.2

Execute executes the request

@return WorkspaceQueryResult

func (*OrgWorkspacesService) GetSchema added in v0.0.2

func (a *OrgWorkspacesService) GetSchema(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspacesApiGetSchemaRequest

GetSchema Get org workspace schemas

Returns the postgres schemas for an org workspace. This will consist of the connections associated with the workspace and any automatic aggregators prefixed with "all_", which are created for any connections where you have >=2 of that plugin type.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org that the workspace belongs to.
@param workspaceHandle The handle of the workspace to get the schemas for.
@return OrgWorkspacesApiGetSchemaRequest

func (*OrgWorkspacesService) GetSchemaExecute added in v0.0.2

Execute executes the request

@return WorkspaceSchema

func (*OrgWorkspacesService) List

List List org workspaces

List the workspace for an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization for which we want to list the workspace.
@return OrgWorkspacesApiListRequest

func (*OrgWorkspacesService) ListAuditLogs added in v0.1.3

func (a *OrgWorkspacesService) ListAuditLogs(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspacesApiListAuditLogsRequest

ListAuditLogs Org workspace audit logs

Returns the audit logs for an org workspace.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the org handle to get the audit logs.
@param workspaceHandle The handle of the workspace whose logs needs to be fetched.
@return OrgWorkspacesApiListAuditLogsRequest

func (*OrgWorkspacesService) ListAuditLogsExecute added in v0.1.3

Execute executes the request

@return ListAuditLogsResponse

func (*OrgWorkspacesService) ListDBLogs

func (a *OrgWorkspacesService) ListDBLogs(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspacesApiListDBLogsRequest

ListDBLogs Org workspace logs

Returns the workspace logs for an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the org handle to get the workspace logs.
@param workspaceHandle The handle of the workspace whose logs needs to be fetched.
@return OrgWorkspacesApiListDBLogsRequest

func (*OrgWorkspacesService) ListDBLogsExecute

Execute executes the request

@return ListLogsResponse

func (*OrgWorkspacesService) ListExecute

Execute executes the request

@return ListWorkspacesResponse

func (*OrgWorkspacesService) PostQuery added in v0.0.2

func (a *OrgWorkspacesService) PostQuery(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspacesApiPostQueryRequest

PostQuery Query org workspace

Performs a query in an org workspace. Results are limited to 5000 rows or 30 seconds of query execution.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org that the workspace belongs to.
@param workspaceHandle The handle of the workspace to query.
@return OrgWorkspacesApiPostQueryRequest

func (*OrgWorkspacesService) PostQueryExecute added in v0.0.2

Execute executes the request

@return WorkspaceQueryResult

func (*OrgWorkspacesService) PostQueryWithExtensions added in v0.0.2

func (a *OrgWorkspacesService) PostQueryWithExtensions(ctx _context.Context, orgHandle string, workspaceHandle string, extensions string) OrgWorkspacesApiPostQueryWithExtensionsRequest

PostQueryWithExtensions Query org workspace with extensions

Performs a query in an org workspace, with content type and content encoding forming part of the API path. Results are limited to 5000 rows or 30 seconds of query execution.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org that the workspace belongs to.
@param workspaceHandle The handle of the workspace to query.
@param extensions The content type for the request. E.g.
@return OrgWorkspacesApiPostQueryWithExtensionsRequest

func (*OrgWorkspacesService) PostQueryWithExtensionsExecute added in v0.0.2

Execute executes the request

@return WorkspaceQueryResult

func (*OrgWorkspacesService) Update

func (a *OrgWorkspacesService) Update(ctx _context.Context, orgHandle string, workspaceHandle string) OrgWorkspacesApiUpdateRequest

Update Update org workspace

Update a workspace in an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the organization where the workspace exist.
@param workspaceHandle The handle of the workspace which needs to be updated.
@return OrgWorkspacesApiUpdateRequest

func (*OrgWorkspacesService) UpdateExecute

Execute executes the request

@return Workspace

type OrgsApiCreateAvatarRequest added in v0.6.0

type OrgsApiCreateAvatarRequest struct {
	ApiService *OrgsService
	// contains filtered or unexported fields
}

func (OrgsApiCreateAvatarRequest) Execute added in v0.6.0

type OrgsApiCreateRequest

type OrgsApiCreateRequest struct {
	ApiService *OrgsService
	// contains filtered or unexported fields
}

func (OrgsApiCreateRequest) Execute

func (r OrgsApiCreateRequest) Execute() (Org, *_nethttp.Response, error)

func (OrgsApiCreateRequest) Request

The request body to create the organization.

type OrgsApiDeleteAvatarRequest added in v0.6.0

type OrgsApiDeleteAvatarRequest struct {
	ApiService *OrgsService
	// contains filtered or unexported fields
}

func (OrgsApiDeleteAvatarRequest) Execute added in v0.6.0

type OrgsApiDeleteRequest

type OrgsApiDeleteRequest struct {
	ApiService *OrgsService
	// contains filtered or unexported fields
}

func (OrgsApiDeleteRequest) Execute

func (r OrgsApiDeleteRequest) Execute() (Org, *_nethttp.Response, error)

type OrgsApiGetQuotaRequest

type OrgsApiGetQuotaRequest struct {
	ApiService *OrgsService
	// contains filtered or unexported fields
}

func (OrgsApiGetQuotaRequest) Execute

type OrgsApiGetRequest

type OrgsApiGetRequest struct {
	ApiService *OrgsService
	// contains filtered or unexported fields
}

func (OrgsApiGetRequest) Execute

func (r OrgsApiGetRequest) Execute() (Org, *_nethttp.Response, error)

type OrgsApiListAuditLogsRequest

type OrgsApiListAuditLogsRequest struct {
	ApiService *OrgsService
	// contains filtered or unexported fields
}

func (OrgsApiListAuditLogsRequest) Execute

func (OrgsApiListAuditLogsRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgsApiListAuditLogsRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgsApiListFeaturesRequest added in v0.0.4

type OrgsApiListFeaturesRequest struct {
	ApiService *OrgsService
	// contains filtered or unexported fields
}

func (OrgsApiListFeaturesRequest) Execute added in v0.0.4

type OrgsApiListRequest

type OrgsApiListRequest struct {
	ApiService *OrgsService
	// contains filtered or unexported fields
}

func (OrgsApiListRequest) Execute

func (OrgsApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (OrgsApiListRequest) NextToken

func (r OrgsApiListRequest) NextToken(nextToken string) OrgsApiListRequest

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type OrgsApiUpdateRequest

type OrgsApiUpdateRequest struct {
	ApiService *OrgsService
	// contains filtered or unexported fields
}

func (OrgsApiUpdateRequest) Execute

func (r OrgsApiUpdateRequest) Execute() (Org, *_nethttp.Response, error)

func (OrgsApiUpdateRequest) Request

The request body for the organization.

type OrgsService

type OrgsService service

OrgsService Orgs service

func (*OrgsService) Create

Create Create org

Creates an organization.

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

func (*OrgsService) CreateAvatar added in v0.6.0

func (a *OrgsService) CreateAvatar(ctx _context.Context, orgHandle string) OrgsApiCreateAvatarRequest

CreateAvatar Create org avatar

Create custom avatar for an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org whose avatar is to be created.
@return OrgsApiCreateAvatarRequest

func (*OrgsService) CreateAvatarExecute added in v0.6.0

Execute executes the request

@return CreateOrgAvatarResponse

func (*OrgsService) CreateExecute

func (a *OrgsService) CreateExecute(r OrgsApiCreateRequest) (Org, *_nethttp.Response, error)

Execute executes the request

@return Org

func (*OrgsService) Delete

func (a *OrgsService) Delete(ctx _context.Context, orgHandle string) OrgsApiDeleteRequest

Delete Delete org

Deletes the specified organization if you have the appropriate access.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of the organization which need to be deleted.
@return OrgsApiDeleteRequest

func (*OrgsService) DeleteAvatar added in v0.6.0

func (a *OrgsService) DeleteAvatar(ctx _context.Context, orgHandle string) OrgsApiDeleteAvatarRequest

DeleteAvatar Delete org avatar

Delete custom avatar for an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle The handle of the org whose avatar is to be deleted.
@return OrgsApiDeleteAvatarRequest

func (*OrgsService) DeleteAvatarExecute added in v0.6.0

Execute executes the request

@return DeleteOrgAvatarResponse

func (*OrgsService) DeleteExecute

func (a *OrgsService) DeleteExecute(r OrgsApiDeleteRequest) (Org, *_nethttp.Response, error)

Execute executes the request

@return Org

func (*OrgsService) Get

func (a *OrgsService) Get(ctx _context.Context, orgHandle string) OrgsApiGetRequest

Get Get org

Retrieves the organization information.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of an organization whose information you want to retrieve.
@return OrgsApiGetRequest

func (*OrgsService) GetExecute

func (a *OrgsService) GetExecute(r OrgsApiGetRequest) (Org, *_nethttp.Response, error)

Execute executes the request

@return Org

func (*OrgsService) GetQuota

func (a *OrgsService) GetQuota(ctx _context.Context, orgHandle string) OrgsApiGetQuotaRequest

GetQuota Org quota

Returns the quota information for an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the org handle to get the quota details.
@return OrgsApiGetQuotaRequest

func (*OrgsService) GetQuotaExecute

Execute executes the request

@return OrgQuota

func (*OrgsService) List

List List orgs

List all the organizations.

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

func (*OrgsService) ListAuditLogs

func (a *OrgsService) ListAuditLogs(ctx _context.Context, orgHandle string) OrgsApiListAuditLogsRequest

ListAuditLogs Org audit logs

Returns the audit logs for an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the org handle to get the audit logs.
@return OrgsApiListAuditLogsRequest

func (*OrgsService) ListAuditLogsExecute

Execute executes the request

@return ListAuditLogsResponse

func (*OrgsService) ListExecute

Execute executes the request

@return ListOrgsResponse

func (*OrgsService) ListFeatures added in v0.0.4

func (a *OrgsService) ListFeatures(ctx _context.Context, orgHandle string) OrgsApiListFeaturesRequest

ListFeatures Org features

Returns the feature information for an org.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the org handle to get the feature details.
@return OrgsApiListFeaturesRequest

func (*OrgsService) ListFeaturesExecute added in v0.0.4

Execute executes the request

@return ListFeaturesResponse

func (*OrgsService) Update

func (a *OrgsService) Update(ctx _context.Context, orgHandle string) OrgsApiUpdateRequest

Update Update org

Updates the handle name, display name, or the URL of an organization.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgHandle Specify the handle of the organization which need to be updated.
@return OrgsApiUpdateRequest

func (*OrgsService) UpdateExecute

func (a *OrgsService) UpdateExecute(r OrgsApiUpdateRequest) (Org, *_nethttp.Response, error)

Execute executes the request

@return Org

type Pipeline added in v0.5.0

type Pipeline struct {
	Args interface{} `json:"args,omitempty"`
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The time of the last update in ISO 8601 UTC.
	DeletedAt *string `json:"deleted_at,omitempty"`
	DeletedBy *User   `json:"deleted_by,omitempty"`
	// The ID of the user that performed the deletion.
	DeletedById string `json:"deleted_by_id"`
	// DesiredState is user editable state of the pipeline, there are only 3 options: enabled, disabled or paused
	DesiredState string            `json:"desired_state"`
	Frequency    PipelineFrequency `json:"frequency"`
	// The unique identifier of the pipeline.
	Id string `json:"id"`
	// We need the IdentityID to be in the JSON field because I'm sending the pipeline definition across the Temporal Workflow (see Datatank migration workflow)
	IdentityId  string     `json:"identity_id"`
	LastProcess *SpProcess `json:"last_process,omitempty"`
	// The id of the last process that was run for the pipeline.
	LastProcessId *string `json:"last_process_id,omitempty"`
	// The time when the pipeline is next scheduled to run in ISO 8601 UTC.
	NextRunAt *string `json:"next_run_at,omitempty"`
	// The name of the pipeline to be executed.
	Pipeline string `json:"pipeline"`
	// State is the system state of the pipeline. User should not be able to modify this value
	State       string      `json:"state"`
	StateReason *string     `json:"state_reason,omitempty"`
	Tags        interface{} `json:"tags,omitempty"`
	// The title of the pipeline.
	Title *string `json:"title,omitempty"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
	// The unique identifier of the workspace on which the pipeline is created if any.
	WorkspaceId *string `json:"workspace_id,omitempty"`
}

Pipeline struct for Pipeline

func NewPipeline added in v0.5.0

func NewPipeline(createdAt string, createdById string, deletedById string, desiredState string, frequency PipelineFrequency, id string, identityId string, pipeline string, state string, updatedById string, versionId int32) *Pipeline

NewPipeline instantiates a new Pipeline 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 NewPipelineWithDefaults added in v0.5.0

func NewPipelineWithDefaults() *Pipeline

NewPipelineWithDefaults instantiates a new Pipeline 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 (*Pipeline) GetArgs added in v0.5.0

func (o *Pipeline) GetArgs() interface{}

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

func (*Pipeline) GetArgsOk added in v0.5.0

func (o *Pipeline) GetArgsOk() (*interface{}, bool)

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

func (*Pipeline) GetCreatedAt added in v0.5.0

func (o *Pipeline) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*Pipeline) GetCreatedAtOk added in v0.5.0

func (o *Pipeline) GetCreatedAtOk() (*string, bool)

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

func (*Pipeline) GetCreatedBy added in v0.5.0

func (o *Pipeline) GetCreatedBy() User

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

func (*Pipeline) GetCreatedById added in v0.5.0

func (o *Pipeline) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*Pipeline) GetCreatedByIdOk added in v0.5.0

func (o *Pipeline) GetCreatedByIdOk() (*string, bool)

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

func (*Pipeline) GetCreatedByOk added in v0.5.0

func (o *Pipeline) GetCreatedByOk() (*User, 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 (*Pipeline) GetDeletedAt added in v0.5.0

func (o *Pipeline) GetDeletedAt() string

GetDeletedAt returns the DeletedAt field value if set, zero value otherwise.

func (*Pipeline) GetDeletedAtOk added in v0.5.0

func (o *Pipeline) GetDeletedAtOk() (*string, bool)

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

func (*Pipeline) GetDeletedBy added in v0.5.0

func (o *Pipeline) GetDeletedBy() User

GetDeletedBy returns the DeletedBy field value if set, zero value otherwise.

func (*Pipeline) GetDeletedById added in v0.5.0

func (o *Pipeline) GetDeletedById() string

GetDeletedById returns the DeletedById field value

func (*Pipeline) GetDeletedByIdOk added in v0.5.0

func (o *Pipeline) GetDeletedByIdOk() (*string, bool)

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

func (*Pipeline) GetDeletedByOk added in v0.5.0

func (o *Pipeline) GetDeletedByOk() (*User, bool)

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

func (*Pipeline) GetDesiredState added in v0.6.0

func (o *Pipeline) GetDesiredState() string

GetDesiredState returns the DesiredState field value

func (*Pipeline) GetDesiredStateOk added in v0.6.0

func (o *Pipeline) GetDesiredStateOk() (*string, bool)

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

func (*Pipeline) GetFrequency added in v0.5.0

func (o *Pipeline) GetFrequency() PipelineFrequency

GetFrequency returns the Frequency field value

func (*Pipeline) GetFrequencyOk added in v0.5.0

func (o *Pipeline) GetFrequencyOk() (*PipelineFrequency, bool)

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

func (*Pipeline) GetId added in v0.5.0

func (o *Pipeline) GetId() string

GetId returns the Id field value

func (*Pipeline) GetIdOk added in v0.5.0

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

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

func (*Pipeline) GetIdentityId added in v0.6.0

func (o *Pipeline) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*Pipeline) GetIdentityIdOk added in v0.6.0

func (o *Pipeline) GetIdentityIdOk() (*string, bool)

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

func (*Pipeline) GetLastProcess added in v0.5.0

func (o *Pipeline) GetLastProcess() SpProcess

GetLastProcess returns the LastProcess field value if set, zero value otherwise.

func (*Pipeline) GetLastProcessId added in v0.5.0

func (o *Pipeline) GetLastProcessId() string

GetLastProcessId returns the LastProcessId field value if set, zero value otherwise.

func (*Pipeline) GetLastProcessIdOk added in v0.5.0

func (o *Pipeline) GetLastProcessIdOk() (*string, bool)

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

func (*Pipeline) GetLastProcessOk added in v0.5.0

func (o *Pipeline) GetLastProcessOk() (*SpProcess, bool)

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

func (*Pipeline) GetNextRunAt added in v0.5.0

func (o *Pipeline) GetNextRunAt() string

GetNextRunAt returns the NextRunAt field value if set, zero value otherwise.

func (*Pipeline) GetNextRunAtOk added in v0.5.0

func (o *Pipeline) GetNextRunAtOk() (*string, bool)

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

func (*Pipeline) GetPipeline added in v0.5.0

func (o *Pipeline) GetPipeline() string

GetPipeline returns the Pipeline field value

func (*Pipeline) GetPipelineOk added in v0.5.0

func (o *Pipeline) GetPipelineOk() (*string, bool)

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

func (*Pipeline) GetState added in v0.6.0

func (o *Pipeline) GetState() string

GetState returns the State field value

func (*Pipeline) GetStateOk added in v0.6.0

func (o *Pipeline) GetStateOk() (*string, bool)

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

func (*Pipeline) GetStateReason added in v0.6.0

func (o *Pipeline) GetStateReason() string

GetStateReason returns the StateReason field value if set, zero value otherwise.

func (*Pipeline) GetStateReasonOk added in v0.6.0

func (o *Pipeline) GetStateReasonOk() (*string, bool)

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

func (*Pipeline) GetTags added in v0.5.0

func (o *Pipeline) GetTags() interface{}

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

func (*Pipeline) GetTagsOk added in v0.5.0

func (o *Pipeline) GetTagsOk() (*interface{}, bool)

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

func (*Pipeline) GetTitle added in v0.5.0

func (o *Pipeline) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*Pipeline) GetTitleOk added in v0.5.0

func (o *Pipeline) GetTitleOk() (*string, bool)

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

func (*Pipeline) GetUpdatedAt added in v0.5.0

func (o *Pipeline) GetUpdatedAt() string

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

func (*Pipeline) GetUpdatedAtOk added in v0.5.0

func (o *Pipeline) GetUpdatedAtOk() (*string, 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 (*Pipeline) GetUpdatedBy added in v0.5.0

func (o *Pipeline) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*Pipeline) GetUpdatedById added in v0.5.0

func (o *Pipeline) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*Pipeline) GetUpdatedByIdOk added in v0.5.0

func (o *Pipeline) GetUpdatedByIdOk() (*string, bool)

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

func (*Pipeline) GetUpdatedByOk added in v0.5.0

func (o *Pipeline) GetUpdatedByOk() (*User, bool)

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

func (*Pipeline) GetVersionId added in v0.5.0

func (o *Pipeline) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*Pipeline) GetVersionIdOk added in v0.5.0

func (o *Pipeline) GetVersionIdOk() (*int32, bool)

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

func (*Pipeline) GetWorkspaceId added in v0.5.0

func (o *Pipeline) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise.

func (*Pipeline) GetWorkspaceIdOk added in v0.5.0

func (o *Pipeline) GetWorkspaceIdOk() (*string, bool)

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

func (*Pipeline) HasArgs added in v0.5.0

func (o *Pipeline) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*Pipeline) HasCreatedBy added in v0.5.0

func (o *Pipeline) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Pipeline) HasDeletedAt added in v0.5.0

func (o *Pipeline) HasDeletedAt() bool

HasDeletedAt returns a boolean if a field has been set.

func (*Pipeline) HasDeletedBy added in v0.5.0

func (o *Pipeline) HasDeletedBy() bool

HasDeletedBy returns a boolean if a field has been set.

func (*Pipeline) HasLastProcess added in v0.5.0

func (o *Pipeline) HasLastProcess() bool

HasLastProcess returns a boolean if a field has been set.

func (*Pipeline) HasLastProcessId added in v0.5.0

func (o *Pipeline) HasLastProcessId() bool

HasLastProcessId returns a boolean if a field has been set.

func (*Pipeline) HasNextRunAt added in v0.6.0

func (o *Pipeline) HasNextRunAt() bool

HasNextRunAt returns a boolean if a field has been set.

func (*Pipeline) HasStateReason added in v0.6.0

func (o *Pipeline) HasStateReason() bool

HasStateReason returns a boolean if a field has been set.

func (*Pipeline) HasTags added in v0.5.0

func (o *Pipeline) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Pipeline) HasTitle added in v0.5.0

func (o *Pipeline) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*Pipeline) HasUpdatedAt added in v0.5.0

func (o *Pipeline) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Pipeline) HasUpdatedBy added in v0.5.0

func (o *Pipeline) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*Pipeline) HasWorkspaceId added in v0.5.0

func (o *Pipeline) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (Pipeline) MarshalJSON added in v0.5.0

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

func (*Pipeline) SetArgs added in v0.5.0

func (o *Pipeline) SetArgs(v interface{})

SetArgs gets a reference to the given interface{} and assigns it to the Args field.

func (*Pipeline) SetCreatedAt added in v0.5.0

func (o *Pipeline) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*Pipeline) SetCreatedBy added in v0.5.0

func (o *Pipeline) SetCreatedBy(v User)

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

func (*Pipeline) SetCreatedById added in v0.5.0

func (o *Pipeline) SetCreatedById(v string)

SetCreatedById sets field value

func (*Pipeline) SetDeletedAt added in v0.5.0

func (o *Pipeline) SetDeletedAt(v string)

SetDeletedAt gets a reference to the given string and assigns it to the DeletedAt field.

func (*Pipeline) SetDeletedBy added in v0.5.0

func (o *Pipeline) SetDeletedBy(v User)

SetDeletedBy gets a reference to the given User and assigns it to the DeletedBy field.

func (*Pipeline) SetDeletedById added in v0.5.0

func (o *Pipeline) SetDeletedById(v string)

SetDeletedById sets field value

func (*Pipeline) SetDesiredState added in v0.6.0

func (o *Pipeline) SetDesiredState(v string)

SetDesiredState sets field value

func (*Pipeline) SetFrequency added in v0.5.0

func (o *Pipeline) SetFrequency(v PipelineFrequency)

SetFrequency sets field value

func (*Pipeline) SetId added in v0.5.0

func (o *Pipeline) SetId(v string)

SetId sets field value

func (*Pipeline) SetIdentityId added in v0.6.0

func (o *Pipeline) SetIdentityId(v string)

SetIdentityId sets field value

func (*Pipeline) SetLastProcess added in v0.5.0

func (o *Pipeline) SetLastProcess(v SpProcess)

SetLastProcess gets a reference to the given SpProcess and assigns it to the LastProcess field.

func (*Pipeline) SetLastProcessId added in v0.5.0

func (o *Pipeline) SetLastProcessId(v string)

SetLastProcessId gets a reference to the given string and assigns it to the LastProcessId field.

func (*Pipeline) SetNextRunAt added in v0.5.0

func (o *Pipeline) SetNextRunAt(v string)

SetNextRunAt gets a reference to the given string and assigns it to the NextRunAt field.

func (*Pipeline) SetPipeline added in v0.5.0

func (o *Pipeline) SetPipeline(v string)

SetPipeline sets field value

func (*Pipeline) SetState added in v0.6.0

func (o *Pipeline) SetState(v string)

SetState sets field value

func (*Pipeline) SetStateReason added in v0.6.0

func (o *Pipeline) SetStateReason(v string)

SetStateReason gets a reference to the given string and assigns it to the StateReason field.

func (*Pipeline) SetTags added in v0.5.0

func (o *Pipeline) SetTags(v interface{})

SetTags gets a reference to the given interface{} and assigns it to the Tags field.

func (*Pipeline) SetTitle added in v0.5.0

func (o *Pipeline) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*Pipeline) SetUpdatedAt added in v0.5.0

func (o *Pipeline) SetUpdatedAt(v string)

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

func (*Pipeline) SetUpdatedBy added in v0.5.0

func (o *Pipeline) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*Pipeline) SetUpdatedById added in v0.5.0

func (o *Pipeline) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*Pipeline) SetVersionId added in v0.5.0

func (o *Pipeline) SetVersionId(v int32)

SetVersionId sets field value

func (*Pipeline) SetWorkspaceId added in v0.5.0

func (o *Pipeline) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given string and assigns it to the WorkspaceId field.

type PipelineCommandRequest added in v0.5.0

type PipelineCommandRequest struct {
	Command string `json:"command"`
}

PipelineCommandRequest struct for PipelineCommandRequest

func NewPipelineCommandRequest added in v0.5.0

func NewPipelineCommandRequest(command string) *PipelineCommandRequest

NewPipelineCommandRequest instantiates a new PipelineCommandRequest 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 NewPipelineCommandRequestWithDefaults added in v0.5.0

func NewPipelineCommandRequestWithDefaults() *PipelineCommandRequest

NewPipelineCommandRequestWithDefaults instantiates a new PipelineCommandRequest 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 (*PipelineCommandRequest) GetCommand added in v0.5.0

func (o *PipelineCommandRequest) GetCommand() string

GetCommand returns the Command field value

func (*PipelineCommandRequest) GetCommandOk added in v0.5.0

func (o *PipelineCommandRequest) GetCommandOk() (*string, bool)

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

func (PipelineCommandRequest) MarshalJSON added in v0.5.0

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

func (*PipelineCommandRequest) SetCommand added in v0.5.0

func (o *PipelineCommandRequest) SetCommand(v string)

SetCommand sets field value

type PipelineCommandResponse added in v0.5.0

type PipelineCommandResponse struct {
	Command   string `json:"command"`
	ProcessId string `json:"process_id"`
}

PipelineCommandResponse struct for PipelineCommandResponse

func NewPipelineCommandResponse added in v0.5.0

func NewPipelineCommandResponse(command string, processId string) *PipelineCommandResponse

NewPipelineCommandResponse instantiates a new PipelineCommandResponse 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 NewPipelineCommandResponseWithDefaults added in v0.5.0

func NewPipelineCommandResponseWithDefaults() *PipelineCommandResponse

NewPipelineCommandResponseWithDefaults instantiates a new PipelineCommandResponse 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 (*PipelineCommandResponse) GetCommand added in v0.5.0

func (o *PipelineCommandResponse) GetCommand() string

GetCommand returns the Command field value

func (*PipelineCommandResponse) GetCommandOk added in v0.5.0

func (o *PipelineCommandResponse) GetCommandOk() (*string, bool)

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

func (*PipelineCommandResponse) GetProcessId added in v0.5.0

func (o *PipelineCommandResponse) GetProcessId() string

GetProcessId returns the ProcessId field value

func (*PipelineCommandResponse) GetProcessIdOk added in v0.5.0

func (o *PipelineCommandResponse) GetProcessIdOk() (*string, bool)

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

func (PipelineCommandResponse) MarshalJSON added in v0.5.0

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

func (*PipelineCommandResponse) SetCommand added in v0.5.0

func (o *PipelineCommandResponse) SetCommand(v string)

SetCommand sets field value

func (*PipelineCommandResponse) SetProcessId added in v0.5.0

func (o *PipelineCommandResponse) SetProcessId(v string)

SetProcessId sets field value

type PipelineFrequency added in v0.5.0

type PipelineFrequency struct {
	Schedule *string `json:"schedule,omitempty"`
	Type     string  `json:"type"`
}

PipelineFrequency struct for PipelineFrequency

func NewPipelineFrequency added in v0.5.0

func NewPipelineFrequency(type_ string) *PipelineFrequency

NewPipelineFrequency instantiates a new PipelineFrequency 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 NewPipelineFrequencyWithDefaults added in v0.5.0

func NewPipelineFrequencyWithDefaults() *PipelineFrequency

NewPipelineFrequencyWithDefaults instantiates a new PipelineFrequency 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 (*PipelineFrequency) GetSchedule added in v0.5.0

func (o *PipelineFrequency) GetSchedule() string

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*PipelineFrequency) GetScheduleOk added in v0.5.0

func (o *PipelineFrequency) GetScheduleOk() (*string, bool)

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

func (*PipelineFrequency) GetType added in v0.5.0

func (o *PipelineFrequency) GetType() string

GetType returns the Type field value

func (*PipelineFrequency) GetTypeOk added in v0.5.0

func (o *PipelineFrequency) GetTypeOk() (*string, bool)

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

func (*PipelineFrequency) HasSchedule added in v0.6.0

func (o *PipelineFrequency) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (PipelineFrequency) MarshalJSON added in v0.5.0

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

func (*PipelineFrequency) SetSchedule added in v0.5.0

func (o *PipelineFrequency) SetSchedule(v string)

SetSchedule gets a reference to the given string and assigns it to the Schedule field.

func (*PipelineFrequency) SetType added in v0.5.0

func (o *PipelineFrequency) SetType(v string)

SetType sets field value

type Quota added in v0.0.2

type Quota struct {
	// Remaining limit
	Available *int32 `json:"available,omitempty"`
	// Max limit
	Limit *int32 `json:"limit,omitempty"`
	// Exhausted limit
	Used *int32 `json:"used,omitempty"`
}

Quota struct for Quota

func NewQuota added in v0.0.2

func NewQuota() *Quota

NewQuota instantiates a new Quota 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 NewQuotaWithDefaults added in v0.0.2

func NewQuotaWithDefaults() *Quota

NewQuotaWithDefaults instantiates a new Quota 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 (*Quota) GetAvailable added in v0.0.2

func (o *Quota) GetAvailable() int32

GetAvailable returns the Available field value if set, zero value otherwise.

func (*Quota) GetAvailableOk added in v0.0.2

func (o *Quota) GetAvailableOk() (*int32, bool)

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

func (*Quota) GetLimit added in v0.0.2

func (o *Quota) GetLimit() int32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*Quota) GetLimitOk added in v0.0.2

func (o *Quota) GetLimitOk() (*int32, bool)

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

func (*Quota) GetUsed added in v0.0.2

func (o *Quota) GetUsed() int32

GetUsed returns the Used field value if set, zero value otherwise.

func (*Quota) GetUsedOk added in v0.0.2

func (o *Quota) GetUsedOk() (*int32, bool)

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

func (*Quota) HasAvailable added in v0.0.2

func (o *Quota) HasAvailable() bool

HasAvailable returns a boolean if a field has been set.

func (*Quota) HasLimit added in v0.0.2

func (o *Quota) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*Quota) HasUsed added in v0.0.2

func (o *Quota) HasUsed() bool

HasUsed returns a boolean if a field has been set.

func (Quota) MarshalJSON added in v0.0.2

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

func (*Quota) SetAvailable added in v0.0.2

func (o *Quota) SetAvailable(v int32)

SetAvailable gets a reference to the given int32 and assigns it to the Available field.

func (*Quota) SetLimit added in v0.0.2

func (o *Quota) SetLimit(v int32)

SetLimit gets a reference to the given int32 and assigns it to the Limit field.

func (*Quota) SetUsed added in v0.0.2

func (o *Quota) SetUsed(v int32)

SetUsed gets a reference to the given int32 and assigns it to the Used field.

type SchemaInfo added in v0.0.2

type SchemaInfo struct {
	Description *string       `json:"description,omitempty"`
	Name        string        `json:"name"`
	Tables      []SchemaTable `json:"tables"`
}

SchemaInfo struct for SchemaInfo

func NewSchemaInfo added in v0.0.2

func NewSchemaInfo(name string, tables []SchemaTable) *SchemaInfo

NewSchemaInfo instantiates a new SchemaInfo 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 NewSchemaInfoWithDefaults added in v0.0.2

func NewSchemaInfoWithDefaults() *SchemaInfo

NewSchemaInfoWithDefaults instantiates a new SchemaInfo 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 (*SchemaInfo) GetDescription added in v0.0.2

func (o *SchemaInfo) GetDescription() string

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

func (*SchemaInfo) GetDescriptionOk added in v0.0.2

func (o *SchemaInfo) 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 (*SchemaInfo) GetName added in v0.0.2

func (o *SchemaInfo) GetName() string

GetName returns the Name field value

func (*SchemaInfo) GetNameOk added in v0.0.2

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

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

func (*SchemaInfo) GetTables added in v0.0.2

func (o *SchemaInfo) GetTables() []SchemaTable

GetTables returns the Tables field value

func (*SchemaInfo) GetTablesOk added in v0.0.2

func (o *SchemaInfo) GetTablesOk() (*[]SchemaTable, bool)

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

func (*SchemaInfo) HasDescription added in v0.0.2

func (o *SchemaInfo) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (SchemaInfo) MarshalJSON added in v0.0.2

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

func (*SchemaInfo) SetDescription added in v0.0.2

func (o *SchemaInfo) SetDescription(v string)

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

func (*SchemaInfo) SetName added in v0.0.2

func (o *SchemaInfo) SetName(v string)

SetName sets field value

func (*SchemaInfo) SetTables added in v0.0.2

func (o *SchemaInfo) SetTables(v []SchemaTable)

SetTables sets field value

type SchemaTable added in v0.0.2

type SchemaTable struct {
	Columns     []SchemaTableColumn `json:"columns"`
	Description *string             `json:"description,omitempty"`
	Name        string              `json:"name"`
}

SchemaTable struct for SchemaTable

func NewSchemaTable added in v0.0.2

func NewSchemaTable(columns []SchemaTableColumn, name string) *SchemaTable

NewSchemaTable instantiates a new SchemaTable 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 NewSchemaTableWithDefaults added in v0.0.2

func NewSchemaTableWithDefaults() *SchemaTable

NewSchemaTableWithDefaults instantiates a new SchemaTable 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 (*SchemaTable) GetColumns added in v0.0.2

func (o *SchemaTable) GetColumns() []SchemaTableColumn

GetColumns returns the Columns field value

func (*SchemaTable) GetColumnsOk added in v0.0.2

func (o *SchemaTable) GetColumnsOk() (*[]SchemaTableColumn, bool)

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

func (*SchemaTable) GetDescription added in v0.0.2

func (o *SchemaTable) GetDescription() string

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

func (*SchemaTable) GetDescriptionOk added in v0.0.2

func (o *SchemaTable) 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 (*SchemaTable) GetName added in v0.0.2

func (o *SchemaTable) GetName() string

GetName returns the Name field value

func (*SchemaTable) GetNameOk added in v0.0.2

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

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

func (*SchemaTable) HasDescription added in v0.0.2

func (o *SchemaTable) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (SchemaTable) MarshalJSON added in v0.0.2

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

func (*SchemaTable) SetColumns added in v0.0.2

func (o *SchemaTable) SetColumns(v []SchemaTableColumn)

SetColumns sets field value

func (*SchemaTable) SetDescription added in v0.0.2

func (o *SchemaTable) SetDescription(v string)

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

func (*SchemaTable) SetName added in v0.0.2

func (o *SchemaTable) SetName(v string)

SetName sets field value

type SchemaTableColumn added in v0.0.2

type SchemaTableColumn struct {
	DataType    string  `json:"data_type"`
	Description *string `json:"description,omitempty"`
	Name        string  `json:"name"`
}

SchemaTableColumn struct for SchemaTableColumn

func NewSchemaTableColumn added in v0.0.2

func NewSchemaTableColumn(dataType string, name string) *SchemaTableColumn

NewSchemaTableColumn instantiates a new SchemaTableColumn 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 NewSchemaTableColumnWithDefaults added in v0.0.2

func NewSchemaTableColumnWithDefaults() *SchemaTableColumn

NewSchemaTableColumnWithDefaults instantiates a new SchemaTableColumn 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 (*SchemaTableColumn) GetDataType added in v0.0.2

func (o *SchemaTableColumn) GetDataType() string

GetDataType returns the DataType field value

func (*SchemaTableColumn) GetDataTypeOk added in v0.0.2

func (o *SchemaTableColumn) GetDataTypeOk() (*string, bool)

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

func (*SchemaTableColumn) GetDescription added in v0.0.2

func (o *SchemaTableColumn) GetDescription() string

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

func (*SchemaTableColumn) GetDescriptionOk added in v0.0.2

func (o *SchemaTableColumn) 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 (*SchemaTableColumn) GetName added in v0.0.2

func (o *SchemaTableColumn) GetName() string

GetName returns the Name field value

func (*SchemaTableColumn) GetNameOk added in v0.0.2

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

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

func (*SchemaTableColumn) HasDescription added in v0.0.2

func (o *SchemaTableColumn) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (SchemaTableColumn) MarshalJSON added in v0.0.2

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

func (*SchemaTableColumn) SetDataType added in v0.0.2

func (o *SchemaTableColumn) SetDataType(v string)

SetDataType sets field value

func (*SchemaTableColumn) SetDescription added in v0.0.2

func (o *SchemaTableColumn) SetDescription(v string)

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

func (*SchemaTableColumn) SetName added in v0.0.2

func (o *SchemaTableColumn) SetName(v string)

SetName sets field value

type SearchIdentitiesResponse added in v0.0.2

type SearchIdentitiesResponse struct {
	Items *[]IdentitySearch `json:"items,omitempty"`
}

SearchIdentitiesResponse struct for SearchIdentitiesResponse

func NewSearchIdentitiesResponse added in v0.0.2

func NewSearchIdentitiesResponse() *SearchIdentitiesResponse

NewSearchIdentitiesResponse instantiates a new SearchIdentitiesResponse 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 NewSearchIdentitiesResponseWithDefaults added in v0.0.2

func NewSearchIdentitiesResponseWithDefaults() *SearchIdentitiesResponse

NewSearchIdentitiesResponseWithDefaults instantiates a new SearchIdentitiesResponse 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 (*SearchIdentitiesResponse) GetItems added in v0.0.2

func (o *SearchIdentitiesResponse) GetItems() []IdentitySearch

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

func (*SearchIdentitiesResponse) GetItemsOk added in v0.0.2

func (o *SearchIdentitiesResponse) GetItemsOk() (*[]IdentitySearch, bool)

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 (*SearchIdentitiesResponse) HasItems added in v0.0.2

func (o *SearchIdentitiesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (SearchIdentitiesResponse) MarshalJSON added in v0.0.2

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

func (*SearchIdentitiesResponse) SetItems added in v0.0.2

func (o *SearchIdentitiesResponse) SetItems(v []IdentitySearch)

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

type SearchUsersResponse added in v0.0.2

type SearchUsersResponse struct {
	Items     *[]UserSearch `json:"items,omitempty"`
	NextToken *string       `json:"next_token,omitempty"`
}

SearchUsersResponse struct for SearchUsersResponse

func NewSearchUsersResponse added in v0.0.2

func NewSearchUsersResponse() *SearchUsersResponse

NewSearchUsersResponse instantiates a new SearchUsersResponse 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 NewSearchUsersResponseWithDefaults added in v0.0.2

func NewSearchUsersResponseWithDefaults() *SearchUsersResponse

NewSearchUsersResponseWithDefaults instantiates a new SearchUsersResponse 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 (*SearchUsersResponse) GetItems added in v0.0.2

func (o *SearchUsersResponse) GetItems() []UserSearch

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

func (*SearchUsersResponse) GetItemsOk added in v0.0.2

func (o *SearchUsersResponse) GetItemsOk() (*[]UserSearch, bool)

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 (*SearchUsersResponse) GetNextToken added in v0.0.2

func (o *SearchUsersResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*SearchUsersResponse) GetNextTokenOk added in v0.0.2

func (o *SearchUsersResponse) GetNextTokenOk() (*string, bool)

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

func (*SearchUsersResponse) HasItems added in v0.0.2

func (o *SearchUsersResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchUsersResponse) HasNextToken added in v0.0.2

func (o *SearchUsersResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (SearchUsersResponse) MarshalJSON added in v0.0.2

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

func (*SearchUsersResponse) SetItems added in v0.0.2

func (o *SearchUsersResponse) SetItems(v []UserSearch)

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

func (*SearchUsersResponse) SetNextToken added in v0.0.2

func (o *SearchUsersResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

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 SpProcess added in v0.5.0

type SpProcess struct {
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The unique identifier of the process.
	Id string `json:"id"`
	// The unique identifier of the identity for which the process is created.
	IdentityId *string   `json:"identity_id,omitempty"`
	Pipeline   *Pipeline `json:"pipeline,omitempty"`
	// The unique identifier of the pipeline for which the process is created.
	PipelineId *string `json:"pipeline_id,omitempty"`
	// The state of the process.
	State *string `json:"state,omitempty"`
	// The type of the process, generally denotes the activity performed e.g. workspace.create, pipeline.execute, pipeline.command.run.
	Type string `json:"type"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt string `json:"updated_at"`
	UpdatedBy *User  `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
	// The unique identifier of the workspace for which the process is created.
	WorkspaceId *string `json:"workspace_id,omitempty"`
}

SpProcess struct for SpProcess

func NewSpProcess added in v0.5.0

func NewSpProcess(createdAt string, createdById string, id string, type_ string, updatedAt string, updatedById string, versionId int32) *SpProcess

NewSpProcess instantiates a new SpProcess 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 NewSpProcessWithDefaults added in v0.5.0

func NewSpProcessWithDefaults() *SpProcess

NewSpProcessWithDefaults instantiates a new SpProcess 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 (*SpProcess) GetCreatedAt added in v0.5.0

func (o *SpProcess) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*SpProcess) GetCreatedAtOk added in v0.5.0

func (o *SpProcess) GetCreatedAtOk() (*string, bool)

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

func (*SpProcess) GetCreatedBy added in v0.5.0

func (o *SpProcess) GetCreatedBy() User

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

func (*SpProcess) GetCreatedById added in v0.5.0

func (o *SpProcess) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*SpProcess) GetCreatedByIdOk added in v0.5.0

func (o *SpProcess) GetCreatedByIdOk() (*string, bool)

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

func (*SpProcess) GetCreatedByOk added in v0.5.0

func (o *SpProcess) GetCreatedByOk() (*User, 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 (*SpProcess) GetId added in v0.5.0

func (o *SpProcess) GetId() string

GetId returns the Id field value

func (*SpProcess) GetIdOk added in v0.5.0

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

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

func (*SpProcess) GetIdentityId added in v0.5.0

func (o *SpProcess) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise.

func (*SpProcess) GetIdentityIdOk added in v0.5.0

func (o *SpProcess) GetIdentityIdOk() (*string, bool)

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

func (*SpProcess) GetPipeline added in v0.5.0

func (o *SpProcess) GetPipeline() Pipeline

GetPipeline returns the Pipeline field value if set, zero value otherwise.

func (*SpProcess) GetPipelineId added in v0.5.0

func (o *SpProcess) GetPipelineId() string

GetPipelineId returns the PipelineId field value if set, zero value otherwise.

func (*SpProcess) GetPipelineIdOk added in v0.5.0

func (o *SpProcess) GetPipelineIdOk() (*string, bool)

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

func (*SpProcess) GetPipelineOk added in v0.5.0

func (o *SpProcess) GetPipelineOk() (*Pipeline, bool)

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

func (*SpProcess) GetState added in v0.5.0

func (o *SpProcess) GetState() string

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

func (*SpProcess) GetStateOk added in v0.5.0

func (o *SpProcess) 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 (*SpProcess) GetType added in v0.5.0

func (o *SpProcess) GetType() string

GetType returns the Type field value

func (*SpProcess) GetTypeOk added in v0.5.0

func (o *SpProcess) GetTypeOk() (*string, bool)

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

func (*SpProcess) GetUpdatedAt added in v0.5.0

func (o *SpProcess) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value

func (*SpProcess) GetUpdatedAtOk added in v0.5.0

func (o *SpProcess) GetUpdatedAtOk() (*string, bool)

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

func (*SpProcess) GetUpdatedBy added in v0.5.0

func (o *SpProcess) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*SpProcess) GetUpdatedById added in v0.5.0

func (o *SpProcess) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*SpProcess) GetUpdatedByIdOk added in v0.5.0

func (o *SpProcess) GetUpdatedByIdOk() (*string, bool)

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

func (*SpProcess) GetUpdatedByOk added in v0.5.0

func (o *SpProcess) GetUpdatedByOk() (*User, bool)

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

func (*SpProcess) GetVersionId added in v0.5.0

func (o *SpProcess) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*SpProcess) GetVersionIdOk added in v0.5.0

func (o *SpProcess) GetVersionIdOk() (*int32, bool)

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

func (*SpProcess) GetWorkspaceId added in v0.5.0

func (o *SpProcess) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise.

func (*SpProcess) GetWorkspaceIdOk added in v0.5.0

func (o *SpProcess) GetWorkspaceIdOk() (*string, bool)

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

func (*SpProcess) HasCreatedBy added in v0.5.0

func (o *SpProcess) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*SpProcess) HasIdentityId added in v0.5.0

func (o *SpProcess) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (*SpProcess) HasPipeline added in v0.5.0

func (o *SpProcess) HasPipeline() bool

HasPipeline returns a boolean if a field has been set.

func (*SpProcess) HasPipelineId added in v0.5.0

func (o *SpProcess) HasPipelineId() bool

HasPipelineId returns a boolean if a field has been set.

func (*SpProcess) HasState added in v0.5.0

func (o *SpProcess) HasState() bool

HasState returns a boolean if a field has been set.

func (*SpProcess) HasUpdatedBy added in v0.5.0

func (o *SpProcess) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*SpProcess) HasWorkspaceId added in v0.5.0

func (o *SpProcess) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (SpProcess) MarshalJSON added in v0.5.0

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

func (*SpProcess) SetCreatedAt added in v0.5.0

func (o *SpProcess) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*SpProcess) SetCreatedBy added in v0.5.0

func (o *SpProcess) SetCreatedBy(v User)

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

func (*SpProcess) SetCreatedById added in v0.5.0

func (o *SpProcess) SetCreatedById(v string)

SetCreatedById sets field value

func (*SpProcess) SetId added in v0.5.0

func (o *SpProcess) SetId(v string)

SetId sets field value

func (*SpProcess) SetIdentityId added in v0.5.0

func (o *SpProcess) SetIdentityId(v string)

SetIdentityId gets a reference to the given string and assigns it to the IdentityId field.

func (*SpProcess) SetPipeline added in v0.5.0

func (o *SpProcess) SetPipeline(v Pipeline)

SetPipeline gets a reference to the given Pipeline and assigns it to the Pipeline field.

func (*SpProcess) SetPipelineId added in v0.5.0

func (o *SpProcess) SetPipelineId(v string)

SetPipelineId gets a reference to the given string and assigns it to the PipelineId field.

func (*SpProcess) SetState added in v0.5.0

func (o *SpProcess) SetState(v string)

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

func (*SpProcess) SetType added in v0.5.0

func (o *SpProcess) SetType(v string)

SetType sets field value

func (*SpProcess) SetUpdatedAt added in v0.5.0

func (o *SpProcess) SetUpdatedAt(v string)

SetUpdatedAt sets field value

func (*SpProcess) SetUpdatedBy added in v0.5.0

func (o *SpProcess) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*SpProcess) SetUpdatedById added in v0.5.0

func (o *SpProcess) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*SpProcess) SetVersionId added in v0.5.0

func (o *SpProcess) SetVersionId(v int32)

SetVersionId sets field value

func (*SpProcess) SetWorkspaceId added in v0.5.0

func (o *SpProcess) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given string and assigns it to the WorkspaceId field.

type TemporaryTokenRequest added in v0.2.0

type TemporaryTokenRequest struct {
	ClientIp  string  `json:"client_ip"`
	Code      string  `json:"code"`
	CreatedAt string  `json:"created_at"`
	Id        string  `json:"id"`
	State     string  `json:"state"`
	Token     *string `json:"token,omitempty"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
}

TemporaryTokenRequest struct for TemporaryTokenRequest

func NewTemporaryTokenRequest added in v0.2.0

func NewTemporaryTokenRequest(clientIp string, code string, createdAt string, id string, state string) *TemporaryTokenRequest

NewTemporaryTokenRequest instantiates a new TemporaryTokenRequest 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 NewTemporaryTokenRequestWithDefaults added in v0.2.0

func NewTemporaryTokenRequestWithDefaults() *TemporaryTokenRequest

NewTemporaryTokenRequestWithDefaults instantiates a new TemporaryTokenRequest 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 (*TemporaryTokenRequest) GetClientIp added in v0.2.0

func (o *TemporaryTokenRequest) GetClientIp() string

GetClientIp returns the ClientIp field value

func (*TemporaryTokenRequest) GetClientIpOk added in v0.2.0

func (o *TemporaryTokenRequest) GetClientIpOk() (*string, bool)

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

func (*TemporaryTokenRequest) GetCode added in v0.2.0

func (o *TemporaryTokenRequest) GetCode() string

GetCode returns the Code field value

func (*TemporaryTokenRequest) GetCodeOk added in v0.2.0

func (o *TemporaryTokenRequest) GetCodeOk() (*string, bool)

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

func (*TemporaryTokenRequest) GetCreatedAt added in v0.2.0

func (o *TemporaryTokenRequest) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*TemporaryTokenRequest) GetCreatedAtOk added in v0.2.0

func (o *TemporaryTokenRequest) GetCreatedAtOk() (*string, bool)

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

func (*TemporaryTokenRequest) GetId added in v0.2.0

func (o *TemporaryTokenRequest) GetId() string

GetId returns the Id field value

func (*TemporaryTokenRequest) GetIdOk added in v0.2.0

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

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

func (*TemporaryTokenRequest) GetState added in v0.2.0

func (o *TemporaryTokenRequest) GetState() string

GetState returns the State field value

func (*TemporaryTokenRequest) GetStateOk added in v0.2.0

func (o *TemporaryTokenRequest) GetStateOk() (*string, bool)

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

func (*TemporaryTokenRequest) GetToken added in v0.2.0

func (o *TemporaryTokenRequest) GetToken() string

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

func (*TemporaryTokenRequest) GetTokenOk added in v0.2.0

func (o *TemporaryTokenRequest) 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 (*TemporaryTokenRequest) GetUpdatedAt added in v0.2.0

func (o *TemporaryTokenRequest) GetUpdatedAt() string

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

func (*TemporaryTokenRequest) GetUpdatedAtOk added in v0.2.0

func (o *TemporaryTokenRequest) GetUpdatedAtOk() (*string, 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 (*TemporaryTokenRequest) HasToken added in v0.2.0

func (o *TemporaryTokenRequest) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*TemporaryTokenRequest) HasUpdatedAt added in v0.2.0

func (o *TemporaryTokenRequest) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (TemporaryTokenRequest) MarshalJSON added in v0.2.0

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

func (*TemporaryTokenRequest) SetClientIp added in v0.2.0

func (o *TemporaryTokenRequest) SetClientIp(v string)

SetClientIp sets field value

func (*TemporaryTokenRequest) SetCode added in v0.2.0

func (o *TemporaryTokenRequest) SetCode(v string)

SetCode sets field value

func (*TemporaryTokenRequest) SetCreatedAt added in v0.2.0

func (o *TemporaryTokenRequest) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*TemporaryTokenRequest) SetId added in v0.2.0

func (o *TemporaryTokenRequest) SetId(v string)

SetId sets field value

func (*TemporaryTokenRequest) SetState added in v0.2.0

func (o *TemporaryTokenRequest) SetState(v string)

SetState sets field value

func (*TemporaryTokenRequest) SetToken added in v0.2.0

func (o *TemporaryTokenRequest) SetToken(v string)

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

func (*TemporaryTokenRequest) SetUpdatedAt added in v0.2.0

func (o *TemporaryTokenRequest) SetUpdatedAt(v string)

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

type TestConnectionRequest added in v0.6.0

type TestConnectionRequest struct {
	Config *map[string]interface{} `json:"config,omitempty"`
	Plugin string                  `json:"plugin"`
}

TestConnectionRequest struct for TestConnectionRequest

func NewTestConnectionRequest added in v0.6.0

func NewTestConnectionRequest(plugin string) *TestConnectionRequest

NewTestConnectionRequest instantiates a new TestConnectionRequest 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 NewTestConnectionRequestWithDefaults added in v0.6.0

func NewTestConnectionRequestWithDefaults() *TestConnectionRequest

NewTestConnectionRequestWithDefaults instantiates a new TestConnectionRequest 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 (*TestConnectionRequest) GetConfig added in v0.6.0

func (o *TestConnectionRequest) GetConfig() map[string]interface{}

GetConfig returns the Config field value if set, zero value otherwise.

func (*TestConnectionRequest) GetConfigOk added in v0.6.0

func (o *TestConnectionRequest) GetConfigOk() (*map[string]interface{}, bool)

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

func (*TestConnectionRequest) GetPlugin added in v0.6.0

func (o *TestConnectionRequest) GetPlugin() string

GetPlugin returns the Plugin field value

func (*TestConnectionRequest) GetPluginOk added in v0.6.0

func (o *TestConnectionRequest) GetPluginOk() (*string, bool)

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

func (*TestConnectionRequest) HasConfig added in v0.6.0

func (o *TestConnectionRequest) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (TestConnectionRequest) MarshalJSON added in v0.6.0

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

func (*TestConnectionRequest) SetConfig added in v0.6.0

func (o *TestConnectionRequest) SetConfig(v map[string]interface{})

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

func (*TestConnectionRequest) SetPlugin added in v0.6.0

func (o *TestConnectionRequest) SetPlugin(v string)

SetPlugin sets field value

type Token added in v0.0.2

type Token struct {
	CreatedAt string  `json:"created_at"`
	Id        string  `json:"id"`
	Last4     *string `json:"last4,omitempty"`
	Status    string  `json:"status"`
	UpdatedAt *string `json:"updated_at,omitempty"`
	UserId    string  `json:"user_id"`
	VersionId int32   `json:"version_id"`
}

Token struct for Token

func NewToken added in v0.0.2

func NewToken(createdAt string, id string, status string, userId string, versionId int32) *Token

NewToken instantiates a new Token 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 NewTokenWithDefaults added in v0.0.2

func NewTokenWithDefaults() *Token

NewTokenWithDefaults instantiates a new Token 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 (*Token) GetCreatedAt added in v0.0.2

func (o *Token) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*Token) GetCreatedAtOk added in v0.0.2

func (o *Token) GetCreatedAtOk() (*string, bool)

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

func (*Token) GetId added in v0.0.2

func (o *Token) GetId() string

GetId returns the Id field value

func (*Token) GetIdOk added in v0.0.2

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

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

func (*Token) GetLast4 added in v0.0.2

func (o *Token) GetLast4() string

GetLast4 returns the Last4 field value if set, zero value otherwise.

func (*Token) GetLast4Ok added in v0.0.2

func (o *Token) GetLast4Ok() (*string, bool)

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

func (*Token) GetStatus added in v0.0.2

func (o *Token) GetStatus() string

GetStatus returns the Status field value

func (*Token) GetStatusOk added in v0.0.2

func (o *Token) GetStatusOk() (*string, bool)

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

func (*Token) GetUpdatedAt added in v0.0.2

func (o *Token) GetUpdatedAt() string

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

func (*Token) GetUpdatedAtOk added in v0.0.2

func (o *Token) GetUpdatedAtOk() (*string, 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 (*Token) GetUserId added in v0.0.2

func (o *Token) GetUserId() string

GetUserId returns the UserId field value

func (*Token) GetUserIdOk added in v0.0.2

func (o *Token) GetUserIdOk() (*string, bool)

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

func (*Token) GetVersionId added in v0.0.2

func (o *Token) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*Token) GetVersionIdOk added in v0.0.2

func (o *Token) GetVersionIdOk() (*int32, bool)

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

func (*Token) HasLast4 added in v0.0.2

func (o *Token) HasLast4() bool

HasLast4 returns a boolean if a field has been set.

func (*Token) HasUpdatedAt added in v0.0.2

func (o *Token) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (Token) MarshalJSON added in v0.0.2

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

func (*Token) SetCreatedAt added in v0.0.2

func (o *Token) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*Token) SetId added in v0.0.2

func (o *Token) SetId(v string)

SetId sets field value

func (*Token) SetLast4 added in v0.0.2

func (o *Token) SetLast4(v string)

SetLast4 gets a reference to the given string and assigns it to the Last4 field.

func (*Token) SetStatus added in v0.0.2

func (o *Token) SetStatus(v string)

SetStatus sets field value

func (*Token) SetUpdatedAt added in v0.0.2

func (o *Token) SetUpdatedAt(v string)

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

func (*Token) SetUserId added in v0.0.2

func (o *Token) SetUserId(v string)

SetUserId sets field value

func (*Token) SetVersionId added in v0.0.2

func (o *Token) SetVersionId(v int32)

SetVersionId sets field value

type UpdateConnectionRequest added in v0.0.2

type UpdateConnectionRequest struct {
	Config *map[string]interface{} `json:"config,omitempty"`
	Handle *string                 `json:"handle,omitempty"`
}

UpdateConnectionRequest struct for UpdateConnectionRequest

func NewUpdateConnectionRequest added in v0.0.2

func NewUpdateConnectionRequest() *UpdateConnectionRequest

NewUpdateConnectionRequest instantiates a new UpdateConnectionRequest 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 NewUpdateConnectionRequestWithDefaults added in v0.0.2

func NewUpdateConnectionRequestWithDefaults() *UpdateConnectionRequest

NewUpdateConnectionRequestWithDefaults instantiates a new UpdateConnectionRequest 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 (*UpdateConnectionRequest) GetConfig added in v0.0.2

func (o *UpdateConnectionRequest) GetConfig() map[string]interface{}

GetConfig returns the Config field value if set, zero value otherwise.

func (*UpdateConnectionRequest) GetConfigOk added in v0.0.2

func (o *UpdateConnectionRequest) GetConfigOk() (*map[string]interface{}, bool)

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

func (*UpdateConnectionRequest) GetHandle added in v0.0.2

func (o *UpdateConnectionRequest) GetHandle() string

GetHandle returns the Handle field value if set, zero value otherwise.

func (*UpdateConnectionRequest) GetHandleOk added in v0.0.2

func (o *UpdateConnectionRequest) GetHandleOk() (*string, bool)

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

func (*UpdateConnectionRequest) HasConfig added in v0.0.2

func (o *UpdateConnectionRequest) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*UpdateConnectionRequest) HasHandle added in v0.0.2

func (o *UpdateConnectionRequest) HasHandle() bool

HasHandle returns a boolean if a field has been set.

func (UpdateConnectionRequest) MarshalJSON added in v0.0.2

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

func (*UpdateConnectionRequest) SetConfig added in v0.0.2

func (o *UpdateConnectionRequest) SetConfig(v map[string]interface{})

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

func (*UpdateConnectionRequest) SetHandle added in v0.0.2

func (o *UpdateConnectionRequest) SetHandle(v string)

SetHandle gets a reference to the given string and assigns it to the Handle field.

type UpdateOrgRequest added in v0.0.2

type UpdateOrgRequest struct {
	DisplayName      *string   `json:"display_name,omitempty"`
	Handle           *string   `json:"handle,omitempty"`
	TokenMinIssuedAt *JSONTime `json:"token_min_issued_at,omitempty"`
	Url              *string   `json:"url,omitempty"`
}

UpdateOrgRequest struct for UpdateOrgRequest

func NewUpdateOrgRequest added in v0.0.2

func NewUpdateOrgRequest() *UpdateOrgRequest

NewUpdateOrgRequest instantiates a new UpdateOrgRequest 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 NewUpdateOrgRequestWithDefaults added in v0.0.2

func NewUpdateOrgRequestWithDefaults() *UpdateOrgRequest

NewUpdateOrgRequestWithDefaults instantiates a new UpdateOrgRequest 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 (*UpdateOrgRequest) GetDisplayName added in v0.0.2

func (o *UpdateOrgRequest) GetDisplayName() string

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

func (*UpdateOrgRequest) GetDisplayNameOk added in v0.0.2

func (o *UpdateOrgRequest) 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 (*UpdateOrgRequest) GetHandle added in v0.0.2

func (o *UpdateOrgRequest) GetHandle() string

GetHandle returns the Handle field value if set, zero value otherwise.

func (*UpdateOrgRequest) GetHandleOk added in v0.0.2

func (o *UpdateOrgRequest) GetHandleOk() (*string, bool)

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

func (*UpdateOrgRequest) GetTokenMinIssuedAt added in v0.6.0

func (o *UpdateOrgRequest) GetTokenMinIssuedAt() JSONTime

GetTokenMinIssuedAt returns the TokenMinIssuedAt field value if set, zero value otherwise.

func (*UpdateOrgRequest) GetTokenMinIssuedAtOk added in v0.6.0

func (o *UpdateOrgRequest) GetTokenMinIssuedAtOk() (*JSONTime, bool)

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

func (*UpdateOrgRequest) GetUrl added in v0.0.2

func (o *UpdateOrgRequest) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*UpdateOrgRequest) GetUrlOk added in v0.0.2

func (o *UpdateOrgRequest) 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 (*UpdateOrgRequest) HasDisplayName added in v0.0.2

func (o *UpdateOrgRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*UpdateOrgRequest) HasHandle added in v0.0.2

func (o *UpdateOrgRequest) HasHandle() bool

HasHandle returns a boolean if a field has been set.

func (*UpdateOrgRequest) HasTokenMinIssuedAt added in v0.6.0

func (o *UpdateOrgRequest) HasTokenMinIssuedAt() bool

HasTokenMinIssuedAt returns a boolean if a field has been set.

func (*UpdateOrgRequest) HasUrl added in v0.0.2

func (o *UpdateOrgRequest) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (UpdateOrgRequest) MarshalJSON added in v0.0.2

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

func (*UpdateOrgRequest) SetDisplayName added in v0.0.2

func (o *UpdateOrgRequest) SetDisplayName(v string)

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

func (*UpdateOrgRequest) SetHandle added in v0.0.2

func (o *UpdateOrgRequest) SetHandle(v string)

SetHandle gets a reference to the given string and assigns it to the Handle field.

func (*UpdateOrgRequest) SetTokenMinIssuedAt added in v0.6.0

func (o *UpdateOrgRequest) SetTokenMinIssuedAt(v JSONTime)

SetTokenMinIssuedAt gets a reference to the given JSONTime and assigns it to the TokenMinIssuedAt field.

func (*UpdateOrgRequest) SetUrl added in v0.0.2

func (o *UpdateOrgRequest) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type UpdateOrgUserRequest added in v0.0.2

type UpdateOrgUserRequest struct {
	Role string `json:"role"`
}

UpdateOrgUserRequest struct for UpdateOrgUserRequest

func NewUpdateOrgUserRequest added in v0.0.2

func NewUpdateOrgUserRequest(role string) *UpdateOrgUserRequest

NewUpdateOrgUserRequest instantiates a new UpdateOrgUserRequest 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 NewUpdateOrgUserRequestWithDefaults added in v0.0.2

func NewUpdateOrgUserRequestWithDefaults() *UpdateOrgUserRequest

NewUpdateOrgUserRequestWithDefaults instantiates a new UpdateOrgUserRequest 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 (*UpdateOrgUserRequest) GetRole added in v0.0.2

func (o *UpdateOrgUserRequest) GetRole() string

GetRole returns the Role field value

func (*UpdateOrgUserRequest) GetRoleOk added in v0.0.2

func (o *UpdateOrgUserRequest) GetRoleOk() (*string, bool)

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

func (UpdateOrgUserRequest) MarshalJSON added in v0.0.2

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

func (*UpdateOrgUserRequest) SetRole added in v0.0.2

func (o *UpdateOrgUserRequest) SetRole(v string)

SetRole sets field value

type UpdateOrgWorkspaceUserRequest added in v0.1.0

type UpdateOrgWorkspaceUserRequest struct {
	Role string `json:"role"`
}

UpdateOrgWorkspaceUserRequest struct for UpdateOrgWorkspaceUserRequest

func NewUpdateOrgWorkspaceUserRequest added in v0.1.0

func NewUpdateOrgWorkspaceUserRequest(role string) *UpdateOrgWorkspaceUserRequest

NewUpdateOrgWorkspaceUserRequest instantiates a new UpdateOrgWorkspaceUserRequest 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 NewUpdateOrgWorkspaceUserRequestWithDefaults added in v0.1.0

func NewUpdateOrgWorkspaceUserRequestWithDefaults() *UpdateOrgWorkspaceUserRequest

NewUpdateOrgWorkspaceUserRequestWithDefaults instantiates a new UpdateOrgWorkspaceUserRequest 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 (*UpdateOrgWorkspaceUserRequest) GetRole added in v0.1.0

GetRole returns the Role field value

func (*UpdateOrgWorkspaceUserRequest) GetRoleOk added in v0.1.0

func (o *UpdateOrgWorkspaceUserRequest) GetRoleOk() (*string, bool)

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

func (UpdateOrgWorkspaceUserRequest) MarshalJSON added in v0.1.0

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

func (*UpdateOrgWorkspaceUserRequest) SetRole added in v0.1.0

func (o *UpdateOrgWorkspaceUserRequest) SetRole(v string)

SetRole sets field value

type UpdatePipelineRequest added in v0.5.0

type UpdatePipelineRequest struct {
	Args interface{} `json:"args,omitempty"`
	// The desired state of the pipeline.
	DesiredState *string            `json:"desired_state,omitempty"`
	Frequency    *PipelineFrequency `json:"frequency,omitempty"`
	Tags         interface{}        `json:"tags,omitempty"`
	// The title of the pipeline.
	Title *string `json:"title,omitempty"`
}

UpdatePipelineRequest struct for UpdatePipelineRequest

func NewUpdatePipelineRequest added in v0.5.0

func NewUpdatePipelineRequest() *UpdatePipelineRequest

NewUpdatePipelineRequest instantiates a new UpdatePipelineRequest 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 NewUpdatePipelineRequestWithDefaults added in v0.5.0

func NewUpdatePipelineRequestWithDefaults() *UpdatePipelineRequest

NewUpdatePipelineRequestWithDefaults instantiates a new UpdatePipelineRequest 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 (*UpdatePipelineRequest) GetArgs added in v0.5.0

func (o *UpdatePipelineRequest) GetArgs() interface{}

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

func (*UpdatePipelineRequest) GetArgsOk added in v0.5.0

func (o *UpdatePipelineRequest) GetArgsOk() (*interface{}, bool)

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

func (*UpdatePipelineRequest) GetDesiredState added in v0.6.0

func (o *UpdatePipelineRequest) GetDesiredState() string

GetDesiredState returns the DesiredState field value if set, zero value otherwise.

func (*UpdatePipelineRequest) GetDesiredStateOk added in v0.6.0

func (o *UpdatePipelineRequest) GetDesiredStateOk() (*string, bool)

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

func (*UpdatePipelineRequest) GetFrequency added in v0.5.0

func (o *UpdatePipelineRequest) GetFrequency() PipelineFrequency

GetFrequency returns the Frequency field value if set, zero value otherwise.

func (*UpdatePipelineRequest) GetFrequencyOk added in v0.5.0

func (o *UpdatePipelineRequest) GetFrequencyOk() (*PipelineFrequency, bool)

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

func (*UpdatePipelineRequest) GetTags added in v0.5.0

func (o *UpdatePipelineRequest) GetTags() interface{}

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

func (*UpdatePipelineRequest) GetTagsOk added in v0.5.0

func (o *UpdatePipelineRequest) GetTagsOk() (*interface{}, bool)

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

func (*UpdatePipelineRequest) GetTitle added in v0.5.0

func (o *UpdatePipelineRequest) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*UpdatePipelineRequest) GetTitleOk added in v0.5.0

func (o *UpdatePipelineRequest) GetTitleOk() (*string, bool)

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

func (*UpdatePipelineRequest) HasArgs added in v0.5.0

func (o *UpdatePipelineRequest) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*UpdatePipelineRequest) HasDesiredState added in v0.6.0

func (o *UpdatePipelineRequest) HasDesiredState() bool

HasDesiredState returns a boolean if a field has been set.

func (*UpdatePipelineRequest) HasFrequency added in v0.5.0

func (o *UpdatePipelineRequest) HasFrequency() bool

HasFrequency returns a boolean if a field has been set.

func (*UpdatePipelineRequest) HasTags added in v0.5.0

func (o *UpdatePipelineRequest) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*UpdatePipelineRequest) HasTitle added in v0.5.0

func (o *UpdatePipelineRequest) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (UpdatePipelineRequest) MarshalJSON added in v0.5.0

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

func (*UpdatePipelineRequest) SetArgs added in v0.5.0

func (o *UpdatePipelineRequest) SetArgs(v interface{})

SetArgs gets a reference to the given interface{} and assigns it to the Args field.

func (*UpdatePipelineRequest) SetDesiredState added in v0.6.0

func (o *UpdatePipelineRequest) SetDesiredState(v string)

SetDesiredState gets a reference to the given string and assigns it to the DesiredState field.

func (*UpdatePipelineRequest) SetFrequency added in v0.5.0

func (o *UpdatePipelineRequest) SetFrequency(v PipelineFrequency)

SetFrequency gets a reference to the given PipelineFrequency and assigns it to the Frequency field.

func (*UpdatePipelineRequest) SetTags added in v0.5.0

func (o *UpdatePipelineRequest) SetTags(v interface{})

SetTags gets a reference to the given interface{} and assigns it to the Tags field.

func (*UpdatePipelineRequest) SetTitle added in v0.5.0

func (o *UpdatePipelineRequest) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

type UpdateTemporaryTokenRequest added in v0.2.0

type UpdateTemporaryTokenRequest struct {
	State string `json:"state"`
}

UpdateTemporaryTokenRequest struct for UpdateTemporaryTokenRequest

func NewUpdateTemporaryTokenRequest added in v0.2.0

func NewUpdateTemporaryTokenRequest(state string) *UpdateTemporaryTokenRequest

NewUpdateTemporaryTokenRequest instantiates a new UpdateTemporaryTokenRequest 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 NewUpdateTemporaryTokenRequestWithDefaults added in v0.2.0

func NewUpdateTemporaryTokenRequestWithDefaults() *UpdateTemporaryTokenRequest

NewUpdateTemporaryTokenRequestWithDefaults instantiates a new UpdateTemporaryTokenRequest 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 (*UpdateTemporaryTokenRequest) GetState added in v0.2.0

func (o *UpdateTemporaryTokenRequest) GetState() string

GetState returns the State field value

func (*UpdateTemporaryTokenRequest) GetStateOk added in v0.2.0

func (o *UpdateTemporaryTokenRequest) GetStateOk() (*string, bool)

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

func (UpdateTemporaryTokenRequest) MarshalJSON added in v0.2.0

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

func (*UpdateTemporaryTokenRequest) SetState added in v0.2.0

func (o *UpdateTemporaryTokenRequest) SetState(v string)

SetState sets field value

type UpdateTokenRequest added in v0.0.2

type UpdateTokenRequest struct {
	Status string `json:"status"`
}

UpdateTokenRequest struct for UpdateTokenRequest

func NewUpdateTokenRequest added in v0.0.2

func NewUpdateTokenRequest(status string) *UpdateTokenRequest

NewUpdateTokenRequest instantiates a new UpdateTokenRequest 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 NewUpdateTokenRequestWithDefaults added in v0.0.2

func NewUpdateTokenRequestWithDefaults() *UpdateTokenRequest

NewUpdateTokenRequestWithDefaults instantiates a new UpdateTokenRequest 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 (*UpdateTokenRequest) GetStatus added in v0.0.2

func (o *UpdateTokenRequest) GetStatus() string

GetStatus returns the Status field value

func (*UpdateTokenRequest) GetStatusOk added in v0.0.2

func (o *UpdateTokenRequest) GetStatusOk() (*string, bool)

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

func (UpdateTokenRequest) MarshalJSON added in v0.0.2

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

func (*UpdateTokenRequest) SetStatus added in v0.0.2

func (o *UpdateTokenRequest) SetStatus(v string)

SetStatus sets field value

type UpdateUserPreferencesRequest added in v0.2.0

type UpdateUserPreferencesRequest struct {
	CommunicationCommunityUpdates *string `json:"communication_community_updates,omitempty"`
	CommunicationProductUpdates   *string `json:"communication_product_updates,omitempty"`
	CommunicationTipsAndTricks    *string `json:"communication_tips_and_tricks,omitempty"`
}

UpdateUserPreferencesRequest struct for UpdateUserPreferencesRequest

func NewUpdateUserPreferencesRequest added in v0.2.0

func NewUpdateUserPreferencesRequest() *UpdateUserPreferencesRequest

NewUpdateUserPreferencesRequest instantiates a new UpdateUserPreferencesRequest 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 NewUpdateUserPreferencesRequestWithDefaults added in v0.2.0

func NewUpdateUserPreferencesRequestWithDefaults() *UpdateUserPreferencesRequest

NewUpdateUserPreferencesRequestWithDefaults instantiates a new UpdateUserPreferencesRequest 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 (*UpdateUserPreferencesRequest) GetCommunicationCommunityUpdates added in v0.2.0

func (o *UpdateUserPreferencesRequest) GetCommunicationCommunityUpdates() string

GetCommunicationCommunityUpdates returns the CommunicationCommunityUpdates field value if set, zero value otherwise.

func (*UpdateUserPreferencesRequest) GetCommunicationCommunityUpdatesOk added in v0.2.0

func (o *UpdateUserPreferencesRequest) GetCommunicationCommunityUpdatesOk() (*string, bool)

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

func (*UpdateUserPreferencesRequest) GetCommunicationProductUpdates added in v0.2.0

func (o *UpdateUserPreferencesRequest) GetCommunicationProductUpdates() string

GetCommunicationProductUpdates returns the CommunicationProductUpdates field value if set, zero value otherwise.

func (*UpdateUserPreferencesRequest) GetCommunicationProductUpdatesOk added in v0.2.0

func (o *UpdateUserPreferencesRequest) GetCommunicationProductUpdatesOk() (*string, bool)

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

func (*UpdateUserPreferencesRequest) GetCommunicationTipsAndTricks added in v0.2.0

func (o *UpdateUserPreferencesRequest) GetCommunicationTipsAndTricks() string

GetCommunicationTipsAndTricks returns the CommunicationTipsAndTricks field value if set, zero value otherwise.

func (*UpdateUserPreferencesRequest) GetCommunicationTipsAndTricksOk added in v0.2.0

func (o *UpdateUserPreferencesRequest) GetCommunicationTipsAndTricksOk() (*string, bool)

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

func (*UpdateUserPreferencesRequest) HasCommunicationCommunityUpdates added in v0.2.0

func (o *UpdateUserPreferencesRequest) HasCommunicationCommunityUpdates() bool

HasCommunicationCommunityUpdates returns a boolean if a field has been set.

func (*UpdateUserPreferencesRequest) HasCommunicationProductUpdates added in v0.2.0

func (o *UpdateUserPreferencesRequest) HasCommunicationProductUpdates() bool

HasCommunicationProductUpdates returns a boolean if a field has been set.

func (*UpdateUserPreferencesRequest) HasCommunicationTipsAndTricks added in v0.2.0

func (o *UpdateUserPreferencesRequest) HasCommunicationTipsAndTricks() bool

HasCommunicationTipsAndTricks returns a boolean if a field has been set.

func (UpdateUserPreferencesRequest) MarshalJSON added in v0.2.0

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

func (*UpdateUserPreferencesRequest) SetCommunicationCommunityUpdates added in v0.2.0

func (o *UpdateUserPreferencesRequest) SetCommunicationCommunityUpdates(v string)

SetCommunicationCommunityUpdates gets a reference to the given string and assigns it to the CommunicationCommunityUpdates field.

func (*UpdateUserPreferencesRequest) SetCommunicationProductUpdates added in v0.2.0

func (o *UpdateUserPreferencesRequest) SetCommunicationProductUpdates(v string)

SetCommunicationProductUpdates gets a reference to the given string and assigns it to the CommunicationProductUpdates field.

func (*UpdateUserPreferencesRequest) SetCommunicationTipsAndTricks added in v0.2.0

func (o *UpdateUserPreferencesRequest) SetCommunicationTipsAndTricks(v string)

SetCommunicationTipsAndTricks gets a reference to the given string and assigns it to the CommunicationTipsAndTricks field.

type UpdateUserRequest added in v0.0.2

type UpdateUserRequest struct {
	DisplayName      *string   `json:"display_name,omitempty"`
	Handle           *string   `json:"handle,omitempty"`
	TokenMinIssuedAt *JSONTime `json:"token_min_issued_at,omitempty"`
	Url              *string   `json:"url,omitempty"`
}

UpdateUserRequest struct for UpdateUserRequest

func NewUpdateUserRequest added in v0.0.2

func NewUpdateUserRequest() *UpdateUserRequest

NewUpdateUserRequest instantiates a new UpdateUserRequest 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 NewUpdateUserRequestWithDefaults added in v0.0.2

func NewUpdateUserRequestWithDefaults() *UpdateUserRequest

NewUpdateUserRequestWithDefaults instantiates a new UpdateUserRequest 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 (*UpdateUserRequest) GetDisplayName added in v0.0.2

func (o *UpdateUserRequest) GetDisplayName() string

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

func (*UpdateUserRequest) GetDisplayNameOk added in v0.0.2

func (o *UpdateUserRequest) 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 (*UpdateUserRequest) GetHandle added in v0.0.2

func (o *UpdateUserRequest) GetHandle() string

GetHandle returns the Handle field value if set, zero value otherwise.

func (*UpdateUserRequest) GetHandleOk added in v0.0.2

func (o *UpdateUserRequest) GetHandleOk() (*string, bool)

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

func (*UpdateUserRequest) GetTokenMinIssuedAt added in v0.6.0

func (o *UpdateUserRequest) GetTokenMinIssuedAt() JSONTime

GetTokenMinIssuedAt returns the TokenMinIssuedAt field value if set, zero value otherwise.

func (*UpdateUserRequest) GetTokenMinIssuedAtOk added in v0.6.0

func (o *UpdateUserRequest) GetTokenMinIssuedAtOk() (*JSONTime, bool)

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

func (*UpdateUserRequest) GetUrl added in v0.0.2

func (o *UpdateUserRequest) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*UpdateUserRequest) GetUrlOk added in v0.0.2

func (o *UpdateUserRequest) 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 (*UpdateUserRequest) HasDisplayName added in v0.0.2

func (o *UpdateUserRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*UpdateUserRequest) HasHandle added in v0.0.2

func (o *UpdateUserRequest) HasHandle() bool

HasHandle returns a boolean if a field has been set.

func (*UpdateUserRequest) HasTokenMinIssuedAt added in v0.6.0

func (o *UpdateUserRequest) HasTokenMinIssuedAt() bool

HasTokenMinIssuedAt returns a boolean if a field has been set.

func (*UpdateUserRequest) HasUrl added in v0.0.2

func (o *UpdateUserRequest) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (UpdateUserRequest) MarshalJSON added in v0.0.2

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

func (*UpdateUserRequest) SetDisplayName added in v0.0.2

func (o *UpdateUserRequest) SetDisplayName(v string)

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

func (*UpdateUserRequest) SetHandle added in v0.0.2

func (o *UpdateUserRequest) SetHandle(v string)

SetHandle gets a reference to the given string and assigns it to the Handle field.

func (*UpdateUserRequest) SetTokenMinIssuedAt added in v0.6.0

func (o *UpdateUserRequest) SetTokenMinIssuedAt(v JSONTime)

SetTokenMinIssuedAt gets a reference to the given JSONTime and assigns it to the TokenMinIssuedAt field.

func (*UpdateUserRequest) SetUrl added in v0.0.2

func (o *UpdateUserRequest) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type UpdateWorkspaceAggregatorRequest added in v0.6.0

type UpdateWorkspaceAggregatorRequest struct {
	// The connections that are a part of the aggregator.
	Connections *[]string `json:"connections,omitempty"`
	// The handle of the aggregator.
	Handle *string `json:"handle,omitempty"`
}

UpdateWorkspaceAggregatorRequest struct for UpdateWorkspaceAggregatorRequest

func NewUpdateWorkspaceAggregatorRequest added in v0.6.0

func NewUpdateWorkspaceAggregatorRequest() *UpdateWorkspaceAggregatorRequest

NewUpdateWorkspaceAggregatorRequest instantiates a new UpdateWorkspaceAggregatorRequest 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 NewUpdateWorkspaceAggregatorRequestWithDefaults added in v0.6.0

func NewUpdateWorkspaceAggregatorRequestWithDefaults() *UpdateWorkspaceAggregatorRequest

NewUpdateWorkspaceAggregatorRequestWithDefaults instantiates a new UpdateWorkspaceAggregatorRequest 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 (*UpdateWorkspaceAggregatorRequest) GetConnections added in v0.6.0

func (o *UpdateWorkspaceAggregatorRequest) GetConnections() []string

GetConnections returns the Connections field value if set, zero value otherwise.

func (*UpdateWorkspaceAggregatorRequest) GetConnectionsOk added in v0.6.0

func (o *UpdateWorkspaceAggregatorRequest) GetConnectionsOk() (*[]string, bool)

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

func (*UpdateWorkspaceAggregatorRequest) GetHandle added in v0.6.0

GetHandle returns the Handle field value if set, zero value otherwise.

func (*UpdateWorkspaceAggregatorRequest) GetHandleOk added in v0.6.0

func (o *UpdateWorkspaceAggregatorRequest) GetHandleOk() (*string, bool)

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

func (*UpdateWorkspaceAggregatorRequest) HasConnections added in v0.6.0

func (o *UpdateWorkspaceAggregatorRequest) HasConnections() bool

HasConnections returns a boolean if a field has been set.

func (*UpdateWorkspaceAggregatorRequest) HasHandle added in v0.6.0

func (o *UpdateWorkspaceAggregatorRequest) HasHandle() bool

HasHandle returns a boolean if a field has been set.

func (UpdateWorkspaceAggregatorRequest) MarshalJSON added in v0.6.0

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

func (*UpdateWorkspaceAggregatorRequest) SetConnections added in v0.6.0

func (o *UpdateWorkspaceAggregatorRequest) SetConnections(v []string)

SetConnections gets a reference to the given []string and assigns it to the Connections field.

func (*UpdateWorkspaceAggregatorRequest) SetHandle added in v0.6.0

func (o *UpdateWorkspaceAggregatorRequest) SetHandle(v string)

SetHandle gets a reference to the given string and assigns it to the Handle field.

type UpdateWorkspaceModRequest added in v0.0.4

type UpdateWorkspaceModRequest struct {
	Constraint string `json:"constraint"`
}

UpdateWorkspaceModRequest struct for UpdateWorkspaceModRequest

func NewUpdateWorkspaceModRequest added in v0.0.4

func NewUpdateWorkspaceModRequest(constraint string) *UpdateWorkspaceModRequest

NewUpdateWorkspaceModRequest instantiates a new UpdateWorkspaceModRequest 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 NewUpdateWorkspaceModRequestWithDefaults added in v0.0.4

func NewUpdateWorkspaceModRequestWithDefaults() *UpdateWorkspaceModRequest

NewUpdateWorkspaceModRequestWithDefaults instantiates a new UpdateWorkspaceModRequest 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 (*UpdateWorkspaceModRequest) GetConstraint added in v0.0.4

func (o *UpdateWorkspaceModRequest) GetConstraint() string

GetConstraint returns the Constraint field value

func (*UpdateWorkspaceModRequest) GetConstraintOk added in v0.0.4

func (o *UpdateWorkspaceModRequest) GetConstraintOk() (*string, bool)

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

func (UpdateWorkspaceModRequest) MarshalJSON added in v0.0.4

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

func (*UpdateWorkspaceModRequest) SetConstraint added in v0.0.4

func (o *UpdateWorkspaceModRequest) SetConstraint(v string)

SetConstraint sets field value

type UpdateWorkspaceModVariableSettingRequest added in v0.0.4

type UpdateWorkspaceModVariableSettingRequest struct {
	Setting interface{} `json:"setting"`
}

UpdateWorkspaceModVariableSettingRequest struct for UpdateWorkspaceModVariableSettingRequest

func NewUpdateWorkspaceModVariableSettingRequest added in v0.0.4

func NewUpdateWorkspaceModVariableSettingRequest(setting interface{}) *UpdateWorkspaceModVariableSettingRequest

NewUpdateWorkspaceModVariableSettingRequest instantiates a new UpdateWorkspaceModVariableSettingRequest 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 NewUpdateWorkspaceModVariableSettingRequestWithDefaults added in v0.0.4

func NewUpdateWorkspaceModVariableSettingRequestWithDefaults() *UpdateWorkspaceModVariableSettingRequest

NewUpdateWorkspaceModVariableSettingRequestWithDefaults instantiates a new UpdateWorkspaceModVariableSettingRequest 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 (*UpdateWorkspaceModVariableSettingRequest) GetSetting added in v0.0.4

func (o *UpdateWorkspaceModVariableSettingRequest) GetSetting() interface{}

GetSetting returns the Setting field value If the value is explicit nil, the zero value for interface{} will be returned

func (*UpdateWorkspaceModVariableSettingRequest) GetSettingOk added in v0.0.4

func (o *UpdateWorkspaceModVariableSettingRequest) GetSettingOk() (*interface{}, bool)

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

func (UpdateWorkspaceModVariableSettingRequest) MarshalJSON added in v0.0.4

func (*UpdateWorkspaceModVariableSettingRequest) SetSetting added in v0.0.4

func (o *UpdateWorkspaceModVariableSettingRequest) SetSetting(v interface{})

SetSetting sets field value

type UpdateWorkspaceRequest added in v0.0.2

type UpdateWorkspaceRequest struct {
	// paused is not yet supported for Workspace
	DesiredState *string `json:"desired_state,omitempty"`
	Handle       *string `json:"handle,omitempty"`
}

UpdateWorkspaceRequest struct for UpdateWorkspaceRequest

func NewUpdateWorkspaceRequest added in v0.0.2

func NewUpdateWorkspaceRequest() *UpdateWorkspaceRequest

NewUpdateWorkspaceRequest instantiates a new UpdateWorkspaceRequest 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 NewUpdateWorkspaceRequestWithDefaults added in v0.0.2

func NewUpdateWorkspaceRequestWithDefaults() *UpdateWorkspaceRequest

NewUpdateWorkspaceRequestWithDefaults instantiates a new UpdateWorkspaceRequest 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 (*UpdateWorkspaceRequest) GetDesiredState added in v0.6.0

func (o *UpdateWorkspaceRequest) GetDesiredState() string

GetDesiredState returns the DesiredState field value if set, zero value otherwise.

func (*UpdateWorkspaceRequest) GetDesiredStateOk added in v0.6.0

func (o *UpdateWorkspaceRequest) GetDesiredStateOk() (*string, bool)

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

func (*UpdateWorkspaceRequest) GetHandle added in v0.0.2

func (o *UpdateWorkspaceRequest) GetHandle() string

GetHandle returns the Handle field value if set, zero value otherwise.

func (*UpdateWorkspaceRequest) GetHandleOk added in v0.0.2

func (o *UpdateWorkspaceRequest) GetHandleOk() (*string, bool)

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

func (*UpdateWorkspaceRequest) HasDesiredState added in v0.6.0

func (o *UpdateWorkspaceRequest) HasDesiredState() bool

HasDesiredState returns a boolean if a field has been set.

func (*UpdateWorkspaceRequest) HasHandle added in v0.0.2

func (o *UpdateWorkspaceRequest) HasHandle() bool

HasHandle returns a boolean if a field has been set.

func (UpdateWorkspaceRequest) MarshalJSON added in v0.0.2

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

func (*UpdateWorkspaceRequest) SetDesiredState added in v0.6.0

func (o *UpdateWorkspaceRequest) SetDesiredState(v string)

SetDesiredState gets a reference to the given string and assigns it to the DesiredState field.

func (*UpdateWorkspaceRequest) SetHandle added in v0.0.2

func (o *UpdateWorkspaceRequest) SetHandle(v string)

SetHandle gets a reference to the given string and assigns it to the Handle field.

type UpdateWorkspaceSnapshotRequest added in v0.1.3

type UpdateWorkspaceSnapshotRequest struct {
	Tags interface{} `json:"tags,omitempty"`
	// The updated title for the snapshot.
	Title *string `json:"title,omitempty"`
	// The updated visibility for the snapshot.
	Visibility *string `json:"visibility,omitempty"`
}

UpdateWorkspaceSnapshotRequest struct for UpdateWorkspaceSnapshotRequest

func NewUpdateWorkspaceSnapshotRequest added in v0.1.3

func NewUpdateWorkspaceSnapshotRequest() *UpdateWorkspaceSnapshotRequest

NewUpdateWorkspaceSnapshotRequest instantiates a new UpdateWorkspaceSnapshotRequest 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 NewUpdateWorkspaceSnapshotRequestWithDefaults added in v0.1.3

func NewUpdateWorkspaceSnapshotRequestWithDefaults() *UpdateWorkspaceSnapshotRequest

NewUpdateWorkspaceSnapshotRequestWithDefaults instantiates a new UpdateWorkspaceSnapshotRequest 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 (*UpdateWorkspaceSnapshotRequest) GetTags added in v0.1.3

func (o *UpdateWorkspaceSnapshotRequest) GetTags() interface{}

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

func (*UpdateWorkspaceSnapshotRequest) GetTagsOk added in v0.1.3

func (o *UpdateWorkspaceSnapshotRequest) GetTagsOk() (*interface{}, bool)

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

func (*UpdateWorkspaceSnapshotRequest) GetTitle added in v0.2.0

func (o *UpdateWorkspaceSnapshotRequest) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*UpdateWorkspaceSnapshotRequest) GetTitleOk added in v0.2.0

func (o *UpdateWorkspaceSnapshotRequest) GetTitleOk() (*string, bool)

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

func (*UpdateWorkspaceSnapshotRequest) GetVisibility added in v0.1.3

func (o *UpdateWorkspaceSnapshotRequest) GetVisibility() string

GetVisibility returns the Visibility field value if set, zero value otherwise.

func (*UpdateWorkspaceSnapshotRequest) GetVisibilityOk added in v0.1.3

func (o *UpdateWorkspaceSnapshotRequest) GetVisibilityOk() (*string, bool)

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

func (*UpdateWorkspaceSnapshotRequest) HasTags added in v0.1.3

func (o *UpdateWorkspaceSnapshotRequest) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*UpdateWorkspaceSnapshotRequest) HasTitle added in v0.2.0

func (o *UpdateWorkspaceSnapshotRequest) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*UpdateWorkspaceSnapshotRequest) HasVisibility added in v0.1.3

func (o *UpdateWorkspaceSnapshotRequest) HasVisibility() bool

HasVisibility returns a boolean if a field has been set.

func (UpdateWorkspaceSnapshotRequest) MarshalJSON added in v0.1.3

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

func (*UpdateWorkspaceSnapshotRequest) SetTags added in v0.1.3

func (o *UpdateWorkspaceSnapshotRequest) SetTags(v interface{})

SetTags gets a reference to the given interface{} and assigns it to the Tags field.

func (*UpdateWorkspaceSnapshotRequest) SetTitle added in v0.2.0

func (o *UpdateWorkspaceSnapshotRequest) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*UpdateWorkspaceSnapshotRequest) SetVisibility added in v0.1.3

func (o *UpdateWorkspaceSnapshotRequest) SetVisibility(v string)

SetVisibility gets a reference to the given string and assigns it to the Visibility field.

type User added in v0.0.2

type User struct {
	AvatarUrl *string `json:"avatar_url,omitempty"`
	// The user created time.
	CreatedAt   string  `json:"created_at"`
	DisplayName *string `json:"display_name,omitempty"`
	// The handle name of a user.
	Handle string `json:"handle"`
	// The unique identifier of a user.
	Id                string  `json:"id"`
	PreviewAccessMode *string `json:"preview_access_mode,omitempty"`
	// The status of the user i.e accepted or pending.
	Status           string    `json:"status"`
	TokenMinIssuedAt *JSONTime `json:"token_min_issued_at,omitempty"`
	// The user updated time.
	UpdatedAt *string `json:"updated_at,omitempty"`
	Url       *string `json:"url,omitempty"`
	// The current version of a user.
	VersionId int32 `json:"version_id"`
}

User struct for User

func NewUser added in v0.0.2

func NewUser(createdAt string, handle string, id string, status string, versionId int32) *User

NewUser instantiates a new User 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 NewUserWithDefaults added in v0.0.2

func NewUserWithDefaults() *User

NewUserWithDefaults instantiates a new User 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 (*User) GetAvatarUrl added in v0.0.2

func (o *User) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*User) GetAvatarUrlOk added in v0.0.2

func (o *User) 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 (*User) GetCreatedAt added in v0.0.2

func (o *User) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*User) GetCreatedAtOk added in v0.0.2

func (o *User) GetCreatedAtOk() (*string, bool)

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

func (*User) GetDisplayName added in v0.0.2

func (o *User) GetDisplayName() string

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

func (*User) GetDisplayNameOk added in v0.0.2

func (o *User) 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 (*User) GetHandle added in v0.0.2

func (o *User) GetHandle() string

GetHandle returns the Handle field value

func (*User) GetHandleOk added in v0.0.2

func (o *User) GetHandleOk() (*string, bool)

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

func (*User) GetId added in v0.0.2

func (o *User) GetId() string

GetId returns the Id field value

func (*User) GetIdOk added in v0.0.2

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

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

func (*User) GetPreviewAccessMode added in v0.0.2

func (o *User) GetPreviewAccessMode() string

GetPreviewAccessMode returns the PreviewAccessMode field value if set, zero value otherwise.

func (*User) GetPreviewAccessModeOk added in v0.0.2

func (o *User) GetPreviewAccessModeOk() (*string, bool)

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

func (*User) GetStatus added in v0.0.2

func (o *User) GetStatus() string

GetStatus returns the Status field value

func (*User) GetStatusOk added in v0.0.2

func (o *User) GetStatusOk() (*string, bool)

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

func (*User) GetTokenMinIssuedAt added in v0.6.0

func (o *User) GetTokenMinIssuedAt() JSONTime

GetTokenMinIssuedAt returns the TokenMinIssuedAt field value if set, zero value otherwise.

func (*User) GetTokenMinIssuedAtOk added in v0.6.0

func (o *User) GetTokenMinIssuedAtOk() (*JSONTime, bool)

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

func (*User) GetUpdatedAt added in v0.0.2

func (o *User) GetUpdatedAt() string

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

func (*User) GetUpdatedAtOk added in v0.0.2

func (o *User) GetUpdatedAtOk() (*string, 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 (*User) GetUrl added in v0.0.2

func (o *User) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*User) GetUrlOk added in v0.0.2

func (o *User) 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 (*User) GetVersionId added in v0.0.2

func (o *User) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*User) GetVersionIdOk added in v0.0.2

func (o *User) GetVersionIdOk() (*int32, bool)

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

func (*User) HasAvatarUrl added in v0.0.2

func (o *User) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*User) HasDisplayName added in v0.0.2

func (o *User) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*User) HasPreviewAccessMode added in v0.0.2

func (o *User) HasPreviewAccessMode() bool

HasPreviewAccessMode returns a boolean if a field has been set.

func (*User) HasTokenMinIssuedAt added in v0.6.0

func (o *User) HasTokenMinIssuedAt() bool

HasTokenMinIssuedAt returns a boolean if a field has been set.

func (*User) HasUpdatedAt added in v0.0.2

func (o *User) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*User) HasUrl added in v0.0.2

func (o *User) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (User) MarshalJSON added in v0.0.2

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

func (*User) SetAvatarUrl added in v0.0.2

func (o *User) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*User) SetCreatedAt added in v0.0.2

func (o *User) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*User) SetDisplayName added in v0.0.2

func (o *User) SetDisplayName(v string)

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

func (*User) SetHandle added in v0.0.2

func (o *User) SetHandle(v string)

SetHandle sets field value

func (*User) SetId added in v0.0.2

func (o *User) SetId(v string)

SetId sets field value

func (*User) SetPreviewAccessMode added in v0.0.2

func (o *User) SetPreviewAccessMode(v string)

SetPreviewAccessMode gets a reference to the given string and assigns it to the PreviewAccessMode field.

func (*User) SetStatus added in v0.0.2

func (o *User) SetStatus(v string)

SetStatus sets field value

func (*User) SetTokenMinIssuedAt added in v0.6.0

func (o *User) SetTokenMinIssuedAt(v JSONTime)

SetTokenMinIssuedAt gets a reference to the given JSONTime and assigns it to the TokenMinIssuedAt field.

func (*User) SetUpdatedAt added in v0.0.2

func (o *User) SetUpdatedAt(v string)

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

func (*User) SetUrl added in v0.0.2

func (o *User) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*User) SetVersionId added in v0.0.2

func (o *User) SetVersionId(v int32)

SetVersionId sets field value

type UserConnectionsApiCreateDeprecatedRequest added in v0.6.0

type UserConnectionsApiCreateDeprecatedRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiCreateDeprecatedRequest) Execute added in v0.6.0

func (UserConnectionsApiCreateDeprecatedRequest) Mode added in v0.6.0

The mode of this request

func (UserConnectionsApiCreateDeprecatedRequest) Request added in v0.6.0

The request body for the connection to be created.

type UserConnectionsApiCreateRequest

type UserConnectionsApiCreateRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiCreateRequest) Execute

func (UserConnectionsApiCreateRequest) Mode added in v0.6.0

The mode of this request

func (UserConnectionsApiCreateRequest) Request

The request body for the connection to be created.

type UserConnectionsApiDeleteDeprecatedRequest added in v0.6.0

type UserConnectionsApiDeleteDeprecatedRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiDeleteDeprecatedRequest) Execute added in v0.6.0

type UserConnectionsApiDeleteRequest

type UserConnectionsApiDeleteRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiDeleteRequest) Execute

type UserConnectionsApiGetDeprecatedRequest added in v0.6.0

type UserConnectionsApiGetDeprecatedRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiGetDeprecatedRequest) Execute added in v0.6.0

type UserConnectionsApiGetRequest

type UserConnectionsApiGetRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiGetRequest) Execute

type UserConnectionsApiListDeprecatedRequest added in v0.6.0

type UserConnectionsApiListDeprecatedRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiListDeprecatedRequest) Execute added in v0.6.0

func (UserConnectionsApiListDeprecatedRequest) Limit added in v0.6.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserConnectionsApiListDeprecatedRequest) NextToken added in v0.6.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserConnectionsApiListRequest

type UserConnectionsApiListRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiListRequest) Execute

func (UserConnectionsApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserConnectionsApiListRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserConnectionsApiListWorkspacesDeprecatedRequest added in v0.6.0

type UserConnectionsApiListWorkspacesDeprecatedRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiListWorkspacesDeprecatedRequest) Execute added in v0.6.0

func (UserConnectionsApiListWorkspacesDeprecatedRequest) Limit added in v0.6.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserConnectionsApiListWorkspacesDeprecatedRequest) NextToken added in v0.6.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserConnectionsApiListWorkspacesRequest added in v0.6.0

type UserConnectionsApiListWorkspacesRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiListWorkspacesRequest) Execute added in v0.6.0

func (UserConnectionsApiListWorkspacesRequest) Limit added in v0.6.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserConnectionsApiListWorkspacesRequest) NextToken added in v0.6.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserConnectionsApiTestDeprecatedRequest added in v0.6.0

type UserConnectionsApiTestDeprecatedRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiTestDeprecatedRequest) Execute added in v0.6.0

func (UserConnectionsApiTestDeprecatedRequest) Request added in v0.6.0

The request body for the connection to be tested.

type UserConnectionsApiTestRequest

type UserConnectionsApiTestRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiTestRequest) Execute

func (UserConnectionsApiTestRequest) Request added in v0.6.0

The request body for the connection to be tested.

type UserConnectionsApiUpdateDeprecatedRequest added in v0.6.0

type UserConnectionsApiUpdateDeprecatedRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiUpdateDeprecatedRequest) Execute added in v0.6.0

func (UserConnectionsApiUpdateDeprecatedRequest) Mode added in v0.6.0

The mode of this request

func (UserConnectionsApiUpdateDeprecatedRequest) Request added in v0.6.0

The request body for the connection which needs to be updated.

type UserConnectionsApiUpdateRequest

type UserConnectionsApiUpdateRequest struct {
	ApiService *UserConnectionsService
	// contains filtered or unexported fields
}

func (UserConnectionsApiUpdateRequest) Execute

func (UserConnectionsApiUpdateRequest) Mode added in v0.6.0

The mode of this request

func (UserConnectionsApiUpdateRequest) Request

The request body for the connection which needs to be updated.

type UserConnectionsService

type UserConnectionsService service

UserConnectionsService UserConnections service

func (*UserConnectionsService) Create

Create Create user connection

Creates a new connection for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where we want to create the connection.
@return UserConnectionsApiCreateRequest

func (*UserConnectionsService) CreateDeprecated added in v0.6.0

CreateDeprecated Create user connection

Creates a new connection for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where we want to create the connection.
@return UserConnectionsApiCreateDeprecatedRequest

Deprecated

func (*UserConnectionsService) CreateDeprecatedExecute added in v0.6.0

Execute executes the request

@return Connection

Deprecated

func (*UserConnectionsService) CreateExecute

Execute executes the request

@return Connection

func (*UserConnectionsService) Delete

func (a *UserConnectionsService) Delete(ctx _context.Context, userHandle string, connectionHandle string) UserConnectionsApiDeleteRequest

Delete Delete user connection

Deletes a connection belonging to a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the connection exists.
@param connectionHandle The handle of the connection that needs to be deleted.
@return UserConnectionsApiDeleteRequest

func (*UserConnectionsService) DeleteDeprecated added in v0.6.0

func (a *UserConnectionsService) DeleteDeprecated(ctx _context.Context, userHandle string, connHandle string) UserConnectionsApiDeleteDeprecatedRequest

DeleteDeprecated Delete user connection

Delete a connection belonging to a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the connection exist.
@param connHandle The handle of the connection that needs to be deleted.
@return UserConnectionsApiDeleteDeprecatedRequest

Deprecated

func (*UserConnectionsService) DeleteDeprecatedExecute added in v0.6.0

Execute executes the request

@return Connection

Deprecated

func (*UserConnectionsService) DeleteExecute

Execute executes the request

@return Connection

func (*UserConnectionsService) Get

func (a *UserConnectionsService) Get(ctx _context.Context, userHandle string, connectionHandle string) UserConnectionsApiGetRequest

Get Get user connection

Get the details of a connection belonging to a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle for the user where the connection exists.
@param connectionHandle The handle of the connection whose detail needs to be fetched.
@return UserConnectionsApiGetRequest

func (*UserConnectionsService) GetDeprecated added in v0.6.0

func (a *UserConnectionsService) GetDeprecated(ctx _context.Context, userHandle string, connHandle string) UserConnectionsApiGetDeprecatedRequest

GetDeprecated Get user connection

Get the details for a connection belonging to a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle for the user where the connection exist.
@param connHandle The handle of the connection whose detail needs to be fetched.
@return UserConnectionsApiGetDeprecatedRequest

Deprecated

func (*UserConnectionsService) GetDeprecatedExecute added in v0.6.0

Execute executes the request

@return Connection

Deprecated

func (*UserConnectionsService) GetExecute

Execute executes the request

@return Connection

func (*UserConnectionsService) List

List List user connections

List connections for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user for which we want to list connections.
@return UserConnectionsApiListRequest

func (*UserConnectionsService) ListDeprecated added in v0.6.0

ListDeprecated List user connections

List the connection for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user for which we want to list connections.
@return UserConnectionsApiListDeprecatedRequest

Deprecated

func (*UserConnectionsService) ListDeprecatedExecute added in v0.6.0

Execute executes the request

@return ListConnectionsResponse

Deprecated

func (*UserConnectionsService) ListExecute

Execute executes the request

@return ListConnectionsResponse

func (*UserConnectionsService) ListWorkspaces added in v0.6.0

func (a *UserConnectionsService) ListWorkspaces(ctx _context.Context, userHandle string, connectionHandle string) UserConnectionsApiListWorkspacesRequest

ListWorkspaces List user connection workspaces

List the workspaces that a user connection has been added to.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the connection exists.
@param connectionHandle The handle of the connection for which we want to list workspaces.
@return UserConnectionsApiListWorkspacesRequest

func (*UserConnectionsService) ListWorkspacesDeprecated added in v0.6.0

func (a *UserConnectionsService) ListWorkspacesDeprecated(ctx _context.Context, userHandle string, connHandle string) UserConnectionsApiListWorkspacesDeprecatedRequest

ListWorkspacesDeprecated List user connection workspaces

List the workspaces that a user connection has been added to.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the connection exists.
@param connHandle The handle of the connection for which we want to list workspaces.
@return UserConnectionsApiListWorkspacesDeprecatedRequest

Deprecated

func (*UserConnectionsService) ListWorkspacesDeprecatedExecute added in v0.6.0

Execute executes the request

@return ListWorkspaceConnResponse

Deprecated

func (*UserConnectionsService) ListWorkspacesExecute added in v0.6.0

Execute executes the request

@return ListWorkspaceConnectionAssociationsResponse

func (*UserConnectionsService) Test

func (a *UserConnectionsService) Test(ctx _context.Context, userHandle string, connectionHandle string) UserConnectionsApiTestRequest

Test Test user connection

Test the config for a user connection to check for basic connectivity.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the connection exists / intends to be created.
@param connectionHandle The handle of the connection to be tested. For connections that are not yet created, use underscore `_` as the handle, else pass the handle of the existing connection.
@return UserConnectionsApiTestRequest

func (*UserConnectionsService) TestDeprecated added in v0.6.0

func (a *UserConnectionsService) TestDeprecated(ctx _context.Context, userHandle string, connHandle string) UserConnectionsApiTestDeprecatedRequest

TestDeprecated Test user connection

Test the config for a user connection to check for basic connectivity.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the connection exists / intends to be created.
@param connHandle The handle of the connection to be tested. For connections that are not yet created, use underscore `_` as the handle, else pass the handle of the existing connection.
@return UserConnectionsApiTestDeprecatedRequest

Deprecated

func (*UserConnectionsService) TestDeprecatedExecute added in v0.6.0

Execute executes the request

@return ConnectionTestResult

Deprecated

func (*UserConnectionsService) TestExecute

Execute executes the request

@return ConnectionTestResult

func (*UserConnectionsService) Update

func (a *UserConnectionsService) Update(ctx _context.Context, userHandle string, connectionHandle string) UserConnectionsApiUpdateRequest

Update Update user connection

Update the details of a connection belonging to a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the connection exists.
@param connectionHandle The handle of the connection which needs to be updated.
@return UserConnectionsApiUpdateRequest

func (*UserConnectionsService) UpdateDeprecated added in v0.6.0

func (a *UserConnectionsService) UpdateDeprecated(ctx _context.Context, userHandle string, connHandle string) UserConnectionsApiUpdateDeprecatedRequest

UpdateDeprecated Update user connection

Update a connection for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the connection exist.
@param connHandle The handle of the connection which needs to be updated.
@return UserConnectionsApiUpdateDeprecatedRequest

Deprecated

func (*UserConnectionsService) UpdateDeprecatedExecute added in v0.6.0

Execute executes the request

@return Connection

Deprecated

func (*UserConnectionsService) UpdateExecute

Execute executes the request

@return Connection

type UserDatabasePassword added in v0.0.2

type UserDatabasePassword struct {
	Password  string  `json:"$password"`
	CreatedAt string  `json:"created_at"`
	ExpiresAt *string `json:"expires_at,omitempty"`
	Id        string  `json:"id"`
	UserId    *string `json:"user_id,omitempty"`
}

UserDatabasePassword struct for UserDatabasePassword

func NewUserDatabasePassword added in v0.0.2

func NewUserDatabasePassword(password string, createdAt string, id string) *UserDatabasePassword

NewUserDatabasePassword instantiates a new UserDatabasePassword 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 NewUserDatabasePasswordWithDefaults added in v0.0.2

func NewUserDatabasePasswordWithDefaults() *UserDatabasePassword

NewUserDatabasePasswordWithDefaults instantiates a new UserDatabasePassword 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 (*UserDatabasePassword) GetCreatedAt added in v0.0.2

func (o *UserDatabasePassword) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*UserDatabasePassword) GetCreatedAtOk added in v0.0.2

func (o *UserDatabasePassword) GetCreatedAtOk() (*string, bool)

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

func (*UserDatabasePassword) GetExpiresAt added in v0.0.2

func (o *UserDatabasePassword) GetExpiresAt() string

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*UserDatabasePassword) GetExpiresAtOk added in v0.0.2

func (o *UserDatabasePassword) GetExpiresAtOk() (*string, bool)

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

func (*UserDatabasePassword) GetId added in v0.0.2

func (o *UserDatabasePassword) GetId() string

GetId returns the Id field value

func (*UserDatabasePassword) GetIdOk added in v0.0.2

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

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

func (*UserDatabasePassword) GetPassword added in v0.0.2

func (o *UserDatabasePassword) GetPassword() string

GetPassword returns the Password field value

func (*UserDatabasePassword) GetPasswordOk added in v0.0.2

func (o *UserDatabasePassword) GetPasswordOk() (*string, bool)

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

func (*UserDatabasePassword) GetUserId added in v0.0.2

func (o *UserDatabasePassword) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*UserDatabasePassword) GetUserIdOk added in v0.0.2

func (o *UserDatabasePassword) 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 (*UserDatabasePassword) HasExpiresAt added in v0.0.2

func (o *UserDatabasePassword) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*UserDatabasePassword) HasUserId added in v0.0.2

func (o *UserDatabasePassword) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (UserDatabasePassword) MarshalJSON added in v0.0.2

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

func (*UserDatabasePassword) SetCreatedAt added in v0.0.2

func (o *UserDatabasePassword) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*UserDatabasePassword) SetExpiresAt added in v0.0.2

func (o *UserDatabasePassword) SetExpiresAt(v string)

SetExpiresAt gets a reference to the given string and assigns it to the ExpiresAt field.

func (*UserDatabasePassword) SetId added in v0.0.2

func (o *UserDatabasePassword) SetId(v string)

SetId sets field value

func (*UserDatabasePassword) SetPassword added in v0.0.2

func (o *UserDatabasePassword) SetPassword(v string)

SetPassword sets field value

func (*UserDatabasePassword) SetUserId added in v0.0.2

func (o *UserDatabasePassword) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type UserEmail added in v0.2.0

type UserEmail struct {
	// The time when the user setting was created.
	CreatedAt string `json:"created_at"`
	// The email address of the user.
	Email string `json:"email"`
	// The unique identifier of the user email record.
	Id *string `json:"id,omitempty"`
	// The status of the email id i.e. whether its pending verification or verified.
	Status string `json:"status"`
	// The time when the user setting was last updated.
	UpdatedAt *string `json:"updated_at,omitempty"`
	// The current version of the user setting.
	VersionId int32 `json:"version_id"`
}

UserEmail struct for UserEmail

func NewUserEmail added in v0.2.0

func NewUserEmail(createdAt string, email string, status string, versionId int32) *UserEmail

NewUserEmail instantiates a new UserEmail 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 NewUserEmailWithDefaults added in v0.2.0

func NewUserEmailWithDefaults() *UserEmail

NewUserEmailWithDefaults instantiates a new UserEmail 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 (*UserEmail) GetCreatedAt added in v0.2.0

func (o *UserEmail) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*UserEmail) GetCreatedAtOk added in v0.2.0

func (o *UserEmail) GetCreatedAtOk() (*string, bool)

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

func (*UserEmail) GetEmail added in v0.2.0

func (o *UserEmail) GetEmail() string

GetEmail returns the Email field value

func (*UserEmail) GetEmailOk added in v0.2.0

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

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

func (*UserEmail) GetId added in v0.2.0

func (o *UserEmail) GetId() string

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

func (*UserEmail) GetIdOk added in v0.2.0

func (o *UserEmail) 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 (*UserEmail) GetStatus added in v0.2.0

func (o *UserEmail) GetStatus() string

GetStatus returns the Status field value

func (*UserEmail) GetStatusOk added in v0.2.0

func (o *UserEmail) GetStatusOk() (*string, bool)

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

func (*UserEmail) GetUpdatedAt added in v0.2.0

func (o *UserEmail) GetUpdatedAt() string

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

func (*UserEmail) GetUpdatedAtOk added in v0.2.0

func (o *UserEmail) GetUpdatedAtOk() (*string, 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 (*UserEmail) GetVersionId added in v0.2.0

func (o *UserEmail) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*UserEmail) GetVersionIdOk added in v0.2.0

func (o *UserEmail) GetVersionIdOk() (*int32, bool)

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

func (*UserEmail) HasId added in v0.2.0

func (o *UserEmail) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserEmail) HasUpdatedAt added in v0.2.0

func (o *UserEmail) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (UserEmail) MarshalJSON added in v0.2.0

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

func (*UserEmail) SetCreatedAt added in v0.2.0

func (o *UserEmail) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*UserEmail) SetEmail added in v0.2.0

func (o *UserEmail) SetEmail(v string)

SetEmail sets field value

func (*UserEmail) SetId added in v0.2.0

func (o *UserEmail) SetId(v string)

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

func (*UserEmail) SetStatus added in v0.2.0

func (o *UserEmail) SetStatus(v string)

SetStatus sets field value

func (*UserEmail) SetUpdatedAt added in v0.2.0

func (o *UserEmail) SetUpdatedAt(v string)

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

func (*UserEmail) SetVersionId added in v0.2.0

func (o *UserEmail) SetVersionId(v int32)

SetVersionId sets field value

type UserLoginRequest added in v0.0.2

type UserLoginRequest struct {
	Email string  `json:"email"`
	State *string `json:"state,omitempty"`
}

UserLoginRequest struct for UserLoginRequest

func NewUserLoginRequest added in v0.0.2

func NewUserLoginRequest(email string) *UserLoginRequest

NewUserLoginRequest instantiates a new UserLoginRequest 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 NewUserLoginRequestWithDefaults added in v0.0.2

func NewUserLoginRequestWithDefaults() *UserLoginRequest

NewUserLoginRequestWithDefaults instantiates a new UserLoginRequest 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 (*UserLoginRequest) GetEmail added in v0.0.2

func (o *UserLoginRequest) GetEmail() string

GetEmail returns the Email field value

func (*UserLoginRequest) GetEmailOk added in v0.0.2

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

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

func (*UserLoginRequest) GetState added in v0.2.0

func (o *UserLoginRequest) GetState() string

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

func (*UserLoginRequest) GetStateOk added in v0.2.0

func (o *UserLoginRequest) 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 (*UserLoginRequest) HasState added in v0.2.0

func (o *UserLoginRequest) HasState() bool

HasState returns a boolean if a field has been set.

func (UserLoginRequest) MarshalJSON added in v0.0.2

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

func (*UserLoginRequest) SetEmail added in v0.0.2

func (o *UserLoginRequest) SetEmail(v string)

SetEmail sets field value

func (*UserLoginRequest) SetState added in v0.2.0

func (o *UserLoginRequest) SetState(v string)

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

type UserOrg added in v0.0.2

type UserOrg struct {
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	Id          string `json:"id"`
	Org         *Org   `json:"org,omitempty"`
	OrgId       string `json:"org_id"`
	Role        string `json:"role"`
	Status      string `json:"status"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	UserId      string `json:"user_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
}

UserOrg struct for UserOrg

func NewUserOrg added in v0.0.2

func NewUserOrg(createdAt string, createdById string, id string, orgId string, role string, status string, updatedById string, userId string, versionId int32) *UserOrg

NewUserOrg instantiates a new UserOrg 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 NewUserOrgWithDefaults added in v0.0.2

func NewUserOrgWithDefaults() *UserOrg

NewUserOrgWithDefaults instantiates a new UserOrg 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 (*UserOrg) GetCreatedAt added in v0.0.2

func (o *UserOrg) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*UserOrg) GetCreatedAtOk added in v0.0.2

func (o *UserOrg) GetCreatedAtOk() (*string, bool)

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

func (*UserOrg) GetCreatedBy added in v0.1.3

func (o *UserOrg) GetCreatedBy() User

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

func (*UserOrg) GetCreatedById added in v0.1.3

func (o *UserOrg) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*UserOrg) GetCreatedByIdOk added in v0.1.3

func (o *UserOrg) GetCreatedByIdOk() (*string, bool)

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

func (*UserOrg) GetCreatedByOk added in v0.1.3

func (o *UserOrg) GetCreatedByOk() (*User, 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 (*UserOrg) GetId added in v0.0.2

func (o *UserOrg) GetId() string

GetId returns the Id field value

func (*UserOrg) GetIdOk added in v0.0.2

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

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

func (*UserOrg) GetOrg added in v0.0.2

func (o *UserOrg) GetOrg() Org

GetOrg returns the Org field value if set, zero value otherwise.

func (*UserOrg) GetOrgId added in v0.0.2

func (o *UserOrg) GetOrgId() string

GetOrgId returns the OrgId field value

func (*UserOrg) GetOrgIdOk added in v0.0.2

func (o *UserOrg) GetOrgIdOk() (*string, bool)

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

func (*UserOrg) GetOrgOk added in v0.0.2

func (o *UserOrg) GetOrgOk() (*Org, bool)

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

func (*UserOrg) GetRole added in v0.0.2

func (o *UserOrg) GetRole() string

GetRole returns the Role field value

func (*UserOrg) GetRoleOk added in v0.0.2

func (o *UserOrg) GetRoleOk() (*string, bool)

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

func (*UserOrg) GetStatus added in v0.0.2

func (o *UserOrg) GetStatus() string

GetStatus returns the Status field value

func (*UserOrg) GetStatusOk added in v0.0.2

func (o *UserOrg) GetStatusOk() (*string, bool)

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

func (*UserOrg) GetUpdatedAt added in v0.0.2

func (o *UserOrg) GetUpdatedAt() string

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

func (*UserOrg) GetUpdatedAtOk added in v0.0.2

func (o *UserOrg) GetUpdatedAtOk() (*string, 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 (*UserOrg) GetUpdatedBy added in v0.1.3

func (o *UserOrg) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*UserOrg) GetUpdatedById added in v0.1.3

func (o *UserOrg) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*UserOrg) GetUpdatedByIdOk added in v0.1.3

func (o *UserOrg) GetUpdatedByIdOk() (*string, bool)

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

func (*UserOrg) GetUpdatedByOk added in v0.1.3

func (o *UserOrg) GetUpdatedByOk() (*User, bool)

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

func (*UserOrg) GetUserId added in v0.0.2

func (o *UserOrg) GetUserId() string

GetUserId returns the UserId field value

func (*UserOrg) GetUserIdOk added in v0.0.2

func (o *UserOrg) GetUserIdOk() (*string, bool)

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

func (*UserOrg) GetVersionId added in v0.0.2

func (o *UserOrg) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*UserOrg) GetVersionIdOk added in v0.0.2

func (o *UserOrg) GetVersionIdOk() (*int32, bool)

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

func (*UserOrg) HasCreatedBy added in v0.1.3

func (o *UserOrg) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*UserOrg) HasOrg added in v0.0.2

func (o *UserOrg) HasOrg() bool

HasOrg returns a boolean if a field has been set.

func (*UserOrg) HasUpdatedAt added in v0.0.2

func (o *UserOrg) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*UserOrg) HasUpdatedBy added in v0.1.3

func (o *UserOrg) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (UserOrg) MarshalJSON added in v0.0.2

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

func (*UserOrg) SetCreatedAt added in v0.0.2

func (o *UserOrg) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*UserOrg) SetCreatedBy added in v0.1.3

func (o *UserOrg) SetCreatedBy(v User)

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

func (*UserOrg) SetCreatedById added in v0.1.3

func (o *UserOrg) SetCreatedById(v string)

SetCreatedById sets field value

func (*UserOrg) SetId added in v0.0.2

func (o *UserOrg) SetId(v string)

SetId sets field value

func (*UserOrg) SetOrg added in v0.0.2

func (o *UserOrg) SetOrg(v Org)

SetOrg gets a reference to the given Org and assigns it to the Org field.

func (*UserOrg) SetOrgId added in v0.0.2

func (o *UserOrg) SetOrgId(v string)

SetOrgId sets field value

func (*UserOrg) SetRole added in v0.0.2

func (o *UserOrg) SetRole(v string)

SetRole sets field value

func (*UserOrg) SetStatus added in v0.0.2

func (o *UserOrg) SetStatus(v string)

SetStatus sets field value

func (*UserOrg) SetUpdatedAt added in v0.0.2

func (o *UserOrg) SetUpdatedAt(v string)

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

func (*UserOrg) SetUpdatedBy added in v0.1.3

func (o *UserOrg) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*UserOrg) SetUpdatedById added in v0.1.3

func (o *UserOrg) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*UserOrg) SetUserId added in v0.0.2

func (o *UserOrg) SetUserId(v string)

SetUserId sets field value

func (*UserOrg) SetVersionId added in v0.0.2

func (o *UserOrg) SetVersionId(v int32)

SetVersionId sets field value

type UserPreferences added in v0.2.0

type UserPreferences struct {
	// Whether the user is subscribed to community update emails.
	CommunicationCommunityUpdates string `json:"communication_community_updates"`
	// Whether the user is subscribed to product update emails.
	CommunicationProductUpdates string `json:"communication_product_updates"`
	// Whether the user is subscribed to tips and tricks emails.
	CommunicationTipsAndTricks string `json:"communication_tips_and_tricks"`
	// The time when the user setting was created.
	CreatedAt string `json:"created_at"`
	// The unique identifier of the user preferences record.
	Id *string `json:"id,omitempty"`
	// The time when the user setting was last updated.
	UpdatedAt *string `json:"updated_at,omitempty"`
	// The current version of the user setting.
	VersionId int32 `json:"version_id"`
}

UserPreferences struct for UserPreferences

func NewUserPreferences added in v0.2.0

func NewUserPreferences(communicationCommunityUpdates string, communicationProductUpdates string, communicationTipsAndTricks string, createdAt string, versionId int32) *UserPreferences

NewUserPreferences instantiates a new UserPreferences 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 NewUserPreferencesWithDefaults added in v0.2.0

func NewUserPreferencesWithDefaults() *UserPreferences

NewUserPreferencesWithDefaults instantiates a new UserPreferences 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 (*UserPreferences) GetCommunicationCommunityUpdates added in v0.2.0

func (o *UserPreferences) GetCommunicationCommunityUpdates() string

GetCommunicationCommunityUpdates returns the CommunicationCommunityUpdates field value

func (*UserPreferences) GetCommunicationCommunityUpdatesOk added in v0.2.0

func (o *UserPreferences) GetCommunicationCommunityUpdatesOk() (*string, bool)

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

func (*UserPreferences) GetCommunicationProductUpdates added in v0.2.0

func (o *UserPreferences) GetCommunicationProductUpdates() string

GetCommunicationProductUpdates returns the CommunicationProductUpdates field value

func (*UserPreferences) GetCommunicationProductUpdatesOk added in v0.2.0

func (o *UserPreferences) GetCommunicationProductUpdatesOk() (*string, bool)

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

func (*UserPreferences) GetCommunicationTipsAndTricks added in v0.2.0

func (o *UserPreferences) GetCommunicationTipsAndTricks() string

GetCommunicationTipsAndTricks returns the CommunicationTipsAndTricks field value

func (*UserPreferences) GetCommunicationTipsAndTricksOk added in v0.2.0

func (o *UserPreferences) GetCommunicationTipsAndTricksOk() (*string, bool)

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

func (*UserPreferences) GetCreatedAt added in v0.2.0

func (o *UserPreferences) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*UserPreferences) GetCreatedAtOk added in v0.2.0

func (o *UserPreferences) GetCreatedAtOk() (*string, bool)

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

func (*UserPreferences) GetId added in v0.2.0

func (o *UserPreferences) GetId() string

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

func (*UserPreferences) GetIdOk added in v0.2.0

func (o *UserPreferences) 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 (*UserPreferences) GetUpdatedAt added in v0.2.0

func (o *UserPreferences) GetUpdatedAt() string

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

func (*UserPreferences) GetUpdatedAtOk added in v0.2.0

func (o *UserPreferences) GetUpdatedAtOk() (*string, 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 (*UserPreferences) GetVersionId added in v0.2.0

func (o *UserPreferences) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*UserPreferences) GetVersionIdOk added in v0.2.0

func (o *UserPreferences) GetVersionIdOk() (*int32, bool)

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

func (*UserPreferences) HasId added in v0.2.0

func (o *UserPreferences) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserPreferences) HasUpdatedAt added in v0.2.0

func (o *UserPreferences) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (UserPreferences) MarshalJSON added in v0.2.0

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

func (*UserPreferences) SetCommunicationCommunityUpdates added in v0.2.0

func (o *UserPreferences) SetCommunicationCommunityUpdates(v string)

SetCommunicationCommunityUpdates sets field value

func (*UserPreferences) SetCommunicationProductUpdates added in v0.2.0

func (o *UserPreferences) SetCommunicationProductUpdates(v string)

SetCommunicationProductUpdates sets field value

func (*UserPreferences) SetCommunicationTipsAndTricks added in v0.2.0

func (o *UserPreferences) SetCommunicationTipsAndTricks(v string)

SetCommunicationTipsAndTricks sets field value

func (*UserPreferences) SetCreatedAt added in v0.2.0

func (o *UserPreferences) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*UserPreferences) SetId added in v0.2.0

func (o *UserPreferences) SetId(v string)

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

func (*UserPreferences) SetUpdatedAt added in v0.2.0

func (o *UserPreferences) SetUpdatedAt(v string)

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

func (*UserPreferences) SetVersionId added in v0.2.0

func (o *UserPreferences) SetVersionId(v int32)

SetVersionId sets field value

type UserProcessesApiGetRequest added in v0.5.0

type UserProcessesApiGetRequest struct {
	ApiService *UserProcessesService
	// contains filtered or unexported fields
}

func (UserProcessesApiGetRequest) Execute added in v0.5.0

type UserProcessesApiListRequest added in v0.5.0

type UserProcessesApiListRequest struct {
	ApiService *UserProcessesService
	// contains filtered or unexported fields
}

func (UserProcessesApiListRequest) Execute added in v0.5.0

func (UserProcessesApiListRequest) Limit added in v0.5.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserProcessesApiListRequest) NextToken added in v0.5.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserProcessesApiLogRequest added in v0.5.0

type UserProcessesApiLogRequest struct {
	ApiService *UserProcessesService
	// contains filtered or unexported fields
}

func (UserProcessesApiLogRequest) Execute added in v0.5.0

type UserProcessesService added in v0.5.0

type UserProcessesService service

UserProcessesService UserProcesses service

func (*UserProcessesService) Get added in v0.5.0

func (a *UserProcessesService) Get(ctx _context.Context, userHandle string, processId string) UserProcessesApiGetRequest

Get Get User process

Get process for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to get the process.
@param processId The id of the process to be fetched.
@return UserProcessesApiGetRequest

func (*UserProcessesService) GetExecute added in v0.5.0

Execute executes the request

@return SpProcess

func (*UserProcessesService) List added in v0.5.0

List List User processes

List processes for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to list the processes.
@return UserProcessesApiListRequest

func (*UserProcessesService) ListExecute added in v0.5.0

Execute executes the request

@return ListProcessesResponse

func (*UserProcessesService) Log added in v0.5.0

func (a *UserProcessesService) Log(ctx _context.Context, userHandle string, processId string, logFile string, contentType string) UserProcessesApiLogRequest

Log List user process logs

List the process logs for a given process of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user for which you want to list the process logs.
@param processId The id of the process where you want to list the process logs.
@param logFile The process logs file to be fetched.
@param contentType The required content type of the process logs.
@return UserProcessesApiLogRequest

func (*UserProcessesService) LogExecute added in v0.5.0

Execute executes the request

@return string

type UserQuota added in v0.0.2

type UserQuota struct {
	Aggregator   map[string]Quota `json:"aggregator"`
	Association  map[string]Quota `json:"association"`
	Conn         Quota            `json:"conn"`
	Mod          map[string]Quota `json:"mod"`
	Organization Quota            `json:"organization"`
	Pipeline     map[string]Quota `json:"pipeline"`
	Snapshot     map[string]Quota `json:"snapshot"`
	Token        Quota            `json:"token"`
	Workspace    Quota            `json:"workspace"`
}

UserQuota struct for UserQuota

func NewUserQuota added in v0.0.2

func NewUserQuota(aggregator map[string]Quota, association map[string]Quota, conn Quota, mod map[string]Quota, organization Quota, pipeline map[string]Quota, snapshot map[string]Quota, token Quota, workspace Quota) *UserQuota

NewUserQuota instantiates a new UserQuota 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 NewUserQuotaWithDefaults added in v0.0.2

func NewUserQuotaWithDefaults() *UserQuota

NewUserQuotaWithDefaults instantiates a new UserQuota 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 (*UserQuota) GetAggregator added in v0.6.0

func (o *UserQuota) GetAggregator() map[string]Quota

GetAggregator returns the Aggregator field value

func (*UserQuota) GetAggregatorOk added in v0.6.0

func (o *UserQuota) GetAggregatorOk() (*map[string]Quota, bool)

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

func (*UserQuota) GetAssociation added in v0.0.2

func (o *UserQuota) GetAssociation() map[string]Quota

GetAssociation returns the Association field value

func (*UserQuota) GetAssociationOk added in v0.0.2

func (o *UserQuota) GetAssociationOk() (*map[string]Quota, bool)

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

func (*UserQuota) GetConn added in v0.0.2

func (o *UserQuota) GetConn() Quota

GetConn returns the Conn field value

func (*UserQuota) GetConnOk added in v0.0.2

func (o *UserQuota) GetConnOk() (*Quota, bool)

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

func (*UserQuota) GetMod added in v0.0.4

func (o *UserQuota) GetMod() map[string]Quota

GetMod returns the Mod field value

func (*UserQuota) GetModOk added in v0.0.4

func (o *UserQuota) GetModOk() (*map[string]Quota, bool)

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

func (*UserQuota) GetOrganization added in v0.0.2

func (o *UserQuota) GetOrganization() Quota

GetOrganization returns the Organization field value

func (*UserQuota) GetOrganizationOk added in v0.0.2

func (o *UserQuota) GetOrganizationOk() (*Quota, bool)

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

func (*UserQuota) GetPipeline added in v0.2.0

func (o *UserQuota) GetPipeline() map[string]Quota

GetPipeline returns the Pipeline field value

func (*UserQuota) GetPipelineOk added in v0.2.0

func (o *UserQuota) GetPipelineOk() (*map[string]Quota, bool)

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

func (*UserQuota) GetSnapshot added in v0.2.0

func (o *UserQuota) GetSnapshot() map[string]Quota

GetSnapshot returns the Snapshot field value

func (*UserQuota) GetSnapshotOk added in v0.2.0

func (o *UserQuota) GetSnapshotOk() (*map[string]Quota, bool)

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

func (*UserQuota) GetToken added in v0.0.2

func (o *UserQuota) GetToken() Quota

GetToken returns the Token field value

func (*UserQuota) GetTokenOk added in v0.0.2

func (o *UserQuota) GetTokenOk() (*Quota, bool)

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

func (*UserQuota) GetWorkspace added in v0.0.2

func (o *UserQuota) GetWorkspace() Quota

GetWorkspace returns the Workspace field value

func (*UserQuota) GetWorkspaceOk added in v0.0.2

func (o *UserQuota) GetWorkspaceOk() (*Quota, bool)

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

func (UserQuota) MarshalJSON added in v0.0.2

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

func (*UserQuota) SetAggregator added in v0.6.0

func (o *UserQuota) SetAggregator(v map[string]Quota)

SetAggregator sets field value

func (*UserQuota) SetAssociation added in v0.0.2

func (o *UserQuota) SetAssociation(v map[string]Quota)

SetAssociation sets field value

func (*UserQuota) SetConn added in v0.0.2

func (o *UserQuota) SetConn(v Quota)

SetConn sets field value

func (*UserQuota) SetMod added in v0.0.4

func (o *UserQuota) SetMod(v map[string]Quota)

SetMod sets field value

func (*UserQuota) SetOrganization added in v0.0.2

func (o *UserQuota) SetOrganization(v Quota)

SetOrganization sets field value

func (*UserQuota) SetPipeline added in v0.2.0

func (o *UserQuota) SetPipeline(v map[string]Quota)

SetPipeline sets field value

func (*UserQuota) SetSnapshot added in v0.2.0

func (o *UserQuota) SetSnapshot(v map[string]Quota)

SetSnapshot sets field value

func (*UserQuota) SetToken added in v0.0.2

func (o *UserQuota) SetToken(v Quota)

SetToken sets field value

func (*UserQuota) SetWorkspace added in v0.0.2

func (o *UserQuota) SetWorkspace(v Quota)

SetWorkspace sets field value

type UserSearch added in v0.0.2

type UserSearch struct {
	AvatarUrl   *string `json:"avatar_url,omitempty"`
	DisplayName *string `json:"display_name,omitempty"`
	Handle      *string `json:"handle,omitempty"`
	Id          string  `json:"id"`
}

UserSearch struct for UserSearch

func NewUserSearch added in v0.0.2

func NewUserSearch(id string) *UserSearch

NewUserSearch instantiates a new UserSearch 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 NewUserSearchWithDefaults added in v0.0.2

func NewUserSearchWithDefaults() *UserSearch

NewUserSearchWithDefaults instantiates a new UserSearch 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 (*UserSearch) GetAvatarUrl added in v0.0.2

func (o *UserSearch) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*UserSearch) GetAvatarUrlOk added in v0.0.2

func (o *UserSearch) 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 (*UserSearch) GetDisplayName added in v0.0.2

func (o *UserSearch) GetDisplayName() string

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

func (*UserSearch) GetDisplayNameOk added in v0.0.2

func (o *UserSearch) 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 (*UserSearch) GetHandle added in v0.0.2

func (o *UserSearch) GetHandle() string

GetHandle returns the Handle field value if set, zero value otherwise.

func (*UserSearch) GetHandleOk added in v0.0.2

func (o *UserSearch) GetHandleOk() (*string, bool)

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

func (*UserSearch) GetId added in v0.0.2

func (o *UserSearch) GetId() string

GetId returns the Id field value

func (*UserSearch) GetIdOk added in v0.0.2

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

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

func (*UserSearch) HasAvatarUrl added in v0.0.2

func (o *UserSearch) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*UserSearch) HasDisplayName added in v0.0.2

func (o *UserSearch) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*UserSearch) HasHandle added in v0.0.2

func (o *UserSearch) HasHandle() bool

HasHandle returns a boolean if a field has been set.

func (UserSearch) MarshalJSON added in v0.0.2

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

func (*UserSearch) SetAvatarUrl added in v0.0.2

func (o *UserSearch) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*UserSearch) SetDisplayName added in v0.0.2

func (o *UserSearch) SetDisplayName(v string)

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

func (*UserSearch) SetHandle added in v0.0.2

func (o *UserSearch) SetHandle(v string)

SetHandle gets a reference to the given string and assigns it to the Handle field.

func (*UserSearch) SetId added in v0.0.2

func (o *UserSearch) SetId(v string)

SetId sets field value

type UserSignupRequest added in v0.0.2

type UserSignupRequest struct {
	Email string  `json:"email"`
	State *string `json:"state,omitempty"`
}

UserSignupRequest struct for UserSignupRequest

func NewUserSignupRequest added in v0.0.2

func NewUserSignupRequest(email string) *UserSignupRequest

NewUserSignupRequest instantiates a new UserSignupRequest 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 NewUserSignupRequestWithDefaults added in v0.0.2

func NewUserSignupRequestWithDefaults() *UserSignupRequest

NewUserSignupRequestWithDefaults instantiates a new UserSignupRequest 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 (*UserSignupRequest) GetEmail added in v0.0.2

func (o *UserSignupRequest) GetEmail() string

GetEmail returns the Email field value

func (*UserSignupRequest) GetEmailOk added in v0.0.2

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

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

func (*UserSignupRequest) GetState added in v0.2.0

func (o *UserSignupRequest) GetState() string

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

func (*UserSignupRequest) GetStateOk added in v0.2.0

func (o *UserSignupRequest) 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 (*UserSignupRequest) HasState added in v0.2.0

func (o *UserSignupRequest) HasState() bool

HasState returns a boolean if a field has been set.

func (UserSignupRequest) MarshalJSON added in v0.0.2

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

func (*UserSignupRequest) SetEmail added in v0.0.2

func (o *UserSignupRequest) SetEmail(v string)

SetEmail sets field value

func (*UserSignupRequest) SetState added in v0.2.0

func (o *UserSignupRequest) SetState(v string)

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

type UserTokensApiCreateRequest

type UserTokensApiCreateRequest struct {
	ApiService *UserTokensService
	// contains filtered or unexported fields
}

func (UserTokensApiCreateRequest) Execute

type UserTokensApiDeleteRequest

type UserTokensApiDeleteRequest struct {
	ApiService *UserTokensService
	// contains filtered or unexported fields
}

func (UserTokensApiDeleteRequest) Execute

type UserTokensApiGetRequest

type UserTokensApiGetRequest struct {
	ApiService *UserTokensService
	// contains filtered or unexported fields
}

func (UserTokensApiGetRequest) Execute

type UserTokensApiListRequest

type UserTokensApiListRequest struct {
	ApiService *UserTokensService
	// contains filtered or unexported fields
}

func (UserTokensApiListRequest) Execute

func (UserTokensApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserTokensApiListRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserTokensApiUpdateRequest

type UserTokensApiUpdateRequest struct {
	ApiService *UserTokensService
	// contains filtered or unexported fields
}

func (UserTokensApiUpdateRequest) Execute

func (UserTokensApiUpdateRequest) Request

The request body for the token which needs to be updated.

type UserTokensService

type UserTokensService service

UserTokensService UserTokens service

func (*UserTokensService) Create

Create Create token

Creates a new token for the specified user. The limit is 2 per user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the token will be created.
@return UserTokensApiCreateRequest

func (*UserTokensService) CreateExecute

Execute executes the request

@return Token

func (*UserTokensService) Delete

func (a *UserTokensService) Delete(ctx _context.Context, userHandle string, tokenId string) UserTokensApiDeleteRequest

Delete Delete token

Deletes the token associated with the specified user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the token exist.
@param tokenId The identifier of the token.
@return UserTokensApiDeleteRequest

func (*UserTokensService) DeleteExecute

Execute executes the request

@return Token

func (*UserTokensService) Get

func (a *UserTokensService) Get(ctx _context.Context, tokenId string, userHandle string) UserTokensApiGetRequest

Get Get token

Retrieves the information of a specified token.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tokenId The identifier of the token.
@param userHandle The handle of the user where the token exist.
@return UserTokensApiGetRequest

func (*UserTokensService) GetExecute

Execute executes the request

@return Token

func (*UserTokensService) List

List List tokens

List the token for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user.
@return UserTokensApiListRequest

func (*UserTokensService) ListExecute

Execute executes the request

@return ListTokensResponse

func (*UserTokensService) Update

func (a *UserTokensService) Update(ctx _context.Context, userHandle string, tokenId string) UserTokensApiUpdateRequest

Update Update token

Changes the status of the specified token from Active to Inactive or vice versa.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the token exist.
@param tokenId The identifier of the token.
@return UserTokensApiUpdateRequest

func (*UserTokensService) UpdateExecute

Execute executes the request

@return Token

type UserWorkspaceAggregatorsApiCreateRequest added in v0.6.0

type UserWorkspaceAggregatorsApiCreateRequest struct {
	ApiService *UserWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (UserWorkspaceAggregatorsApiCreateRequest) Execute added in v0.6.0

func (UserWorkspaceAggregatorsApiCreateRequest) Mode added in v0.6.0

The mode of this request

func (UserWorkspaceAggregatorsApiCreateRequest) Request added in v0.6.0

The request body for the aggregator to be created.

type UserWorkspaceAggregatorsApiDeleteRequest added in v0.6.0

type UserWorkspaceAggregatorsApiDeleteRequest struct {
	ApiService *UserWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (UserWorkspaceAggregatorsApiDeleteRequest) Execute added in v0.6.0

type UserWorkspaceAggregatorsApiGetConnectionRequest added in v0.6.0

type UserWorkspaceAggregatorsApiGetConnectionRequest struct {
	ApiService *UserWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (UserWorkspaceAggregatorsApiGetConnectionRequest) Execute added in v0.6.0

type UserWorkspaceAggregatorsApiGetRequest added in v0.6.0

type UserWorkspaceAggregatorsApiGetRequest struct {
	ApiService *UserWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (UserWorkspaceAggregatorsApiGetRequest) Execute added in v0.6.0

type UserWorkspaceAggregatorsApiListConnectionsRequest added in v0.6.0

type UserWorkspaceAggregatorsApiListConnectionsRequest struct {
	ApiService *UserWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (UserWorkspaceAggregatorsApiListConnectionsRequest) Execute added in v0.6.0

func (UserWorkspaceAggregatorsApiListConnectionsRequest) Limit added in v0.6.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspaceAggregatorsApiListConnectionsRequest) NextToken added in v0.6.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserWorkspaceAggregatorsApiListRequest added in v0.6.0

type UserWorkspaceAggregatorsApiListRequest struct {
	ApiService *UserWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (UserWorkspaceAggregatorsApiListRequest) Execute added in v0.6.0

func (UserWorkspaceAggregatorsApiListRequest) Limit added in v0.6.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspaceAggregatorsApiListRequest) NextToken added in v0.6.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserWorkspaceAggregatorsApiUpdateRequest added in v0.6.0

type UserWorkspaceAggregatorsApiUpdateRequest struct {
	ApiService *UserWorkspaceAggregatorsService
	// contains filtered or unexported fields
}

func (UserWorkspaceAggregatorsApiUpdateRequest) Execute added in v0.6.0

func (UserWorkspaceAggregatorsApiUpdateRequest) Mode added in v0.6.0

The mode of this request

func (UserWorkspaceAggregatorsApiUpdateRequest) Request added in v0.6.0

The request body for the aggregator which needs to be updated.

type UserWorkspaceAggregatorsService added in v0.6.0

type UserWorkspaceAggregatorsService service

UserWorkspaceAggregatorsService UserWorkspaceAggregators service

func (*UserWorkspaceAggregatorsService) Create added in v0.6.0

Create Create an aggregator for a user workspace

Creates an aggregator for a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator will be created.
@return UserWorkspaceAggregatorsApiCreateRequest

func (*UserWorkspaceAggregatorsService) CreateExecute added in v0.6.0

Execute executes the request

@return WorkspaceAggregator

func (*UserWorkspaceAggregatorsService) Delete added in v0.6.0

func (a *UserWorkspaceAggregatorsService) Delete(ctx _context.Context, userHandle string, workspaceHandle string, aggregatorHandle string) UserWorkspaceAggregatorsApiDeleteRequest

Delete Delete an aggregator for a user workspace

Deletes an aggregator belonging to a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator exists.
@param aggregatorHandle The handle of the aggregator that needs to be deleted.
@return UserWorkspaceAggregatorsApiDeleteRequest

func (*UserWorkspaceAggregatorsService) DeleteExecute added in v0.6.0

Execute executes the request

@return WorkspaceAggregator

func (*UserWorkspaceAggregatorsService) Get added in v0.6.0

func (a *UserWorkspaceAggregatorsService) Get(ctx _context.Context, userHandle string, workspaceHandle string, aggregatorHandle string) UserWorkspaceAggregatorsApiGetRequest

Get Get an aggregator for a user workspace

Get the details of an aggregator belonging to a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator exists.
@param aggregatorHandle The handle of the aggregator whose details need to be fetched.
@return UserWorkspaceAggregatorsApiGetRequest

func (*UserWorkspaceAggregatorsService) GetConnection added in v0.6.0

func (a *UserWorkspaceAggregatorsService) GetConnection(ctx _context.Context, userHandle string, workspaceHandle string, aggregatorHandle string, connectionHandle string) UserWorkspaceAggregatorsApiGetConnectionRequest

GetConnection Get a connection in the scope of an aggregator for a user workspace

Get a connection that is a part of an aggregator defined in a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator exists.
@param aggregatorHandle The handle of the aggregator which the connection is a part of.
@param connectionHandle The handle of the connection whose details need to be fetched.
@return UserWorkspaceAggregatorsApiGetConnectionRequest

func (*UserWorkspaceAggregatorsService) GetConnectionExecute added in v0.6.0

Execute executes the request

@return WorkspaceConnection

func (*UserWorkspaceAggregatorsService) GetExecute added in v0.6.0

Execute executes the request

@return WorkspaceAggregator

func (*UserWorkspaceAggregatorsService) List added in v0.6.0

List List aggregators for a user workspace

List aggregators for a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to which the workspace belongs to.
@param workspaceHandle The handle of the workspace for which we will be listing aggregators.
@return UserWorkspaceAggregatorsApiListRequest

func (*UserWorkspaceAggregatorsService) ListConnections added in v0.6.0

func (a *UserWorkspaceAggregatorsService) ListConnections(ctx _context.Context, userHandle string, workspaceHandle string, aggregatorHandle string) UserWorkspaceAggregatorsApiListConnectionsRequest

ListConnections List connections in the scope of an aggregator for a user workspace

List all connections that are a part of an aggregator defined in a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator exists.
@param aggregatorHandle The handle of the aggregator whose connections need to be fetched.
@return UserWorkspaceAggregatorsApiListConnectionsRequest

func (*UserWorkspaceAggregatorsService) ListConnectionsExecute added in v0.6.0

Execute executes the request

@return ListWorkspaceConnectionsResponse

func (*UserWorkspaceAggregatorsService) ListExecute added in v0.6.0

Execute executes the request

@return ListWorkspaceAggregatorsResponse

func (*UserWorkspaceAggregatorsService) Update added in v0.6.0

func (a *UserWorkspaceAggregatorsService) Update(ctx _context.Context, userHandle string, workspaceHandle string, aggregatorHandle string) UserWorkspaceAggregatorsApiUpdateRequest

Update Update an aggregator for a user workspace

Update the details of an aggregator belonging to workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to which the workspace belongs to.
@param workspaceHandle The handle of the workspace where the aggregator exists.
@param aggregatorHandle The handle of the aggregator whose details need to be updated.
@return UserWorkspaceAggregatorsApiUpdateRequest

func (*UserWorkspaceAggregatorsService) UpdateExecute added in v0.6.0

Execute executes the request

@return WorkspaceAggregator

type UserWorkspaceConnectionAssociationsApiCreateRequest

type UserWorkspaceConnectionAssociationsApiCreateRequest struct {
	ApiService *UserWorkspaceConnectionAssociationsService
	// contains filtered or unexported fields
}

func (UserWorkspaceConnectionAssociationsApiCreateRequest) Execute

func (UserWorkspaceConnectionAssociationsApiCreateRequest) Request

The request body for the association to be created.

type UserWorkspaceConnectionAssociationsApiDeleteRequest

type UserWorkspaceConnectionAssociationsApiDeleteRequest struct {
	ApiService *UserWorkspaceConnectionAssociationsService
	// contains filtered or unexported fields
}

func (UserWorkspaceConnectionAssociationsApiDeleteRequest) Execute

type UserWorkspaceConnectionAssociationsApiGetRequest

type UserWorkspaceConnectionAssociationsApiGetRequest struct {
	ApiService *UserWorkspaceConnectionAssociationsService
	// contains filtered or unexported fields
}

func (UserWorkspaceConnectionAssociationsApiGetRequest) Execute

type UserWorkspaceConnectionAssociationsApiListRequest

type UserWorkspaceConnectionAssociationsApiListRequest struct {
	ApiService *UserWorkspaceConnectionAssociationsService
	// contains filtered or unexported fields
}

func (UserWorkspaceConnectionAssociationsApiListRequest) Execute

func (UserWorkspaceConnectionAssociationsApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspaceConnectionAssociationsApiListRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserWorkspaceConnectionAssociationsService

type UserWorkspaceConnectionAssociationsService service

UserWorkspaceConnectionAssociationsService UserWorkspaceConnectionAssociations service

func (*UserWorkspaceConnectionAssociationsService) Create

Create Create user workspace connection association

Associate a connection with the workspace. A workspace can have multiple association.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where we want to create an association.
@param workspaceHandle The handle of the workspace where the connection will be associated.
@return UserWorkspaceConnectionAssociationsApiCreateRequest

func (*UserWorkspaceConnectionAssociationsService) CreateExecute

Execute executes the request

@return WorkspaceConn

func (*UserWorkspaceConnectionAssociationsService) Delete

Delete Delete user workspace connection association

Dissociates or delete the workspace and connection association.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user performing the action.
@param workspaceHandle The handle of the workspace whose association needs to be deleted.
@param connHandle The handle of the conn whose association needs to be deleted.
@return UserWorkspaceConnectionAssociationsApiDeleteRequest

func (*UserWorkspaceConnectionAssociationsService) DeleteExecute

Execute executes the request

@return WorkspaceConn

func (*UserWorkspaceConnectionAssociationsService) Get

Get Get user workspace connection association

Get the details for a workspace and connection association.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user for which you want to get the association.
@param workspaceHandle The handle of the workspace wherethe association exist.
@param connHandle The handle of the conn whose association details needs to be fetched.
@return UserWorkspaceConnectionAssociationsApiGetRequest

func (*UserWorkspaceConnectionAssociationsService) GetExecute

Execute executes the request

@return WorkspaceConn

func (*UserWorkspaceConnectionAssociationsService) List

List List user workspace connection associations

List the connections associated with a workspace.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user for which you want to start listing associations.
@param workspaceHandle The handle of the workspace where you want to list the associations.
@return UserWorkspaceConnectionAssociationsApiListRequest

func (*UserWorkspaceConnectionAssociationsService) ListExecute

Execute executes the request

@return ListWorkspaceConnResponse

type UserWorkspaceModVariablesApiCreateSettingRequest added in v0.0.4

type UserWorkspaceModVariablesApiCreateSettingRequest struct {
	ApiService *UserWorkspaceModVariablesService
	// contains filtered or unexported fields
}

func (UserWorkspaceModVariablesApiCreateSettingRequest) Execute added in v0.0.4

func (UserWorkspaceModVariablesApiCreateSettingRequest) Request added in v0.0.4

The request body to create setting for mod variable in the user workspace.

type UserWorkspaceModVariablesApiDeleteSettingRequest added in v0.0.4

type UserWorkspaceModVariablesApiDeleteSettingRequest struct {
	ApiService *UserWorkspaceModVariablesService
	// contains filtered or unexported fields
}

func (UserWorkspaceModVariablesApiDeleteSettingRequest) Execute added in v0.0.4

type UserWorkspaceModVariablesApiGetSettingRequest added in v0.0.4

type UserWorkspaceModVariablesApiGetSettingRequest struct {
	ApiService *UserWorkspaceModVariablesService
	// contains filtered or unexported fields
}

func (UserWorkspaceModVariablesApiGetSettingRequest) Execute added in v0.0.4

type UserWorkspaceModVariablesApiListRequest added in v0.0.4

type UserWorkspaceModVariablesApiListRequest struct {
	ApiService *UserWorkspaceModVariablesService
	// contains filtered or unexported fields
}

func (UserWorkspaceModVariablesApiListRequest) Execute added in v0.0.4

func (UserWorkspaceModVariablesApiListRequest) Limit added in v0.0.4

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspaceModVariablesApiListRequest) NextToken added in v0.0.4

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserWorkspaceModVariablesApiUpdateSettingRequest added in v0.0.4

type UserWorkspaceModVariablesApiUpdateSettingRequest struct {
	ApiService *UserWorkspaceModVariablesService
	// contains filtered or unexported fields
}

func (UserWorkspaceModVariablesApiUpdateSettingRequest) Execute added in v0.0.4

func (UserWorkspaceModVariablesApiUpdateSettingRequest) Request added in v0.0.4

The request body to update setting for mod variable in the user workspace.

type UserWorkspaceModVariablesService added in v0.0.4

type UserWorkspaceModVariablesService service

UserWorkspaceModVariablesService UserWorkspaceModVariables service

func (*UserWorkspaceModVariablesService) CreateSetting added in v0.0.4

func (a *UserWorkspaceModVariablesService) CreateSetting(ctx _context.Context, userHandle string, workspaceHandle string, modAlias string) UserWorkspaceModVariablesApiCreateSettingRequest

CreateSetting Create a setting for a mod variable in a user workspace

Create a setting for a mod variable in a user workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user who owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID for which the variable setting is to be created.
@return UserWorkspaceModVariablesApiCreateSettingRequest

func (*UserWorkspaceModVariablesService) CreateSettingExecute added in v0.0.4

Execute executes the request

@return WorkspaceModVariable

func (*UserWorkspaceModVariablesService) DeleteSetting added in v0.0.4

func (a *UserWorkspaceModVariablesService) DeleteSetting(ctx _context.Context, userHandle string, workspaceHandle string, modAlias string, variableName string) UserWorkspaceModVariablesApiDeleteSettingRequest

DeleteSetting Delete setting for a mod variable in a user workspace

Delete setting for a mod variable in a user workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user who owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID for which the variable setting is to be deleted.
@param variableName The name of the variable to delete the setting for.
@return UserWorkspaceModVariablesApiDeleteSettingRequest

func (*UserWorkspaceModVariablesService) DeleteSettingExecute added in v0.0.4

Execute executes the request

@return WorkspaceModVariable

func (*UserWorkspaceModVariablesService) GetSetting added in v0.0.4

func (a *UserWorkspaceModVariablesService) GetSetting(ctx _context.Context, userHandle string, workspaceHandle string, modAlias string, variableName string) UserWorkspaceModVariablesApiGetSettingRequest

GetSetting Get setting for a mod variable in a user workspace

Get setting for a mod variable in a user workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user who owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID for which the variable setting belongs to.
@param variableName The name of the variable to get the setting for.
@return UserWorkspaceModVariablesApiGetSettingRequest

func (*UserWorkspaceModVariablesService) GetSettingExecute added in v0.0.4

Execute executes the request

@return WorkspaceModVariable

func (*UserWorkspaceModVariablesService) List added in v0.0.4

List List variables for a user workspace mod

List all variables applicable for a mod in a workspace specific to a user

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user who owns the workspace.
@param workspaceHandle The handle of the workspace where mods were installed.
@param modAlias The mod alias or mod ID for which we want the variables to be listed.
@return UserWorkspaceModVariablesApiListRequest

func (*UserWorkspaceModVariablesService) ListExecute added in v0.0.4

Execute executes the request

@return ListWorkspaceModVariablesResponse

func (*UserWorkspaceModVariablesService) UpdateSetting added in v0.0.4

func (a *UserWorkspaceModVariablesService) UpdateSetting(ctx _context.Context, userHandle string, workspaceHandle string, modAlias string, variableName string) UserWorkspaceModVariablesApiUpdateSettingRequest

UpdateSetting Update setting for a mod variable in a user workspace

Update setting for a mod variable in a user workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user who owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID which contains the variable.
@param variableName The name of the variable for which setting is to be updated.
@return UserWorkspaceModVariablesApiUpdateSettingRequest

func (*UserWorkspaceModVariablesService) UpdateSettingExecute added in v0.0.4

Execute executes the request

@return WorkspaceModVariable

type UserWorkspaceModsApiGetRequest added in v0.0.4

type UserWorkspaceModsApiGetRequest struct {
	ApiService *UserWorkspaceModsService
	// contains filtered or unexported fields
}

func (UserWorkspaceModsApiGetRequest) Execute added in v0.0.4

type UserWorkspaceModsApiInstallRequest added in v0.0.4

type UserWorkspaceModsApiInstallRequest struct {
	ApiService *UserWorkspaceModsService
	// contains filtered or unexported fields
}

func (UserWorkspaceModsApiInstallRequest) Execute added in v0.0.4

func (UserWorkspaceModsApiInstallRequest) Request added in v0.0.4

The request body to install a mod in the mentioned workspace for this user.

type UserWorkspaceModsApiListRequest added in v0.0.4

type UserWorkspaceModsApiListRequest struct {
	ApiService *UserWorkspaceModsService
	// contains filtered or unexported fields
}

func (UserWorkspaceModsApiListRequest) Execute added in v0.0.4

func (UserWorkspaceModsApiListRequest) Limit added in v0.0.4

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspaceModsApiListRequest) NextToken added in v0.0.4

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserWorkspaceModsApiUninstallRequest added in v0.0.4

type UserWorkspaceModsApiUninstallRequest struct {
	ApiService *UserWorkspaceModsService
	// contains filtered or unexported fields
}

func (UserWorkspaceModsApiUninstallRequest) Execute added in v0.0.4

type UserWorkspaceModsApiUpdateRequest added in v0.0.4

type UserWorkspaceModsApiUpdateRequest struct {
	ApiService *UserWorkspaceModsService
	// contains filtered or unexported fields
}

func (UserWorkspaceModsApiUpdateRequest) Execute added in v0.0.4

func (UserWorkspaceModsApiUpdateRequest) Request added in v0.0.4

The request body to update a mod for this workspace.

type UserWorkspaceModsService added in v0.0.4

type UserWorkspaceModsService service

UserWorkspaceModsService UserWorkspaceMods service

func (*UserWorkspaceModsService) Get added in v0.0.4

func (a *UserWorkspaceModsService) Get(ctx _context.Context, userHandle string, workspaceHandle string, modAlias string) UserWorkspaceModsApiGetRequest

Get Get user workspace installed mod

Get user workspace installed mod by mod alias

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user who owns the workspace.
@param workspaceHandle Provide the handle of the workspace where mod was installed.
@param modAlias The mod alias or mod ID
@return UserWorkspaceModsApiGetRequest

func (*UserWorkspaceModsService) GetExecute added in v0.0.4

Execute executes the request

@return WorkspaceMod

func (*UserWorkspaceModsService) Install added in v0.0.4

func (a *UserWorkspaceModsService) Install(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspaceModsApiInstallRequest

Install Install a mod to a user's workspace

Install a mod to a user's workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user who owns the workspace.
@param workspaceHandle The handle of the workspace where the mod will be installed.
@return UserWorkspaceModsApiInstallRequest

func (*UserWorkspaceModsService) InstallExecute added in v0.0.4

Execute executes the request

@return WorkspaceMod

func (*UserWorkspaceModsService) List added in v0.0.4

func (a *UserWorkspaceModsService) List(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspaceModsApiListRequest

List List user workspace installed mods

List user workspace installed mods

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user who owns the workspace.
@param workspaceHandle The handle of the workspace where mods were installed
@return UserWorkspaceModsApiListRequest

func (*UserWorkspaceModsService) ListExecute added in v0.0.4

Execute executes the request

@return ListWorkspaceModsResponse

func (*UserWorkspaceModsService) Uninstall added in v0.0.4

func (a *UserWorkspaceModsService) Uninstall(ctx _context.Context, userHandle string, workspaceHandle string, modAlias string) UserWorkspaceModsApiUninstallRequest

Uninstall Uninstall mod from a user's workspace.

Uninstall mod from a user's workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user who owns the workspace.
@param workspaceHandle The handle of the workspace where the mod was installed.
@param modAlias The mod alias or mod ID to delete.
@return UserWorkspaceModsApiUninstallRequest

func (*UserWorkspaceModsService) UninstallExecute added in v0.0.4

Execute executes the request

@return WorkspaceMod

func (*UserWorkspaceModsService) Update added in v0.0.4

func (a *UserWorkspaceModsService) Update(ctx _context.Context, userHandle string, workspaceHandle string, modAlias string) UserWorkspaceModsApiUpdateRequest

Update Update a mod in a user's workspace

Update a mod in a user's workspace

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user who owns the workspace.
@param workspaceHandle The handle of the workspace where the mod will be updated.
@param modAlias The mod alias or mod ID to update.
@return UserWorkspaceModsApiUpdateRequest

func (*UserWorkspaceModsService) UpdateExecute added in v0.0.4

Execute executes the request

@return WorkspaceMod

type UserWorkspacePipelinesApiCommandRequest added in v0.5.0

type UserWorkspacePipelinesApiCommandRequest struct {
	ApiService *UserWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (UserWorkspacePipelinesApiCommandRequest) Execute added in v0.5.0

func (UserWorkspacePipelinesApiCommandRequest) Request added in v0.5.0

The request body of the pipeline command to run.

type UserWorkspacePipelinesApiCreateRequest added in v0.5.0

type UserWorkspacePipelinesApiCreateRequest struct {
	ApiService *UserWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (UserWorkspacePipelinesApiCreateRequest) Execute added in v0.5.0

func (UserWorkspacePipelinesApiCreateRequest) Request added in v0.5.0

The request body for the pipeline to be created.

type UserWorkspacePipelinesApiDeleteRequest added in v0.5.0

type UserWorkspacePipelinesApiDeleteRequest struct {
	ApiService *UserWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (UserWorkspacePipelinesApiDeleteRequest) Execute added in v0.5.0

type UserWorkspacePipelinesApiGetRequest added in v0.5.0

type UserWorkspacePipelinesApiGetRequest struct {
	ApiService *UserWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (UserWorkspacePipelinesApiGetRequest) Execute added in v0.5.0

type UserWorkspacePipelinesApiListRequest added in v0.5.0

type UserWorkspacePipelinesApiListRequest struct {
	ApiService *UserWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (UserWorkspacePipelinesApiListRequest) Execute added in v0.5.0

func (UserWorkspacePipelinesApiListRequest) Limit added in v0.5.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspacePipelinesApiListRequest) NextToken added in v0.5.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

func (UserWorkspacePipelinesApiListRequest) Where added in v0.5.0

The SQL where filter you wish to apply to this request. The filter will be parsed and sanitised and checked against the supported columns for this API.

type UserWorkspacePipelinesApiUpdateRequest added in v0.5.0

type UserWorkspacePipelinesApiUpdateRequest struct {
	ApiService *UserWorkspacePipelinesService
	// contains filtered or unexported fields
}

func (UserWorkspacePipelinesApiUpdateRequest) Execute added in v0.5.0

func (UserWorkspacePipelinesApiUpdateRequest) Request added in v0.5.0

The request body for the pipeline which needs to be updated.

type UserWorkspacePipelinesService added in v0.5.0

type UserWorkspacePipelinesService service

UserWorkspacePipelinesService UserWorkspacePipelines service

func (*UserWorkspacePipelinesService) Command added in v0.5.0

func (a *UserWorkspacePipelinesService) Command(ctx _context.Context, userHandle string, workspaceHandle string, pipelineId string) UserWorkspacePipelinesApiCommandRequest

Command Run user workspace pipeline command

Run a command on a pipeline in a workspace belonging to a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user which contains the workspace.
@param workspaceHandle The handle of the workspace where the pipeline exists.
@param pipelineId Id of the pipeline on which the command will be run.
@return UserWorkspacePipelinesApiCommandRequest

func (*UserWorkspacePipelinesService) CommandExecute added in v0.5.0

Execute executes the request

@return PipelineCommandResponse

func (*UserWorkspacePipelinesService) Create added in v0.5.0

Create Create user workspace pipeline

Creates a new pipeline for a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user which contains the workspace.
@param workspaceHandle The handle of the workspace where we want to create the pipeline.
@return UserWorkspacePipelinesApiCreateRequest

func (*UserWorkspacePipelinesService) CreateExecute added in v0.5.0

Execute executes the request

@return Pipeline

func (*UserWorkspacePipelinesService) Delete added in v0.5.0

func (a *UserWorkspacePipelinesService) Delete(ctx _context.Context, userHandle string, workspaceHandle string, pipelineId string) UserWorkspacePipelinesApiDeleteRequest

Delete Delete user workspace pipeline

Deletes the pipeline specified in the request for a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user which contains the workspace.
@param workspaceHandle The handle of the workspace where the pipeline exists.
@param pipelineId Provide the id of the pipeline which needs to be deleted.
@return UserWorkspacePipelinesApiDeleteRequest

func (*UserWorkspacePipelinesService) DeleteExecute added in v0.5.0

Execute executes the request

@return Pipeline

func (*UserWorkspacePipelinesService) Get added in v0.5.0

func (a *UserWorkspacePipelinesService) Get(ctx _context.Context, userHandle string, workspaceHandle string, pipelineId string) UserWorkspacePipelinesApiGetRequest

Get Get user workspace pipeline

Get the details of a pipeline for a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user which contains the workspace.
@param workspaceHandle The handle of the workspace where the pipeline exists.
@param pipelineId The id of the pipeline whose detail needs to be fetched.
@return UserWorkspacePipelinesApiGetRequest

func (*UserWorkspacePipelinesService) GetExecute added in v0.5.0

Execute executes the request

@return Pipeline

func (*UserWorkspacePipelinesService) List added in v0.5.0

List List user workspace pipelines

Lists the pipelines for a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user for which contains the workspace.
@param workspaceHandle The handle of the workspace for which we want to list the pipelines.
@return UserWorkspacePipelinesApiListRequest

func (*UserWorkspacePipelinesService) ListExecute added in v0.5.0

Execute executes the request

@return ListPipelinesResponse

func (*UserWorkspacePipelinesService) Update added in v0.5.0

func (a *UserWorkspacePipelinesService) Update(ctx _context.Context, userHandle string, workspaceHandle string, pipelineId string) UserWorkspacePipelinesApiUpdateRequest

Update Update user workspace pipeline

Updates a pipeline for a workspace of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user which contains the workspace.
@param workspaceHandle The handle of the workspace where the pipeline exists.
@param pipelineId The id of the pipeline which needs to be updated.
@return UserWorkspacePipelinesApiUpdateRequest

func (*UserWorkspacePipelinesService) UpdateExecute added in v0.5.0

Execute executes the request

@return Pipeline

type UserWorkspaceProcessesApiGetRequest added in v0.5.0

type UserWorkspaceProcessesApiGetRequest struct {
	ApiService *UserWorkspaceProcessesService
	// contains filtered or unexported fields
}

func (UserWorkspaceProcessesApiGetRequest) Execute added in v0.5.0

type UserWorkspaceProcessesApiListRequest added in v0.5.0

type UserWorkspaceProcessesApiListRequest struct {
	ApiService *UserWorkspaceProcessesService
	// contains filtered or unexported fields
}

func (UserWorkspaceProcessesApiListRequest) Execute added in v0.5.0

func (UserWorkspaceProcessesApiListRequest) Limit added in v0.5.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspaceProcessesApiListRequest) NextToken added in v0.5.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

func (UserWorkspaceProcessesApiListRequest) Where added in v0.5.0

The SQL where filter you wish to apply to this request. The filter will be parsed and sanitised and checked against the supported columns for this API.

type UserWorkspaceProcessesApiLogRequest added in v0.5.0

type UserWorkspaceProcessesApiLogRequest struct {
	ApiService *UserWorkspaceProcessesService
	// contains filtered or unexported fields
}

func (UserWorkspaceProcessesApiLogRequest) Execute added in v0.5.0

type UserWorkspaceProcessesService added in v0.5.0

type UserWorkspaceProcessesService service

UserWorkspaceProcessesService UserWorkspaceProcesses service

func (*UserWorkspaceProcessesService) Get added in v0.5.0

func (a *UserWorkspaceProcessesService) Get(ctx _context.Context, userHandle string, workspaceHandle string, processId string) UserWorkspaceProcessesApiGetRequest

Get Get user workspace process

Get the details for a user workspace process.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the workspace exist.
@param workspaceHandle The handle of the workspace whose process needs to be fetched.
@param processId The id of the process to be fetched.
@return UserWorkspaceProcessesApiGetRequest

func (*UserWorkspaceProcessesService) GetExecute added in v0.5.0

Execute executes the request

@return SpProcess

func (*UserWorkspaceProcessesService) List added in v0.5.0

List List user workspace processes

List the process associated with a user workspace.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user for which you want to start listing processes.
@param workspaceHandle The handle of the workspace where you want to list the processes.
@return UserWorkspaceProcessesApiListRequest

func (*UserWorkspaceProcessesService) ListExecute added in v0.5.0

Execute executes the request

@return ListProcessesResponse

func (*UserWorkspaceProcessesService) Log added in v0.5.0

func (a *UserWorkspaceProcessesService) Log(ctx _context.Context, userHandle string, workspaceHandle string, processId string, logFile string, contentType string) UserWorkspaceProcessesApiLogRequest

Log List user workspace process logs

List the process logs associated with a workspace process.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the workspace exist.
@param workspaceHandle The handle of the workspace where you want to list the process logs.
@param processId The id of the process where you want to list the process logs.
@param logFile The process logs file to be fetched.
@param contentType The required content type of the process logs.
@return UserWorkspaceProcessesApiLogRequest

func (*UserWorkspaceProcessesService) LogExecute added in v0.5.0

Execute executes the request

@return string

type UserWorkspaceSnapshotsApiCreateRequest added in v0.1.3

type UserWorkspaceSnapshotsApiCreateRequest struct {
	ApiService *UserWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (UserWorkspaceSnapshotsApiCreateRequest) Execute added in v0.1.3

func (UserWorkspaceSnapshotsApiCreateRequest) Request added in v0.1.3

The request body for the user workspace snapshot to be created.

type UserWorkspaceSnapshotsApiDeleteRequest added in v0.1.3

type UserWorkspaceSnapshotsApiDeleteRequest struct {
	ApiService *UserWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (UserWorkspaceSnapshotsApiDeleteRequest) Execute added in v0.1.3

type UserWorkspaceSnapshotsApiDownloadRequest added in v0.1.3

type UserWorkspaceSnapshotsApiDownloadRequest struct {
	ApiService *UserWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (UserWorkspaceSnapshotsApiDownloadRequest) Execute added in v0.1.3

type UserWorkspaceSnapshotsApiGetRequest added in v0.1.3

type UserWorkspaceSnapshotsApiGetRequest struct {
	ApiService *UserWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (UserWorkspaceSnapshotsApiGetRequest) Execute added in v0.1.3

type UserWorkspaceSnapshotsApiListRequest added in v0.1.3

type UserWorkspaceSnapshotsApiListRequest struct {
	ApiService *UserWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (UserWorkspaceSnapshotsApiListRequest) Execute added in v0.1.3

func (UserWorkspaceSnapshotsApiListRequest) Limit added in v0.1.3

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspaceSnapshotsApiListRequest) NextToken added in v0.1.3

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

func (UserWorkspaceSnapshotsApiListRequest) Where added in v0.1.3

The SQL where filter you wish to apply to this request. The filter will be parsed and sanitised and checked against the supported columns for this API.

type UserWorkspaceSnapshotsApiUpdateRequest added in v0.1.3

type UserWorkspaceSnapshotsApiUpdateRequest struct {
	ApiService *UserWorkspaceSnapshotsService
	// contains filtered or unexported fields
}

func (UserWorkspaceSnapshotsApiUpdateRequest) Execute added in v0.1.3

func (UserWorkspaceSnapshotsApiUpdateRequest) Request added in v0.1.3

The request body for the user workspace snapshot to be updated.

type UserWorkspaceSnapshotsService added in v0.1.3

type UserWorkspaceSnapshotsService service

UserWorkspaceSnapshotsService UserWorkspaceSnapshots service

func (*UserWorkspaceSnapshotsService) Create added in v0.1.3

Create Create user workspace snapshot

Creates a new workspace snapshot for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to create the workspace snapshot for.
@param workspaceHandle The handle of the user workspace to create the snapshot for.
@return UserWorkspaceSnapshotsApiCreateRequest

func (*UserWorkspaceSnapshotsService) CreateExecute added in v0.1.3

Execute executes the request

@return WorkspaceSnapshot

func (*UserWorkspaceSnapshotsService) Delete added in v0.1.3

func (a *UserWorkspaceSnapshotsService) Delete(ctx _context.Context, userHandle string, workspaceHandle string, snapshotId string) UserWorkspaceSnapshotsApiDeleteRequest

Delete Delete user workspace snapshot

Deletes a user workspace snapshot.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user that the workspace snapshot belongs to.
@param workspaceHandle The handle of the user workspace that the snapshot belongs to.
@param snapshotId The handle of the snapshot which needs to be deleted.
@return UserWorkspaceSnapshotsApiDeleteRequest

func (*UserWorkspaceSnapshotsService) DeleteExecute added in v0.1.3

Execute executes the request

@return WorkspaceSnapshot

func (*UserWorkspaceSnapshotsService) Download added in v0.1.3

func (a *UserWorkspaceSnapshotsService) Download(ctx _context.Context, userHandle string, workspaceHandle string, snapshotId string, contentType string) UserWorkspaceSnapshotsApiDownloadRequest

Download Download user workspace snapshot

Downloads the full data for a user workspace snapshot.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user that the workspace snapshot belongs to.
@param workspaceHandle The handle of the user workspace that the snapshot belongs to.
@param snapshotId The Id of the snapshot to be downloaded.
@param contentType The type of content to the downloaded.
@return UserWorkspaceSnapshotsApiDownloadRequest

func (*UserWorkspaceSnapshotsService) DownloadExecute added in v0.1.3

Execute executes the request

@return WorkspaceSnapshotData

func (*UserWorkspaceSnapshotsService) Get added in v0.1.3

func (a *UserWorkspaceSnapshotsService) Get(ctx _context.Context, userHandle string, workspaceHandle string, snapshotId string) UserWorkspaceSnapshotsApiGetRequest

Get Get user workspace snapshot

Get the details for a user workspace snapshot.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user that the workspace snapshot belongs to.
@param workspaceHandle The handle of the user workspace that the snapshot belongs to.
@param snapshotId The handle of the snapshot whose detail needs to be fetched.
@return UserWorkspaceSnapshotsApiGetRequest

func (*UserWorkspaceSnapshotsService) GetExecute added in v0.1.3

Execute executes the request

@return WorkspaceSnapshot

func (*UserWorkspaceSnapshotsService) List added in v0.1.3

List List user workspace snapshots

List the workspace snapshots for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user to list the workspace snapshots for.
@param workspaceHandle The handle of the workspace to list snapshots for.
@return UserWorkspaceSnapshotsApiListRequest

func (*UserWorkspaceSnapshotsService) ListExecute added in v0.1.3

Execute executes the request

@return ListWorkspaceSnapshotsResponse

func (*UserWorkspaceSnapshotsService) Update added in v0.1.3

func (a *UserWorkspaceSnapshotsService) Update(ctx _context.Context, userHandle string, workspaceHandle string, snapshotId string) UserWorkspaceSnapshotsApiUpdateRequest

Update Update user workspace snapshot

Updates a user workspace snapshot.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user that the workspace snapshot belongs to.
@param workspaceHandle The handle of the user workspace that the snapshot belongs to.
@param snapshotId The handle of the snapshot to update.
@return UserWorkspaceSnapshotsApiUpdateRequest

func (*UserWorkspaceSnapshotsService) UpdateExecute added in v0.1.3

Execute executes the request

@return WorkspaceSnapshot

type UserWorkspacesApiCommandRequest added in v0.2.0

type UserWorkspacesApiCommandRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiCommandRequest) Execute added in v0.2.0

func (UserWorkspacesApiCommandRequest) Request added in v0.2.0

The request body for the workspace command.

type UserWorkspacesApiCreateRequest

type UserWorkspacesApiCreateRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiCreateRequest) Execute

func (UserWorkspacesApiCreateRequest) Request

The request body for the workspace to be created.

type UserWorkspacesApiDeleteRequest

type UserWorkspacesApiDeleteRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiDeleteRequest) Execute

type UserWorkspacesApiGetQueryRequest added in v0.0.2

type UserWorkspacesApiGetQueryRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiGetQueryRequest) ContentType added in v0.0.2

The required content type for the response. Defaults to application/json. Supported values are json, application/json, csv, text/csv, md and text/markdown.

func (UserWorkspacesApiGetQueryRequest) Execute added in v0.0.2

func (UserWorkspacesApiGetQueryRequest) Sql added in v0.0.2

The sql query to perform against the user workspace.

type UserWorkspacesApiGetQueryWithExtensionsRequest added in v0.0.2

type UserWorkspacesApiGetQueryWithExtensionsRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiGetQueryWithExtensionsRequest) ContentType added in v0.0.2

The required content type for the response. Defaults to application/json. Supported values are json, application/json, csv, text/csv, md and text/markdown.

func (UserWorkspacesApiGetQueryWithExtensionsRequest) Execute added in v0.0.2

func (UserWorkspacesApiGetQueryWithExtensionsRequest) Sql added in v0.0.2

The sql query to perform against the user workspace.

type UserWorkspacesApiGetRequest

type UserWorkspacesApiGetRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiGetRequest) Execute

type UserWorkspacesApiGetSchemaRequest added in v0.0.2

type UserWorkspacesApiGetSchemaRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiGetSchemaRequest) Execute added in v0.0.2

type UserWorkspacesApiListAuditLogsRequest added in v0.1.3

type UserWorkspacesApiListAuditLogsRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiListAuditLogsRequest) Execute added in v0.1.3

func (UserWorkspacesApiListAuditLogsRequest) Limit added in v0.1.3

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspacesApiListAuditLogsRequest) NextToken added in v0.1.3

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserWorkspacesApiListDBLogsRequest

type UserWorkspacesApiListDBLogsRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiListDBLogsRequest) Execute

func (UserWorkspacesApiListDBLogsRequest) Limit added in v0.1.3

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspacesApiListDBLogsRequest) NextToken added in v0.1.3

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserWorkspacesApiListRequest

type UserWorkspacesApiListRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiListRequest) Execute

func (UserWorkspacesApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UserWorkspacesApiListRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UserWorkspacesApiPostQueryRequest added in v0.0.2

type UserWorkspacesApiPostQueryRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiPostQueryRequest) ContentType added in v0.0.2

The required content type for the response. Defaults to application/json. Supported values are json, application/json, csv, text/csv, md and text/markdown.

func (UserWorkspacesApiPostQueryRequest) Execute added in v0.0.2

func (UserWorkspacesApiPostQueryRequest) Sql added in v0.0.2

The sql query to perform against the user workspace.

type UserWorkspacesApiPostQueryWithExtensionsRequest added in v0.0.2

type UserWorkspacesApiPostQueryWithExtensionsRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiPostQueryWithExtensionsRequest) ContentType added in v0.0.2

The required content type for the response. Defaults to application/json. Supported values are json, application/json, csv, text/csv, md and text/markdown.

func (UserWorkspacesApiPostQueryWithExtensionsRequest) Execute added in v0.0.2

func (UserWorkspacesApiPostQueryWithExtensionsRequest) Sql added in v0.0.2

The sql query to perform against the user workspace.

type UserWorkspacesApiUpdateRequest

type UserWorkspacesApiUpdateRequest struct {
	ApiService *UserWorkspacesService
	// contains filtered or unexported fields
}

func (UserWorkspacesApiUpdateRequest) Execute

func (UserWorkspacesApiUpdateRequest) Request

The request body for the workspace which needs to be updated.

type UserWorkspacesService

type UserWorkspacesService service

UserWorkspacesService UserWorkspaces service

func (*UserWorkspacesService) Command added in v0.2.0

func (a *UserWorkspacesService) Command(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspacesApiCommandRequest

Command Run user workspace command

Run a command in the workspace. Valid commands are: reboot.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where we want to run the workspace command.
@param workspaceHandle The handle of the workspace where command will be executed.
@return UserWorkspacesApiCommandRequest

func (*UserWorkspacesService) CommandExecute added in v0.2.0

Execute executes the request

@return WorkspaceCommandResponse

func (*UserWorkspacesService) Create

Create Create user workspace

Creates a new workspace for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where we want to create the workspace.
@return UserWorkspacesApiCreateRequest

func (*UserWorkspacesService) CreateExecute

Execute executes the request

@return Workspace

func (*UserWorkspacesService) Delete

func (a *UserWorkspacesService) Delete(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspacesApiDeleteRequest

Delete Delete user workspace

Deletes the workspace specified in the request by the user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the workspace exist.
@param workspaceHandle Provide the handle of the workspace which needs to be deleted.
@return UserWorkspacesApiDeleteRequest

func (*UserWorkspacesService) DeleteExecute

Execute executes the request

@return Workspace

func (*UserWorkspacesService) Get

func (a *UserWorkspacesService) Get(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspacesApiGetRequest

Get Get user workspace

Get the details for the workspace.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the workspace exist.
@param workspaceHandle The handle of the workspace whose detail needs to be fetched.
@return UserWorkspacesApiGetRequest

func (*UserWorkspacesService) GetExecute

Execute executes the request

@return Workspace

func (*UserWorkspacesService) GetQuery added in v0.0.2

func (a *UserWorkspacesService) GetQuery(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspacesApiGetQueryRequest

GetQuery Query user workspace

Performs a query in a user workspace. Results are limited to 5000 rows or 30 seconds of query execution.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user that the workspace belongs to.
@param workspaceHandle The handle of the workspace to query.
@return UserWorkspacesApiGetQueryRequest

func (*UserWorkspacesService) GetQueryExecute added in v0.0.2

Execute executes the request

@return WorkspaceQueryResult

func (*UserWorkspacesService) GetQueryWithExtensions added in v0.0.2

func (a *UserWorkspacesService) GetQueryWithExtensions(ctx _context.Context, userHandle string, workspaceHandle string, extensions string) UserWorkspacesApiGetQueryWithExtensionsRequest

GetQueryWithExtensions Query user workspace with extensions

Performs a query in a user workspace, with content type and content encoding forming part of the API path. Results are limited to 5000 rows or 30 seconds of query execution.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user that the workspace belongs to.
@param workspaceHandle The handle of the workspace to query.
@param extensions The content type for the request. E.g.
@return UserWorkspacesApiGetQueryWithExtensionsRequest

func (*UserWorkspacesService) GetQueryWithExtensionsExecute added in v0.0.2

Execute executes the request

@return WorkspaceQueryResult

func (*UserWorkspacesService) GetSchema added in v0.0.2

func (a *UserWorkspacesService) GetSchema(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspacesApiGetSchemaRequest

GetSchema Get user workspace schemas

Returns the postgres schemas for a user workspace. This will consist of the connections associated with the workspace and any automatic aggregators prefixed with "all_", which are created for any connections where you have >=2 of that plugin type.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user that the workspace belongs to.
@param workspaceHandle The handle of the workspace to get the schemas for.
@return UserWorkspacesApiGetSchemaRequest

func (*UserWorkspacesService) GetSchemaExecute added in v0.0.2

Execute executes the request

@return WorkspaceSchema

func (*UserWorkspacesService) List

List List user workspaces

List the workspace for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user for which we want to list the workspace.
@return UserWorkspacesApiListRequest

func (*UserWorkspacesService) ListAuditLogs added in v0.1.3

func (a *UserWorkspacesService) ListAuditLogs(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspacesApiListAuditLogsRequest

ListAuditLogs User workspace audit logs

Returns the audit logs for a user workspace.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the user handle to get the audit logs.
@param workspaceHandle The handle of the workspace whose logs needs to be fetched.
@return UserWorkspacesApiListAuditLogsRequest

func (*UserWorkspacesService) ListAuditLogsExecute added in v0.1.3

Execute executes the request

@return ListAuditLogsResponse

func (*UserWorkspacesService) ListDBLogs

func (a *UserWorkspacesService) ListDBLogs(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspacesApiListDBLogsRequest

ListDBLogs User workspace logs

Returns the workspace logs for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the user handle to get the workspace logs.
@param workspaceHandle The handle of the workspace whose logs needs to be fetched.
@return UserWorkspacesApiListDBLogsRequest

func (*UserWorkspacesService) ListDBLogsExecute

Execute executes the request

@return ListLogsResponse

func (*UserWorkspacesService) ListExecute

Execute executes the request

@return ListWorkspacesResponse

func (*UserWorkspacesService) PostQuery added in v0.0.2

func (a *UserWorkspacesService) PostQuery(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspacesApiPostQueryRequest

PostQuery Query user workspace

Performs a query in a user workspace. Results are limited to 5000 rows or 30 seconds of query execution.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user that the workspace belongs to.
@param workspaceHandle The handle of the workspace to query.
@return UserWorkspacesApiPostQueryRequest

func (*UserWorkspacesService) PostQueryExecute added in v0.0.2

Execute executes the request

@return WorkspaceQueryResult

func (*UserWorkspacesService) PostQueryWithExtensions added in v0.0.2

func (a *UserWorkspacesService) PostQueryWithExtensions(ctx _context.Context, userHandle string, workspaceHandle string, extensions string) UserWorkspacesApiPostQueryWithExtensionsRequest

PostQueryWithExtensions Query user workspace with extensions

Performs a query in a user workspace, with content type and content encoding forming part of the API path. Results are limited to 5000 rows or 30 seconds of query execution.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user that the workspace belongs to.
@param workspaceHandle The handle of the workspace to query.
@param extensions The content type for the request. E.g.
@return UserWorkspacesApiPostQueryWithExtensionsRequest

func (*UserWorkspacesService) PostQueryWithExtensionsExecute added in v0.0.2

Execute executes the request

@return WorkspaceQueryResult

func (*UserWorkspacesService) Update

func (a *UserWorkspacesService) Update(ctx _context.Context, userHandle string, workspaceHandle string) UserWorkspacesApiUpdateRequest

Update Update user workspace

Update the workspace for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user where the workspace exist.
@param workspaceHandle The handle of the workspace which needs to be updated.
@return UserWorkspacesApiUpdateRequest

func (*UserWorkspacesService) UpdateExecute

Execute executes the request

@return Workspace

type UsersApiCreateAvatarRequest added in v0.6.0

type UsersApiCreateAvatarRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiCreateAvatarRequest) Execute added in v0.6.0

type UsersApiCreateDBPasswordRequest

type UsersApiCreateDBPasswordRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiCreateDBPasswordRequest) Execute

func (UsersApiCreateDBPasswordRequest) Request

The request body to create or rotate the password.

type UsersApiCreateRequest

type UsersApiCreateRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiCreateRequest) Execute

func (UsersApiCreateRequest) Request

The request body to create the user.

type UsersApiDeleteAvatarRequest added in v0.6.0

type UsersApiDeleteAvatarRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiDeleteAvatarRequest) Execute added in v0.6.0

type UsersApiDeleteRequest

type UsersApiDeleteRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiDeleteRequest) Execute

type UsersApiGetDBPasswordRequest

type UsersApiGetDBPasswordRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiGetDBPasswordRequest) Execute

type UsersApiGetEmailRequest added in v0.2.0

type UsersApiGetEmailRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiGetEmailRequest) Execute added in v0.2.0

type UsersApiGetPreferencesRequest added in v0.2.0

type UsersApiGetPreferencesRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiGetPreferencesRequest) Execute added in v0.2.0

type UsersApiGetQuotaRequest

type UsersApiGetQuotaRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiGetQuotaRequest) Execute

type UsersApiGetRequest

type UsersApiGetRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiGetRequest) Execute

func (r UsersApiGetRequest) Execute() (User, *_nethttp.Response, error)

type UsersApiListAuditLogsRequest

type UsersApiListAuditLogsRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiListAuditLogsRequest) Execute

func (UsersApiListAuditLogsRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UsersApiListAuditLogsRequest) NextToken

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UsersApiListEmailsRequest added in v0.2.0

type UsersApiListEmailsRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiListEmailsRequest) Execute added in v0.2.0

func (UsersApiListEmailsRequest) Limit added in v0.2.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UsersApiListEmailsRequest) NextToken added in v0.2.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UsersApiListFeaturesRequest added in v0.0.4

type UsersApiListFeaturesRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiListFeaturesRequest) Execute added in v0.0.4

type UsersApiListRequest

type UsersApiListRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiListRequest) Execute

func (UsersApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (UsersApiListRequest) NextToken

func (r UsersApiListRequest) NextToken(nextToken string) UsersApiListRequest

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type UsersApiUpdatePreferencesRequest added in v0.2.0

type UsersApiUpdatePreferencesRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiUpdatePreferencesRequest) Execute added in v0.2.0

func (UsersApiUpdatePreferencesRequest) Request added in v0.2.0

The request body for updating user preferences.

type UsersApiUpdateRequest

type UsersApiUpdateRequest struct {
	ApiService *UsersService
	// contains filtered or unexported fields
}

func (UsersApiUpdateRequest) Execute

func (UsersApiUpdateRequest) Request

The request body for the user.

type UsersService

type UsersService service

UsersService Users service

func (*UsersService) Create

Create Create user

Creates a new user.

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

func (*UsersService) CreateAvatar added in v0.6.0

func (a *UsersService) CreateAvatar(ctx _context.Context, userHandle string) UsersApiCreateAvatarRequest

CreateAvatar Create user avatar

Create custom avatar for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user whose avatar is to be created.
@return UsersApiCreateAvatarRequest

func (*UsersService) CreateAvatarExecute added in v0.6.0

Execute executes the request

@return CreateUserAvatarResponse

func (*UsersService) CreateDBPassword

func (a *UsersService) CreateDBPassword(ctx _context.Context, userHandle string) UsersApiCreateDBPasswordRequest

CreateDBPassword Create user password

Create or rotate user password.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the handle of the user whose password need to be created or rotated.
@return UsersApiCreateDBPasswordRequest

func (*UsersService) CreateDBPasswordExecute

Execute executes the request

@return UserDatabasePassword

func (*UsersService) CreateExecute

func (a *UsersService) CreateExecute(r UsersApiCreateRequest) (User, *_nethttp.Response, error)

Execute executes the request

@return User

func (*UsersService) Delete

func (a *UsersService) Delete(ctx _context.Context, userHandle string) UsersApiDeleteRequest

Delete Delete user

Deletes the specified user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the handle of the user which need to be deleted.
@return UsersApiDeleteRequest

func (*UsersService) DeleteAvatar added in v0.6.0

func (a *UsersService) DeleteAvatar(ctx _context.Context, userHandle string) UsersApiDeleteAvatarRequest

DeleteAvatar Delete user avatar

Delete custom avatar for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle The handle of the user whose avatar is to be deleted.
@return UsersApiDeleteAvatarRequest

func (*UsersService) DeleteAvatarExecute added in v0.6.0

Execute executes the request

@return DeleteUserAvatarResponse

func (*UsersService) DeleteExecute

func (a *UsersService) DeleteExecute(r UsersApiDeleteRequest) (User, *_nethttp.Response, error)

Execute executes the request

@return User

func (*UsersService) Get

func (a *UsersService) Get(ctx _context.Context, userHandle string) UsersApiGetRequest

Get Get user

Retrieves information of the specified user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the handle of the user whose information you want to retrieve.
@return UsersApiGetRequest

func (*UsersService) GetDBPassword

func (a *UsersService) GetDBPassword(ctx _context.Context, userHandle string) UsersApiGetDBPasswordRequest

GetDBPassword Get user password

Get user password.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the handle of the user whose password need to be retrieved.
@return UsersApiGetDBPasswordRequest

func (*UsersService) GetDBPasswordExecute

Execute executes the request

@return UserDatabasePassword

func (*UsersService) GetEmail added in v0.2.0

func (a *UsersService) GetEmail(ctx _context.Context, userHandle string, emailId string) UsersApiGetEmailRequest

GetEmail Get user email

Get a particular user email record along with its metadata information.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the handle of the user whose information you want to retrieve.
@param emailId Specify the id of the email object you want to retrieve.
@return UsersApiGetEmailRequest

func (*UsersService) GetEmailExecute added in v0.2.0

Execute executes the request

@return UserEmail

func (*UsersService) GetExecute

Execute executes the request

@return User

func (*UsersService) GetPreferences added in v0.2.0

func (a *UsersService) GetPreferences(ctx _context.Context, userHandle string) UsersApiGetPreferencesRequest

GetPreferences Get user preferences

Get preferences for the user such as email preferences.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the handle of the user whose preferences need to be retrieved.
@return UsersApiGetPreferencesRequest

func (*UsersService) GetPreferencesExecute added in v0.2.0

Execute executes the request

@return UserPreferences

func (*UsersService) GetQuota

func (a *UsersService) GetQuota(ctx _context.Context, userHandle string) UsersApiGetQuotaRequest

GetQuota User quota

Returns the quota information for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the user handle to get the quota details.
@return UsersApiGetQuotaRequest

func (*UsersService) GetQuotaExecute

Execute executes the request

@return UserQuota

func (*UsersService) List

List List users

List the users.

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

func (*UsersService) ListAuditLogs

func (a *UsersService) ListAuditLogs(ctx _context.Context, userHandle string) UsersApiListAuditLogsRequest

ListAuditLogs User audit logs

Returns the audit logs for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the user handle to get the audit logs.
@return UsersApiListAuditLogsRequest

func (*UsersService) ListAuditLogsExecute

Execute executes the request

@return ListAuditLogsResponse

func (*UsersService) ListEmails added in v0.2.0

func (a *UsersService) ListEmails(ctx _context.Context, userHandle string) UsersApiListEmailsRequest

ListEmails List user emails

List emails for a user along with other metadata information for each item.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the handle of the user whose information you want to retrieve.
@return UsersApiListEmailsRequest

func (*UsersService) ListEmailsExecute added in v0.2.0

Execute executes the request

@return ListUserEmailsResponse

func (*UsersService) ListExecute

Execute executes the request

@return ListUsersResponse

func (*UsersService) ListFeatures added in v0.0.4

func (a *UsersService) ListFeatures(ctx _context.Context, userHandle string) UsersApiListFeaturesRequest

ListFeatures User features

Returns the feature information for a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the user handle to get the feature details.
@return UsersApiListFeaturesRequest

func (*UsersService) ListFeaturesExecute added in v0.0.4

Execute executes the request

@return ListFeaturesResponse

func (*UsersService) Update

func (a *UsersService) Update(ctx _context.Context, userHandle string) UsersApiUpdateRequest

Update Update user

Updates the handle name, display name, or the URL of a user.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the handle of the user which need to be updated.
@return UsersApiUpdateRequest

func (*UsersService) UpdateExecute

func (a *UsersService) UpdateExecute(r UsersApiUpdateRequest) (User, *_nethttp.Response, error)

Execute executes the request

@return User

func (*UsersService) UpdatePreferences added in v0.2.0

func (a *UsersService) UpdatePreferences(ctx _context.Context, userHandle string) UsersApiUpdatePreferencesRequest

UpdatePreferences Update user preferences

Update preferences for the user e.g. opting out of receiving certain kind of emails.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userHandle Specify the handle of the user whose preferences need to be retrieved.
@return UsersApiUpdatePreferencesRequest

func (*UsersService) UpdatePreferencesExecute added in v0.2.0

Execute executes the request

@return UserPreferences

type Workspace added in v0.0.2

type Workspace struct {
	ApiVersion *string `json:"api_version,omitempty"`
	CliVersion *string `json:"cli_version,omitempty"`
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The name of the database.
	DatabaseName *string `json:"database_name,omitempty"`
	// The time of the last update in ISO 8601 UTC.
	DeletedAt *string `json:"deleted_at,omitempty"`
	DeletedBy *User   `json:"deleted_by,omitempty"`
	// The ID of the user that performed the deletion.
	DeletedById  string `json:"deleted_by_id"`
	DesiredState string `json:"desired_state"`
	// The handle name for the workspace.
	Handle string `json:"handle"`
	// The database hive for this workspace.
	Hive *string `json:"hive,omitempty"`
	Host *string `json:"host,omitempty"`
	// The unique identifier for the workspace.
	Id string `json:"id"`
	// The unique identifier for an identity where the workspace is created.
	IdentityId string  `json:"identity_id"`
	PublicKey  *string `json:"public_key,omitempty"`
	// The current state of the workspace.
	State       *string `json:"state,omitempty"`
	StateReason *string `json:"state_reason,omitempty"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
}

Workspace struct for Workspace

func NewWorkspace added in v0.0.2

func NewWorkspace(createdAt string, createdById string, deletedById string, desiredState string, handle string, id string, identityId string, updatedById string, versionId int32) *Workspace

NewWorkspace instantiates a new Workspace 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 NewWorkspaceWithDefaults added in v0.0.2

func NewWorkspaceWithDefaults() *Workspace

NewWorkspaceWithDefaults instantiates a new Workspace 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 (*Workspace) GetApiVersion added in v0.1.3

func (o *Workspace) GetApiVersion() string

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

func (*Workspace) GetApiVersionOk added in v0.1.3

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

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

func (*Workspace) GetCliVersion added in v0.1.3

func (o *Workspace) GetCliVersion() string

GetCliVersion returns the CliVersion field value if set, zero value otherwise.

func (*Workspace) GetCliVersionOk added in v0.1.3

func (o *Workspace) GetCliVersionOk() (*string, bool)

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

func (*Workspace) GetCreatedAt added in v0.0.2

func (o *Workspace) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*Workspace) GetCreatedAtOk added in v0.0.2

func (o *Workspace) GetCreatedAtOk() (*string, bool)

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

func (*Workspace) GetCreatedBy added in v0.1.0

func (o *Workspace) GetCreatedBy() User

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

func (*Workspace) GetCreatedById added in v0.1.0

func (o *Workspace) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*Workspace) GetCreatedByIdOk added in v0.1.0

func (o *Workspace) GetCreatedByIdOk() (*string, bool)

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

func (*Workspace) GetCreatedByOk added in v0.1.0

func (o *Workspace) GetCreatedByOk() (*User, 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 (*Workspace) GetDatabaseName added in v0.0.2

func (o *Workspace) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*Workspace) GetDatabaseNameOk added in v0.0.2

func (o *Workspace) GetDatabaseNameOk() (*string, bool)

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

func (*Workspace) GetDeletedAt added in v0.2.0

func (o *Workspace) GetDeletedAt() string

GetDeletedAt returns the DeletedAt field value if set, zero value otherwise.

func (*Workspace) GetDeletedAtOk added in v0.2.0

func (o *Workspace) GetDeletedAtOk() (*string, bool)

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

func (*Workspace) GetDeletedBy added in v0.2.0

func (o *Workspace) GetDeletedBy() User

GetDeletedBy returns the DeletedBy field value if set, zero value otherwise.

func (*Workspace) GetDeletedById added in v0.2.0

func (o *Workspace) GetDeletedById() string

GetDeletedById returns the DeletedById field value

func (*Workspace) GetDeletedByIdOk added in v0.2.0

func (o *Workspace) GetDeletedByIdOk() (*string, bool)

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

func (*Workspace) GetDeletedByOk added in v0.2.0

func (o *Workspace) GetDeletedByOk() (*User, bool)

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

func (*Workspace) GetDesiredState added in v0.6.0

func (o *Workspace) GetDesiredState() string

GetDesiredState returns the DesiredState field value

func (*Workspace) GetDesiredStateOk added in v0.6.0

func (o *Workspace) GetDesiredStateOk() (*string, bool)

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

func (*Workspace) GetHandle added in v0.0.2

func (o *Workspace) GetHandle() string

GetHandle returns the Handle field value

func (*Workspace) GetHandleOk added in v0.0.2

func (o *Workspace) GetHandleOk() (*string, bool)

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

func (*Workspace) GetHive added in v0.0.2

func (o *Workspace) GetHive() string

GetHive returns the Hive field value if set, zero value otherwise.

func (*Workspace) GetHiveOk added in v0.0.2

func (o *Workspace) GetHiveOk() (*string, bool)

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

func (*Workspace) GetHost added in v0.0.2

func (o *Workspace) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*Workspace) GetHostOk added in v0.0.2

func (o *Workspace) GetHostOk() (*string, bool)

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

func (*Workspace) GetId added in v0.0.2

func (o *Workspace) GetId() string

GetId returns the Id field value

func (*Workspace) GetIdOk added in v0.0.2

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

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

func (*Workspace) GetIdentityId added in v0.0.2

func (o *Workspace) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*Workspace) GetIdentityIdOk added in v0.0.2

func (o *Workspace) GetIdentityIdOk() (*string, bool)

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

func (*Workspace) GetPublicKey added in v0.0.2

func (o *Workspace) GetPublicKey() string

GetPublicKey returns the PublicKey field value if set, zero value otherwise.

func (*Workspace) GetPublicKeyOk added in v0.0.2

func (o *Workspace) GetPublicKeyOk() (*string, bool)

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

func (*Workspace) GetState added in v0.1.0

func (o *Workspace) GetState() string

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

func (*Workspace) GetStateOk added in v0.1.0

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

func (o *Workspace) GetStateReason() string

GetStateReason returns the StateReason field value if set, zero value otherwise.

func (*Workspace) GetStateReasonOk added in v0.6.0

func (o *Workspace) GetStateReasonOk() (*string, bool)

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

func (*Workspace) GetUpdatedAt added in v0.0.2

func (o *Workspace) GetUpdatedAt() string

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

func (*Workspace) GetUpdatedAtOk added in v0.0.2

func (o *Workspace) GetUpdatedAtOk() (*string, 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 (*Workspace) GetUpdatedBy added in v0.1.0

func (o *Workspace) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*Workspace) GetUpdatedById added in v0.1.0

func (o *Workspace) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*Workspace) GetUpdatedByIdOk added in v0.1.0

func (o *Workspace) GetUpdatedByIdOk() (*string, bool)

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

func (*Workspace) GetUpdatedByOk added in v0.1.0

func (o *Workspace) GetUpdatedByOk() (*User, bool)

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

func (*Workspace) GetVersionId added in v0.0.2

func (o *Workspace) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*Workspace) GetVersionIdOk added in v0.0.2

func (o *Workspace) GetVersionIdOk() (*int32, bool)

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

func (*Workspace) HasApiVersion added in v0.1.3

func (o *Workspace) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*Workspace) HasCliVersion added in v0.1.3

func (o *Workspace) HasCliVersion() bool

HasCliVersion returns a boolean if a field has been set.

func (*Workspace) HasCreatedBy added in v0.1.0

func (o *Workspace) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Workspace) HasDatabaseName added in v0.0.2

func (o *Workspace) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*Workspace) HasDeletedAt added in v0.2.0

func (o *Workspace) HasDeletedAt() bool

HasDeletedAt returns a boolean if a field has been set.

func (*Workspace) HasDeletedBy added in v0.2.0

func (o *Workspace) HasDeletedBy() bool

HasDeletedBy returns a boolean if a field has been set.

func (*Workspace) HasHive added in v0.0.2

func (o *Workspace) HasHive() bool

HasHive returns a boolean if a field has been set.

func (*Workspace) HasHost added in v0.0.2

func (o *Workspace) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*Workspace) HasPublicKey added in v0.0.2

func (o *Workspace) HasPublicKey() bool

HasPublicKey returns a boolean if a field has been set.

func (*Workspace) HasState added in v0.1.0

func (o *Workspace) HasState() bool

HasState returns a boolean if a field has been set.

func (*Workspace) HasStateReason added in v0.6.0

func (o *Workspace) HasStateReason() bool

HasStateReason returns a boolean if a field has been set.

func (*Workspace) HasUpdatedAt added in v0.0.2

func (o *Workspace) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Workspace) HasUpdatedBy added in v0.1.0

func (o *Workspace) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (Workspace) MarshalJSON added in v0.0.2

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

func (*Workspace) SetApiVersion added in v0.1.3

func (o *Workspace) SetApiVersion(v string)

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

func (*Workspace) SetCliVersion added in v0.1.3

func (o *Workspace) SetCliVersion(v string)

SetCliVersion gets a reference to the given string and assigns it to the CliVersion field.

func (*Workspace) SetCreatedAt added in v0.0.2

func (o *Workspace) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*Workspace) SetCreatedBy added in v0.1.0

func (o *Workspace) SetCreatedBy(v User)

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

func (*Workspace) SetCreatedById added in v0.1.0

func (o *Workspace) SetCreatedById(v string)

SetCreatedById sets field value

func (*Workspace) SetDatabaseName added in v0.0.2

func (o *Workspace) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*Workspace) SetDeletedAt added in v0.2.0

func (o *Workspace) SetDeletedAt(v string)

SetDeletedAt gets a reference to the given string and assigns it to the DeletedAt field.

func (*Workspace) SetDeletedBy added in v0.2.0

func (o *Workspace) SetDeletedBy(v User)

SetDeletedBy gets a reference to the given User and assigns it to the DeletedBy field.

func (*Workspace) SetDeletedById added in v0.2.0

func (o *Workspace) SetDeletedById(v string)

SetDeletedById sets field value

func (*Workspace) SetDesiredState added in v0.6.0

func (o *Workspace) SetDesiredState(v string)

SetDesiredState sets field value

func (*Workspace) SetHandle added in v0.0.2

func (o *Workspace) SetHandle(v string)

SetHandle sets field value

func (*Workspace) SetHive added in v0.0.2

func (o *Workspace) SetHive(v string)

SetHive gets a reference to the given string and assigns it to the Hive field.

func (*Workspace) SetHost added in v0.0.2

func (o *Workspace) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*Workspace) SetId added in v0.0.2

func (o *Workspace) SetId(v string)

SetId sets field value

func (*Workspace) SetIdentityId added in v0.0.2

func (o *Workspace) SetIdentityId(v string)

SetIdentityId sets field value

func (*Workspace) SetPublicKey added in v0.0.2

func (o *Workspace) SetPublicKey(v string)

SetPublicKey gets a reference to the given string and assigns it to the PublicKey field.

func (*Workspace) SetState added in v0.1.0

func (o *Workspace) SetState(v string)

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

func (*Workspace) SetStateReason added in v0.6.0

func (o *Workspace) SetStateReason(v string)

SetStateReason gets a reference to the given string and assigns it to the StateReason field.

func (*Workspace) SetUpdatedAt added in v0.0.2

func (o *Workspace) SetUpdatedAt(v string)

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

func (*Workspace) SetUpdatedBy added in v0.1.0

func (o *Workspace) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*Workspace) SetUpdatedById added in v0.1.0

func (o *Workspace) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*Workspace) SetVersionId added in v0.0.2

func (o *Workspace) SetVersionId(v int32)

SetVersionId sets field value

type WorkspaceAggregator added in v0.6.0

type WorkspaceAggregator struct {
	// The plugin or connection configuration.
	Connections []string `json:"connections"`
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The time of the last update in ISO 8601 UTC.
	DeletedAt *string `json:"deleted_at,omitempty"`
	DeletedBy *User   `json:"deleted_by,omitempty"`
	// The ID of the user that performed the deletion.
	DeletedById string `json:"deleted_by_id"`
	// The handle name of the aggregator.
	Handle string `json:"handle"`
	// The unique identifier for the aggregator.
	Id string `json:"id"`
	// The unique identifier for an identity where the aggregator has been created.
	IdentityId string `json:"identity_id"`
	// The plugin name for the aggregator.
	Plugin string `json:"plugin"`
	// Type of connection i.e aggregator or connection.
	Type *string `json:"type,omitempty"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
	// The unique identifier for the workspace.
	WorkspaceId string `json:"workspace_id"`
}

WorkspaceAggregator struct for WorkspaceAggregator

func NewWorkspaceAggregator added in v0.6.0

func NewWorkspaceAggregator(connections []string, createdAt string, createdById string, deletedById string, handle string, id string, identityId string, plugin string, updatedById string, versionId int32, workspaceId string) *WorkspaceAggregator

NewWorkspaceAggregator instantiates a new WorkspaceAggregator 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 NewWorkspaceAggregatorWithDefaults added in v0.6.0

func NewWorkspaceAggregatorWithDefaults() *WorkspaceAggregator

NewWorkspaceAggregatorWithDefaults instantiates a new WorkspaceAggregator 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 (*WorkspaceAggregator) GetConnections added in v0.6.0

func (o *WorkspaceAggregator) GetConnections() []string

GetConnections returns the Connections field value

func (*WorkspaceAggregator) GetConnectionsOk added in v0.6.0

func (o *WorkspaceAggregator) GetConnectionsOk() (*[]string, bool)

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

func (*WorkspaceAggregator) GetCreatedAt added in v0.6.0

func (o *WorkspaceAggregator) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*WorkspaceAggregator) GetCreatedAtOk added in v0.6.0

func (o *WorkspaceAggregator) GetCreatedAtOk() (*string, bool)

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

func (*WorkspaceAggregator) GetCreatedBy added in v0.6.0

func (o *WorkspaceAggregator) GetCreatedBy() User

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

func (*WorkspaceAggregator) GetCreatedById added in v0.6.0

func (o *WorkspaceAggregator) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*WorkspaceAggregator) GetCreatedByIdOk added in v0.6.0

func (o *WorkspaceAggregator) GetCreatedByIdOk() (*string, bool)

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

func (*WorkspaceAggregator) GetCreatedByOk added in v0.6.0

func (o *WorkspaceAggregator) GetCreatedByOk() (*User, 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 (*WorkspaceAggregator) GetDeletedAt added in v0.6.0

func (o *WorkspaceAggregator) GetDeletedAt() string

GetDeletedAt returns the DeletedAt field value if set, zero value otherwise.

func (*WorkspaceAggregator) GetDeletedAtOk added in v0.6.0

func (o *WorkspaceAggregator) GetDeletedAtOk() (*string, bool)

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

func (*WorkspaceAggregator) GetDeletedBy added in v0.6.0

func (o *WorkspaceAggregator) GetDeletedBy() User

GetDeletedBy returns the DeletedBy field value if set, zero value otherwise.

func (*WorkspaceAggregator) GetDeletedById added in v0.6.0

func (o *WorkspaceAggregator) GetDeletedById() string

GetDeletedById returns the DeletedById field value

func (*WorkspaceAggregator) GetDeletedByIdOk added in v0.6.0

func (o *WorkspaceAggregator) GetDeletedByIdOk() (*string, bool)

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

func (*WorkspaceAggregator) GetDeletedByOk added in v0.6.0

func (o *WorkspaceAggregator) GetDeletedByOk() (*User, bool)

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

func (*WorkspaceAggregator) GetHandle added in v0.6.0

func (o *WorkspaceAggregator) GetHandle() string

GetHandle returns the Handle field value

func (*WorkspaceAggregator) GetHandleOk added in v0.6.0

func (o *WorkspaceAggregator) GetHandleOk() (*string, bool)

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

func (*WorkspaceAggregator) GetId added in v0.6.0

func (o *WorkspaceAggregator) GetId() string

GetId returns the Id field value

func (*WorkspaceAggregator) GetIdOk added in v0.6.0

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

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

func (*WorkspaceAggregator) GetIdentityId added in v0.6.0

func (o *WorkspaceAggregator) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*WorkspaceAggregator) GetIdentityIdOk added in v0.6.0

func (o *WorkspaceAggregator) GetIdentityIdOk() (*string, bool)

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

func (*WorkspaceAggregator) GetPlugin added in v0.6.0

func (o *WorkspaceAggregator) GetPlugin() string

GetPlugin returns the Plugin field value

func (*WorkspaceAggregator) GetPluginOk added in v0.6.0

func (o *WorkspaceAggregator) GetPluginOk() (*string, bool)

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

func (*WorkspaceAggregator) GetType added in v0.6.0

func (o *WorkspaceAggregator) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkspaceAggregator) GetTypeOk added in v0.6.0

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

func (o *WorkspaceAggregator) GetUpdatedAt() string

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

func (*WorkspaceAggregator) GetUpdatedAtOk added in v0.6.0

func (o *WorkspaceAggregator) GetUpdatedAtOk() (*string, 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 (*WorkspaceAggregator) GetUpdatedBy added in v0.6.0

func (o *WorkspaceAggregator) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkspaceAggregator) GetUpdatedById added in v0.6.0

func (o *WorkspaceAggregator) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*WorkspaceAggregator) GetUpdatedByIdOk added in v0.6.0

func (o *WorkspaceAggregator) GetUpdatedByIdOk() (*string, bool)

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

func (*WorkspaceAggregator) GetUpdatedByOk added in v0.6.0

func (o *WorkspaceAggregator) GetUpdatedByOk() (*User, bool)

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

func (*WorkspaceAggregator) GetVersionId added in v0.6.0

func (o *WorkspaceAggregator) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*WorkspaceAggregator) GetVersionIdOk added in v0.6.0

func (o *WorkspaceAggregator) GetVersionIdOk() (*int32, bool)

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

func (*WorkspaceAggregator) GetWorkspaceId added in v0.6.0

func (o *WorkspaceAggregator) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceAggregator) GetWorkspaceIdOk added in v0.6.0

func (o *WorkspaceAggregator) GetWorkspaceIdOk() (*string, bool)

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

func (*WorkspaceAggregator) HasCreatedBy added in v0.6.0

func (o *WorkspaceAggregator) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkspaceAggregator) HasDeletedAt added in v0.6.0

func (o *WorkspaceAggregator) HasDeletedAt() bool

HasDeletedAt returns a boolean if a field has been set.

func (*WorkspaceAggregator) HasDeletedBy added in v0.6.0

func (o *WorkspaceAggregator) HasDeletedBy() bool

HasDeletedBy returns a boolean if a field has been set.

func (*WorkspaceAggregator) HasType added in v0.6.0

func (o *WorkspaceAggregator) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkspaceAggregator) HasUpdatedAt added in v0.6.0

func (o *WorkspaceAggregator) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*WorkspaceAggregator) HasUpdatedBy added in v0.6.0

func (o *WorkspaceAggregator) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (WorkspaceAggregator) MarshalJSON added in v0.6.0

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

func (*WorkspaceAggregator) SetConnections added in v0.6.0

func (o *WorkspaceAggregator) SetConnections(v []string)

SetConnections sets field value

func (*WorkspaceAggregator) SetCreatedAt added in v0.6.0

func (o *WorkspaceAggregator) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*WorkspaceAggregator) SetCreatedBy added in v0.6.0

func (o *WorkspaceAggregator) SetCreatedBy(v User)

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

func (*WorkspaceAggregator) SetCreatedById added in v0.6.0

func (o *WorkspaceAggregator) SetCreatedById(v string)

SetCreatedById sets field value

func (*WorkspaceAggregator) SetDeletedAt added in v0.6.0

func (o *WorkspaceAggregator) SetDeletedAt(v string)

SetDeletedAt gets a reference to the given string and assigns it to the DeletedAt field.

func (*WorkspaceAggregator) SetDeletedBy added in v0.6.0

func (o *WorkspaceAggregator) SetDeletedBy(v User)

SetDeletedBy gets a reference to the given User and assigns it to the DeletedBy field.

func (*WorkspaceAggregator) SetDeletedById added in v0.6.0

func (o *WorkspaceAggregator) SetDeletedById(v string)

SetDeletedById sets field value

func (*WorkspaceAggregator) SetHandle added in v0.6.0

func (o *WorkspaceAggregator) SetHandle(v string)

SetHandle sets field value

func (*WorkspaceAggregator) SetId added in v0.6.0

func (o *WorkspaceAggregator) SetId(v string)

SetId sets field value

func (*WorkspaceAggregator) SetIdentityId added in v0.6.0

func (o *WorkspaceAggregator) SetIdentityId(v string)

SetIdentityId sets field value

func (*WorkspaceAggregator) SetPlugin added in v0.6.0

func (o *WorkspaceAggregator) SetPlugin(v string)

SetPlugin sets field value

func (*WorkspaceAggregator) SetType added in v0.6.0

func (o *WorkspaceAggregator) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkspaceAggregator) SetUpdatedAt added in v0.6.0

func (o *WorkspaceAggregator) SetUpdatedAt(v string)

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

func (*WorkspaceAggregator) SetUpdatedBy added in v0.6.0

func (o *WorkspaceAggregator) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*WorkspaceAggregator) SetUpdatedById added in v0.6.0

func (o *WorkspaceAggregator) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*WorkspaceAggregator) SetVersionId added in v0.6.0

func (o *WorkspaceAggregator) SetVersionId(v int32)

SetVersionId sets field value

func (*WorkspaceAggregator) SetWorkspaceId added in v0.6.0

func (o *WorkspaceAggregator) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceCommandRequest added in v0.2.0

type WorkspaceCommandRequest struct {
	Command string `json:"command"`
}

WorkspaceCommandRequest struct for WorkspaceCommandRequest

func NewWorkspaceCommandRequest added in v0.2.0

func NewWorkspaceCommandRequest(command string) *WorkspaceCommandRequest

NewWorkspaceCommandRequest instantiates a new WorkspaceCommandRequest 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 NewWorkspaceCommandRequestWithDefaults added in v0.2.0

func NewWorkspaceCommandRequestWithDefaults() *WorkspaceCommandRequest

NewWorkspaceCommandRequestWithDefaults instantiates a new WorkspaceCommandRequest 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 (*WorkspaceCommandRequest) GetCommand added in v0.2.0

func (o *WorkspaceCommandRequest) GetCommand() string

GetCommand returns the Command field value

func (*WorkspaceCommandRequest) GetCommandOk added in v0.2.0

func (o *WorkspaceCommandRequest) GetCommandOk() (*string, bool)

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

func (WorkspaceCommandRequest) MarshalJSON added in v0.2.0

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

func (*WorkspaceCommandRequest) SetCommand added in v0.2.0

func (o *WorkspaceCommandRequest) SetCommand(v string)

SetCommand sets field value

type WorkspaceCommandResponse added in v0.2.0

type WorkspaceCommandResponse struct {
	Command   string `json:"command"`
	ProcessId string `json:"process_id"`
}

WorkspaceCommandResponse struct for WorkspaceCommandResponse

func NewWorkspaceCommandResponse added in v0.2.0

func NewWorkspaceCommandResponse(command string, processId string) *WorkspaceCommandResponse

NewWorkspaceCommandResponse instantiates a new WorkspaceCommandResponse 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 NewWorkspaceCommandResponseWithDefaults added in v0.2.0

func NewWorkspaceCommandResponseWithDefaults() *WorkspaceCommandResponse

NewWorkspaceCommandResponseWithDefaults instantiates a new WorkspaceCommandResponse 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 (*WorkspaceCommandResponse) GetCommand added in v0.2.0

func (o *WorkspaceCommandResponse) GetCommand() string

GetCommand returns the Command field value

func (*WorkspaceCommandResponse) GetCommandOk added in v0.2.0

func (o *WorkspaceCommandResponse) GetCommandOk() (*string, bool)

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

func (*WorkspaceCommandResponse) GetProcessId added in v0.2.0

func (o *WorkspaceCommandResponse) GetProcessId() string

GetProcessId returns the ProcessId field value

func (*WorkspaceCommandResponse) GetProcessIdOk added in v0.2.0

func (o *WorkspaceCommandResponse) GetProcessIdOk() (*string, bool)

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

func (WorkspaceCommandResponse) MarshalJSON added in v0.2.0

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

func (*WorkspaceCommandResponse) SetCommand added in v0.2.0

func (o *WorkspaceCommandResponse) SetCommand(v string)

SetCommand sets field value

func (*WorkspaceCommandResponse) SetProcessId added in v0.2.0

func (o *WorkspaceCommandResponse) SetProcessId(v string)

SetProcessId sets field value

type WorkspaceConn added in v0.0.2

type WorkspaceConn struct {
	Connection *Connection `json:"connection,omitempty"`
	// The unique identifier for the connection.
	ConnectionId string `json:"connection_id"`
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The unique identifier for the workspace connection association.
	Id string `json:"id"`
	// The identity ID where the association exists.
	IdentityId string `json:"identity_id"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
	// The unique identifier for the wokspace.
	WorkspaceId string `json:"workspace_id"`
}

WorkspaceConn struct for WorkspaceConn

func NewWorkspaceConn added in v0.0.2

func NewWorkspaceConn(connectionId string, createdAt string, createdById string, id string, identityId string, updatedById string, versionId int32, workspaceId string) *WorkspaceConn

NewWorkspaceConn instantiates a new WorkspaceConn 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 NewWorkspaceConnWithDefaults added in v0.0.2

func NewWorkspaceConnWithDefaults() *WorkspaceConn

NewWorkspaceConnWithDefaults instantiates a new WorkspaceConn 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 (*WorkspaceConn) GetConnection added in v0.0.2

func (o *WorkspaceConn) GetConnection() Connection

GetConnection returns the Connection field value if set, zero value otherwise.

func (*WorkspaceConn) GetConnectionId added in v0.0.2

func (o *WorkspaceConn) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*WorkspaceConn) GetConnectionIdOk added in v0.0.2

func (o *WorkspaceConn) GetConnectionIdOk() (*string, bool)

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

func (*WorkspaceConn) GetConnectionOk added in v0.0.2

func (o *WorkspaceConn) GetConnectionOk() (*Connection, bool)

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

func (*WorkspaceConn) GetCreatedAt added in v0.0.2

func (o *WorkspaceConn) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*WorkspaceConn) GetCreatedAtOk added in v0.0.2

func (o *WorkspaceConn) GetCreatedAtOk() (*string, bool)

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

func (*WorkspaceConn) GetCreatedBy added in v0.1.0

func (o *WorkspaceConn) GetCreatedBy() User

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

func (*WorkspaceConn) GetCreatedById added in v0.1.0

func (o *WorkspaceConn) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*WorkspaceConn) GetCreatedByIdOk added in v0.1.0

func (o *WorkspaceConn) GetCreatedByIdOk() (*string, bool)

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

func (*WorkspaceConn) GetCreatedByOk added in v0.1.0

func (o *WorkspaceConn) GetCreatedByOk() (*User, 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 (*WorkspaceConn) GetId added in v0.0.2

func (o *WorkspaceConn) GetId() string

GetId returns the Id field value

func (*WorkspaceConn) GetIdOk added in v0.0.2

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

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

func (*WorkspaceConn) GetIdentityId added in v0.0.2

func (o *WorkspaceConn) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*WorkspaceConn) GetIdentityIdOk added in v0.0.2

func (o *WorkspaceConn) GetIdentityIdOk() (*string, bool)

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

func (*WorkspaceConn) GetUpdatedAt added in v0.0.2

func (o *WorkspaceConn) GetUpdatedAt() string

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

func (*WorkspaceConn) GetUpdatedAtOk added in v0.0.2

func (o *WorkspaceConn) GetUpdatedAtOk() (*string, 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 (*WorkspaceConn) GetUpdatedBy added in v0.1.0

func (o *WorkspaceConn) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkspaceConn) GetUpdatedById added in v0.1.0

func (o *WorkspaceConn) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*WorkspaceConn) GetUpdatedByIdOk added in v0.1.0

func (o *WorkspaceConn) GetUpdatedByIdOk() (*string, bool)

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

func (*WorkspaceConn) GetUpdatedByOk added in v0.1.0

func (o *WorkspaceConn) GetUpdatedByOk() (*User, bool)

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

func (*WorkspaceConn) GetVersionId added in v0.0.2

func (o *WorkspaceConn) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*WorkspaceConn) GetVersionIdOk added in v0.0.2

func (o *WorkspaceConn) GetVersionIdOk() (*int32, bool)

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

func (*WorkspaceConn) GetWorkspaceId added in v0.0.2

func (o *WorkspaceConn) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceConn) GetWorkspaceIdOk added in v0.0.2

func (o *WorkspaceConn) GetWorkspaceIdOk() (*string, bool)

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

func (*WorkspaceConn) HasConnection added in v0.0.2

func (o *WorkspaceConn) HasConnection() bool

HasConnection returns a boolean if a field has been set.

func (*WorkspaceConn) HasCreatedBy added in v0.1.0

func (o *WorkspaceConn) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkspaceConn) HasUpdatedAt added in v0.0.2

func (o *WorkspaceConn) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*WorkspaceConn) HasUpdatedBy added in v0.1.0

func (o *WorkspaceConn) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (WorkspaceConn) MarshalJSON added in v0.0.2

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

func (*WorkspaceConn) SetConnection added in v0.0.2

func (o *WorkspaceConn) SetConnection(v Connection)

SetConnection gets a reference to the given Connection and assigns it to the Connection field.

func (*WorkspaceConn) SetConnectionId added in v0.0.2

func (o *WorkspaceConn) SetConnectionId(v string)

SetConnectionId sets field value

func (*WorkspaceConn) SetCreatedAt added in v0.0.2

func (o *WorkspaceConn) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*WorkspaceConn) SetCreatedBy added in v0.1.0

func (o *WorkspaceConn) SetCreatedBy(v User)

SetCreatedBy gets a reference to the given User and assigns it to the CreatedBy field.

func (*WorkspaceConn) SetCreatedById added in v0.1.0

func (o *WorkspaceConn) SetCreatedById(v string)

SetCreatedById sets field value

func (*WorkspaceConn) SetId added in v0.0.2

func (o *WorkspaceConn) SetId(v string)

SetId sets field value

func (*WorkspaceConn) SetIdentityId added in v0.0.2

func (o *WorkspaceConn) SetIdentityId(v string)

SetIdentityId sets field value

func (*WorkspaceConn) SetUpdatedAt added in v0.0.2

func (o *WorkspaceConn) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*WorkspaceConn) SetUpdatedBy added in v0.1.0

func (o *WorkspaceConn) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*WorkspaceConn) SetUpdatedById added in v0.1.0

func (o *WorkspaceConn) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*WorkspaceConn) SetVersionId added in v0.0.2

func (o *WorkspaceConn) SetVersionId(v int32)

SetVersionId sets field value

func (*WorkspaceConn) SetWorkspaceId added in v0.0.2

func (o *WorkspaceConn) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceConnection added in v0.6.0

type WorkspaceConnection struct {
	Association *WorkspaceConnectionAssociation `json:"association,omitempty"`
	Config      *map[string]interface{}         `json:"config,omitempty"`
	// The level at which the connection exists, can be wither 'identity' or 'workspace'.
	ConnectionLevel string `json:"connection_level"`
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The time of the last update in ISO 8601 UTC.
	DeletedAt *string `json:"deleted_at,omitempty"`
	DeletedBy *User   `json:"deleted_by,omitempty"`
	// The ID of the user that performed the deletion.
	DeletedById string `json:"deleted_by_id"`
	// The handle name of the  connection.
	Handle string `json:"handle"`
	// The unique identifier for the connection.
	Id string `json:"id"`
	// The unique identifier for an identity where the connection has been created.
	IdentityId string `json:"identity_id"`
	// The plugin name for the connection.
	Plugin *string `json:"plugin,omitempty"`
	// The plugin version for the connection.
	PluginVersion *string `json:"plugin_version,omitempty"`
	// Type of connection i.e aggregator or connection.
	Type *string `json:"type,omitempty"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
	// The unique identifier for the workspace.
	WorkspaceId string `json:"workspace_id"`
}

WorkspaceConnection struct for WorkspaceConnection

func NewWorkspaceConnection added in v0.6.0

func NewWorkspaceConnection(connectionLevel string, createdAt string, createdById string, deletedById string, handle string, id string, identityId string, updatedById string, versionId int32, workspaceId string) *WorkspaceConnection

NewWorkspaceConnection instantiates a new WorkspaceConnection 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 NewWorkspaceConnectionWithDefaults added in v0.6.0

func NewWorkspaceConnectionWithDefaults() *WorkspaceConnection

NewWorkspaceConnectionWithDefaults instantiates a new WorkspaceConnection 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 (*WorkspaceConnection) GetAssociation added in v0.6.0

GetAssociation returns the Association field value if set, zero value otherwise.

func (*WorkspaceConnection) GetAssociationOk added in v0.6.0

func (o *WorkspaceConnection) GetAssociationOk() (*WorkspaceConnectionAssociation, bool)

GetAssociationOk returns a tuple with the Association field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetConfig added in v0.6.0

func (o *WorkspaceConnection) GetConfig() map[string]interface{}

GetConfig returns the Config field value if set, zero value otherwise.

func (*WorkspaceConnection) GetConfigOk added in v0.6.0

func (o *WorkspaceConnection) GetConfigOk() (*map[string]interface{}, bool)

GetConfigOk returns a tuple with the Config field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetConnectionLevel added in v0.6.0

func (o *WorkspaceConnection) GetConnectionLevel() string

GetConnectionLevel returns the ConnectionLevel field value

func (*WorkspaceConnection) GetConnectionLevelOk added in v0.6.0

func (o *WorkspaceConnection) GetConnectionLevelOk() (*string, bool)

GetConnectionLevelOk returns a tuple with the ConnectionLevel field value and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetCreatedAt added in v0.6.0

func (o *WorkspaceConnection) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*WorkspaceConnection) GetCreatedAtOk added in v0.6.0

func (o *WorkspaceConnection) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetCreatedBy added in v0.6.0

func (o *WorkspaceConnection) GetCreatedBy() User

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkspaceConnection) GetCreatedById added in v0.6.0

func (o *WorkspaceConnection) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*WorkspaceConnection) GetCreatedByIdOk added in v0.6.0

func (o *WorkspaceConnection) GetCreatedByIdOk() (*string, bool)

GetCreatedByIdOk returns a tuple with the CreatedById field value and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetCreatedByOk added in v0.6.0

func (o *WorkspaceConnection) GetCreatedByOk() (*User, 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 (*WorkspaceConnection) GetDeletedAt added in v0.6.0

func (o *WorkspaceConnection) GetDeletedAt() string

GetDeletedAt returns the DeletedAt field value if set, zero value otherwise.

func (*WorkspaceConnection) GetDeletedAtOk added in v0.6.0

func (o *WorkspaceConnection) GetDeletedAtOk() (*string, bool)

GetDeletedAtOk returns a tuple with the DeletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetDeletedBy added in v0.6.0

func (o *WorkspaceConnection) GetDeletedBy() User

GetDeletedBy returns the DeletedBy field value if set, zero value otherwise.

func (*WorkspaceConnection) GetDeletedById added in v0.6.0

func (o *WorkspaceConnection) GetDeletedById() string

GetDeletedById returns the DeletedById field value

func (*WorkspaceConnection) GetDeletedByIdOk added in v0.6.0

func (o *WorkspaceConnection) GetDeletedByIdOk() (*string, bool)

GetDeletedByIdOk returns a tuple with the DeletedById field value and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetDeletedByOk added in v0.6.0

func (o *WorkspaceConnection) GetDeletedByOk() (*User, bool)

GetDeletedByOk returns a tuple with the DeletedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetHandle added in v0.6.0

func (o *WorkspaceConnection) GetHandle() string

GetHandle returns the Handle field value

func (*WorkspaceConnection) GetHandleOk added in v0.6.0

func (o *WorkspaceConnection) GetHandleOk() (*string, bool)

GetHandleOk returns a tuple with the Handle field value and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetId added in v0.6.0

func (o *WorkspaceConnection) GetId() string

GetId returns the Id field value

func (*WorkspaceConnection) GetIdOk added in v0.6.0

func (o *WorkspaceConnection) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetIdentityId added in v0.6.0

func (o *WorkspaceConnection) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*WorkspaceConnection) GetIdentityIdOk added in v0.6.0

func (o *WorkspaceConnection) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetPlugin added in v0.6.0

func (o *WorkspaceConnection) GetPlugin() string

GetPlugin returns the Plugin field value if set, zero value otherwise.

func (*WorkspaceConnection) GetPluginOk added in v0.6.0

func (o *WorkspaceConnection) GetPluginOk() (*string, bool)

GetPluginOk returns a tuple with the Plugin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetPluginVersion added in v0.6.0

func (o *WorkspaceConnection) GetPluginVersion() string

GetPluginVersion returns the PluginVersion field value if set, zero value otherwise.

func (*WorkspaceConnection) GetPluginVersionOk added in v0.6.0

func (o *WorkspaceConnection) GetPluginVersionOk() (*string, bool)

GetPluginVersionOk returns a tuple with the PluginVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetType added in v0.6.0

func (o *WorkspaceConnection) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkspaceConnection) GetTypeOk added in v0.6.0

func (o *WorkspaceConnection) 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 (*WorkspaceConnection) GetUpdatedAt added in v0.6.0

func (o *WorkspaceConnection) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*WorkspaceConnection) GetUpdatedAtOk added in v0.6.0

func (o *WorkspaceConnection) GetUpdatedAtOk() (*string, 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 (*WorkspaceConnection) GetUpdatedBy added in v0.6.0

func (o *WorkspaceConnection) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkspaceConnection) GetUpdatedById added in v0.6.0

func (o *WorkspaceConnection) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*WorkspaceConnection) GetUpdatedByIdOk added in v0.6.0

func (o *WorkspaceConnection) GetUpdatedByIdOk() (*string, bool)

GetUpdatedByIdOk returns a tuple with the UpdatedById field value and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetUpdatedByOk added in v0.6.0

func (o *WorkspaceConnection) GetUpdatedByOk() (*User, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetVersionId added in v0.6.0

func (o *WorkspaceConnection) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*WorkspaceConnection) GetVersionIdOk added in v0.6.0

func (o *WorkspaceConnection) GetVersionIdOk() (*int32, bool)

GetVersionIdOk returns a tuple with the VersionId field value and a boolean to check if the value has been set.

func (*WorkspaceConnection) GetWorkspaceId added in v0.6.0

func (o *WorkspaceConnection) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceConnection) GetWorkspaceIdOk added in v0.6.0

func (o *WorkspaceConnection) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (*WorkspaceConnection) HasAssociation added in v0.6.0

func (o *WorkspaceConnection) HasAssociation() bool

HasAssociation returns a boolean if a field has been set.

func (*WorkspaceConnection) HasConfig added in v0.6.0

func (o *WorkspaceConnection) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*WorkspaceConnection) HasCreatedBy added in v0.6.0

func (o *WorkspaceConnection) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkspaceConnection) HasDeletedAt added in v0.6.0

func (o *WorkspaceConnection) HasDeletedAt() bool

HasDeletedAt returns a boolean if a field has been set.

func (*WorkspaceConnection) HasDeletedBy added in v0.6.0

func (o *WorkspaceConnection) HasDeletedBy() bool

HasDeletedBy returns a boolean if a field has been set.

func (*WorkspaceConnection) HasPlugin added in v0.6.0

func (o *WorkspaceConnection) HasPlugin() bool

HasPlugin returns a boolean if a field has been set.

func (*WorkspaceConnection) HasPluginVersion added in v0.6.0

func (o *WorkspaceConnection) HasPluginVersion() bool

HasPluginVersion returns a boolean if a field has been set.

func (*WorkspaceConnection) HasType added in v0.6.0

func (o *WorkspaceConnection) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkspaceConnection) HasUpdatedAt added in v0.6.0

func (o *WorkspaceConnection) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*WorkspaceConnection) HasUpdatedBy added in v0.6.0

func (o *WorkspaceConnection) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (WorkspaceConnection) MarshalJSON added in v0.6.0

func (o WorkspaceConnection) MarshalJSON() ([]byte, error)

func (*WorkspaceConnection) SetAssociation added in v0.6.0

SetAssociation gets a reference to the given WorkspaceConnectionAssociation and assigns it to the Association field.

func (*WorkspaceConnection) SetConfig added in v0.6.0

func (o *WorkspaceConnection) SetConfig(v map[string]interface{})

SetConfig gets a reference to the given map[string]interface{} and assigns it to the Config field.

func (*WorkspaceConnection) SetConnectionLevel added in v0.6.0

func (o *WorkspaceConnection) SetConnectionLevel(v string)

SetConnectionLevel sets field value

func (*WorkspaceConnection) SetCreatedAt added in v0.6.0

func (o *WorkspaceConnection) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*WorkspaceConnection) SetCreatedBy added in v0.6.0

func (o *WorkspaceConnection) SetCreatedBy(v User)

SetCreatedBy gets a reference to the given User and assigns it to the CreatedBy field.

func (*WorkspaceConnection) SetCreatedById added in v0.6.0

func (o *WorkspaceConnection) SetCreatedById(v string)

SetCreatedById sets field value

func (*WorkspaceConnection) SetDeletedAt added in v0.6.0

func (o *WorkspaceConnection) SetDeletedAt(v string)

SetDeletedAt gets a reference to the given string and assigns it to the DeletedAt field.

func (*WorkspaceConnection) SetDeletedBy added in v0.6.0

func (o *WorkspaceConnection) SetDeletedBy(v User)

SetDeletedBy gets a reference to the given User and assigns it to the DeletedBy field.

func (*WorkspaceConnection) SetDeletedById added in v0.6.0

func (o *WorkspaceConnection) SetDeletedById(v string)

SetDeletedById sets field value

func (*WorkspaceConnection) SetHandle added in v0.6.0

func (o *WorkspaceConnection) SetHandle(v string)

SetHandle sets field value

func (*WorkspaceConnection) SetId added in v0.6.0

func (o *WorkspaceConnection) SetId(v string)

SetId sets field value

func (*WorkspaceConnection) SetIdentityId added in v0.6.0

func (o *WorkspaceConnection) SetIdentityId(v string)

SetIdentityId sets field value

func (*WorkspaceConnection) SetPlugin added in v0.6.0

func (o *WorkspaceConnection) SetPlugin(v string)

SetPlugin gets a reference to the given string and assigns it to the Plugin field.

func (*WorkspaceConnection) SetPluginVersion added in v0.6.0

func (o *WorkspaceConnection) SetPluginVersion(v string)

SetPluginVersion gets a reference to the given string and assigns it to the PluginVersion field.

func (*WorkspaceConnection) SetType added in v0.6.0

func (o *WorkspaceConnection) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkspaceConnection) SetUpdatedAt added in v0.6.0

func (o *WorkspaceConnection) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*WorkspaceConnection) SetUpdatedBy added in v0.6.0

func (o *WorkspaceConnection) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*WorkspaceConnection) SetUpdatedById added in v0.6.0

func (o *WorkspaceConnection) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*WorkspaceConnection) SetVersionId added in v0.6.0

func (o *WorkspaceConnection) SetVersionId(v int32)

SetVersionId sets field value

func (*WorkspaceConnection) SetWorkspaceId added in v0.6.0

func (o *WorkspaceConnection) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceConnectionAssociation added in v0.6.0

type WorkspaceConnectionAssociation struct {
	Connection *Connection `json:"connection,omitempty"`
	// The unique identifier for the connection.
	ConnectionId string `json:"connection_id"`
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The unique identifier for the workspace connection association.
	Id string `json:"id"`
	// The identity ID where the association exists.
	IdentityId string `json:"identity_id"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
	// The unique identifier for the wokspace.
	WorkspaceId string `json:"workspace_id"`
}

WorkspaceConnectionAssociation struct for WorkspaceConnectionAssociation

func NewWorkspaceConnectionAssociation added in v0.6.0

func NewWorkspaceConnectionAssociation(connectionId string, createdAt string, createdById string, id string, identityId string, updatedById string, versionId int32, workspaceId string) *WorkspaceConnectionAssociation

NewWorkspaceConnectionAssociation instantiates a new WorkspaceConnectionAssociation 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 NewWorkspaceConnectionAssociationWithDefaults added in v0.6.0

func NewWorkspaceConnectionAssociationWithDefaults() *WorkspaceConnectionAssociation

NewWorkspaceConnectionAssociationWithDefaults instantiates a new WorkspaceConnectionAssociation 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 (*WorkspaceConnectionAssociation) GetConnection added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetConnection() Connection

GetConnection returns the Connection field value if set, zero value otherwise.

func (*WorkspaceConnectionAssociation) GetConnectionId added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*WorkspaceConnectionAssociation) GetConnectionIdOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetConnectionIdOk() (*string, bool)

GetConnectionIdOk returns a tuple with the ConnectionId field value and a boolean to check if the value has been set.

func (*WorkspaceConnectionAssociation) GetConnectionOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetConnectionOk() (*Connection, bool)

GetConnectionOk returns a tuple with the Connection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceConnectionAssociation) GetCreatedAt added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*WorkspaceConnectionAssociation) GetCreatedAtOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*WorkspaceConnectionAssociation) GetCreatedBy added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetCreatedBy() User

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkspaceConnectionAssociation) GetCreatedById added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*WorkspaceConnectionAssociation) GetCreatedByIdOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetCreatedByIdOk() (*string, bool)

GetCreatedByIdOk returns a tuple with the CreatedById field value and a boolean to check if the value has been set.

func (*WorkspaceConnectionAssociation) GetCreatedByOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetCreatedByOk() (*User, 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 (*WorkspaceConnectionAssociation) GetId added in v0.6.0

GetId returns the Id field value

func (*WorkspaceConnectionAssociation) GetIdOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*WorkspaceConnectionAssociation) GetIdentityId added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*WorkspaceConnectionAssociation) GetIdentityIdOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value and a boolean to check if the value has been set.

func (*WorkspaceConnectionAssociation) GetUpdatedAt added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*WorkspaceConnectionAssociation) GetUpdatedAtOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetUpdatedAtOk() (*string, 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 (*WorkspaceConnectionAssociation) GetUpdatedBy added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkspaceConnectionAssociation) GetUpdatedById added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*WorkspaceConnectionAssociation) GetUpdatedByIdOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetUpdatedByIdOk() (*string, bool)

GetUpdatedByIdOk returns a tuple with the UpdatedById field value and a boolean to check if the value has been set.

func (*WorkspaceConnectionAssociation) GetUpdatedByOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetUpdatedByOk() (*User, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceConnectionAssociation) GetVersionId added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*WorkspaceConnectionAssociation) GetVersionIdOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetVersionIdOk() (*int32, bool)

GetVersionIdOk returns a tuple with the VersionId field value and a boolean to check if the value has been set.

func (*WorkspaceConnectionAssociation) GetWorkspaceId added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceConnectionAssociation) GetWorkspaceIdOk added in v0.6.0

func (o *WorkspaceConnectionAssociation) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (*WorkspaceConnectionAssociation) HasConnection added in v0.6.0

func (o *WorkspaceConnectionAssociation) HasConnection() bool

HasConnection returns a boolean if a field has been set.

func (*WorkspaceConnectionAssociation) HasCreatedBy added in v0.6.0

func (o *WorkspaceConnectionAssociation) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkspaceConnectionAssociation) HasUpdatedAt added in v0.6.0

func (o *WorkspaceConnectionAssociation) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*WorkspaceConnectionAssociation) HasUpdatedBy added in v0.6.0

func (o *WorkspaceConnectionAssociation) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (WorkspaceConnectionAssociation) MarshalJSON added in v0.6.0

func (o WorkspaceConnectionAssociation) MarshalJSON() ([]byte, error)

func (*WorkspaceConnectionAssociation) SetConnection added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetConnection(v Connection)

SetConnection gets a reference to the given Connection and assigns it to the Connection field.

func (*WorkspaceConnectionAssociation) SetConnectionId added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetConnectionId(v string)

SetConnectionId sets field value

func (*WorkspaceConnectionAssociation) SetCreatedAt added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*WorkspaceConnectionAssociation) SetCreatedBy added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetCreatedBy(v User)

SetCreatedBy gets a reference to the given User and assigns it to the CreatedBy field.

func (*WorkspaceConnectionAssociation) SetCreatedById added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetCreatedById(v string)

SetCreatedById sets field value

func (*WorkspaceConnectionAssociation) SetId added in v0.6.0

SetId sets field value

func (*WorkspaceConnectionAssociation) SetIdentityId added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetIdentityId(v string)

SetIdentityId sets field value

func (*WorkspaceConnectionAssociation) SetUpdatedAt added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*WorkspaceConnectionAssociation) SetUpdatedBy added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*WorkspaceConnectionAssociation) SetUpdatedById added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*WorkspaceConnectionAssociation) SetVersionId added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetVersionId(v int32)

SetVersionId sets field value

func (*WorkspaceConnectionAssociation) SetWorkspaceId added in v0.6.0

func (o *WorkspaceConnectionAssociation) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceMod added in v0.0.4

type WorkspaceMod struct {
	Alias      *string `json:"alias,omitempty"`
	Constraint *string `json:"constraint,omitempty"`
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string  `json:"created_by_id"`
	Details     *string `json:"details,omitempty"`
	Id          string  `json:"id"`
	// The unique identifier for an identity where the workspace mod has been install.
	IdentityId       string  `json:"identity_id"`
	InstalledVersion *string `json:"installed_version,omitempty"`
	Path             *string `json:"path,omitempty"`
	State            *string `json:"state,omitempty"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId   int32  `json:"version_id"`
	WorkspaceId string `json:"workspace_id"`
}

WorkspaceMod struct for WorkspaceMod

func NewWorkspaceMod added in v0.0.4

func NewWorkspaceMod(createdAt string, createdById string, id string, identityId string, updatedById string, versionId int32, workspaceId string) *WorkspaceMod

NewWorkspaceMod instantiates a new WorkspaceMod 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 NewWorkspaceModWithDefaults added in v0.0.4

func NewWorkspaceModWithDefaults() *WorkspaceMod

NewWorkspaceModWithDefaults instantiates a new WorkspaceMod 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 (*WorkspaceMod) GetAlias added in v0.0.4

func (o *WorkspaceMod) GetAlias() string

GetAlias returns the Alias field value if set, zero value otherwise.

func (*WorkspaceMod) GetAliasOk added in v0.0.4

func (o *WorkspaceMod) GetAliasOk() (*string, bool)

GetAliasOk returns a tuple with the Alias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceMod) GetConstraint added in v0.1.0

func (o *WorkspaceMod) GetConstraint() string

GetConstraint returns the Constraint field value if set, zero value otherwise.

func (*WorkspaceMod) GetConstraintOk added in v0.1.0

func (o *WorkspaceMod) GetConstraintOk() (*string, bool)

GetConstraintOk returns a tuple with the Constraint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceMod) GetCreatedAt added in v0.0.4

func (o *WorkspaceMod) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*WorkspaceMod) GetCreatedAtOk added in v0.0.4

func (o *WorkspaceMod) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*WorkspaceMod) GetCreatedBy added in v0.1.0

func (o *WorkspaceMod) GetCreatedBy() User

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkspaceMod) GetCreatedById added in v0.1.0

func (o *WorkspaceMod) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*WorkspaceMod) GetCreatedByIdOk added in v0.1.0

func (o *WorkspaceMod) GetCreatedByIdOk() (*string, bool)

GetCreatedByIdOk returns a tuple with the CreatedById field value and a boolean to check if the value has been set.

func (*WorkspaceMod) GetCreatedByOk added in v0.1.0

func (o *WorkspaceMod) GetCreatedByOk() (*User, 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 (*WorkspaceMod) GetDetails added in v0.0.4

func (o *WorkspaceMod) GetDetails() string

GetDetails returns the Details field value if set, zero value otherwise.

func (*WorkspaceMod) GetDetailsOk added in v0.0.4

func (o *WorkspaceMod) GetDetailsOk() (*string, 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 (*WorkspaceMod) GetId added in v0.0.4

func (o *WorkspaceMod) GetId() string

GetId returns the Id field value

func (*WorkspaceMod) GetIdOk added in v0.0.4

func (o *WorkspaceMod) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*WorkspaceMod) GetIdentityId added in v0.0.4

func (o *WorkspaceMod) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*WorkspaceMod) GetIdentityIdOk added in v0.0.4

func (o *WorkspaceMod) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value and a boolean to check if the value has been set.

func (*WorkspaceMod) GetInstalledVersion added in v0.0.4

func (o *WorkspaceMod) GetInstalledVersion() string

GetInstalledVersion returns the InstalledVersion field value if set, zero value otherwise.

func (*WorkspaceMod) GetInstalledVersionOk added in v0.0.4

func (o *WorkspaceMod) GetInstalledVersionOk() (*string, bool)

GetInstalledVersionOk returns a tuple with the InstalledVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceMod) GetPath added in v0.0.4

func (o *WorkspaceMod) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*WorkspaceMod) GetPathOk added in v0.0.4

func (o *WorkspaceMod) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceMod) GetState added in v0.0.4

func (o *WorkspaceMod) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*WorkspaceMod) GetStateOk added in v0.0.4

func (o *WorkspaceMod) 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 (*WorkspaceMod) GetUpdatedAt added in v0.0.4

func (o *WorkspaceMod) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*WorkspaceMod) GetUpdatedAtOk added in v0.0.4

func (o *WorkspaceMod) GetUpdatedAtOk() (*string, 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 (*WorkspaceMod) GetUpdatedBy added in v0.1.0

func (o *WorkspaceMod) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkspaceMod) GetUpdatedById added in v0.1.0

func (o *WorkspaceMod) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*WorkspaceMod) GetUpdatedByIdOk added in v0.1.0

func (o *WorkspaceMod) GetUpdatedByIdOk() (*string, bool)

GetUpdatedByIdOk returns a tuple with the UpdatedById field value and a boolean to check if the value has been set.

func (*WorkspaceMod) GetUpdatedByOk added in v0.1.0

func (o *WorkspaceMod) GetUpdatedByOk() (*User, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceMod) GetVersionId added in v0.1.0

func (o *WorkspaceMod) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*WorkspaceMod) GetVersionIdOk added in v0.1.0

func (o *WorkspaceMod) GetVersionIdOk() (*int32, bool)

GetVersionIdOk returns a tuple with the VersionId field value and a boolean to check if the value has been set.

func (*WorkspaceMod) GetWorkspaceId added in v0.0.4

func (o *WorkspaceMod) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceMod) GetWorkspaceIdOk added in v0.0.4

func (o *WorkspaceMod) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (*WorkspaceMod) HasAlias added in v0.0.4

func (o *WorkspaceMod) HasAlias() bool

HasAlias returns a boolean if a field has been set.

func (*WorkspaceMod) HasConstraint added in v0.1.0

func (o *WorkspaceMod) HasConstraint() bool

HasConstraint returns a boolean if a field has been set.

func (*WorkspaceMod) HasCreatedBy added in v0.1.0

func (o *WorkspaceMod) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkspaceMod) HasDetails added in v0.0.4

func (o *WorkspaceMod) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*WorkspaceMod) HasInstalledVersion added in v0.0.4

func (o *WorkspaceMod) HasInstalledVersion() bool

HasInstalledVersion returns a boolean if a field has been set.

func (*WorkspaceMod) HasPath added in v0.0.4

func (o *WorkspaceMod) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*WorkspaceMod) HasState added in v0.0.4

func (o *WorkspaceMod) HasState() bool

HasState returns a boolean if a field has been set.

func (*WorkspaceMod) HasUpdatedAt added in v0.0.4

func (o *WorkspaceMod) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*WorkspaceMod) HasUpdatedBy added in v0.1.0

func (o *WorkspaceMod) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (WorkspaceMod) MarshalJSON added in v0.0.4

func (o WorkspaceMod) MarshalJSON() ([]byte, error)

func (*WorkspaceMod) SetAlias added in v0.0.4

func (o *WorkspaceMod) SetAlias(v string)

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*WorkspaceMod) SetConstraint added in v0.1.0

func (o *WorkspaceMod) SetConstraint(v string)

SetConstraint gets a reference to the given string and assigns it to the Constraint field.

func (*WorkspaceMod) SetCreatedAt added in v0.0.4

func (o *WorkspaceMod) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*WorkspaceMod) SetCreatedBy added in v0.1.0

func (o *WorkspaceMod) SetCreatedBy(v User)

SetCreatedBy gets a reference to the given User and assigns it to the CreatedBy field.

func (*WorkspaceMod) SetCreatedById added in v0.1.0

func (o *WorkspaceMod) SetCreatedById(v string)

SetCreatedById sets field value

func (*WorkspaceMod) SetDetails added in v0.0.4

func (o *WorkspaceMod) SetDetails(v string)

SetDetails gets a reference to the given string and assigns it to the Details field.

func (*WorkspaceMod) SetId added in v0.0.4

func (o *WorkspaceMod) SetId(v string)

SetId sets field value

func (*WorkspaceMod) SetIdentityId added in v0.0.4

func (o *WorkspaceMod) SetIdentityId(v string)

SetIdentityId sets field value

func (*WorkspaceMod) SetInstalledVersion added in v0.0.4

func (o *WorkspaceMod) SetInstalledVersion(v string)

SetInstalledVersion gets a reference to the given string and assigns it to the InstalledVersion field.

func (*WorkspaceMod) SetPath added in v0.0.4

func (o *WorkspaceMod) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*WorkspaceMod) SetState added in v0.0.4

func (o *WorkspaceMod) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*WorkspaceMod) SetUpdatedAt added in v0.0.4

func (o *WorkspaceMod) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*WorkspaceMod) SetUpdatedBy added in v0.1.0

func (o *WorkspaceMod) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*WorkspaceMod) SetUpdatedById added in v0.1.0

func (o *WorkspaceMod) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*WorkspaceMod) SetVersionId added in v0.1.0

func (o *WorkspaceMod) SetVersionId(v int32)

SetVersionId sets field value

func (*WorkspaceMod) SetWorkspaceId added in v0.0.4

func (o *WorkspaceMod) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceModVariable added in v0.0.4

type WorkspaceModVariable struct {
	CreatedAt    string      `json:"created_at"`
	CreatedBy    *User       `json:"created_by,omitempty"`
	CreatedById  string      `json:"created_by_id"`
	Description  *string     `json:"description,omitempty"`
	Id           string      `json:"id"`
	ModAlias     *string     `json:"mod_alias,omitempty"`
	Name         *string     `json:"name,omitempty"`
	Type         *string     `json:"type,omitempty"`
	UpdatedAt    *string     `json:"updated_at,omitempty"`
	UpdatedBy    *User       `json:"updated_by,omitempty"`
	UpdatedById  string      `json:"updated_by_id"`
	Value        interface{} `json:"value,omitempty"`
	ValueDefault interface{} `json:"value_default,omitempty"`
	ValueSetting interface{} `json:"value_setting,omitempty"`
	VersionId    int32       `json:"version_id"`
}

WorkspaceModVariable struct for WorkspaceModVariable

func NewWorkspaceModVariable added in v0.0.4

func NewWorkspaceModVariable(createdAt string, createdById string, id string, updatedById string, versionId int32) *WorkspaceModVariable

NewWorkspaceModVariable instantiates a new WorkspaceModVariable 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 NewWorkspaceModVariableWithDefaults added in v0.0.4

func NewWorkspaceModVariableWithDefaults() *WorkspaceModVariable

NewWorkspaceModVariableWithDefaults instantiates a new WorkspaceModVariable 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 (*WorkspaceModVariable) GetCreatedAt added in v0.0.4

func (o *WorkspaceModVariable) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*WorkspaceModVariable) GetCreatedAtOk added in v0.0.4

func (o *WorkspaceModVariable) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*WorkspaceModVariable) GetCreatedBy added in v0.0.4

func (o *WorkspaceModVariable) GetCreatedBy() User

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkspaceModVariable) GetCreatedById added in v0.0.4

func (o *WorkspaceModVariable) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*WorkspaceModVariable) GetCreatedByIdOk added in v0.0.4

func (o *WorkspaceModVariable) GetCreatedByIdOk() (*string, bool)

GetCreatedByIdOk returns a tuple with the CreatedById field value and a boolean to check if the value has been set.

func (*WorkspaceModVariable) GetCreatedByOk added in v0.0.4

func (o *WorkspaceModVariable) GetCreatedByOk() (*User, 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 (*WorkspaceModVariable) GetDescription added in v0.0.4

func (o *WorkspaceModVariable) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkspaceModVariable) GetDescriptionOk added in v0.0.4

func (o *WorkspaceModVariable) 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 (*WorkspaceModVariable) GetId added in v0.0.4

func (o *WorkspaceModVariable) GetId() string

GetId returns the Id field value

func (*WorkspaceModVariable) GetIdOk added in v0.0.4

func (o *WorkspaceModVariable) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*WorkspaceModVariable) GetModAlias added in v0.0.4

func (o *WorkspaceModVariable) GetModAlias() string

GetModAlias returns the ModAlias field value if set, zero value otherwise.

func (*WorkspaceModVariable) GetModAliasOk added in v0.0.4

func (o *WorkspaceModVariable) GetModAliasOk() (*string, bool)

GetModAliasOk returns a tuple with the ModAlias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceModVariable) GetName added in v0.0.4

func (o *WorkspaceModVariable) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkspaceModVariable) GetNameOk added in v0.0.4

func (o *WorkspaceModVariable) 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 (*WorkspaceModVariable) GetType added in v0.0.4

func (o *WorkspaceModVariable) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkspaceModVariable) GetTypeOk added in v0.0.4

func (o *WorkspaceModVariable) 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 (*WorkspaceModVariable) GetUpdatedAt added in v0.0.4

func (o *WorkspaceModVariable) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*WorkspaceModVariable) GetUpdatedAtOk added in v0.0.4

func (o *WorkspaceModVariable) GetUpdatedAtOk() (*string, 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 (*WorkspaceModVariable) GetUpdatedBy added in v0.0.4

func (o *WorkspaceModVariable) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkspaceModVariable) GetUpdatedById added in v0.0.4

func (o *WorkspaceModVariable) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*WorkspaceModVariable) GetUpdatedByIdOk added in v0.0.4

func (o *WorkspaceModVariable) GetUpdatedByIdOk() (*string, bool)

GetUpdatedByIdOk returns a tuple with the UpdatedById field value and a boolean to check if the value has been set.

func (*WorkspaceModVariable) GetUpdatedByOk added in v0.0.4

func (o *WorkspaceModVariable) GetUpdatedByOk() (*User, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceModVariable) GetValue added in v0.0.4

func (o *WorkspaceModVariable) GetValue() interface{}

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkspaceModVariable) GetValueDefault added in v0.0.4

func (o *WorkspaceModVariable) GetValueDefault() interface{}

GetValueDefault returns the ValueDefault field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkspaceModVariable) GetValueDefaultOk added in v0.0.4

func (o *WorkspaceModVariable) GetValueDefaultOk() (*interface{}, bool)

GetValueDefaultOk returns a tuple with the ValueDefault field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkspaceModVariable) GetValueOk added in v0.0.4

func (o *WorkspaceModVariable) GetValueOk() (*interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkspaceModVariable) GetValueSetting added in v0.0.4

func (o *WorkspaceModVariable) GetValueSetting() interface{}

GetValueSetting returns the ValueSetting field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkspaceModVariable) GetValueSettingOk added in v0.0.4

func (o *WorkspaceModVariable) GetValueSettingOk() (*interface{}, bool)

GetValueSettingOk returns a tuple with the ValueSetting field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkspaceModVariable) GetVersionId added in v0.0.4

func (o *WorkspaceModVariable) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*WorkspaceModVariable) GetVersionIdOk added in v0.0.4

func (o *WorkspaceModVariable) GetVersionIdOk() (*int32, bool)

GetVersionIdOk returns a tuple with the VersionId field value and a boolean to check if the value has been set.

func (*WorkspaceModVariable) HasCreatedBy added in v0.0.4

func (o *WorkspaceModVariable) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkspaceModVariable) HasDescription added in v0.0.4

func (o *WorkspaceModVariable) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WorkspaceModVariable) HasModAlias added in v0.0.4

func (o *WorkspaceModVariable) HasModAlias() bool

HasModAlias returns a boolean if a field has been set.

func (*WorkspaceModVariable) HasName added in v0.0.4

func (o *WorkspaceModVariable) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkspaceModVariable) HasType added in v0.0.4

func (o *WorkspaceModVariable) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkspaceModVariable) HasUpdatedAt added in v0.0.4

func (o *WorkspaceModVariable) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*WorkspaceModVariable) HasUpdatedBy added in v0.0.4

func (o *WorkspaceModVariable) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*WorkspaceModVariable) HasValue added in v0.0.4

func (o *WorkspaceModVariable) HasValue() bool

HasValue returns a boolean if a field has been set.

func (*WorkspaceModVariable) HasValueDefault added in v0.0.4

func (o *WorkspaceModVariable) HasValueDefault() bool

HasValueDefault returns a boolean if a field has been set.

func (*WorkspaceModVariable) HasValueSetting added in v0.0.4

func (o *WorkspaceModVariable) HasValueSetting() bool

HasValueSetting returns a boolean if a field has been set.

func (WorkspaceModVariable) MarshalJSON added in v0.0.4

func (o WorkspaceModVariable) MarshalJSON() ([]byte, error)

func (*WorkspaceModVariable) SetCreatedAt added in v0.0.4

func (o *WorkspaceModVariable) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*WorkspaceModVariable) SetCreatedBy added in v0.0.4

func (o *WorkspaceModVariable) SetCreatedBy(v User)

SetCreatedBy gets a reference to the given User and assigns it to the CreatedBy field.

func (*WorkspaceModVariable) SetCreatedById added in v0.0.4

func (o *WorkspaceModVariable) SetCreatedById(v string)

SetCreatedById sets field value

func (*WorkspaceModVariable) SetDescription added in v0.0.4

func (o *WorkspaceModVariable) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkspaceModVariable) SetId added in v0.0.4

func (o *WorkspaceModVariable) SetId(v string)

SetId sets field value

func (*WorkspaceModVariable) SetModAlias added in v0.0.4

func (o *WorkspaceModVariable) SetModAlias(v string)

SetModAlias gets a reference to the given string and assigns it to the ModAlias field.

func (*WorkspaceModVariable) SetName added in v0.0.4

func (o *WorkspaceModVariable) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkspaceModVariable) SetType added in v0.0.4

func (o *WorkspaceModVariable) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkspaceModVariable) SetUpdatedAt added in v0.0.4

func (o *WorkspaceModVariable) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*WorkspaceModVariable) SetUpdatedBy added in v0.0.4

func (o *WorkspaceModVariable) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*WorkspaceModVariable) SetUpdatedById added in v0.0.4

func (o *WorkspaceModVariable) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*WorkspaceModVariable) SetValue added in v0.0.4

func (o *WorkspaceModVariable) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (*WorkspaceModVariable) SetValueDefault added in v0.0.4

func (o *WorkspaceModVariable) SetValueDefault(v interface{})

SetValueDefault gets a reference to the given interface{} and assigns it to the ValueDefault field.

func (*WorkspaceModVariable) SetValueSetting added in v0.0.4

func (o *WorkspaceModVariable) SetValueSetting(v interface{})

SetValueSetting gets a reference to the given interface{} and assigns it to the ValueSetting field.

func (*WorkspaceModVariable) SetVersionId added in v0.0.4

func (o *WorkspaceModVariable) SetVersionId(v int32)

SetVersionId sets field value

type WorkspaceQueryResult added in v0.0.2

type WorkspaceQueryResult struct {
	Columns []WorkspaceQueryResultColumn `json:"columns"`
	Rows    []map[string]interface{}     `json:"rows"`
}

WorkspaceQueryResult struct for WorkspaceQueryResult

func NewWorkspaceQueryResult added in v0.0.2

func NewWorkspaceQueryResult(columns []WorkspaceQueryResultColumn, rows []map[string]interface{}) *WorkspaceQueryResult

NewWorkspaceQueryResult instantiates a new WorkspaceQueryResult 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 NewWorkspaceQueryResultWithDefaults added in v0.0.2

func NewWorkspaceQueryResultWithDefaults() *WorkspaceQueryResult

NewWorkspaceQueryResultWithDefaults instantiates a new WorkspaceQueryResult 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 (*WorkspaceQueryResult) GetColumns added in v0.0.2

GetColumns returns the Columns field value

func (*WorkspaceQueryResult) GetColumnsOk added in v0.0.2

func (o *WorkspaceQueryResult) GetColumnsOk() (*[]WorkspaceQueryResultColumn, bool)

GetColumnsOk returns a tuple with the Columns field value and a boolean to check if the value has been set.

func (*WorkspaceQueryResult) GetRows added in v0.0.2

func (o *WorkspaceQueryResult) GetRows() []map[string]interface{}

GetRows returns the Rows field value

func (*WorkspaceQueryResult) GetRowsOk added in v0.0.2

func (o *WorkspaceQueryResult) GetRowsOk() (*[]map[string]interface{}, bool)

GetRowsOk returns a tuple with the Rows field value and a boolean to check if the value has been set.

func (WorkspaceQueryResult) MarshalJSON added in v0.0.2

func (o WorkspaceQueryResult) MarshalJSON() ([]byte, error)

func (*WorkspaceQueryResult) SetColumns added in v0.0.2

SetColumns sets field value

func (*WorkspaceQueryResult) SetRows added in v0.0.2

func (o *WorkspaceQueryResult) SetRows(v []map[string]interface{})

SetRows sets field value

type WorkspaceQueryResultColumn added in v0.0.2

type WorkspaceQueryResultColumn struct {
	DataType      string `json:"data_type"`
	MaxDataLength *int32 `json:"max_data_length,omitempty"`
	Name          string `json:"name"`
}

WorkspaceQueryResultColumn struct for WorkspaceQueryResultColumn

func NewWorkspaceQueryResultColumn added in v0.0.2

func NewWorkspaceQueryResultColumn(dataType string, name string) *WorkspaceQueryResultColumn

NewWorkspaceQueryResultColumn instantiates a new WorkspaceQueryResultColumn 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 NewWorkspaceQueryResultColumnWithDefaults added in v0.0.2

func NewWorkspaceQueryResultColumnWithDefaults() *WorkspaceQueryResultColumn

NewWorkspaceQueryResultColumnWithDefaults instantiates a new WorkspaceQueryResultColumn 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 (*WorkspaceQueryResultColumn) GetDataType added in v0.1.0

func (o *WorkspaceQueryResultColumn) GetDataType() string

GetDataType returns the DataType field value

func (*WorkspaceQueryResultColumn) GetDataTypeOk added in v0.1.0

func (o *WorkspaceQueryResultColumn) GetDataTypeOk() (*string, bool)

GetDataTypeOk returns a tuple with the DataType field value and a boolean to check if the value has been set.

func (*WorkspaceQueryResultColumn) GetMaxDataLength added in v0.0.2

func (o *WorkspaceQueryResultColumn) GetMaxDataLength() int32

GetMaxDataLength returns the MaxDataLength field value if set, zero value otherwise.

func (*WorkspaceQueryResultColumn) GetMaxDataLengthOk added in v0.0.2

func (o *WorkspaceQueryResultColumn) GetMaxDataLengthOk() (*int32, bool)

GetMaxDataLengthOk returns a tuple with the MaxDataLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceQueryResultColumn) GetName added in v0.0.2

func (o *WorkspaceQueryResultColumn) GetName() string

GetName returns the Name field value

func (*WorkspaceQueryResultColumn) GetNameOk added in v0.0.2

func (o *WorkspaceQueryResultColumn) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WorkspaceQueryResultColumn) HasMaxDataLength added in v0.0.2

func (o *WorkspaceQueryResultColumn) HasMaxDataLength() bool

HasMaxDataLength returns a boolean if a field has been set.

func (WorkspaceQueryResultColumn) MarshalJSON added in v0.0.2

func (o WorkspaceQueryResultColumn) MarshalJSON() ([]byte, error)

func (*WorkspaceQueryResultColumn) SetDataType added in v0.1.0

func (o *WorkspaceQueryResultColumn) SetDataType(v string)

SetDataType sets field value

func (*WorkspaceQueryResultColumn) SetMaxDataLength added in v0.0.2

func (o *WorkspaceQueryResultColumn) SetMaxDataLength(v int32)

SetMaxDataLength gets a reference to the given int32 and assigns it to the MaxDataLength field.

func (*WorkspaceQueryResultColumn) SetName added in v0.0.2

func (o *WorkspaceQueryResultColumn) SetName(v string)

SetName sets field value

type WorkspaceSchema added in v0.0.2

type WorkspaceSchema struct {
	Duration int32        `json:"duration"`
	Schemas  []SchemaInfo `json:"schemas"`
}

WorkspaceSchema struct for WorkspaceSchema

func NewWorkspaceSchema added in v0.0.2

func NewWorkspaceSchema(duration int32, schemas []SchemaInfo) *WorkspaceSchema

NewWorkspaceSchema instantiates a new WorkspaceSchema 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 NewWorkspaceSchemaWithDefaults added in v0.0.2

func NewWorkspaceSchemaWithDefaults() *WorkspaceSchema

NewWorkspaceSchemaWithDefaults instantiates a new WorkspaceSchema 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 (*WorkspaceSchema) GetDuration added in v0.0.2

func (o *WorkspaceSchema) GetDuration() int32

GetDuration returns the Duration field value

func (*WorkspaceSchema) GetDurationOk added in v0.0.2

func (o *WorkspaceSchema) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value and a boolean to check if the value has been set.

func (*WorkspaceSchema) GetSchemas added in v0.0.2

func (o *WorkspaceSchema) GetSchemas() []SchemaInfo

GetSchemas returns the Schemas field value

func (*WorkspaceSchema) GetSchemasOk added in v0.0.2

func (o *WorkspaceSchema) GetSchemasOk() (*[]SchemaInfo, bool)

GetSchemasOk returns a tuple with the Schemas field value and a boolean to check if the value has been set.

func (WorkspaceSchema) MarshalJSON added in v0.0.2

func (o WorkspaceSchema) MarshalJSON() ([]byte, error)

func (*WorkspaceSchema) SetDuration added in v0.0.2

func (o *WorkspaceSchema) SetDuration(v int32)

SetDuration sets field value

func (*WorkspaceSchema) SetSchemas added in v0.0.2

func (o *WorkspaceSchema) SetSchemas(v []SchemaInfo)

SetSchemas sets field value

type WorkspaceSnapshot added in v0.1.3

type WorkspaceSnapshot struct {
	// The time of creation in ISO 8601 UTC.
	CreatedAt string `json:"created_at"`
	CreatedBy *User  `json:"created_by,omitempty"`
	// The ID of the user that created this.
	CreatedById string `json:"created_by_id"`
	// The mod-prefixed name of the dashboard this snapshot belongs to.
	DashboardName string `json:"dashboard_name"`
	// The title of the dashboard this snapshot belongs to.
	DashboardTitle string `json:"dashboard_title"`
	// The time when the snapshot will expire.
	ExpiresAt *string `json:"expires_at,omitempty"`
	// The unique identifier for the snapshot.
	Id string `json:"id"`
	// The unique identifier for the identity that the snapshot belongs to.
	IdentityId string      `json:"identity_id"`
	Inputs     interface{} `json:"inputs,omitempty"`
	// The schema version of the underlying snapshot.
	SchemaVersion string `json:"schema_version"`
	// The current state of the snapshot.
	State *string     `json:"state,omitempty"`
	Tags  interface{} `json:"tags,omitempty"`
	// The title of the snapshot.
	Title *string `json:"title,omitempty"`
	// The time of the last update in ISO 8601 UTC.
	UpdatedAt *string `json:"updated_at,omitempty"`
	UpdatedBy *User   `json:"updated_by,omitempty"`
	// The ID of the user that performed the last update.
	UpdatedById string `json:"updated_by_id"`
	// The version ID of this item. Pass this version ID via an If-Match header when performing mutation operations on the item.
	VersionId int32 `json:"version_id"`
	// The visibility of the snapshot.
	Visibility *string `json:"visibility,omitempty"`
	// The unique identifier for the workspace that the snapshot belongs to.
	WorkspaceId string `json:"workspace_id"`
}

WorkspaceSnapshot struct for WorkspaceSnapshot

func NewWorkspaceSnapshot added in v0.1.3

func NewWorkspaceSnapshot(createdAt string, createdById string, dashboardName string, dashboardTitle string, id string, identityId string, schemaVersion string, updatedById string, versionId int32, workspaceId string) *WorkspaceSnapshot

NewWorkspaceSnapshot instantiates a new WorkspaceSnapshot 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 NewWorkspaceSnapshotWithDefaults added in v0.1.3

func NewWorkspaceSnapshotWithDefaults() *WorkspaceSnapshot

NewWorkspaceSnapshotWithDefaults instantiates a new WorkspaceSnapshot 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 (*WorkspaceSnapshot) GetCreatedAt added in v0.1.3

func (o *WorkspaceSnapshot) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*WorkspaceSnapshot) GetCreatedAtOk added in v0.1.3

func (o *WorkspaceSnapshot) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetCreatedBy added in v0.1.3

func (o *WorkspaceSnapshot) GetCreatedBy() User

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkspaceSnapshot) GetCreatedById added in v0.1.3

func (o *WorkspaceSnapshot) GetCreatedById() string

GetCreatedById returns the CreatedById field value

func (*WorkspaceSnapshot) GetCreatedByIdOk added in v0.1.3

func (o *WorkspaceSnapshot) GetCreatedByIdOk() (*string, bool)

GetCreatedByIdOk returns a tuple with the CreatedById field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetCreatedByOk added in v0.1.3

func (o *WorkspaceSnapshot) GetCreatedByOk() (*User, 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 (*WorkspaceSnapshot) GetDashboardName added in v0.1.3

func (o *WorkspaceSnapshot) GetDashboardName() string

GetDashboardName returns the DashboardName field value

func (*WorkspaceSnapshot) GetDashboardNameOk added in v0.1.3

func (o *WorkspaceSnapshot) GetDashboardNameOk() (*string, bool)

GetDashboardNameOk returns a tuple with the DashboardName field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetDashboardTitle added in v0.1.3

func (o *WorkspaceSnapshot) GetDashboardTitle() string

GetDashboardTitle returns the DashboardTitle field value

func (*WorkspaceSnapshot) GetDashboardTitleOk added in v0.1.3

func (o *WorkspaceSnapshot) GetDashboardTitleOk() (*string, bool)

GetDashboardTitleOk returns a tuple with the DashboardTitle field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetExpiresAt added in v0.3.0

func (o *WorkspaceSnapshot) GetExpiresAt() string

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*WorkspaceSnapshot) GetExpiresAtOk added in v0.3.0

func (o *WorkspaceSnapshot) GetExpiresAtOk() (*string, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetId added in v0.1.3

func (o *WorkspaceSnapshot) GetId() string

GetId returns the Id field value

func (*WorkspaceSnapshot) GetIdOk added in v0.1.3

func (o *WorkspaceSnapshot) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetIdentityId added in v0.1.3

func (o *WorkspaceSnapshot) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*WorkspaceSnapshot) GetIdentityIdOk added in v0.1.3

func (o *WorkspaceSnapshot) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetInputs added in v0.1.3

func (o *WorkspaceSnapshot) GetInputs() interface{}

GetInputs returns the Inputs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkspaceSnapshot) GetInputsOk added in v0.1.3

func (o *WorkspaceSnapshot) GetInputsOk() (*interface{}, bool)

GetInputsOk returns a tuple with the Inputs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkspaceSnapshot) GetSchemaVersion added in v0.1.3

func (o *WorkspaceSnapshot) GetSchemaVersion() string

GetSchemaVersion returns the SchemaVersion field value

func (*WorkspaceSnapshot) GetSchemaVersionOk added in v0.1.3

func (o *WorkspaceSnapshot) GetSchemaVersionOk() (*string, bool)

GetSchemaVersionOk returns a tuple with the SchemaVersion field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetState added in v0.1.3

func (o *WorkspaceSnapshot) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*WorkspaceSnapshot) GetStateOk added in v0.1.3

func (o *WorkspaceSnapshot) 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 (*WorkspaceSnapshot) GetTags added in v0.1.3

func (o *WorkspaceSnapshot) GetTags() interface{}

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkspaceSnapshot) GetTagsOk added in v0.1.3

func (o *WorkspaceSnapshot) GetTagsOk() (*interface{}, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkspaceSnapshot) GetTitle added in v0.2.0

func (o *WorkspaceSnapshot) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkspaceSnapshot) GetTitleOk added in v0.2.0

func (o *WorkspaceSnapshot) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetUpdatedAt added in v0.1.3

func (o *WorkspaceSnapshot) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*WorkspaceSnapshot) GetUpdatedAtOk added in v0.1.3

func (o *WorkspaceSnapshot) GetUpdatedAtOk() (*string, 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 (*WorkspaceSnapshot) GetUpdatedBy added in v0.1.3

func (o *WorkspaceSnapshot) GetUpdatedBy() User

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkspaceSnapshot) GetUpdatedById added in v0.1.3

func (o *WorkspaceSnapshot) GetUpdatedById() string

GetUpdatedById returns the UpdatedById field value

func (*WorkspaceSnapshot) GetUpdatedByIdOk added in v0.1.3

func (o *WorkspaceSnapshot) GetUpdatedByIdOk() (*string, bool)

GetUpdatedByIdOk returns a tuple with the UpdatedById field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetUpdatedByOk added in v0.1.3

func (o *WorkspaceSnapshot) GetUpdatedByOk() (*User, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetVersionId added in v0.1.3

func (o *WorkspaceSnapshot) GetVersionId() int32

GetVersionId returns the VersionId field value

func (*WorkspaceSnapshot) GetVersionIdOk added in v0.1.3

func (o *WorkspaceSnapshot) GetVersionIdOk() (*int32, bool)

GetVersionIdOk returns a tuple with the VersionId field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetVisibility added in v0.1.3

func (o *WorkspaceSnapshot) GetVisibility() string

GetVisibility returns the Visibility field value if set, zero value otherwise.

func (*WorkspaceSnapshot) GetVisibilityOk added in v0.1.3

func (o *WorkspaceSnapshot) GetVisibilityOk() (*string, bool)

GetVisibilityOk returns a tuple with the Visibility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) GetWorkspaceId added in v0.1.3

func (o *WorkspaceSnapshot) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceSnapshot) GetWorkspaceIdOk added in v0.1.3

func (o *WorkspaceSnapshot) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshot) HasCreatedBy added in v0.1.3

func (o *WorkspaceSnapshot) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkspaceSnapshot) HasExpiresAt added in v0.3.0

func (o *WorkspaceSnapshot) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*WorkspaceSnapshot) HasInputs added in v0.1.3

func (o *WorkspaceSnapshot) HasInputs() bool

HasInputs returns a boolean if a field has been set.

func (*WorkspaceSnapshot) HasState added in v0.1.3

func (o *WorkspaceSnapshot) HasState() bool

HasState returns a boolean if a field has been set.

func (*WorkspaceSnapshot) HasTags added in v0.1.3

func (o *WorkspaceSnapshot) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*WorkspaceSnapshot) HasTitle added in v0.2.0

func (o *WorkspaceSnapshot) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkspaceSnapshot) HasUpdatedAt added in v0.1.3

func (o *WorkspaceSnapshot) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*WorkspaceSnapshot) HasUpdatedBy added in v0.1.3

func (o *WorkspaceSnapshot) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*WorkspaceSnapshot) HasVisibility added in v0.1.3

func (o *WorkspaceSnapshot) HasVisibility() bool

HasVisibility returns a boolean if a field has been set.

func (WorkspaceSnapshot) MarshalJSON added in v0.1.3

func (o WorkspaceSnapshot) MarshalJSON() ([]byte, error)

func (*WorkspaceSnapshot) SetCreatedAt added in v0.1.3

func (o *WorkspaceSnapshot) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*WorkspaceSnapshot) SetCreatedBy added in v0.1.3

func (o *WorkspaceSnapshot) SetCreatedBy(v User)

SetCreatedBy gets a reference to the given User and assigns it to the CreatedBy field.

func (*WorkspaceSnapshot) SetCreatedById added in v0.1.3

func (o *WorkspaceSnapshot) SetCreatedById(v string)

SetCreatedById sets field value

func (*WorkspaceSnapshot) SetDashboardName added in v0.1.3

func (o *WorkspaceSnapshot) SetDashboardName(v string)

SetDashboardName sets field value

func (*WorkspaceSnapshot) SetDashboardTitle added in v0.1.3

func (o *WorkspaceSnapshot) SetDashboardTitle(v string)

SetDashboardTitle sets field value

func (*WorkspaceSnapshot) SetExpiresAt added in v0.3.0

func (o *WorkspaceSnapshot) SetExpiresAt(v string)

SetExpiresAt gets a reference to the given string and assigns it to the ExpiresAt field.

func (*WorkspaceSnapshot) SetId added in v0.1.3

func (o *WorkspaceSnapshot) SetId(v string)

SetId sets field value

func (*WorkspaceSnapshot) SetIdentityId added in v0.1.3

func (o *WorkspaceSnapshot) SetIdentityId(v string)

SetIdentityId sets field value

func (*WorkspaceSnapshot) SetInputs added in v0.1.3

func (o *WorkspaceSnapshot) SetInputs(v interface{})

SetInputs gets a reference to the given interface{} and assigns it to the Inputs field.

func (*WorkspaceSnapshot) SetSchemaVersion added in v0.1.3

func (o *WorkspaceSnapshot) SetSchemaVersion(v string)

SetSchemaVersion sets field value

func (*WorkspaceSnapshot) SetState added in v0.1.3

func (o *WorkspaceSnapshot) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*WorkspaceSnapshot) SetTags added in v0.1.3

func (o *WorkspaceSnapshot) SetTags(v interface{})

SetTags gets a reference to the given interface{} and assigns it to the Tags field.

func (*WorkspaceSnapshot) SetTitle added in v0.2.0

func (o *WorkspaceSnapshot) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkspaceSnapshot) SetUpdatedAt added in v0.1.3

func (o *WorkspaceSnapshot) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*WorkspaceSnapshot) SetUpdatedBy added in v0.1.3

func (o *WorkspaceSnapshot) SetUpdatedBy(v User)

SetUpdatedBy gets a reference to the given User and assigns it to the UpdatedBy field.

func (*WorkspaceSnapshot) SetUpdatedById added in v0.1.3

func (o *WorkspaceSnapshot) SetUpdatedById(v string)

SetUpdatedById sets field value

func (*WorkspaceSnapshot) SetVersionId added in v0.1.3

func (o *WorkspaceSnapshot) SetVersionId(v int32)

SetVersionId sets field value

func (*WorkspaceSnapshot) SetVisibility added in v0.1.3

func (o *WorkspaceSnapshot) SetVisibility(v string)

SetVisibility gets a reference to the given string and assigns it to the Visibility field.

func (*WorkspaceSnapshot) SetWorkspaceId added in v0.1.3

func (o *WorkspaceSnapshot) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceSnapshotData added in v0.1.3

type WorkspaceSnapshotData struct {
	// The time the dashboard execution ended.
	EndTime string                      `json:"end_time"`
	Inputs  *map[string]interface{}     `json:"inputs,omitempty"`
	Layout  WorkspaceSnapshotDataLayout `json:"layout"`
	Panels  map[string]interface{}      `json:"panels"`
	// The schema version of this snapshot.
	SchemaVersion string `json:"schema_version"`
	// The time the dashboard execution started.
	StartTime string                  `json:"start_time"`
	Variables *map[string]interface{} `json:"variables,omitempty"`
}

WorkspaceSnapshotData struct for WorkspaceSnapshotData

func NewWorkspaceSnapshotData added in v0.1.3

func NewWorkspaceSnapshotData(endTime string, layout WorkspaceSnapshotDataLayout, panels map[string]interface{}, schemaVersion string, startTime string) *WorkspaceSnapshotData

NewWorkspaceSnapshotData instantiates a new WorkspaceSnapshotData 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 NewWorkspaceSnapshotDataWithDefaults added in v0.1.3

func NewWorkspaceSnapshotDataWithDefaults() *WorkspaceSnapshotData

NewWorkspaceSnapshotDataWithDefaults instantiates a new WorkspaceSnapshotData 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 (*WorkspaceSnapshotData) GetEndTime added in v0.1.3

func (o *WorkspaceSnapshotData) GetEndTime() string

GetEndTime returns the EndTime field value

func (*WorkspaceSnapshotData) GetEndTimeOk added in v0.1.3

func (o *WorkspaceSnapshotData) GetEndTimeOk() (*string, bool)

GetEndTimeOk returns a tuple with the EndTime field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshotData) GetInputs added in v0.1.3

func (o *WorkspaceSnapshotData) GetInputs() map[string]interface{}

GetInputs returns the Inputs field value if set, zero value otherwise.

func (*WorkspaceSnapshotData) GetInputsOk added in v0.1.3

func (o *WorkspaceSnapshotData) GetInputsOk() (*map[string]interface{}, bool)

GetInputsOk returns a tuple with the Inputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceSnapshotData) GetLayout added in v0.1.3

GetLayout returns the Layout field value

func (*WorkspaceSnapshotData) GetLayoutOk added in v0.1.3

GetLayoutOk returns a tuple with the Layout field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshotData) GetPanels added in v0.1.3

func (o *WorkspaceSnapshotData) GetPanels() map[string]interface{}

GetPanels returns the Panels field value

func (*WorkspaceSnapshotData) GetPanelsOk added in v0.1.3

func (o *WorkspaceSnapshotData) GetPanelsOk() (*map[string]interface{}, bool)

GetPanelsOk returns a tuple with the Panels field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshotData) GetSchemaVersion added in v0.1.3

func (o *WorkspaceSnapshotData) GetSchemaVersion() string

GetSchemaVersion returns the SchemaVersion field value

func (*WorkspaceSnapshotData) GetSchemaVersionOk added in v0.1.3

func (o *WorkspaceSnapshotData) GetSchemaVersionOk() (*string, bool)

GetSchemaVersionOk returns a tuple with the SchemaVersion field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshotData) GetStartTime added in v0.1.3

func (o *WorkspaceSnapshotData) GetStartTime() string

GetStartTime returns the StartTime field value

func (*WorkspaceSnapshotData) GetStartTimeOk added in v0.1.3

func (o *WorkspaceSnapshotData) GetStartTimeOk() (*string, bool)

GetStartTimeOk returns a tuple with the StartTime field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshotData) GetVariables added in v0.1.3

func (o *WorkspaceSnapshotData) GetVariables() map[string]interface{}

GetVariables returns the Variables field value if set, zero value otherwise.

func (*WorkspaceSnapshotData) GetVariablesOk added in v0.1.3

func (o *WorkspaceSnapshotData) GetVariablesOk() (*map[string]interface{}, bool)

GetVariablesOk returns a tuple with the Variables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceSnapshotData) HasInputs added in v0.1.3

func (o *WorkspaceSnapshotData) HasInputs() bool

HasInputs returns a boolean if a field has been set.

func (*WorkspaceSnapshotData) HasVariables added in v0.1.3

func (o *WorkspaceSnapshotData) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (WorkspaceSnapshotData) MarshalJSON added in v0.1.3

func (o WorkspaceSnapshotData) MarshalJSON() ([]byte, error)

func (*WorkspaceSnapshotData) SetEndTime added in v0.1.3

func (o *WorkspaceSnapshotData) SetEndTime(v string)

SetEndTime sets field value

func (*WorkspaceSnapshotData) SetInputs added in v0.1.3

func (o *WorkspaceSnapshotData) SetInputs(v map[string]interface{})

SetInputs gets a reference to the given map[string]interface{} and assigns it to the Inputs field.

func (*WorkspaceSnapshotData) SetLayout added in v0.1.3

SetLayout sets field value

func (*WorkspaceSnapshotData) SetPanels added in v0.1.3

func (o *WorkspaceSnapshotData) SetPanels(v map[string]interface{})

SetPanels sets field value

func (*WorkspaceSnapshotData) SetSchemaVersion added in v0.1.3

func (o *WorkspaceSnapshotData) SetSchemaVersion(v string)

SetSchemaVersion sets field value

func (*WorkspaceSnapshotData) SetStartTime added in v0.1.3

func (o *WorkspaceSnapshotData) SetStartTime(v string)

SetStartTime sets field value

func (*WorkspaceSnapshotData) SetVariables added in v0.1.3

func (o *WorkspaceSnapshotData) SetVariables(v map[string]interface{})

SetVariables gets a reference to the given map[string]interface{} and assigns it to the Variables field.

type WorkspaceSnapshotDataLayout added in v0.5.0

type WorkspaceSnapshotDataLayout struct {
	Children  *[]WorkspaceSnapshotDataLayout `json:"children,omitempty"`
	Name      string                         `json:"name"`
	PanelType string                         `json:"panel_type"`
}

WorkspaceSnapshotDataLayout struct for WorkspaceSnapshotDataLayout

func NewWorkspaceSnapshotDataLayout added in v0.5.0

func NewWorkspaceSnapshotDataLayout(name string, panelType string) *WorkspaceSnapshotDataLayout

NewWorkspaceSnapshotDataLayout instantiates a new WorkspaceSnapshotDataLayout 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 NewWorkspaceSnapshotDataLayoutWithDefaults added in v0.5.0

func NewWorkspaceSnapshotDataLayoutWithDefaults() *WorkspaceSnapshotDataLayout

NewWorkspaceSnapshotDataLayoutWithDefaults instantiates a new WorkspaceSnapshotDataLayout 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 (*WorkspaceSnapshotDataLayout) GetChildren added in v0.5.0

GetChildren returns the Children field value if set, zero value otherwise.

func (*WorkspaceSnapshotDataLayout) GetChildrenOk added in v0.5.0

GetChildrenOk returns a tuple with the Children field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceSnapshotDataLayout) GetName added in v0.5.0

func (o *WorkspaceSnapshotDataLayout) GetName() string

GetName returns the Name field value

func (*WorkspaceSnapshotDataLayout) GetNameOk added in v0.5.0

func (o *WorkspaceSnapshotDataLayout) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshotDataLayout) GetPanelType added in v0.5.0

func (o *WorkspaceSnapshotDataLayout) GetPanelType() string

GetPanelType returns the PanelType field value

func (*WorkspaceSnapshotDataLayout) GetPanelTypeOk added in v0.5.0

func (o *WorkspaceSnapshotDataLayout) GetPanelTypeOk() (*string, bool)

GetPanelTypeOk returns a tuple with the PanelType field value and a boolean to check if the value has been set.

func (*WorkspaceSnapshotDataLayout) HasChildren added in v0.5.0

func (o *WorkspaceSnapshotDataLayout) HasChildren() bool

HasChildren returns a boolean if a field has been set.

func (WorkspaceSnapshotDataLayout) MarshalJSON added in v0.5.0

func (o WorkspaceSnapshotDataLayout) MarshalJSON() ([]byte, error)

func (*WorkspaceSnapshotDataLayout) SetChildren added in v0.5.0

SetChildren gets a reference to the given []WorkspaceSnapshotDataLayout and assigns it to the Children field.

func (*WorkspaceSnapshotDataLayout) SetName added in v0.5.0

func (o *WorkspaceSnapshotDataLayout) SetName(v string)

SetName sets field value

func (*WorkspaceSnapshotDataLayout) SetPanelType added in v0.5.0

func (o *WorkspaceSnapshotDataLayout) SetPanelType(v string)

SetPanelType sets field value

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL