Categorygithub.com/turbot/pipes-sdk-go
modulepackage
0.11.0
Repository: https://github.com/turbot/pipes-sdk-go.git
Documentation: pkg.go.dev

# README

Go SDK for Turbot Pipes

Turbot Pipes is an intelligence, automation & security platform built specifically for DevOps.

For help on getting started with Turbot Pipes, please visit https://turbot.com/pipes.

Getting Started

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

package main

import (
    "context"
    "fmt"
    "os"

    pipes "github.com/turbot/pipes-sdk-go"
)

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

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

    // Create a client
    client := pipes.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://pipes.turbot.com/api/v0

ClassMethodHTTP requestDescription
ActorsGetGet /actorActor information
ActorsListActivityGet /actor/activityList actor activity
ActorsListConnectionsGet /actor/connList actor connections
ActorsListOrgInvitesGet /actor/org/inviteList org invites for actor
ActorsListOrgsGet /actor/orgList actor orgs
ActorsListWorkspacesGet /actor/workspaceList actor workspaces
AuthConfirmLoginGet /login/confirmConfirm user login
AuthConfirmSignupGet /signup/confirmConfirm user signup
AuthLoginPost /loginUser login
AuthLoginTokenCreatePost /login/tokenGenerate temporary token request
AuthLoginTokenDeleteDelete /login/token/{temporary_token_request_id}Delete temporary token request
AuthLoginTokenGetGet /login/token/{temporary_token_request_id}Get temporary token request
AuthLoginTokenUpdatePatch /login/token/{temporary_token_request_id}Update temporary token request
AuthLogoutGet /logout/{provider}User logout
AuthPostProviderCallbackPost /auth/{provider}/callbackPost auth provider callback
AuthProviderGet /auth/{provider}Auth Provider
AuthProviderCallbackGet /auth/{provider}/callbackAuth provider callback
AuthSignupPost /signupUser signup
IdentitiesGetGet /identity/{identity_handle}Get identity
IdentitiesGetAvatarGet /identity/{identity_handle}/avatarGet identity avatar
IdentitiesListGet /identityList identities
OrgBillingCreateBillingIntentPost /org/{org_handle}/billing/payment_method/intentCreate Stripe billing intent
OrgBillingCreateOrgSubscriptionPost /org/{org_handle}/billing/subscriptionCreate a new subscription
OrgBillingDeleteOrgBillingPaymentMethodDelete /org/{org_handle}/billing/payment_method/{payment_method_id}Delete org billing payment method.
OrgBillingDeleteOrgBillingSubscriptionDelete /org/{org_handle}/billing/subscription/{subscription_id}Delete org subscription
OrgBillingGetOrgBillingInvoiceGet /org/{org_handle}/billing/invoice/{invoice_id}Get an organization invoice
OrgBillingGetOrgBillingPaymentMethodGet /org/{org_handle}/billing/payment_method/{payment_method_id}Get org billing payment method.
OrgBillingGetOrgBillingSubscriptionGet /org/{org_handle}/billing/subscription/{subscription_id}Get org subscription
OrgBillingGetOrgBillingUpcomingInvoiceGet /org/{org_handle}/billing/stripe/invoice/upcomingGet upcoming invoice
OrgBillingListOrgBillingInvoicesGet /org/{org_handle}/billing/invoiceList org invoices
OrgBillingListOrgBillingPaymentMethodGet /org/{org_handle}/billing/payment_methodList org billing payment methods.
OrgBillingListOrgSubscriptionGet /org/{org_handle}/billing/subscriptionList org subscriptions
OrgBillingUpdateOrgBillingPaymentMethodPatch /org/{org_handle}/billing/payment_method/{payment_method_id}Update org billing payment method.
OrgBillingUpdateOrgBillingSubscriptionPatch /org/{org_handle}/billing/subscription/{subscription_id}Update org subscription
OrgConnectionFoldersCreatePost /org/{org_handle}/connection_folderCreate org connection folder
OrgConnectionFoldersCreatePermissionPost /org/{org_handle}/connection_folder/{folder_id}/permissionCreate org connection folder permission
OrgConnectionFoldersDeleteDelete /org/{org_handle}/connection_folder/{folder_id}Delete org connection folder
OrgConnectionFoldersDeletePermissionDelete /org/{org_handle}/connection_folder/{folder_id}/permission/{permission_id}Delete org connection folder permission
OrgConnectionFoldersGetGet /org/{org_handle}/connection_folder/{folder_id}Get org connection folder
OrgConnectionFoldersGetPermissionGet /org/{org_handle}/connection_folder/{folder_id}/permission/{permission_id}Get org connection folder permission
OrgConnectionFoldersListGet /org/{org_handle}/connection_folderList org connection folders
OrgConnectionFoldersListPermissionGet /org/{org_handle}/connection_folder/{folder_id}/permissionList org connection folder permissions
OrgConnectionFoldersListWorkspacesGet /org/{org_handle}/connection_folder/{folder_id}/workspaceList org connection folder workspaces
OrgConnectionFoldersUpdatePatch /org/{org_handle}/connection_folder/{folder_id}Update org connection folder
OrgConnectionFoldersUpdatePermissionPatch /org/{org_handle}/connection_folder/{folder_id}/permission/{permission_id}Update org connection folder permission
OrgConnectionTreeListGet /org/{org_handle}/connection_treeList tenant connection tree
OrgConnectionsCreatePost /org/{org_handle}/connectionCreate org connection
OrgConnectionsCreateDeprecatedPost /org/{org_handle}/connCreate org connection
OrgConnectionsCreatePermissionPost /org/{org_handle}/connection/{connection_handle}/permissionCreate org connection permission
OrgConnectionsDeleteDelete /org/{org_handle}/connection/{connection_handle}Delete org connection
OrgConnectionsDeleteDeprecatedDelete /org/{org_handle}/conn/{conn_handle}Delete org connection
OrgConnectionsDeletePermissionDelete /org/{org_handle}/connection/{connection_handle}/permission/{permission_id}Delete org connection permission
OrgConnectionsGetGet /org/{org_handle}/connection/{connection_handle}Get org connection
OrgConnectionsGetDeprecatedGet /org/{org_handle}/conn/{conn_handle}Get org connection
OrgConnectionsGetPermissionGet /org/{org_handle}/connection/{connection_handle}/permission/{permission_id}Get org connection permission
OrgConnectionsListGet /org/{org_handle}/connectionList org connections
OrgConnectionsListDeprecatedGet /org/{org_handle}/connList org connections
OrgConnectionsListPermissionGet /org/{org_handle}/connection/{connection_handle}/permissionList org connection permissions
OrgConnectionsListWorkspacesGet /org/{org_handle}/connection/{connection_handle}/workspaceList org connection workspaces
OrgConnectionsListWorkspacesDeprecatedGet /org/{org_handle}/conn/{conn_handle}/workspaceList org connection workspaces
OrgConnectionsTestPost /org/{org_handle}/connection/{connection_handle}/testTest org connection
OrgConnectionsTestDeprecatedPost /org/{org_handle}/conn/{conn_handle}/testTest org connection
OrgConnectionsUpdatePatch /org/{org_handle}/connection/{connection_handle}Update org connection
OrgConnectionsUpdateDeprecatedPatch /org/{org_handle}/conn/{conn_handle}Update org connection
OrgConnectionsUpdatePermissionPatch /org/{org_handle}/connection/{connection_handle}/permission/{permission_id}Update org connection permission
OrgIntegrationsCommandPost /org/{org_handle}/integration/{integration_handle}/commandRun org integration command
OrgIntegrationsCreatePost /org/{org_handle}/integrationCreate org integration
OrgIntegrationsDeleteDelete /org/{org_handle}/integration/{integration_handle}Delete org integration
OrgIntegrationsGetGet /org/{org_handle}/integration/{integration_handle}Get org integration
OrgIntegrationsInstallGithubIntegrationGet /org/{org_handle}/integration/{integration_handle}/github/installInstall GitHub integration for an org
OrgIntegrationsInstallSlackIntegrationGet /org/{org_handle}/integration/{integration_handle}/slack/installInstall Slack integration for an org
OrgIntegrationsListGet /org/{org_handle}/integrationList org integrations
OrgIntegrationsListSlackChannelsGet /org/{org_handle}/integration/{integration_handle}/slack/channelList org integration Slack channels
OrgIntegrationsTestPost /org/{org_handle}/integration/{integration_handle}/testTest org integration
OrgIntegrationsUpdatePatch /org/{org_handle}/integration/{integration_handle}Update org integration
OrgMembersConfirmInviteGet /org/{org_handle}/member/invite/confirmConfirm org member invite
OrgMembersCreatePost /org/{org_handle}/memberCreate Org Member
OrgMembersDeleteDelete /org/{org_handle}/member/{user_handle}Delete org member
OrgMembersDeleteInviteDelete /org/{org_handle}/member/inviteDelete org member invite
OrgMembersGetGet /org/{org_handle}/member/{user_handle}Get org member
OrgMembersInvitePost /org/{org_handle}/member/inviteInvite org member
OrgMembersListGet /org/{org_handle}/memberList Organization Members
OrgMembersUpdatePatch /org/{org_handle}/member/{user_handle}Update org member
OrgNotifiersCreatePost /org/{org_handle}/notifierCreate org notifier
OrgNotifiersDeleteDelete /org/{org_handle}/notifier/{notifier_name}Delete org notifier
OrgNotifiersGetGet /org/{org_handle}/notifier/{notifier_name}Get org notifier
OrgNotifiersListGet /org/{org_handle}/notifierList org notifiers
OrgNotifiersUpdatePatch /org/{org_handle}/notifier/{notifier_name}Update org notifier
OrgProcessesGetGet /org/{org_handle}/process/{process_id}Get Org process
OrgProcessesListGet /org/{org_handle}/processList Org processes
OrgProcessesLogGet /org/{org_handle}/process/{process_id}/log/{log_file}.{content_type}List Org process logs
OrgWorkspaceAggregatorsCreatePost /org/{org_handle}/workspace/{workspace_handle}/aggregatorCreate an aggregator for an org workspace
OrgWorkspaceAggregatorsDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}Delete an aggregator for a org workspace
OrgWorkspaceAggregatorsGetGet /org/{org_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}Get an aggregator for a org workspace
OrgWorkspaceAggregatorsGetConnectionGet /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
OrgWorkspaceAggregatorsListGet /org/{org_handle}/workspace/{workspace_handle}/aggregatorList aggregators for an org workspace
OrgWorkspaceAggregatorsListConnectionsGet /org/{org_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}/connectionList connections in the scope of an aggregator for a org workspace
OrgWorkspaceAggregatorsUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}Update an aggregator for a org workspace
OrgWorkspaceConnectionAssociationsCreatePost /org/{org_handle}/workspace/{workspace_handle}/connCreate org workspace connection association
OrgWorkspaceConnectionAssociationsDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/conn/{conn_handle}Delete org workspace connection association
OrgWorkspaceConnectionAssociationsGetGet /org/{org_handle}/workspace/{workspace_handle}/conn/{conn_handle}Get org workspace connection association
OrgWorkspaceConnectionAssociationsListGet /org/{org_handle}/workspace/{workspace_handle}/connList org workspace connection associations
OrgWorkspaceConnectionFoldersCreatePost /org/{org_handle}/workspace/{workspace_handle}/connection_folderCreate org workspace connection folder
OrgWorkspaceConnectionFoldersDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/connection_folder/{folder_id}Delete org workspace connection folder
OrgWorkspaceConnectionFoldersGetGet /org/{org_handle}/workspace/{workspace_handle}/connection_folder/{folder_id}Get org workspace connection folder
OrgWorkspaceConnectionFoldersListGet /org/{org_handle}/workspace/{workspace_handle}/connection_folderList org workspace connection folders
OrgWorkspaceConnectionFoldersUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/connection_folder/{folder_id}Update org workspace connection folder
OrgWorkspaceConnectionTreeListGet /org/{org_handle}/workspace/{workspace_handle}/connection_treeList org workspace connection tree
OrgWorkspaceConnectionsCreatePost /org/{org_handle}/workspace/{workspace_handle}/connectionCreate a connection for an org workspace or associate an org connection to the workspace
OrgWorkspaceConnectionsDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/connection/{connection_handle}Delete org workspace connection association
OrgWorkspaceConnectionsGetGet /org/{org_handle}/workspace/{workspace_handle}/connection/{connection_handle}Get org workspace connection association
OrgWorkspaceConnectionsListGet /org/{org_handle}/workspace/{workspace_handle}/connectionList org workspace connection associations
OrgWorkspaceConnectionsTestPost /org/{org_handle}/workspace/{workspace_handle}/connection/{connection_handle}/testTest org workspace connection
OrgWorkspaceConnectionsUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/connection/{connection_handle}Update org workspace connection
OrgWorkspaceDatatankPartsCommandPost /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}/part/{datatank_part_id}/commandRun org workspace Datatank table partition command
OrgWorkspaceDatatankPartsGetGet /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}/table/{datatank_part_id}Get org workspace Datatank table partition
OrgWorkspaceDatatankPartsListGet /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}/partList org workspace Datatank partitions
OrgWorkspaceDatatankPartsUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}/part/{datatank_part_id}Update org workspace Datatank table partition
OrgWorkspaceDatatankTablesCreatePost /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/tableCreate org workspace Datatank table
OrgWorkspaceDatatankTablesDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}Delete org workspace Datatank table
OrgWorkspaceDatatankTablesGetGet /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}Get org workspace Datatank table
OrgWorkspaceDatatankTablesListGet /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/tableList org workspace Datatank tables
OrgWorkspaceDatatankTablesUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}Update org workspace Datatank table
OrgWorkspaceDatatanksCreatePost /org/{org_handle}/workspace/{workspace_handle}/datatankCreate org workspace Datatank
OrgWorkspaceDatatanksDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}Delete org workspace Datatank
OrgWorkspaceDatatanksGetGet /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}Get org workspace Datatank
OrgWorkspaceDatatanksListGet /org/{org_handle}/workspace/{workspace_handle}/datatankList org workspace Datatank
OrgWorkspaceDatatanksUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}Update org workspace Datatank
OrgWorkspaceFlowpipeInputsCreatePost /org/{org_handle}/workspace/{workspace_handle}/flowpipe/inputCreate org workspace flowpipe input
OrgWorkspaceFlowpipeInputsGetGet /org/{org_handle}/workspace/{workspace_handle}/flowpipe/form/{step_execution_id}/{random_id}Get org workspace flowpipe form
OrgWorkspaceFlowpipeInputsGet_0Get /org/{org_handle}/workspace/{workspace_handle}/flowpipe/input/{input_id}Get org workspace flowpipe input
OrgWorkspaceFlowpipeInputsListGet /org/{org_handle}/workspace/{workspace_handle}/flowpipe/inputList org workspace flowpipe inputs
OrgWorkspaceFlowpipeInputsPostPost /org/{org_handle}/workspace/{workspace_handle}/flowpipe/form/{step_execution_id}/{random_id}/submitPost org workspace flowpipe form response
OrgWorkspaceFlowpipeModVariablesCreateSettingPost /org/{org_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}/variableCreate a setting for a flowpipe mod variable in an organization workspace
OrgWorkspaceFlowpipeModVariablesDeleteSettingDelete /org/{org_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}/variable/{variable_name}Delete setting for a flowpipe mod variable in an organization workspace
OrgWorkspaceFlowpipeModVariablesGetSettingGet /org/{org_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}/variable/{variable_name}Get setting for a flowpipe mod variable in an organization workspace
OrgWorkspaceFlowpipeModVariablesListGet /org/{org_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}/variableList variables in an organization flowpipe workspace mod
OrgWorkspaceFlowpipeModVariablesUpdateSettingPatch /org/{org_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}/variable/{variable_name}Update setting for a flowpipe mod variable in an organization workspace
OrgWorkspaceFlowpipeModsGetGet /org/{org_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}Get organization workspace installed flowpipe mod
OrgWorkspaceFlowpipeModsInstallPost /org/{org_handle}/workspace/{workspace_handle}/flowpipe/modInstall flowpipe mod to organization workspace.
OrgWorkspaceFlowpipeModsUninstallDelete /org/{org_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}Uninstall flowpipe mod from organization workspace.
OrgWorkspaceFlowpipeModsUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}Update a flowpipe mod in an organization workspace
OrgWorkspaceFlowpipePipelinesCommandPost /org/{org_handle}/workspace/{workspace_handle}/flowpipe/pipeline/{pipeline_name}/commandRun organization workspace Flowpipe pipeline command
OrgWorkspaceFlowpipePipelinesGetGet /org/{org_handle}/workspace/{workspace_handle}/flowpipe/pipeline/{pipeline_id}Get org workspace pipeline
OrgWorkspaceFlowpipePipelinesListGet /org/{org_handle}/workspace/{workspace_handle}/flowpipe/pipelineList organization workspace pipelines
OrgWorkspaceFlowpipePipelinesListTriggersGet /org/{org_handle}/workspace/{workspace_handle}/flowpipe/pipeline/{pipeline_id}/triggerGet org workspace pipeline triggers
OrgWorkspaceFlowpipeTriggersCommandPost /org/{org_handle}/workspace/{workspace_handle}/flowpipe/trigger/{trigger_name}/commandRun organization workspace Flowpipe trigger command
OrgWorkspaceFlowpipeTriggersCreatePost /org/{org_handle}/workspace/{workspace_handle}/triggerCreate org workspace trigger
OrgWorkspaceFlowpipeTriggersDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/flowpipe/trigger/{trigger_name}Delete org workspace pipeline
OrgWorkspaceFlowpipeTriggersGetGet /org/{org_handle}/workspace/{workspace_handle}/flowpipe/trigger/{trigger_name}Get org workspace flowpipe trigger
OrgWorkspaceFlowpipeTriggersListGet /org/{org_handle}/workspace/{workspace_handle}/triggerList organization workspace triggers
OrgWorkspaceFlowpipeTriggersUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/flowpipe/trigger/{trigger_name}Update org workspace trigger
OrgWorkspaceIntegrationsGetGet /org/{org_handle}/workspace/{workspace_handle}/integration/{integration_handle}Get org workspace integration
OrgWorkspaceIntegrationsListGet /org/{org_handle}/workspace/{workspace_handle}/integrationList org workspace integrations
OrgWorkspaceIntegrationsListGithubRepositoriesGet /org/{org_handle}/workspace/{workspace_handle}/integration/{integration_handle}/github/repositoryList org workspace integration github respositories
OrgWorkspaceIntegrationsListGithubRepositoryHeadsGet /org/{org_handle}/workspace/{workspace_handle}/integration/{integration_handle}/github/repository/{repository_owner}/{repository_name}/headList org workspace integration github respository heads
OrgWorkspaceMembersCreatePost /org/{org_handle}/workspace/{workspace_handle}/memberCreate Org Workspace Member
OrgWorkspaceMembersDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/member/{user_handle}Delete Org Workspace Member
OrgWorkspaceMembersGetGet /org/{org_handle}/workspace/{workspace_handle}/member/{user_handle}Get Org Workspace Member
OrgWorkspaceMembersListGet /org/{org_handle}/workspace/{workspace_handle}/memberList Organization Workspace Members
OrgWorkspaceMembersUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/member/{user_handle}Update Org Workspace Member
OrgWorkspaceModVariablesCreateSettingPost /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variableCreate a setting for a mod variable in an organization workspace
OrgWorkspaceModVariablesDeleteSettingDelete /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name}Delete setting for a mod variable in an organization workspace
OrgWorkspaceModVariablesGetSettingGet /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name}Get setting for a mod variable in an organization workspace
OrgWorkspaceModVariablesListGet /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variableList variables in an organization workspace mod
OrgWorkspaceModVariablesUpdateSettingPatch /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name}Update setting for a mod variable in an organization workspace
OrgWorkspaceModsGetGet /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}Get organization workspace installed mod
OrgWorkspaceModsInstallPost /org/{org_handle}/workspace/{workspace_handle}/modInstall a mod to an organization workspace
OrgWorkspaceModsListGet /org/{org_handle}/workspace/{workspace_handle}/modList organization workspace installed mods
OrgWorkspaceModsUninstallDelete /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}Uninstall mod from organization workspace.
OrgWorkspaceModsUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/mod/{mod_alias}Update a mod in an organization workspace
OrgWorkspaceNotifiersCreatePost /org/{org_handle}/workspace/{workspace_handle}/notifierCreate org workspace notifier
OrgWorkspaceNotifiersDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/notifier/{notifier_name}Delete org workspace notifier
OrgWorkspaceNotifiersGetGet /org/{org_handle}/workspace/{workspace_handle}/notifier/{notifier_name}Get org workspace notifier
OrgWorkspaceNotifiersListGet /org/{org_handle}/workspace/{workspace_handle}/notifierList org workspace notifiers
OrgWorkspaceNotifiersPostPost /org/{org_handle}/workspace/{workspace_handle}/notifier/{notifier_name}/commandPost org workspace notifier commands
OrgWorkspaceNotifiersUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/notifier/{notifier_name}Update org workspace notifier
OrgWorkspacePipelinesCommandPost /org/{org_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id}/commandRun org workspace pipeline command
OrgWorkspacePipelinesCreatePost /org/{org_handle}/workspace/{workspace_handle}/pipelineCreate org workspace pipeline
OrgWorkspacePipelinesDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id}Delete org workspace pipeline
OrgWorkspacePipelinesGetGet /org/{org_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id}Get org workspace pipeline
OrgWorkspacePipelinesListGet /org/{org_handle}/workspace/{workspace_handle}/pipelineList org workspace pipelines
OrgWorkspacePipelinesUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id}Update org workspace pipeline
OrgWorkspaceProcessesCommandPost /org/{org_handle}/workspace/{workspace_handle}/process/{process_id}/commandRun org workspace process command
OrgWorkspaceProcessesGetGet /org/{org_handle}/workspace/{workspace_handle}/process/{process_id}Get org workspace process
OrgWorkspaceProcessesListGet /org/{org_handle}/workspace/{workspace_handle}/processList org workspace processes
OrgWorkspaceProcessesLogGet /org/{org_handle}/workspace/{workspace_handle}/process/{process_id}/log/{log_file}.{content_type}List org workspace process logs
OrgWorkspaceSchemasAttachPost /org/{org_handle}/workspace/{workspace_handle}/schemaAttach a schema to an org workspace
OrgWorkspaceSchemasDetachDelete /org/{org_handle}/workspace/{workspace_handle}/schema/{schema_name}Detach a schema from an org workspace
OrgWorkspaceSchemasGetGet /org/{org_handle}/workspace/{workspace_handle}/schema/{schema_name}Get org workspace schema
OrgWorkspaceSchemasGet_0Get /org/{org_handle}/workspace/{workspace_handle}/schema/{schema_name}/tableList org workspace schema tables
OrgWorkspaceSchemasListGet /org/{org_handle}/workspace/{workspace_handle}/schemaList org workspace schemas
OrgWorkspaceSnapshotsCreatePost /org/{org_handle}/workspace/{workspace_handle}/snapshotCreate org workspace snapshot
OrgWorkspaceSnapshotsDeleteDelete /org/{org_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id}Delete org workspace snapshot
OrgWorkspaceSnapshotsDownloadGet /org/{org_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id}.{content_type}Download org workspace snapshot
OrgWorkspaceSnapshotsGetGet /org/{org_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id}Get org workspace snapshot
OrgWorkspaceSnapshotsListGet /org/{org_handle}/workspace/{workspace_handle}/snapshotList org workspace snapshots
OrgWorkspaceSnapshotsUpdatePatch /org/{org_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id}Update org workspace snapshot
OrgWorkspaceUsagesListGet /org/{org_handle}/workspace/{workspace_handle}/usageList org workspace usage
OrgWorkspacesCommandPost /org/{org_handle}/workspace/{workspace_handle}/commandRun org workspace command
OrgWorkspacesCreatePost /org/{org_handle}/workspaceCreate org workspace
OrgWorkspacesDeleteDelete /org/{org_handle}/workspace/{workspace_handle}Delete org workspace
OrgWorkspacesGetGet /org/{org_handle}/workspace/{workspace_handle}Get org workspace
OrgWorkspacesGetQueryGet /org/{org_handle}/workspace/{workspace_handle}/queryQuery org workspace
OrgWorkspacesGetQueryWithExtensionsGet /org/{org_handle}/workspace/{workspace_handle}/query/data.{extensions}Query org workspace with extensions
OrgWorkspacesListGet /org/{org_handle}/workspaceList org workspaces
OrgWorkspacesListAuditLogsGet /org/{org_handle}/workspace/{workspace_handle}/audit_logOrg workspace audit logs
OrgWorkspacesListDBLogsGet /org/{org_handle}/workspace/{workspace_handle}/db_logOrg workspace logs
OrgWorkspacesPostQueryPost /org/{org_handle}/workspace/{workspace_handle}/queryQuery org workspace
OrgWorkspacesPostQueryWithExtensionsPost /org/{org_handle}/workspace/{workspace_handle}/query/data.{extensions}Query org workspace with extensions
OrgWorkspacesUpdatePatch /org/{org_handle}/workspace/{workspace_handle}Update org workspace
OrgsCreatePost /orgCreate org
OrgsCreateAvatarPost /org/{org_handle}/avatarCreate org avatar
OrgsDeleteDelete /org/{org_handle}Delete org
OrgsDeleteAvatarDelete /org/{org_handle}/avatarDelete org avatar
OrgsGetGet /org/{org_handle}Get org
OrgsGetPlanGet /org/{org_handle}/billing/planGet org billing plan.
OrgsListGet /orgList orgs
OrgsListAuditLogsGet /org/{org_handle}/audit_logOrg audit logs
OrgsListConstraintsGet /org/{org_handle}/constraintList org constraints
OrgsListUsageGet /org/{org_handle}/usageList org usage
OrgsUpdatePatch /org/{org_handle}Update org
TenantBillingCreateBillingIntentPost /tenant/{tenant_handle}/billing/payment_method/intentCreate tenant Stripe billing intent
TenantBillingCreateTenantSubscriptionPost /tenant/{tenant_handle}/billing/subscriptionCreate a new subscription
TenantBillingDeleteTenantBillingPaymentMethodDelete /tenant/{tenant_handle}/billing/payment_method/{payment_method_id}Delete tenant billing payment method.
TenantBillingDeleteTenantBillingSubscriptionDelete /tenant/{tenant_handle}/billing/subscription/{subscription_id}Delete tenant subscription
TenantBillingGetPlanGet /tenant/{tenant_handle}/billing/planGet tenant billing plan.
TenantBillingGetTenantBillingInvoiceGet /tenant/{tenant_handle}/billing/invoice/{invoice_id}Get a tenant invoice
TenantBillingGetTenantBillingPaymentMethodGet /tenant/{tenant_handle}/billing/payment_method/{payment_method_id}Get tenant billing payment method.
TenantBillingGetTenantBillingSubscriptionGet /tenant/{tenant_handle}/billing/subscription/{subscription_id}Get tenant subscription
TenantBillingGetTenantBillingUpcomingInvoiceGet /tenant/{tenant_handle}/billing/stripe/invoice/upcomingGet upcoming invoice
TenantBillingListTenantBillingInvoicesGet /tenant/{tenant_handle}/billing/invoiceList tenant invoices
TenantBillingListTenantBillingPaymentMethodGet /tenant/{tenant_handle}/billing/payment_methodList tenant billing payment methods.
TenantBillingListTenantSubscriptionGet /tenant/{tenant_handle}/billing/subscriptionList tenant subscriptions
TenantBillingUpdateTenantBillingPaymentMethodPatch /tenant/{tenant_handle}/billing/payment_method/{payment_method_id}Update tenant billing payment method.
TenantBillingUpdateTenantBillingSubscriptionPatch /tenant/{tenant_handle}/billing/subscription/{subscription_id}Update tenant subscription
TenantConnectionFoldersCreatePost /connection_folderCreate tenant connection folder
TenantConnectionFoldersCreatePermissionPost /connection_folder/{folder_id}/permissionCreate tenant connection folder permission
TenantConnectionFoldersDeleteDelete /connection_folder/{folder_id}Delete tenant connection folder
TenantConnectionFoldersDeletePermissionDelete /connection_folder/{folder_id}/permission/{permission_id}Delete tenant connection folder permission
TenantConnectionFoldersGetGet /connection_folder/{folder_id}Get tenant connection folder
TenantConnectionFoldersGetPermissionGet /connection_folder/{folder_id}/permission/{permission_id}Get tenant connection folder permission
TenantConnectionFoldersListGet /connection_folderList tenant connection folders
TenantConnectionFoldersListPermissionGet /connection_folder/{folder_id}/permissionList tenant connection folder permissions
TenantConnectionFoldersListWorkspacesGet /connection_folder/{folder_id}/workspaceList tenant connection folder workspaces
TenantConnectionFoldersUpdatePatch /connection_folder/{folder_id}Update tenant connection folder
TenantConnectionFoldersUpdatePermissionPatch /connection_folder/{folder_id}/permission/{permission_id}Update tenant connection folder permission
TenantConnectionTreeListGet /connection_treeList tenant connection tree
TenantConnectionsCreatePost /connectionCreate tenant connection
TenantConnectionsCreatePermissionPost /connection/{connection_handle}/permissionCreate tenant connection permission
TenantConnectionsDeleteDelete /connection/{connection_handle}Delete tenant connection
TenantConnectionsDeletePermissionDelete /connection/{connection_handle}/permission/{permission_id}Delete tenant connection permission
TenantConnectionsGetGet /connection/{connection_handle}Get tenant connection
TenantConnectionsGetPermissionGet /connection/{connection_handle}/permission/{permission_id}Get tenant connection permission
TenantConnectionsListGet /connectionList tenant connections
TenantConnectionsListPermissionGet /connection/{connection_handle}/permissionList tenant connection permissions
TenantConnectionsListWorkspacesGet /connection/{connection_handle}/workspaceList tenant connection workspaces
TenantConnectionsTestPost /connection/{connection_handle}/testTest tenant connection
TenantConnectionsUpdatePatch /connection/{connection_handle}Update tenant connection
TenantConnectionsUpdatePermissionPatch /connection/{connection_handle}/permission/{permission_id}Update tenant connection permission
TenantIntegrationsCommandPost /integration/{integration_handle}/commandRun tenant integration command
TenantIntegrationsCreatePost /integrationCreate tenant integration
TenantIntegrationsDeleteDelete /integration/{integration_handle}Delete tenant integration
TenantIntegrationsGetGet /integration/{integration_handle}Get tenant integration
TenantIntegrationsInstallGithubIntegrationGet /integration/{integration_handle}/github/installInstall GitHub integration on a custom tenant
TenantIntegrationsInstallSlackIntegrationGet /integration/{integration_handle}/slack/installInstall Slack integration on a custom tenant
TenantIntegrationsListGet /integrationList tenant integrations
TenantIntegrationsListSlackChannelsGet /integration/{integration_handle}/slack/channelList tenant integration Slack channels
TenantIntegrationsTestPost /integration/{integration_handle}/testTest custom tenant integration
TenantIntegrationsUpdatePatch /integration/{integration_handle}Update tenant integration
TenantMembersConfirmInviteGet /tenant/{tenant_handle}/member/invite/confirmConfirm tenant member invite
TenantMembersDeleteDelete /tenant/{tenant_handle}/member/{user_handle}Delete tenant member
TenantMembersDeleteInviteDelete /tenant/{tenant_handle}/member/inviteDelete tenant member invite
TenantMembersGetGet /tenant/{tenant_handle}/member/{user_handle}Get tenant member
TenantMembersInvitePost /tenant/{tenant_handle}/member/inviteInvite tenant member
TenantMembersListGet /tenant/{tenant_handle}/memberList Tenant Members
TenantMembersUpdatePatch /tenant/{tenant_handle}/member/{user_handle}Update tenant member
TenantNotifiersCreatePost /notifierCreate tenant notifier
TenantNotifiersDeleteDelete /notifier/{notifier_name}Delete tenant notifier
TenantNotifiersGetGet /notifier/{notifier_name}Get tenant notifier
TenantNotifiersListGet /notifierList tenant notifiers
TenantNotifiersUpdatePatch /notifier/{notifier_name}Update tenant notifier
TenantsCreatePost /tenantCreate tenant
TenantsCreateAvatarPost /tenant/{tenant_handle}/avatarCreate tenant avatar
TenantsDeleteDelete /tenant/{tenant_handle}Delete tenant
TenantsDeleteAvatarDelete /tenant/{tenant_handle}/avatarDelete tenant avatar
TenantsGetGet /tenant/{tenant_handle}Get tenant
TenantsGetAvatarGet /tenant/{tenant_handle}/avatarGet tenant avatar
TenantsGetSettingsGet /settingsGet tenant settings
TenantsListGet /tenantList tenants
TenantsListAuditLogsGet /audit_logTenant audit logs
TenantsListConstraintsGet /tenant/{tenant_handle}/constraintList tenant constraints
TenantsListUsageGet /tenant/{tenant_handle}/usageList tenant usage
TenantsUpdatePatch /tenant/{tenant_handle}Update tenant
TenantsUpdateSettingsPatch /settingsUpdate tenant settings
UserBillingCreateBillingIntentPost /user/{user_handle}/billing/payment_method/intentCreate Stripe billing intent
UserBillingCreateUserSubscriptionPost /user/{user_handle}/billing/subscriptionCreate a new subscription
UserBillingDeleteUserBillingPaymentMethodDelete /user/{user_handle}/billing/payment_method/{payment_method_id}Delete user billing payment method.
UserBillingDeleteUserBillingSubscriptionDelete /user/{user_handle}/billing/subscription/{subscription_id}Delete user subscription
UserBillingGetUserBillingInvoiceGet /user/{user_handle}/billing/invoice/{invoice_id}Get a user invoice
UserBillingGetUserBillingPaymentMethodGet /user/{user_handle}/billing/payment_method/{payment_method_id}Get user billing payment method.
UserBillingGetUserBillingSubscriptionGet /user/{user_handle}/billing/subscription/{subscription_id}Get user subscription
UserBillingGetUserBillingUpcomingInvoiceGet /user/{user_handle}/billing/stripe/invoice/upcomingGet upcoming user invoice
UserBillingListUserBillingInvoicesGet /user/{user_handle}/billing/invoiceList user invoices
UserBillingListUserBillingPaymentMethodGet /user/{user_handle}/billing/payment_methodList user billing payment methods.
UserBillingListUserSubscriptionGet /user/{user_handle}/billing/subscriptionList user subscriptions
UserBillingUpdateUserBillingPaymentMethodPatch /user/{user_handle}/billing/payment_method/{payment_method_id}Update user billing payment method.
UserConnectionsCreatePost /user/{user_handle}/connectionCreate user connection
UserConnectionsCreateDeprecatedPost /user/{user_handle}/connCreate user connection
UserConnectionsDeleteDelete /user/{user_handle}/connection/{connection_handle}Delete user connection
UserConnectionsDeleteDeprecatedDelete /user/{user_handle}/conn/{conn_handle}Delete user connection
UserConnectionsGetGet /user/{user_handle}/connection/{connection_handle}Get user connection
UserConnectionsGetDeprecatedGet /user/{user_handle}/conn/{conn_handle}Get user connection
UserConnectionsListGet /user/{user_handle}/connectionList user connections
UserConnectionsListDeprecatedGet /user/{user_handle}/connList user connections
UserConnectionsListWorkspacesGet /user/{user_handle}/connection/{connection_handle}/workspaceList user connection workspaces
UserConnectionsListWorkspacesDeprecatedGet /user/{user_handle}/conn/{conn_handle}/workspaceList user connection workspaces
UserConnectionsTestPost /user/{user_handle}/connection/{connection_handle}/testTest user connection
UserConnectionsTestDeprecatedPost /user/{user_handle}/conn/{conn_handle}/testTest user connection
UserConnectionsUpdatePatch /user/{user_handle}/connection/{connection_handle}Update user connection
UserConnectionsUpdateDeprecatedPatch /user/{user_handle}/conn/{conn_handle}Update user connection
UserIntegrationsCommandPost /user/{user_handle}/integration/{integration_handle}/commandRun user integration command
UserIntegrationsCreatePost /user/{user_handle}/integrationCreate user integration
UserIntegrationsDeleteDelete /user/{user_handle}/integration/{integration_handle}Delete user integration
UserIntegrationsGetGet /user/{user_handle}/integration/{integration_handle}Get user integration
UserIntegrationsInstallGithubIntegrationGet /user/{user_handle}/integration/{integration_handle}/github/installInstall GitHub integration for a user
UserIntegrationsInstallSlackIntegrationGet /user/{user_handle}/integration/{integration_handle}/slack/installInstall Slack integration for a user
UserIntegrationsListGet /user/{user_handle}/integrationList user integrations
UserIntegrationsListSlackChannelsGet /user/{user_handle}/integration/{integration_handle}/slack/channelList user integration Slack channels
UserIntegrationsTestPost /user/{user_handle}/integration/{integration_handle}/testTest user integration
UserIntegrationsUpdatePatch /user/{user_handle}/integration/{integration_handle}Update user integration
UserNotifiersCreatePost /user/{user_handle}/notifierCreate user notifier
UserNotifiersDeleteDelete /user/{user_handle}/notifier/{notifier_name}Delete user notifier
UserNotifiersGetGet /user/{user_handle}/notifier/{notifier_name}Get user notifier
UserNotifiersListGet /user/{user_handle}/notifierList user notifiers
UserNotifiersUpdatePatch /user/{user_handle}/notifier/{notifier_name}Update user notifier
UserProcessesGetGet /user/{user_handle}/process/{process_id}Get User process
UserProcessesListGet /user/{user_handle}/processList User processes
UserProcessesLogGet /user/{user_handle}/process/{process_id}/log/{log_file}.{content_type}List user process logs
UserTokensCreatePost /user/{user_handle}/tokenCreate token
UserTokensDeleteDelete /user/{user_handle}/token/{token_id}Delete token
UserTokensGetGet /user/{user_handle}/token/{token_id}Get token
UserTokensListGet /user/{user_handle}/tokenList tokens
UserTokensUpdatePatch /user/{user_handle}/token/{token_id}Update token
UserWorkspaceAggregatorsCreatePost /user/{user_handle}/workspace/{workspace_handle}/aggregatorCreate an aggregator for a user workspace
UserWorkspaceAggregatorsDeleteDelete /user/{user_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}Delete an aggregator for a user workspace
UserWorkspaceAggregatorsGetGet /user/{user_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}Get an aggregator for a user workspace
UserWorkspaceAggregatorsGetConnectionGet /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
UserWorkspaceAggregatorsListGet /user/{user_handle}/workspace/{workspace_handle}/aggregatorList aggregators for a user workspace
UserWorkspaceAggregatorsListConnectionsGet /user/{user_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}/connectionList connections in the scope of an aggregator for a user workspace
UserWorkspaceAggregatorsUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/aggregator/{aggregator_handle}Update an aggregator for a user workspace
UserWorkspaceConnectionAssociationsCreatePost /user/{user_handle}/workspace/{workspace_handle}/connCreate user workspace connection association
UserWorkspaceConnectionAssociationsDeleteDelete /user/{user_handle}/workspace/{workspace_handle}/conn/{conn_handle}Delete user workspace connection association
UserWorkspaceConnectionAssociationsGetGet /user/{user_handle}/workspace/{workspace_handle}/conn/{conn_handle}Get user workspace connection association
UserWorkspaceConnectionAssociationsListGet /user/{user_handle}/workspace/{workspace_handle}/connList user workspace connection associations
UserWorkspaceConnectionFoldersCreatePost /user/{user_handle}/workspace/{workspace_handle}/connection_folderCreate user workspace connection folder
UserWorkspaceConnectionFoldersDeleteDelete /user/{user_handle}/workspace/{workspace_handle}/connection_folder/{folder_id}Delete user workspace connection folder
UserWorkspaceConnectionFoldersGetGet /user/{user_handle}/workspace/{workspace_handle}/connection_folder/{folder_id}Get user workspace connection folder
UserWorkspaceConnectionFoldersListGet /user/{user_handle}/workspace/{workspace_handle}/connection_folderList user workspace connections folders
UserWorkspaceConnectionFoldersUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/connection_folder/{folder_id}Update user workspace connection folder
UserWorkspaceConnectionTreeListGet /user/{user_handle}/workspace/{workspace_handle}/connection_treeList user workspace connection tree
UserWorkspaceConnectionsCreatePost /user/{user_handle}/workspace/{workspace_handle}/connectionCreate a connection for a user workspace
UserWorkspaceConnectionsDeleteDelete /user/{user_handle}/workspace/{workspace_handle}/connection/{connection_handle}Delete user workspace connection association
UserWorkspaceConnectionsGetGet /user/{user_handle}/workspace/{workspace_handle}/connection/{connection_handle}Get user workspace connection association
UserWorkspaceConnectionsListGet /user/{user_handle}/workspace/{workspace_handle}/connectionList connections for a user workspace
UserWorkspaceConnectionsTestPost /user/{user_handle}/workspace/{workspace_handle}/connection/{connection_handle}/testTest user workspace connection
UserWorkspaceConnectionsUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/connection/{connection_handle}Update user workspace connection
UserWorkspaceDatatankPartsCommandPost /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}/part/{datatank_part_id}/commandRun user workspace Datatank table partition command
UserWorkspaceDatatankPartsGetGet /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}/table/{datatank_part_id}Get user workspace Datatank table partition
UserWorkspaceDatatankPartsListGet /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}/partList user workspace Datatank partitions
UserWorkspaceDatatankPartsUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}/part/{datatank_part_id}Update user workspace Datatank table partition
UserWorkspaceDatatankTablesCreatePost /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/tableCreate user workspace Datatank table
UserWorkspaceDatatankTablesDeleteDelete /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}Delete user workspace Datatank table
UserWorkspaceDatatankTablesGetGet /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}Get user workspace Datatank table
UserWorkspaceDatatankTablesListGet /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/tableList user workspace Datatank tables
UserWorkspaceDatatankTablesUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}/table/{datatank_table_name}Update user workspace Datatank table
UserWorkspaceDatatanksCreatePost /user/{user_handle}/workspace/{workspace_handle}/datatankCreate user workspace Datatank
UserWorkspaceDatatanksDeleteDelete /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}Delete user workspace Datatank table
UserWorkspaceDatatanksGetGet /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}Get user workspace Datatank
UserWorkspaceDatatanksListGet /user/{user_handle}/workspace/{workspace_handle}/datatankList user workspace Datatank
UserWorkspaceDatatanksUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/datatank/{datatank_handle}Update user workspace Datatank
UserWorkspaceFlowpipeInputsCreatePost /user/{user_handle}/workspace/{workspace_handle}/flowpipe/inputCreate user workspace flowpipe input
UserWorkspaceFlowpipeInputsGetGet /user/{user_handle}/workspace/{workspace_handle}/flowpipe/form/{step_execution_id}/{random_id}Get user workspace flowpipe form
UserWorkspaceFlowpipeInputsGet_0Get /user/{user_handle}/workspace/{workspace_handle}/flowpipe/input/{input_id}Get user workspace flowpipe input
UserWorkspaceFlowpipeInputsListGet /user/{user_handle}/workspace/{workspace_handle}/flowpipe/inputList user workspace flowpipe inputs
UserWorkspaceFlowpipeInputsPostPost /user/{user_handle}/workspace/{workspace_handle}/flowpipe/form/{step_execution_id}/{random_id}/submitPost user workspace flowpipe form response
UserWorkspaceFlowpipeModVariablesCreateSettingPost /user/{user_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}/variableCreate a setting for a flowpipe mod variable in a user workspace
UserWorkspaceFlowpipeModVariablesDeleteSettingDelete /user/{user_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}/variable/{variable_name}Delete setting for a flowpipe mod variable in a user workspace
UserWorkspaceFlowpipeModVariablesGetSettingGet /user/{user_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}/variable/{variable_name}Get setting for a flowpipe mod variable in a user workspace
UserWorkspaceFlowpipeModVariablesListGet /user/{user_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}/variableList variables for a user workspace flowpipe mod
UserWorkspaceFlowpipeModVariablesUpdateSettingPatch /user/{user_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}/variable/{variable_name}Update setting for a flowpipe mod variable in a user workspace
UserWorkspaceFlowpipeModsGetGet /user/{user_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}Get user workspace installed flowpipe mod
UserWorkspaceFlowpipeModsInstallPost /user/{user_handle}/workspace/{workspace_handle}/flowpipe/modInstall flowpipe mod to a user's workspace
UserWorkspaceFlowpipeModsUninstallDelete /user/{user_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}Uninstall flowpipe mod from a user's workspace.
UserWorkspaceFlowpipeModsUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/flowpipe/mod/{mod_alias}Update a flowpipe mod in a user's workspace
UserWorkspaceFlowpipePipelinesCommandPost /user/{user_handle}/workspace/{workspace_handle}/flowpipe/pipeline/{pipeline_name}/commandRun user workspace Flowpipe pipeline command
UserWorkspaceFlowpipePipelinesGetGet /user/{user_handle}/workspace/{workspace_handle}/flowpipe/pipeline/{pipeline_id}Get user workspace pipeline
UserWorkspaceFlowpipePipelinesListGet /user/{user_handle}/workspace/{workspace_handle}/flowpipe/pipelineList user workspace pipelines
UserWorkspaceFlowpipePipelinesListTriggersGet /user/{user_handle}/workspace/{workspace_handle}/flowpipe/pipeline/{pipeline_id}/triggerGet user workspace pipeline triggers
UserWorkspaceFlowpipeTriggersCommandPost /user/{user_handle}/workspace/{workspace_handle}/flowpipe/trigger/{trigger_name}/commandRun user workspace Flowpipe trigger command
UserWorkspaceFlowpipeTriggersCreatePost /user/{user_handle}/workspace/{workspace_handle}/triggerCreate user workspace trigger
UserWorkspaceFlowpipeTriggersDeleteDelete /user/{user_handle}/workspace/{workspace_handle}/flowpipe/trigger/{trigger_name}Delete user workspace pipeline
UserWorkspaceFlowpipeTriggersGetGet /user/{user_handle}/workspace/{workspace_handle}/flowpipe/trigger/{trigger_name}Get user workspace flowpipe trigger
UserWorkspaceFlowpipeTriggersListGet /user/{user_handle}/workspace/{workspace_handle}/triggerList user workspace triggers
UserWorkspaceFlowpipeTriggersUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/flowpipe/trigger/{trigger_name}Update user workspace trigger
UserWorkspaceIntegrationsGetGet /user/{user_handle}/workspace/{workspace_handle}/integration/{integration_handle}Get user workspace integration
UserWorkspaceIntegrationsListGet /user/{user_handle}/workspace/{workspace_handle}/integrationList user workspace integrations
UserWorkspaceIntegrationsListGithubRepositoriesGet /user/{user_handle}/workspace/{workspace_handle}/integration/{integration_handle}/github/repositoryList user workspace integration github respositories
UserWorkspaceIntegrationsListGithubRepositoryHeadsGet /user/{user_handle}/workspace/{workspace_handle}/integration/{integration_handle}/github/repository/{repository_owner}/{repository_name}/headList user workspace integration github respository heads
UserWorkspaceModVariablesCreateSettingPost /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variableCreate a setting for a mod variable in a user workspace
UserWorkspaceModVariablesDeleteSettingDelete /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name}Delete setting for a mod variable in a user workspace
UserWorkspaceModVariablesGetSettingGet /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name}Get setting for a mod variable in a user workspace
UserWorkspaceModVariablesListGet /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variableList variables for a user workspace mod
UserWorkspaceModVariablesUpdateSettingPatch /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}/variable/{variable_name}Update setting for a mod variable in a user workspace
UserWorkspaceModsGetGet /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}Get user workspace installed mod
UserWorkspaceModsInstallPost /user/{user_handle}/workspace/{workspace_handle}/modInstall a mod to a user's workspace
UserWorkspaceModsListGet /user/{user_handle}/workspace/{workspace_handle}/modList user workspace installed mods
UserWorkspaceModsUninstallDelete /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}Uninstall mod from a user's workspace.
UserWorkspaceModsUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/mod/{mod_alias}Update a mod in a user's workspace
UserWorkspaceNotifiersCreatePost /user/{user_handle}/workspace/{workspace_handle}/notifierCreate user workspace notifier
UserWorkspaceNotifiersDeleteDelete /user/{user_handle}/workspace/{workspace_handle}/notifier/{notifier_name}Delete user workspace notifier
UserWorkspaceNotifiersGetGet /user/{user_handle}/workspace/{workspace_handle}/notifier/{notifier_name}Get user workspace notifier
UserWorkspaceNotifiersListGet /user/{user_handle}/workspace/{workspace_handle}/notifierList user workspace notifiers
UserWorkspaceNotifiersPostPost /user/{user_handle}/workspace/{workspace_handle}/notifier/{notifier_name}/commandPost user workspace notifier commands
UserWorkspaceNotifiersUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/notifier/{notifier_name}Update user workspace notifier
UserWorkspacePipelinesCommandPost /user/{user_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id}/commandRun user workspace pipeline command
UserWorkspacePipelinesCreatePost /user/{user_handle}/workspace/{workspace_handle}/pipelineCreate user workspace pipeline
UserWorkspacePipelinesDeleteDelete /user/{user_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id}Delete user workspace pipeline
UserWorkspacePipelinesGetGet /user/{user_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id}Get user workspace pipeline
UserWorkspacePipelinesListGet /user/{user_handle}/workspace/{workspace_handle}/pipelineList user workspace pipelines
UserWorkspacePipelinesUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/pipeline/{pipeline_id}Update user workspace pipeline
UserWorkspaceProcessesCommandPost /user/{user_handle}/workspace/{workspace_handle}/process/{process_id}/commandRun user workspace process command
UserWorkspaceProcessesGetGet /user/{user_handle}/workspace/{workspace_handle}/process/{process_id}Get user workspace process
UserWorkspaceProcessesListGet /user/{user_handle}/workspace/{workspace_handle}/processList user workspace processes
UserWorkspaceProcessesLogGet /user/{user_handle}/workspace/{workspace_handle}/process/{process_id}/log/{log_file}.{content_type}List user workspace process logs
UserWorkspaceSchemasAttachPost /user/{user_handle}/workspace/{workspace_handle}/schemaAttach a schema to a user workspace
UserWorkspaceSchemasDetachDelete /user/{user_handle}/workspace/{workspace_handle}/schema/{schema_name}Detach a schema from a user workspace
UserWorkspaceSchemasGetGet /user/{user_handle}/workspace/{workspace_handle}/schema/{schema_name}Get user workspace schema
UserWorkspaceSchemasGet_0Get /user/{user_handle}/workspace/{workspace_handle}/schema/{schema_name}/tableList user workspace schema tables
UserWorkspaceSchemasListGet /user/{user_handle}/workspace/{workspace_handle}/schemaList user workspace schemas
UserWorkspaceSnapshotsCreatePost /user/{user_handle}/workspace/{workspace_handle}/snapshotCreate user workspace snapshot
UserWorkspaceSnapshotsDeleteDelete /user/{user_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id}Delete user workspace snapshot
UserWorkspaceSnapshotsDownloadGet /user/{user_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id}.{content_type}Download user workspace snapshot
UserWorkspaceSnapshotsGetGet /user/{user_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id}Get user workspace snapshot
UserWorkspaceSnapshotsListGet /user/{user_handle}/workspace/{workspace_handle}/snapshotList user workspace snapshots
UserWorkspaceSnapshotsUpdatePatch /user/{user_handle}/workspace/{workspace_handle}/snapshot/{snapshot_id}Update user workspace snapshot
UserWorkspaceUsagesListGet /user/{user_handle}/workspace/{workspace_handle}/usageList user workspace usage
UserWorkspacesCommandPost /user/{user_handle}/workspace/{workspace_handle}/commandRun user workspace command
UserWorkspacesCreatePost /user/{user_handle}/workspaceCreate user workspace
UserWorkspacesDeleteDelete /user/{user_handle}/workspace/{workspace_handle}Delete user workspace
UserWorkspacesGetGet /user/{user_handle}/workspace/{workspace_handle}Get user workspace
UserWorkspacesGetQueryGet /user/{user_handle}/workspace/{workspace_handle}/queryQuery user workspace
UserWorkspacesGetQueryWithExtensionsGet /user/{user_handle}/workspace/{workspace_handle}/query/data.{extensions}Query user workspace with extensions
UserWorkspacesListGet /user/{user_handle}/workspaceList user workspaces
UserWorkspacesListAuditLogsGet /user/{user_handle}/workspace/{workspace_handle}/audit_logUser workspace audit logs
UserWorkspacesListDBLogsGet /user/{user_handle}/workspace/{workspace_handle}/db_logUser workspace logs
UserWorkspacesPostQueryPost /user/{user_handle}/workspace/{workspace_handle}/queryQuery user workspace
UserWorkspacesPostQueryWithExtensionsPost /user/{user_handle}/workspace/{workspace_handle}/query/data.{extensions}Query user workspace with extensions
UserWorkspacesUpdatePatch /user/{user_handle}/workspace/{workspace_handle}Update user workspace
UsersCreatePost /userCreate user
UsersCreateAvatarPost /user/{user_handle}/avatarCreate user avatar
UsersCreateDBPasswordPost /user/{user_handle}/passwordCreate user password
UsersDeleteDelete /user/{user_handle}Delete user
UsersDeleteAvatarDelete /user/{user_handle}/avatarDelete user avatar
UsersGetGet /user/{user_handle}Get user
UsersGetDBPasswordGet /user/{user_handle}/passwordGet user password
UsersGetEmailGet /user/{user_handle}/email/{email_id}Get user email
UsersGetPlanGet /user/{user_handle}/billing/planGet user billing plan.
UsersGetPreferencesGet /user/{user_handle}/preferencesGet user preferences
UsersListGet /userList users
UsersListAuditLogsGet /user/{user_handle}/audit_logUser audit logs
UsersListConstraintsGet /user/{user_handle}/constraintList user constraints
UsersListEmailsGet /user/{user_handle}/emailList user emails
UsersListUsageGet /user/{user_handle}/usageList user usage
UsersUpdatePatch /user/{user_handle}Update user
UsersUpdatePreferencesPatch /user/{user_handle}/preferencesUpdate 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

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
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.
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.
NewAggregator instantiates a new Aggregator object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAggregatorWithDefaults instantiates a new Aggregator object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewAttachWorkspaceSchemaRequest instantiates a new AttachWorkspaceSchemaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAttachWorkspaceSchemaRequestWithDefaults instantiates a new AttachWorkspaceSchemaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewBillingInvoice instantiates a new BillingInvoice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingInvoiceWithDefaults instantiates a new BillingInvoice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingSetupIntent instantiates a new BillingSetupIntent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingSetupIntentWithDefaults instantiates a new BillingSetupIntent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingSubscription instantiates a new BillingSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingSubscriptionItem instantiates a new BillingSubscriptionItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingSubscriptionItemWithDefaults instantiates a new BillingSubscriptionItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingSubscriptionWithDefaults instantiates a new BillingSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCard instantiates a new Card object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCardWithDefaults instantiates a new Card object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCmdDatatankPartRequest instantiates a new CmdDatatankPartRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCmdDatatankPartRequestWithDefaults instantiates a new CmdDatatankPartRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
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.
NewConnectionConfigSourceFromValue returns a pointer to a valid ConnectionConfigSource for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewConnectionCredentialSourceFromValue returns a pointer to a valid ConnectionCredentialSource for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewConnectionHandleModeFromValue returns a pointer to a valid ConnectionHandleMode for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
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.
NewConnectionTrunkItem instantiates a new ConnectionTrunkItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectionTrunkItemWithDefaults instantiates a new ConnectionTrunkItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewConstraint instantiates a new Constraint object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConstraintOverrideRequest instantiates a new ConstraintOverrideRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConstraintOverrideRequestWithDefaults instantiates a new ConstraintOverrideRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConstraintVisibilityFromValue returns a pointer to a valid ConstraintVisibility for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewConstraintWithDefaults instantiates a new Constraint object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAggregatorRequest instantiates a new CreateAggregatorRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAggregatorRequestWithDefaults instantiates a new CreateAggregatorRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAvatarResponse instantiates a new CreateAvatarResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAvatarResponseWithDefaults instantiates a new CreateAvatarResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateConnectionFolderRequest instantiates a new CreateConnectionFolderRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateConnectionFolderRequestWithDefaults instantiates a new CreateConnectionFolderRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewCreateDatatankRequest instantiates a new CreateDatatankRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDatatankRequestWithDefaults instantiates a new CreateDatatankRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDatatankTableRequest instantiates a new CreateDatatankTableRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDatatankTableRequestWithDefaults instantiates a new CreateDatatankTableRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFlowpipeInputRequest instantiates a new CreateFlowpipeInputRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFlowpipeInputRequestWithDefaults instantiates a new CreateFlowpipeInputRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateIntegrationRequest instantiates a new CreateIntegrationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateIntegrationRequestWithDefaults instantiates a new CreateIntegrationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateNotifierRequest instantiates a new CreateNotifierRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateNotifierRequestWithDefaults instantiates a new CreateNotifierRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewCreateOrgUserRequest instantiates a new CreateOrgUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateOrgUserRequestWithDefaults instantiates a new CreateOrgUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewCreatePermissionRequest instantiates a new CreatePermissionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreatePermissionRequestWithDefaults instantiates a new CreatePermissionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewCreateTenantRequest instantiates a new CreateTenantRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateTenantRequestWithDefaults instantiates a new CreateTenantRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateTriggerRequest instantiates a new CreateTriggerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateTriggerRequestWithDefaults instantiates a new CreateTriggerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
NewDatatank instantiates a new Datatank object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDatatankPart instantiates a new DatatankPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDatatankPartCmdFromValue returns a pointer to a valid DatatankPartCmd for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDatatankPartFreshnessStateFromValue returns a pointer to a valid DatatankPartFreshnessState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDatatankPartStateFromValue returns a pointer to a valid DatatankPartState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDatatankPartWithDefaults instantiates a new DatatankPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDatatankStateFromValue returns a pointer to a valid DatatankState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDatatankTable instantiates a new DatatankTable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDatatankTableFreshness instantiates a new DatatankTableFreshness object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDatatankTableFreshnessWithDefaults instantiates a new DatatankTableFreshness object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDatatankTableStateFromValue returns a pointer to a valid DatatankTableState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDatatankTableWithDefaults instantiates a new DatatankTable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDatatankWithDefaults instantiates a new Datatank object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAvatarResponse instantiates a new DeleteAvatarResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAvatarResponseWithDefaults instantiates a new DeleteAvatarResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewDesiredStateFromValue returns a pointer to a valid DesiredState for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
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.
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.
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.
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.
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.
NewFlowpipeInput instantiates a new FlowpipeInput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFlowpipeInputStateFromValue returns a pointer to a valid FlowpipeInputState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewFlowpipeInputStepTypeFromValue returns a pointer to a valid FlowpipeInputStepType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewFlowpipeInputWithDefaults instantiates a new FlowpipeInput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGithubRepository instantiates a new GithubRepository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGithubRepositoryBranch instantiates a new GithubRepositoryBranch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGithubRepositoryBranchWithDefaults instantiates a new GithubRepositoryBranch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGithubRepositoryWithDefaults instantiates a new GithubRepository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewIdentityPlan instantiates a new IdentityPlan object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIdentityPlanWithDefaults instantiates a new IdentityPlan object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIdentityUsage instantiates a new IdentityUsage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIdentityUsageThresholdActionFromValue returns a pointer to a valid IdentityUsageThresholdAction for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIdentityUsageWithDefaults instantiates a new IdentityUsage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewIntegration instantiates a new Integration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIntegrationCommandActionFromValue returns a pointer to a valid IntegrationCommandAction for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIntegrationCommandRequest instantiates a new IntegrationCommandRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIntegrationCommandRequestWithDefaults instantiates a new IntegrationCommandRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIntegrationStateFromValue returns a pointer to a valid IntegrationState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIntegrationTypeFromValue returns a pointer to a valid IntegrationType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIntegrationWithDefaults instantiates a new Integration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewInviteTenantUserRequest instantiates a new InviteTenantUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInviteTenantUserRequestWithDefaults instantiates a new InviteTenantUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
NewListBillingInvoicesResponse instantiates a new ListBillingInvoicesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBillingInvoicesResponseWithDefaults instantiates a new ListBillingInvoicesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBillingPaymentMethodsResponse instantiates a new ListBillingPaymentMethodsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBillingPaymentMethodsResponseWithDefaults instantiates a new ListBillingPaymentMethodsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewListConstraintsResponse instantiates a new ListConstraintsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConstraintsResponseWithDefaults instantiates a new ListConstraintsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDatatankPartResponse instantiates a new ListDatatankPartResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDatatankPartResponseWithDefaults instantiates a new ListDatatankPartResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDatatankResponse instantiates a new ListDatatankResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDatatankResponseWithDefaults instantiates a new ListDatatankResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDatatankTableResponse instantiates a new ListDatatankTableResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDatatankTableResponseWithDefaults instantiates a new ListDatatankTableResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewListFlowpipeInputsResponse instantiates a new ListFlowpipeInputsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListFlowpipeInputsResponseWithDefaults instantiates a new ListFlowpipeInputsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListFlowpipePipelinesResponse instantiates a new ListFlowpipePipelinesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListFlowpipePipelinesResponseWithDefaults instantiates a new ListFlowpipePipelinesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListFlowpipeTriggersResponse instantiates a new ListFlowpipeTriggersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListFlowpipeTriggersResponseWithDefaults instantiates a new ListFlowpipeTriggersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListGithubRepositoriesResponse instantiates a new ListGithubRepositoriesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListGithubRepositoriesResponseWithDefaults instantiates a new ListGithubRepositoriesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListGithubRepositoryBranchesResponse instantiates a new ListGithubRepositoryBranchesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListGithubRepositoryBranchesResponseWithDefaults instantiates a new ListGithubRepositoryBranchesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewListIdentityUsageResponse instantiates a new ListIdentityUsageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListIdentityUsageResponseWithDefaults instantiates a new ListIdentityUsageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListIntegrationsResponse instantiates a new ListIntegrationsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListIntegrationsResponseWithDefaults instantiates a new ListIntegrationsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewListNotifiersResponse instantiates a new ListNotifiersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListNotifiersResponseWithDefaults instantiates a new ListNotifiersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
NewListPermissionsResponse instantiates a new ListPermissionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListPermissionsResponseWithDefaults instantiates a new ListPermissionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewListSlackChannelsResponse instantiates a new ListSlackChannelsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSlackChannelsResponseWithDefaults instantiates a new ListSlackChannelsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSubscriptionsResponse instantiates a new ListSubscriptionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSubscriptionsResponseWithDefaults instantiates a new ListSubscriptionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTenantsResponse instantiates a new ListTenantsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTenantsResponseWithDefaults instantiates a new ListTenantsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTenantUsersResponse instantiates a new ListTenantUsersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTenantUsersResponseWithDefaults instantiates a new ListTenantUsersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewListTriggersResponse instantiates a new ListTriggersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTriggersResponseWithDefaults instantiates a new ListTriggersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUsageMetricsResponse instantiates a new ListUsageMetricsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUsageMetricsResponseWithDefaults instantiates a new ListUsageMetricsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
NewListWorkspaceSchemaResponse instantiates a new ListWorkspaceSchemaResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWorkspaceSchemaResponseWithDefaults instantiates a new ListWorkspaceSchemaResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWorkspaceSchemaTableResponse instantiates a new ListWorkspaceSchemaTableResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWorkspaceSchemaTableResponseWithDefaults instantiates a new ListWorkspaceSchemaTableResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
NewModPipeFromValue returns a pointer to a valid ModPipe for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewModPipelingFromValue returns a pointer to a valid ModPipeling for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewModTriggerInfo instantiates a new ModTriggerInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewModTriggerInfoWithDefaults instantiates a new ModTriggerInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewModTriggerStateFromValue returns a pointer to a valid ModTriggerState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewNotifier instantiates a new Notifier object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotifierPrecedenceFromValue returns a pointer to a valid NotifierPrecedence for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewNotifierStateFromValue returns a pointer to a valid NotifierState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewNotifierWithDefaults instantiates a new Notifier object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
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.
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.
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.
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.
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.
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.
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.
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.
NewPaymentMethod instantiates a new PaymentMethod object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaymentMethodWithDefaults instantiates a new PaymentMethod object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermission instantiates a new Permission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionWithDefaults instantiates a new Permission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewPipelineCommandActionFromValue returns a pointer to a valid PipelineCommandAction for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
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.
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.
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.
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.
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.
NewPipelineInstanceTypeFromValue returns a pointer to a valid PipelineInstanceType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPipelineStateFromValue returns a pointer to a valid PipelineState for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
NewPlan instantiates a new Plan object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlanWithDefaults instantiates a new Plan object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProcessStateFromValue returns a pointer to a valid ProcessState for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
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.
NewSlackChannel instantiates a new SlackChannel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSlackChannelWithDefaults instantiates a new SlackChannel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnapshotStateFromValue returns a pointer to a valid SnapshotState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSnapshotVisibilityFromValue returns a pointer to a valid SnapshotVisibility for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
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.
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.
NewTemporaryTokenRequestStateFromValue returns a pointer to a valid TemporaryTokenRequestState for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
NewTenant instantiates a new Tenant object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantLoginSettings instantiates a new TenantLoginSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantLoginSettingsWithDefaults instantiates a new TenantLoginSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantPlan instantiates a new TenantPlan object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantPlanWithDefaults instantiates a new TenantPlan object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantSamlLoginSettings instantiates a new TenantSamlLoginSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantSamlLoginSettingsWithDefaults instantiates a new TenantSamlLoginSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantSettings instantiates a new TenantSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantSettingsWithDefaults instantiates a new TenantSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantUser instantiates a new TenantUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTenantUserWithDefaults instantiates a new TenantUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTenantWithDefaults instantiates a new Tenant object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewTestIntegrationRequest instantiates a new TestIntegrationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTestIntegrationRequestWithDefaults instantiates a new TestIntegrationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewTriggerCommandActionFromValue returns a pointer to a valid TriggerCommandAction for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTriggerCommandRequest instantiates a new TriggerCommandRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTriggerCommandRequestWithDefaults instantiates a new TriggerCommandRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTriggerCommandResponse instantiates a new TriggerCommandResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTriggerCommandResponseWithDefaults instantiates a new TriggerCommandResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTriggerStateFromValue returns a pointer to a valid TriggerState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewUpdateAggregatorRequest instantiates a new UpdateAggregatorRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAggregatorRequestWithDefaults instantiates a new UpdateAggregatorRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateBillingPaymentMethodRequest instantiates a new UpdateBillingPaymentMethodRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateBillingPaymentMethodRequestWithDefaults instantiates a new UpdateBillingPaymentMethodRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateBillingSubscriptionRequest instantiates a new UpdateBillingSubscriptionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateBillingSubscriptionRequestWithDefaults instantiates a new UpdateBillingSubscriptionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateConnectionFolderRequest instantiates a new UpdateConnectionFolderRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateConnectionFolderRequestWithDefaults instantiates a new UpdateConnectionFolderRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewUpdateDatatankPartRequest instantiates a new UpdateDatatankPartRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateDatatankPartRequestWithDefaults instantiates a new UpdateDatatankPartRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateDatatankRequest instantiates a new UpdateDatatankRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateDatatankRequestWithDefaults instantiates a new UpdateDatatankRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateDatatankTableRequest instantiates a new UpdateDatatankTableRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateDatatankTableRequestWithDefaults instantiates a new UpdateDatatankTableRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateIntegrationRequest instantiates a new UpdateIntegrationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateIntegrationRequestWithDefaults instantiates a new UpdateIntegrationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateNotifierRequest instantiates a new UpdateNotifierRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateNotifierRequestWithDefaults instantiates a new UpdateNotifierRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
NewUpdatePermissionRequest instantiates a new UpdatePermissionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdatePermissionRequestWithDefaults instantiates a new UpdatePermissionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewUpdateTenantLoginSettings instantiates a new UpdateTenantLoginSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTenantLoginSettingsWithDefaults instantiates a new UpdateTenantLoginSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTenantRequest instantiates a new UpdateTenantRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTenantRequestWithDefaults instantiates a new UpdateTenantRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTenantSamlLoginSettings instantiates a new UpdateTenantSamlLoginSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTenantSamlLoginSettingsWithDefaults instantiates a new UpdateTenantSamlLoginSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTenantSettingsRequest instantiates a new UpdateTenantSettingsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTenantSettingsRequestWithDefaults instantiates a new UpdateTenantSettingsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTenantUserRequest instantiates a new UpdateTenantUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTenantUserRequestWithDefaults instantiates a new UpdateTenantUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewUpdateTriggerRequest instantiates a new UpdateTriggerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTriggerRequestWithDefaults instantiates a new UpdateTriggerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
NewUsageDimensionTypeFromValue returns a pointer to a valid UsageDimensionType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewUsageMetric instantiates a new UsageMetric object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageMetricTypeFromValue returns a pointer to a valid UsageMetricType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewUsageMetricWithDefaults instantiates a new UsageMetric object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageUnitTypeFromValue returns a pointer to a valid UsageUnitType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewUSBankAccount instantiates a new USBankAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUSBankAccountWithDefaults instantiates a new USBankAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
NewWorkspaceAggregatorAssociation instantiates a new WorkspaceAggregatorAssociation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceAggregatorAssociationWithDefaults instantiates a new WorkspaceAggregatorAssociation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewWorkspaceCommandActionFromValue returns a pointer to a valid WorkspaceCommandAction for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
NewWorkspaceInstanceTypeFromValue returns a pointer to a valid WorkspaceInstanceType for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
NewWorkspaceModPipeline instantiates a new WorkspaceModPipeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceModPipelineWithDefaults instantiates a new WorkspaceModPipeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkspaceModStateFromValue returns a pointer to a valid WorkspaceModState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewWorkspaceModTrigger instantiates a new WorkspaceModTrigger object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceModTriggerWithDefaults instantiates a new WorkspaceModTrigger object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
NewWorkspaceNotifierCommandActionFromValue returns a pointer to a valid WorkspaceNotifierCommandAction for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewWorkspaceNotifierCommandRequest instantiates a new WorkspaceNotifierCommandRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceNotifierCommandRequestWithDefaults instantiates a new WorkspaceNotifierCommandRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkspaceNotifierCommandResponse instantiates a new WorkspaceNotifierCommandResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceNotifierCommandResponseWithDefaults instantiates a new WorkspaceNotifierCommandResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkspaceProcessCommandActionFromValue returns a pointer to a valid WorkspaceProcessCommandAction for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewWorkspaceProcessCommandRequest instantiates a new WorkspaceProcessCommandRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceProcessCommandRequestWithDefaults instantiates a new WorkspaceProcessCommandRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkspaceProcessCommandResponse instantiates a new WorkspaceProcessCommandResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceProcessCommandResponseWithDefaults instantiates a new WorkspaceProcessCommandResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
NewWorkspaceSchemaStateFromValue returns a pointer to a valid WorkspaceSchemaState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewWorkspaceSchemaTable instantiates a new WorkspaceSchemaTable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceSchemaTableColumn instantiates a new WorkspaceSchemaTableColumn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceSchemaTableColumnWithDefaults instantiates a new WorkspaceSchemaTableColumn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkspaceSchemaTableWithDefaults instantiates a new WorkspaceSchemaTable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
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.
NewWorkspaceStateFromValue returns a pointer to a valid WorkspaceState for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Constants

List of ConnectionConfigSource.
List of ConnectionConfigSource.
List of ConnectionCredentialSource.
List of ConnectionCredentialSource.
List of ConnectionCredentialSource.
List of ConnectionHandleMode.
List of ConnectionHandleMode.
List of ConstraintVisibility.
List of ConstraintVisibility.
List of DatatankState.
List of DatatankState.
List of DatatankState.
List of DatatankPartState.
List of DatatankPartState.
List of DatatankPartState.
List of DatatankPartState.
List of DatatankPartState.
List of DatatankPartFreshnessState.
List of DatatankPartFreshnessState.
List of DatatankPartFreshnessState.
List of DatatankPartFreshnessState.
List of DatatankPartFreshnessState.
List of DatatankPartFreshnessState.
List of DatatankPartFreshnessState.
List of DatatankPartState.
List of DatatankState.
List of DatatankTableState.
List of DatatankTableState.
List of DatatankTableState.
List of DatatankTableState.
List of DesiredState.
List of DesiredState.
List of DesiredState.
List of DatatankPartCmd.
List of FlowpipeInputState.
List of FlowpipeInputState.
List of FlowpipeInputState.
List of FlowpipeInputState.
List of FlowpipeInputStepType.
List of FlowpipeInputStepType.
List of IdentityUsageThresholdAction.
List of IdentityUsageThresholdAction.
List of IntegrationCommandAction.
List of IntegrationState.
List of IntegrationState.
List of IntegrationState.
List of IntegrationState.
List of IntegrationType.
List of IntegrationType.
List of IntegrationType.
List of IntegrationType.
List of IntegrationType.
List of IntegrationType.
List of ModPipe.
List of ModPipeling.
List of ModPipeling.
List of ModPipe.
List of ModTriggerState.
List of ModTriggerState.
List of NotifierPrecedence.
List of NotifierState.
List of NotifierState.
List of PipelineCommandAction.
List of PipelineState.
List of PipelineState.
List of PipelineState.
List of PipelineState.
List of PipelineState.
List of PipelineInstanceType.
List of PipelineInstanceType.
List of PipelineState.
List of PipelineState.
List of ProcessState.
List of ProcessState.
List of ProcessState.
List of ProcessState.
List of ProcessState.
List of ProcessState.
List of ProcessState.
List of SnapshotState.
List of SnapshotState.
List of SnapshotVisibility.
List of SnapshotVisibility.
List of TemporaryTokenRequestState.
List of TemporaryTokenRequestState.
List of TriggerCommandAction.
List of TriggerCommandAction.
List of TriggerState.
List of TriggerState.
List of UsageDimensionType.
List of UsageDimensionType.
List of UsageDimensionType.
List of UsageMetricType.
List of UsageMetricType.
List of UsageMetricType.
List of UsageMetricType.
List of UsageMetricType.
List of UsageMetricType.
List of UsageMetricType.
List of UsageUnitType.
List of UsageUnitType.
List of UsageUnitType.
List of WorkspaceCommandAction.
List of WorkspaceCommandAction.
List of WorkspaceCommandAction.
List of WorkspaceCommandAction.
List of WorkspaceState.
List of WorkspaceState.
List of WorkspaceState.
List of WorkspaceState.
List of WorkspaceState.
List of WorkspaceInstanceType.
List of WorkspaceInstanceType.
List of WorkspaceModState.
List of WorkspaceModState.
List of WorkspaceModState.
List of WorkspaceModState.
List of WorkspaceNotifierCommandAction.
List of WorkspaceState.
List of WorkspaceState.
List of WorkspaceState.
List of WorkspaceProcessCommandAction.
List of WorkspaceState.
List of WorkspaceSchemaState.
List of WorkspaceSchemaState.
List of WorkspaceSchemaState.
List of WorkspaceState.
List of WorkspaceState.
List of WorkspaceState.
List of WorkspaceState.

# Variables

All allowed values of ConnectionConfigSource enum.
All allowed values of ConnectionCredentialSource enum.
All allowed values of ConnectionHandleMode enum.
All allowed values of ConstraintVisibility enum.
All allowed values of DatatankPartCmd enum.
All allowed values of DatatankPartFreshnessState enum.
All allowed values of DatatankPartState enum.
All allowed values of DatatankState enum.
All allowed values of DatatankTableState enum.
All allowed values of DesiredState enum.
All allowed values of FlowpipeInputState enum.
All allowed values of FlowpipeInputStepType enum.
All allowed values of IdentityUsageThresholdAction enum.
All allowed values of IntegrationCommandAction enum.
All allowed values of IntegrationState enum.
All allowed values of IntegrationType enum.
All allowed values of ModPipe enum.
All allowed values of ModPipeling enum.
All allowed values of ModTriggerState enum.
All allowed values of NotifierPrecedence enum.
All allowed values of NotifierState enum.
All allowed values of PipelineCommandAction enum.
All allowed values of PipelineInstanceType enum.
All allowed values of PipelineState enum.
All allowed values of ProcessState enum.
All allowed values of SnapshotState enum.
All allowed values of SnapshotVisibility enum.
All allowed values of TemporaryTokenRequestState enum.
All allowed values of TriggerCommandAction enum.
All allowed values of TriggerState enum.
All allowed values of UsageDimensionType enum.
All allowed values of UsageMetricType enum.
All allowed values of UsageUnitType enum.
All allowed values of WorkspaceCommandAction enum.
All allowed values of WorkspaceInstanceType enum.
All allowed values of WorkspaceModState enum.
All allowed values of WorkspaceNotifierCommandAction enum.
All allowed values of WorkspaceProcessCommandAction enum.
All allowed values of WorkspaceSchemaState enum.
All allowed values of WorkspaceState enum.
ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ActorWorkspace struct for ActorWorkspace.
Aggregator struct for Aggregator.
APIClient manages communication with the Turbot Pipes API v{{OPEN_API_VERSION}} In most cases there should be only one, shared, APIClient.
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
APIResponse stores the API response returned by the server.
AttachWorkspaceSchemaRequest struct for AttachWorkspaceSchemaRequest.
AuditRecord struct for AuditRecord.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BillingInfo struct for BillingInfo.
BillingInvoice struct for BillingInvoice.
BillingSetupIntent struct for BillingSetupIntent.
BillingSubscription struct for BillingSubscription.
BillingSubscriptionItem struct for BillingSubscriptionItem.
Card struct for Card.
CmdDatatankPartRequest struct for CmdDatatankPartRequest.
Configuration stores the configuration of the API client.
Connection struct for Connection.
ConnectionTestResult struct for ConnectionTestResult.
ConnectionTrunkItem struct for ConnectionTrunkItem.
Constraint struct for Constraint.
ConstraintOverrideRequest struct for ConstraintOverrideRequest.
CreateAggregatorRequest struct for CreateAggregatorRequest.
CreateAvatarResponse struct for CreateAvatarResponse.
CreateConnectionFolderRequest struct for CreateConnectionFolderRequest.
CreateConnectionRequest struct for CreateConnectionRequest.
CreateDatatankRequest struct for CreateDatatankRequest.
CreateDatatankTableRequest struct for CreateDatatankTableRequest.
CreateFlowpipeInputRequest struct for CreateFlowpipeInputRequest.
CreateIntegrationRequest struct for CreateIntegrationRequest.
CreateNotifierRequest struct for CreateNotifierRequest.
CreateOrgAvatarResponse struct for CreateOrgAvatarResponse.
CreateOrgRequest struct for CreateOrgRequest.
CreateOrgUserRequest struct for CreateOrgUserRequest.
CreateOrgWorkspaceUserRequest struct for CreateOrgWorkspaceUserRequest.
CreatePermissionRequest struct for CreatePermissionRequest.
CreatePipelineRequest struct for CreatePipelineRequest.
CreateTenantRequest struct for CreateTenantRequest.
CreateTriggerRequest struct for CreateTriggerRequest.
CreateUserAvatarResponse struct for CreateUserAvatarResponse.
CreateUserPasswordRequest struct for CreateUserPasswordRequest.
CreateUserRequest struct for CreateUserRequest.
CreateWorkspaceAggregatorRequest struct for CreateWorkspaceAggregatorRequest.
CreateWorkspaceConnRequest struct for CreateWorkspaceConnRequest.
CreateWorkspaceModRequest struct for CreateWorkspaceModRequest.
CreateWorkspaceModVariableSettingRequest struct for CreateWorkspaceModVariableSettingRequest.
CreateWorkspaceRequest struct for CreateWorkspaceRequest.
CreateWorkspaceSnapshotRequest struct for CreateWorkspaceSnapshotRequest.
Datatank struct for Datatank.
DatatankPart struct for DatatankPart.
DatatankTable struct for DatatankTable.
DatatankTableFreshness struct for DatatankTableFreshness.
DeleteAvatarResponse struct for DeleteAvatarResponse.
DeleteOrgAvatarResponse struct for DeleteOrgAvatarResponse.
DeleteUserAvatarResponse struct for DeleteUserAvatarResponse.
ErrorDetailModel struct for ErrorDetailModel.
ErrorModel struct for ErrorModel.
Feature struct for Feature.
FlowpipeInput struct for FlowpipeInput.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GithubRepository struct for GithubRepository.
GithubRepositoryBranch struct for GithubRepositoryBranch.
No description provided by the author
No description provided by the author
No description provided by the author
Identity struct for Identity.
IdentityPlan struct for IdentityPlan.
IdentityUsage struct for IdentityUsage.
Integration struct for Integration.
IntegrationCommandRequest struct for IntegrationCommandRequest.
No description provided by the author
InviteOrgUserRequest struct for InviteOrgUserRequest.
InviteTenantUserRequest struct for InviteTenantUserRequest.
JSONTime struct for JSONTime.
ListActorWorkspacesResponse struct for ListActorWorkspacesResponse.
ListAuditLogsResponse struct for ListAuditLogsResponse.
ListBillingInvoicesResponse struct for ListBillingInvoicesResponse.
ListBillingPaymentMethodsResponse struct for ListBillingPaymentMethodsResponse.
ListConnectionsResponse struct for ListConnectionsResponse.
ListConstraintsResponse struct for ListConstraintsResponse.
ListDatatankPartResponse struct for ListDatatankPartResponse.
ListDatatankResponse struct for ListDatatankResponse.
ListDatatankTableResponse struct for ListDatatankTableResponse.
ListFeaturesResponse struct for ListFeaturesResponse.
ListFlowpipeInputsResponse struct for ListFlowpipeInputsResponse.
ListFlowpipePipelinesResponse struct for ListFlowpipePipelinesResponse.
ListFlowpipeTriggersResponse struct for ListFlowpipeTriggersResponse.
ListGithubRepositoriesResponse struct for ListGithubRepositoriesResponse.
ListGithubRepositoryBranchesResponse struct for ListGithubRepositoryBranchesResponse.
ListIdentitiesResponse struct for ListIdentitiesResponse.
ListIdentityUsageResponse struct for ListIdentityUsageResponse.
ListIntegrationsResponse struct for ListIntegrationsResponse.
ListLogsResponse struct for ListLogsResponse.
ListNotifiersResponse struct for ListNotifiersResponse.
ListOrgsResponse struct for ListOrgsResponse.
ListOrgUsersResponse struct for ListOrgUsersResponse.
ListOrgWorkspaceUsersResponse struct for ListOrgWorkspaceUsersResponse.
ListPermissionsResponse struct for ListPermissionsResponse.
ListPipelinesResponse struct for ListPipelinesResponse.
ListProcessesResponse struct for ListProcessesResponse.
ListSlackChannelsResponse struct for ListSlackChannelsResponse.
ListSubscriptionsResponse struct for ListSubscriptionsResponse.
ListTenantsResponse struct for ListTenantsResponse.
ListTenantUsersResponse struct for ListTenantUsersResponse.
ListTokensResponse struct for ListTokensResponse.
ListTriggersResponse struct for ListTriggersResponse.
ListUsageMetricsResponse struct for ListUsageMetricsResponse.
ListUserEmailsResponse struct for ListUserEmailsResponse.
ListUserOrgsResponse struct for ListUserOrgsResponse.
ListUsersResponse struct for ListUsersResponse.
ListWorkspaceAggregatorsResponse struct for ListWorkspaceAggregatorsResponse.
ListWorkspaceConnectionAssociationsResponse struct for ListWorkspaceConnectionAssociationsResponse.
ListWorkspaceConnectionsResponse struct for ListWorkspaceConnectionsResponse.
ListWorkspaceConnResponse struct for ListWorkspaceConnResponse.
ListWorkspaceModsResponse struct for ListWorkspaceModsResponse.
ListWorkspaceModVariablesResponse struct for ListWorkspaceModVariablesResponse.
ListWorkspaceSchemaResponse struct for ListWorkspaceSchemaResponse.
ListWorkspaceSchemaTableResponse struct for ListWorkspaceSchemaTableResponse.
ListWorkspaceSnapshotsResponse struct for ListWorkspaceSnapshotsResponse.
ListWorkspacesResponse struct for ListWorkspacesResponse.
LogRecord struct for LogRecord.
ModTriggerInfo struct for ModTriggerInfo.
Notifier struct for Notifier.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Org struct for Org.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OrgQuota struct for OrgQuota.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OrgUser struct for OrgUser.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OrgWorkspaceUser struct for OrgWorkspaceUser.
PaymentMethod struct for PaymentMethod.
Permission struct for Permission.
Pipeline struct for Pipeline.
PipelineCommandRequest struct for PipelineCommandRequest.
PipelineCommandResponse struct for PipelineCommandResponse.
PipelineFrequency struct for PipelineFrequency.
Plan struct for Plan.
Quota struct for Quota.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SlackChannel struct for SlackChannel.
SpProcess struct for SpProcess.
TemporaryTokenRequest struct for TemporaryTokenRequest.
Tenant struct for Tenant.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
TenantLoginSettings struct for TenantLoginSettings.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
TenantPlan struct for TenantPlan.
TenantSamlLoginSettings struct for TenantSamlLoginSettings.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
TenantSettings struct for TenantSettings.
TenantUser struct for TenantUser.
TestConnectionRequest struct for TestConnectionRequest.
TestIntegrationRequest struct for TestIntegrationRequest.
Token struct for Token.
TriggerCommandRequest struct for TriggerCommandRequest.
TriggerCommandResponse struct for TriggerCommandResponse.
UpdateAggregatorRequest struct for UpdateAggregatorRequest.
UpdateBillingPaymentMethodRequest struct for UpdateBillingPaymentMethodRequest.
UpdateBillingSubscriptionRequest struct for UpdateBillingSubscriptionRequest.
UpdateConnectionFolderRequest struct for UpdateConnectionFolderRequest.
UpdateConnectionRequest struct for UpdateConnectionRequest.
UpdateDatatankPartRequest struct for UpdateDatatankPartRequest.
UpdateDatatankRequest struct for UpdateDatatankRequest.
UpdateDatatankTableRequest struct for UpdateDatatankTableRequest.
UpdateIntegrationRequest struct for UpdateIntegrationRequest.
UpdateNotifierRequest struct for UpdateNotifierRequest.
UpdateOrgRequest struct for UpdateOrgRequest.
UpdateOrgUserRequest struct for UpdateOrgUserRequest.
UpdateOrgWorkspaceUserRequest struct for UpdateOrgWorkspaceUserRequest.
UpdatePermissionRequest struct for UpdatePermissionRequest.
UpdatePipelineRequest struct for UpdatePipelineRequest.
UpdateTemporaryTokenRequest struct for UpdateTemporaryTokenRequest.
UpdateTenantLoginSettings struct for UpdateTenantLoginSettings.
UpdateTenantRequest struct for UpdateTenantRequest.
UpdateTenantSamlLoginSettings struct for UpdateTenantSamlLoginSettings.
UpdateTenantSettingsRequest struct for UpdateTenantSettingsRequest.
UpdateTenantUserRequest struct for UpdateTenantUserRequest.
UpdateTokenRequest struct for UpdateTokenRequest.
UpdateTriggerRequest struct for UpdateTriggerRequest.
UpdateUserPreferencesRequest struct for UpdateUserPreferencesRequest.
UpdateUserRequest struct for UpdateUserRequest.
UpdateWorkspaceAggregatorRequest struct for UpdateWorkspaceAggregatorRequest.
UpdateWorkspaceModRequest struct for UpdateWorkspaceModRequest.
UpdateWorkspaceModVariableSettingRequest struct for UpdateWorkspaceModVariableSettingRequest.
UpdateWorkspaceRequest struct for UpdateWorkspaceRequest.
UpdateWorkspaceSnapshotRequest struct for UpdateWorkspaceSnapshotRequest.
UsageMetric struct for UsageMetric.
USBankAccount struct for USBankAccount.
User struct for User.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
UserDatabasePassword struct for UserDatabasePassword.
UserEmail struct for UserEmail.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
UserLoginRequest struct for UserLoginRequest.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
UserOrg struct for UserOrg.
UserPreferences struct for UserPreferences.
No description provided by the author
No description provided by the author
No description provided by the author
UserQuota struct for UserQuota.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
UserSignupRequest struct for UserSignupRequest.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Workspace struct for Workspace.
WorkspaceAggregator struct for WorkspaceAggregator.
WorkspaceAggregatorAssociation struct for WorkspaceAggregatorAssociation.
WorkspaceCommandRequest struct for WorkspaceCommandRequest.
WorkspaceCommandResponse struct for WorkspaceCommandResponse.
WorkspaceConn struct for WorkspaceConn.
WorkspaceConnection struct for WorkspaceConnection.
WorkspaceConnectionAssociation struct for WorkspaceConnectionAssociation.
WorkspaceMod struct for WorkspaceMod.
WorkspaceModPipeline struct for WorkspaceModPipeline.
WorkspaceModTrigger struct for WorkspaceModTrigger.
WorkspaceModVariable struct for WorkspaceModVariable.
WorkspaceNotifierCommandRequest struct for WorkspaceNotifierCommandRequest.
WorkspaceNotifierCommandResponse struct for WorkspaceNotifierCommandResponse.
WorkspaceProcessCommandRequest struct for WorkspaceProcessCommandRequest.
WorkspaceProcessCommandResponse struct for WorkspaceProcessCommandResponse.
WorkspaceQueryResult struct for WorkspaceQueryResult.
WorkspaceQueryResultColumn struct for WorkspaceQueryResultColumn.
WorkspaceSchema struct for WorkspaceSchema.
WorkspaceSchemaTable struct for WorkspaceSchemaTable.
WorkspaceSchemaTableColumn struct for WorkspaceSchemaTableColumn.
WorkspaceSnapshot struct for WorkspaceSnapshot.
WorkspaceSnapshotData struct for WorkspaceSnapshotData.
WorkspaceSnapshotDataLayout struct for WorkspaceSnapshotDataLayout.

# Type aliases

ActorsService Actors service.
AuthService Auth service.
ConnectionConfigSource the model 'ConnectionConfigSource'.
ConnectionCredentialSource the model 'ConnectionCredentialSource'.
ConnectionHandleMode the model 'ConnectionHandleMode'.
ConstraintVisibility the model 'ConstraintVisibility'.
DatatankPartCmd the model 'DatatankPartCmd'.
DatatankPartFreshnessState the model 'DatatankPartFreshnessState'.
DatatankPartState the model 'DatatankPartState'.
DatatankState the model 'DatatankState'.
DatatankTableState the model 'DatatankTableState'.
DesiredState the model 'DesiredState'.
FlowpipeInputState the model 'FlowpipeInputState'.
FlowpipeInputStepType the model 'FlowpipeInputStepType'.
IdentitiesService Identities service.
IdentityUsageThresholdAction the model 'IdentityUsageThresholdAction'.
IntegrationCommandAction the model 'IntegrationCommandAction'.
IntegrationsService Integrations service.
IntegrationState the model 'IntegrationState'.
IntegrationType the model 'IntegrationType'.
ModPipe the model 'ModPipe'.
ModPipeling the model 'ModPipeling'.
ModTriggerState the model 'ModTriggerState'.
NotifierPrecedence the model 'NotifierPrecedence'.
NotifierState the model 'NotifierState'.
OrgBillingService OrgBilling service.
OrgConnectionFoldersService OrgConnectionFolders service.
OrgConnectionsService OrgConnections service.
OrgConnectionTreeService OrgConnectionTree service.
OrgIntegrationsService OrgIntegrations service.
OrgMembersService OrgMembers service.
OrgNotifiersService OrgNotifiers service.
OrgProcessesService OrgProcesses service.
OrgsService Orgs service.
OrgWorkspaceAggregatorsService OrgWorkspaceAggregators service.
OrgWorkspaceConnectionAssociationsService OrgWorkspaceConnectionAssociations service.
OrgWorkspaceConnectionFoldersService OrgWorkspaceConnectionFolders service.
OrgWorkspaceConnectionsService OrgWorkspaceConnections service.
OrgWorkspaceConnectionTreeService OrgWorkspaceConnectionTree service.
OrgWorkspaceDatatankPartsService OrgWorkspaceDatatankParts service.
OrgWorkspaceDatatanksService OrgWorkspaceDatatanks service.
OrgWorkspaceDatatankTablesService OrgWorkspaceDatatankTables service.
OrgWorkspaceFlowpipeInputsService OrgWorkspaceFlowpipeInputs service.
OrgWorkspaceFlowpipeModsService OrgWorkspaceFlowpipeMods service.
OrgWorkspaceFlowpipeModVariablesService OrgWorkspaceFlowpipeModVariables service.
OrgWorkspaceFlowpipePipelinesService OrgWorkspaceFlowpipePipelines service.
OrgWorkspaceFlowpipeTriggersService OrgWorkspaceFlowpipeTriggers service.
OrgWorkspaceIntegrationsService OrgWorkspaceIntegrations service.
OrgWorkspaceMembersService OrgWorkspaceMembers service.
OrgWorkspaceModsService OrgWorkspaceMods service.
OrgWorkspaceModVariablesService OrgWorkspaceModVariables service.
OrgWorkspaceNotifiersService OrgWorkspaceNotifiers service.
OrgWorkspacePipelinesService OrgWorkspacePipelines service.
OrgWorkspaceProcessesService OrgWorkspaceProcesses service.
OrgWorkspaceSchemasService OrgWorkspaceSchemas service.
OrgWorkspaceSnapshotsService OrgWorkspaceSnapshots service.
OrgWorkspacesService OrgWorkspaces service.
OrgWorkspaceUsagesService OrgWorkspaceUsages service.
PipelineCommandAction the model 'PipelineCommandAction'.
PipelineInstanceType the model 'PipelineInstanceType'.
PipelineState the model 'PipelineState'.
ProcessState the model 'ProcessState'.
ServerConfigurations stores multiple ServerConfiguration items.
SnapshotState the model 'SnapshotState'.
SnapshotVisibility the model 'SnapshotVisibility'.
TemporaryTokenRequestState the model 'TemporaryTokenRequestState'.
TenantBillingService TenantBilling service.
TenantConnectionFoldersService TenantConnectionFolders service.
TenantConnectionsService TenantConnections service.
TenantConnectionTreeService TenantConnectionTree service.
TenantIntegrationsService TenantIntegrations service.
TenantMembersService TenantMembers service.
TenantNotifiersService TenantNotifiers service.
TenantsService Tenants service.
TriggerCommandAction the model 'TriggerCommandAction'.
TriggerState the model 'TriggerState'.
UsageDimensionType the model 'UsageDimensionType'.
UsageMetricType the model 'UsageMetricType'.
UsageUnitType the model 'UsageUnitType'.
UserBillingService UserBilling service.
UserConnectionsService UserConnections service.
UserIntegrationsService UserIntegrations service.
UserNotifiersService UserNotifiers service.
UserProcessesService UserProcesses service.
UsersService Users service.
UserTokensService UserTokens service.
UserWorkspaceAggregatorsService UserWorkspaceAggregators service.
UserWorkspaceConnectionAssociationsService UserWorkspaceConnectionAssociations service.
UserWorkspaceConnectionFoldersService UserWorkspaceConnectionFolders service.
UserWorkspaceConnectionsService UserWorkspaceConnections service.
UserWorkspaceConnectionTreeService UserWorkspaceConnectionTree service.
UserWorkspaceDatatankPartsService UserWorkspaceDatatankParts service.
UserWorkspaceDatatanksService UserWorkspaceDatatanks service.
UserWorkspaceDatatankTablesService UserWorkspaceDatatankTables service.
UserWorkspaceFlowpipeInputsService UserWorkspaceFlowpipeInputs service.
UserWorkspaceFlowpipeModsService UserWorkspaceFlowpipeMods service.
UserWorkspaceFlowpipeModVariablesService UserWorkspaceFlowpipeModVariables service.
UserWorkspaceFlowpipePipelinesService UserWorkspaceFlowpipePipelines service.
UserWorkspaceFlowpipeTriggersService UserWorkspaceFlowpipeTriggers service.
UserWorkspaceIntegrationsService UserWorkspaceIntegrations service.
UserWorkspaceModsService UserWorkspaceMods service.
UserWorkspaceModVariablesService UserWorkspaceModVariables service.
UserWorkspaceNotifiersService UserWorkspaceNotifiers service.
UserWorkspacePipelinesService UserWorkspacePipelines service.
UserWorkspaceProcessesService UserWorkspaceProcesses service.
UserWorkspaceSchemasService UserWorkspaceSchemas service.
UserWorkspaceSnapshotsService UserWorkspaceSnapshots service.
UserWorkspacesService UserWorkspaces service.
UserWorkspaceUsagesService UserWorkspaceUsages service.
WorkspaceCommandAction the model 'WorkspaceCommandAction'.
WorkspaceInstanceType the model 'WorkspaceInstanceType'.
WorkspaceModState the model 'WorkspaceModState'.
WorkspaceNotifierCommandAction the model 'WorkspaceNotifierCommandAction'.
WorkspaceProcessCommandAction the model 'WorkspaceProcessCommandAction'.
WorkspaceSchemaState the model 'WorkspaceSchemaState'.
WorkspaceState the model 'WorkspaceState'.