# README

Go API client for api

Go to Settings > API to get started. Once you generate an API token, use bearer token authentication to make requests.

Overview

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

  • API version: 2.4.0
  • Package version: 1.0.0
  • Generator version: 7.6.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import api "github.com/GIT_USER_ID/GIT_REPO_ID"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

ctx := context.WithValue(context.Background(), api.ContextServerIndex, 1)

Templated Server URL

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to http://.

ClassMethodHTTP requestDescription
AccessRequestAPIAccessRequestsAccessRequestIdGetGet /access_requests/{accessRequestId}Get access request
AccessRequestAPIAccessRequestsAccessRequestIdPatchPatch /access_requests/{accessRequestId}Approve or deny an access request
AccessRequestAPIAccessRequestsGetGet /access_requestsGet organization access requests
AppThemesAPIAppThemesIdDeleteDelete /app_themes/{id}Delete app theme
AppThemesAPIAppThemesIdGetGet /app_themes/{id}Get app theme
AppThemesAPIAppThemesPostPost /app_themesCreate app theme
AppThemesAPIAppThemesPutPut /app_themesUpdate app theme
AppsAPIAppsAppIdDeleteDelete /apps/{appId}Delete app
AppsAPIAppsAppIdGetGet /apps/{appId}Get app
AppsAPIAppsGetGet /appsList apps
ConfigurationVariablesAPIConfigurationVariablesGetGet /configuration_variablesList configuration variables and their values
ConfigurationVariablesAPIConfigurationVariablesIdDeleteDelete /configuration_variables/{id}Delete configuration variable
ConfigurationVariablesAPIConfigurationVariablesIdGetGet /configuration_variables/{id}Retreive a single configuration variable and its values
ConfigurationVariablesAPIConfigurationVariablesIdPutPut /configuration_variables/{id}Update a configuration variable
ConfigurationVariablesAPIConfigurationVariablesPostPost /configuration_variablesCreate a configuration variable
CustomComponentLibraryAPICustomComponentLibrariesGetGet /custom_component_librariesGet a list of all custom component libraries
CustomComponentLibraryAPICustomComponentLibrariesLibraryIdGetGet /custom_component_libraries/{libraryId}Get a single custom component libraries
CustomComponentLibraryAPICustomComponentLibrariesLibraryIdRevisionsGetGet /custom_component_libraries/{libraryId}/revisionsGets a list of all the revisions of a custom component library
CustomComponentLibraryAPICustomComponentLibrariesLibraryIdRevisionsPostPost /custom_component_libraries/{libraryId}/revisionsCreate a new custom component library revision
CustomComponentLibraryAPICustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGetGet /custom_component_libraries/{libraryId}/revisions/{revisionId}/filesGets all files associated with a custom component library revision.
CustomComponentLibraryAPICustomComponentLibrariesPostPost /custom_component_librariesCreate a new custom component library
EnvironmentAPIEnvironmentsEnvironmentIdGetGet /environments/{environmentId}Get an environment by id
EnvironmentAPIEnvironmentsGetGet /environmentsGet organization environments
FoldersAPIFoldersFolderIdDeleteDelete /folders/{folderId}Delete folder
FoldersAPIFoldersFolderIdGetGet /folders/{folderId}Get a folder
FoldersAPIFoldersFolderIdPatchPatch /folders/{folderId}Update folder
FoldersAPIFoldersGetGet /foldersList folders
FoldersAPIFoldersPostPost /foldersCreate folder
GroupsAPIGroupsGetGet /groupsList groups
GroupsAPIGroupsGroupIdDeleteDelete /groups/{groupId}Delete group
GroupsAPIGroupsGroupIdGetGet /groups/{groupId}Get group
GroupsAPIGroupsGroupIdMembersPostPost /groups/{groupId}/membersAdd users to group
GroupsAPIGroupsGroupIdMembersUserSidDeleteDelete /groups/{groupId}/members/{userSid}Remove user from group
GroupsAPIGroupsGroupIdPatchPatch /groups/{groupId}Update group
GroupsAPIGroupsGroupIdPutPut /groups/{groupId}Update group
GroupsAPIGroupsGroupIdUserInvitesPostPost /groups/{groupId}/user_invitesAdd user invites to group
GroupsAPIGroupsGroupIdUserInvitesUserInviteIdDeleteDelete /groups/{groupId}/user_invites/{userInviteId}Remove user invite from group
GroupsAPIGroupsPostPost /groupsCreate group
ObservabilityAPIObservabilityConfigConfigIdDeleteDelete /observability/config/{configId}Delete an observability provider configuration
ObservabilityAPIObservabilityConfigConfigIdPutPut /observability/config/{configId}Update an observability provider configuration
ObservabilityAPIObservabilityConfigGetGet /observability/configGet observability provider configurations
ObservabilityAPIObservabilityConfigPostPost /observability/configCreate a new observability provider configuration
ObservabilityAPIObservabilityProviderProviderTestPostPost /observability/provider/{provider}/testSend a test error event to the observability provider
PermissionsAPIPermissionsGrantPostPost /permissions/grantGrant permissions
PermissionsAPIPermissionsListObjectsPostPost /permissions/listObjectsList objects a group can access
PermissionsAPIPermissionsRevokePostPost /permissions/revokeRevoke permissions
ResourceConfigurationsAPIResourceConfigurationsConfigurationIdDeleteDelete /resource_configurations/{configurationId}Delete resource configuration
ResourceConfigurationsAPIResourceConfigurationsConfigurationIdGetGet /resource_configurations/{configurationId}Get resource configuration by id
ResourceConfigurationsAPIResourceConfigurationsGetGet /resource_configurationsGet resource configurations
ResourcesAPIResourcesGetGet /resourcesGet resources
ResourcesAPIResourcesPostPost /resourcesCreate a resource
ResourcesAPIResourcesResourceIdDeleteDelete /resources/{resourceId}Delete resource
ResourcesAPIResourcesResourceIdGetGet /resources/{resourceId}Get resource by id
SSOAPISsoConfigDeleteDelete /sso/configRemove SSO configuration
SSOAPISsoConfigGetGet /sso/configGet SSO configuration
SSOAPISsoConfigPostPost /sso/configSet SSO configuration
SourceControlAPISourceControlConfigDeleteDelete /source_control/configDelete source control provider configuration
SourceControlAPISourceControlConfigGetGet /source_control/configGet source control configuration
SourceControlAPISourceControlConfigPostPost /source_control/configCreate source control configuration
SourceControlAPISourceControlConfigPutPut /source_control/configSet source control configuration
SourceControlAPISourceControlDeployPostPost /source_control/deployTrigger deployment of latest changes
SourceControlAPISourceControlDeploymentIdGetGet /source_control/deployment/{id}Get deployment by id
SourceControlAPISourceControlSettingsGetGet /source_control/settingsGet source control settings
SourceControlAPISourceControlSettingsPutPut /source_control/settingsSet source control settings
SourceControlAPISourceControlTestConnectionGetGet /source_control/test_connectionTests source control connection
SourceControlAPISourceControlTestDeployPostPost /source_control/test_deployTest source control changes
SpacesAPISpacesCopyElementsPostPost /spaces/copyElementsCopies apps, queries, resources, and workflows from one space to another
SpacesAPISpacesGetGet /spacesList spaces
SpacesAPISpacesPostPost /spacesCreate a space
SpacesAPISpacesSpaceIdDeleteDelete /spaces/{spaceId}Delete a space
SpacesAPISpacesSpaceIdGetGet /spaces/{spaceId}Get space
SpacesAPISpacesSpaceIdPutPut /spaces/{spaceId}Update space
UsageAPIUsageAppDetailsGetGet /usage/app_detailsThe app details for the selected app and organizations
UsageAPIUsageAppSummaryGetGet /usage/app_summaryThe app summaries for the selected organizations
UsageAPIUsageGetGet /usageThe usage summary for the selected organizations
UsageAPIUsageOrganizationsGetGet /usage/organizationsList organizations
UsageAPIUsageUserDetailsGetGet /usage/user_detailsThe user details for the selected user and organizations
UsageAPIUsageUserSummaryGetGet /usage/user_summaryThe summaries of user usage for the selected organizations
UserAttributesAPIUserAttributesGetGet /user_attributesGet organization user attributes.
UserInviteAPIUserInvitesGetGet /user_invitesGet organization user invites
UserInviteAPIUserInvitesPostPost /user_invitesCreate a new user invite
UserInviteAPIUserInvitesUserInviteIdDeleteDelete /user_invites/{userInviteId}Delete user invite
UserInviteAPIUserInvitesUserInviteIdGetGet /user_invites/{userInviteId}Get user invite
UserInviteAPIUserInvitesUserInviteIdUserAttributesAttributeNameDeleteDelete /user_invites/{userInviteId}/user_attributes/{attributeName}Delete a user attribute on a user invite
UserInviteAPIUserInvitesUserInviteIdUserAttributesPostPost /user_invites/{userInviteId}/user_attributesAdd or update user attributes on a user invite
UsersAPIUsersGetGet /usersList users
UsersAPIUsersPostPost /usersCreate user
UsersAPIUsersUserIdDeleteDelete /users/{userId}Delete a user
UsersAPIUsersUserIdGetGet /users/{userId}Get user
UsersAPIUsersUserIdPatchPatch /users/{userId}Update a user
UsersAPIUsersUserIdUserAttributesAttributeNameDeleteDelete /users/{userId}/user_attributes/{attributeName}Delete a user attribute.
UsersAPIUsersUserIdUserAttributesPostPost /users/{userId}/user_attributesAdd or update a user attribute

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

BearerAuth

  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), api.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

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

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

Author

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
IsNil checks if an input is nil.
NewAccessRequest instantiates a new AccessRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessRequestsAccessRequestIdGet200Response instantiates a new AccessRequestsAccessRequestIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessRequestsAccessRequestIdGet200ResponseWithDefaults instantiates a new AccessRequestsAccessRequestIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessRequestsAccessRequestIdPatch200Response instantiates a new AccessRequestsAccessRequestIdPatch200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessRequestsAccessRequestIdPatch200ResponseWithDefaults instantiates a new AccessRequestsAccessRequestIdPatch200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessRequestsAccessRequestIdPatchRequest instantiates a new AccessRequestsAccessRequestIdPatchRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessRequestsAccessRequestIdPatchRequestWithDefaults instantiates a new AccessRequestsAccessRequestIdPatchRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessRequestsGet200Response instantiates a new AccessRequestsGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessRequestsGet200ResponseDataInner instantiates a new AccessRequestsGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessRequestsGet200ResponseDataInnerWithDefaults instantiates a new AccessRequestsGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessRequestsGet200ResponseWithDefaults instantiates a new AccessRequestsGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessRequestWithDefaults instantiates a new AccessRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddOperation instantiates a new AddOperation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddOperationWithDefaults instantiates a new AddOperation object This 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.
NewApp instantiates a new App object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppsAppIdGet200Response instantiates a new AppsAppIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppsAppIdGet200ResponseData instantiates a new AppsAppIdGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppsAppIdGet200ResponseDataWithDefaults instantiates a new AppsAppIdGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppsAppIdGet200ResponseWithDefaults instantiates a new AppsAppIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppsGet200Response instantiates a new AppsGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppsGet200ResponseWithDefaults instantiates a new AppsGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppSummary instantiates a new AppSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppSummaryWithDefaults instantiates a new AppSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppTheme instantiates a new AppTheme object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppThemesIdGet200Response instantiates a new AppThemesIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppThemesIdGet200ResponseData instantiates a new AppThemesIdGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppThemesIdGet200ResponseDataWithDefaults instantiates a new AppThemesIdGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppThemesIdGet200ResponseWithDefaults instantiates a new AppThemesIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppThemesPut200Response instantiates a new AppThemesPut200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppThemesPut200ResponseData instantiates a new AppThemesPut200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppThemesPut200ResponseDataWithDefaults instantiates a new AppThemesPut200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppThemesPut200ResponseWithDefaults instantiates a new AppThemesPut200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppThemesPutRequest instantiates a new AppThemesPutRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppThemesPutRequestWithDefaults instantiates a new AppThemesPutRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppThemeWithDefaults instantiates a new AppTheme object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppWithDefaults instantiates a new App object This 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.
NewConfigurationVariable instantiates a new ConfigurationVariable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigurationVariablesGet200Response instantiates a new ConfigurationVariablesGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigurationVariablesGet200ResponseDataInner instantiates a new ConfigurationVariablesGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigurationVariablesGet200ResponseDataInnerValuesInner instantiates a new ConfigurationVariablesGet200ResponseDataInnerValuesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigurationVariablesGet200ResponseDataInnerValuesInnerWithDefaults instantiates a new ConfigurationVariablesGet200ResponseDataInnerValuesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigurationVariablesGet200ResponseDataInnerWithDefaults instantiates a new ConfigurationVariablesGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigurationVariablesGet200ResponseWithDefaults instantiates a new ConfigurationVariablesGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigurationVariablesPost200Response instantiates a new ConfigurationVariablesPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigurationVariablesPost200ResponseWithDefaults instantiates a new ConfigurationVariablesPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigurationVariablesPostRequest instantiates a new ConfigurationVariablesPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigurationVariablesPostRequestWithDefaults instantiates a new ConfigurationVariablesPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigurationVariableWithDefaults instantiates a new ConfigurationVariable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrariesGet200Response instantiates a new CustomComponentLibrariesGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibrariesGet200ResponseWithDefaults instantiates a new CustomComponentLibrariesGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrariesLibraryIdGet200Response instantiates a new CustomComponentLibrariesLibraryIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibrariesLibraryIdGet200ResponseData instantiates a new CustomComponentLibrariesLibraryIdGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibrariesLibraryIdGet200ResponseDataWithDefaults instantiates a new CustomComponentLibrariesLibraryIdGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrariesLibraryIdGet200ResponseWithDefaults instantiates a new CustomComponentLibrariesLibraryIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrariesLibraryIdRevisionsGet200Response instantiates a new CustomComponentLibrariesLibraryIdRevisionsGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibrariesLibraryIdRevisionsGet200ResponseDataInner instantiates a new CustomComponentLibrariesLibraryIdRevisionsGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibrariesLibraryIdRevisionsGet200ResponseDataInnerWithDefaults instantiates a new CustomComponentLibrariesLibraryIdRevisionsGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrariesLibraryIdRevisionsGet200ResponseWithDefaults instantiates a new CustomComponentLibrariesLibraryIdRevisionsGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrariesLibraryIdRevisionsPost200Response instantiates a new CustomComponentLibrariesLibraryIdRevisionsPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibrariesLibraryIdRevisionsPost200ResponseWithDefaults instantiates a new CustomComponentLibrariesLibraryIdRevisionsPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200Response instantiates a new CustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200ResponseDataInner instantiates a new CustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200ResponseDataInnerWithDefaults instantiates a new CustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200ResponseWithDefaults instantiates a new CustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrariesPost200Response instantiates a new CustomComponentLibrariesPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibrariesPost200ResponseWithDefaults instantiates a new CustomComponentLibrariesPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrariesPostRequest instantiates a new CustomComponentLibrariesPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibrariesPostRequestWithDefaults instantiates a new CustomComponentLibrariesPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibrary instantiates a new CustomComponentLibrary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibraryRevision instantiates a new CustomComponentLibraryRevision object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibraryRevisionFile instantiates a new CustomComponentLibraryRevisionFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomComponentLibraryRevisionFileWithDefaults instantiates a new CustomComponentLibraryRevisionFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibraryRevisionWithDefaults instantiates a new CustomComponentLibraryRevision object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomComponentLibraryWithDefaults instantiates a new CustomComponentLibrary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironment instantiates a new Environment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentsEnvironmentIdGet200Response instantiates a new EnvironmentsEnvironmentIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentsEnvironmentIdGet200ResponseData instantiates a new EnvironmentsEnvironmentIdGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentsEnvironmentIdGet200ResponseDataWithDefaults instantiates a new EnvironmentsEnvironmentIdGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentsEnvironmentIdGet200ResponseWithDefaults instantiates a new EnvironmentsEnvironmentIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentsGet200Response instantiates a new EnvironmentsGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentsGet200ResponseWithDefaults instantiates a new EnvironmentsGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentWithDefaults instantiates a new Environment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFolder instantiates a new Folder object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersFolderIdDeleteRequest instantiates a new FoldersFolderIdDeleteRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersFolderIdDeleteRequestWithDefaults instantiates a new FoldersFolderIdDeleteRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersFolderIdGet200Response instantiates a new FoldersFolderIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersFolderIdGet200ResponseData instantiates a new FoldersFolderIdGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersFolderIdGet200ResponseDataWithDefaults instantiates a new FoldersFolderIdGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersFolderIdGet200ResponseWithDefaults instantiates a new FoldersFolderIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersFolderIdPatch200Response instantiates a new FoldersFolderIdPatch200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersFolderIdPatch200ResponseData instantiates a new FoldersFolderIdPatch200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersFolderIdPatch200ResponseDataWithDefaults instantiates a new FoldersFolderIdPatch200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersFolderIdPatch200ResponseWithDefaults instantiates a new FoldersFolderIdPatch200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersFolderIdPatchRequest instantiates a new FoldersFolderIdPatchRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersFolderIdPatchRequestOperationsInnerAnyOf instantiates a new FoldersFolderIdPatchRequestOperationsInnerAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersFolderIdPatchRequestOperationsInnerAnyOf1 instantiates a new FoldersFolderIdPatchRequestOperationsInnerAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersFolderIdPatchRequestOperationsInnerAnyOf1WithDefaults instantiates a new FoldersFolderIdPatchRequestOperationsInnerAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersFolderIdPatchRequestOperationsInnerAnyOf2 instantiates a new FoldersFolderIdPatchRequestOperationsInnerAnyOf2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersFolderIdPatchRequestOperationsInnerAnyOf2WithDefaults instantiates a new FoldersFolderIdPatchRequestOperationsInnerAnyOf2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersFolderIdPatchRequestOperationsInnerAnyOfWithDefaults instantiates a new FoldersFolderIdPatchRequestOperationsInnerAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersFolderIdPatchRequestWithDefaults instantiates a new FoldersFolderIdPatchRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersGet200Response instantiates a new FoldersGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersGet200ResponseDataInner instantiates a new FoldersGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersGet200ResponseDataInnerWithDefaults instantiates a new FoldersGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersGet200ResponseWithDefaults instantiates a new FoldersGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersPost200Response instantiates a new FoldersPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersPost200ResponseData instantiates a new FoldersPost200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersPost200ResponseDataWithDefaults instantiates a new FoldersPost200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersPost200ResponseWithDefaults instantiates a new FoldersPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersPost409Response instantiates a new FoldersPost409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersPost409ResponseWithDefaults instantiates a new FoldersPost409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoldersPostRequest instantiates a new FoldersPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoldersPostRequestWithDefaults instantiates a new FoldersPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFolderWithDefaults instantiates a new Folder object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroup instantiates a new Group object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGet200Response instantiates a new GroupsGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGet200ResponseDataInner instantiates a new GroupsGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGet200ResponseDataInnerWithDefaults instantiates a new GroupsGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGet200ResponseWithDefaults instantiates a new GroupsGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdGet200Response instantiates a new GroupsGroupIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdGet200ResponseData instantiates a new GroupsGroupIdGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdGet200ResponseDataMembersInner instantiates a new GroupsGroupIdGet200ResponseDataMembersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdGet200ResponseDataMembersInnerWithDefaults instantiates a new GroupsGroupIdGet200ResponseDataMembersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdGet200ResponseDataUserInvitesInner instantiates a new GroupsGroupIdGet200ResponseDataUserInvitesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdGet200ResponseDataUserInvitesInnerWithDefaults instantiates a new GroupsGroupIdGet200ResponseDataUserInvitesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdGet200ResponseDataWithDefaults instantiates a new GroupsGroupIdGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdGet200ResponseWithDefaults instantiates a new GroupsGroupIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdMembersPostRequest instantiates a new GroupsGroupIdMembersPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdMembersPostRequestWithDefaults instantiates a new GroupsGroupIdMembersPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdPatchRequest instantiates a new GroupsGroupIdPatchRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdPatchRequestWithDefaults instantiates a new GroupsGroupIdPatchRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdPut200Response instantiates a new GroupsGroupIdPut200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdPut200ResponseData instantiates a new GroupsGroupIdPut200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdPut200ResponseDataWithDefaults instantiates a new GroupsGroupIdPut200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdPut200ResponseWithDefaults instantiates a new GroupsGroupIdPut200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdPutRequest instantiates a new GroupsGroupIdPutRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdPutRequestMembersInner instantiates a new GroupsGroupIdPutRequestMembersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdPutRequestMembersInnerWithDefaults instantiates a new GroupsGroupIdPutRequestMembersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdPutRequestWithDefaults instantiates a new GroupsGroupIdPutRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsGroupIdUserInvitesPostRequest instantiates a new GroupsGroupIdUserInvitesPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsGroupIdUserInvitesPostRequestWithDefaults instantiates a new GroupsGroupIdUserInvitesPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsPost200Response instantiates a new GroupsPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsPost200ResponseData instantiates a new GroupsPost200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsPost200ResponseDataWithDefaults instantiates a new GroupsPost200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsPost200ResponseWithDefaults instantiates a new GroupsPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupsPostRequest instantiates a new GroupsPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupsPostRequestWithDefaults instantiates a new GroupsPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupWithDefaults instantiates a new Group object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMySQLOptions instantiates a new MySQLOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMySQLOptionsDatabaseOptions instantiates a new MySQLOptionsDatabaseOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMySQLOptionsDatabaseOptionsWithDefaults instantiates a new MySQLOptionsDatabaseOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMySQLOptionsWithDefaults instantiates a new MySQLOptions object This 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
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewObservabilityConfigConfigIdPut200Response instantiates a new ObservabilityConfigConfigIdPut200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigConfigIdPut200ResponseData instantiates a new ObservabilityConfigConfigIdPut200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigConfigIdPut200ResponseDataWithDefaults instantiates a new ObservabilityConfigConfigIdPut200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityConfigConfigIdPut200ResponseWithDefaults instantiates a new ObservabilityConfigConfigIdPut200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityConfigConfigIdPutRequest instantiates a new ObservabilityConfigConfigIdPutRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigConfigIdPutRequestWithDefaults instantiates a new ObservabilityConfigConfigIdPutRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityConfigGet200Response instantiates a new ObservabilityConfigGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigGet200ResponseDataInner instantiates a new ObservabilityConfigGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigGet200ResponseDataInnerConfigOneOf instantiates a new ObservabilityConfigGet200ResponseDataInnerConfigOneOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigGet200ResponseDataInnerConfigOneOf1 instantiates a new ObservabilityConfigGet200ResponseDataInnerConfigOneOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigGet200ResponseDataInnerConfigOneOf1WithDefaults instantiates a new ObservabilityConfigGet200ResponseDataInnerConfigOneOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityConfigGet200ResponseDataInnerConfigOneOfWithDefaults instantiates a new ObservabilityConfigGet200ResponseDataInnerConfigOneOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityConfigGet200ResponseDataInnerWithDefaults instantiates a new ObservabilityConfigGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityConfigGet200ResponseWithDefaults instantiates a new ObservabilityConfigGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityConfigPost200Response instantiates a new ObservabilityConfigPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigPost200ResponseData instantiates a new ObservabilityConfigPost200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigPost200ResponseDataWithDefaults instantiates a new ObservabilityConfigPost200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityConfigPost200ResponseWithDefaults instantiates a new ObservabilityConfigPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityConfigPostRequest instantiates a new ObservabilityConfigPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigPostRequestWithDefaults instantiates a new ObservabilityConfigPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityConfiguration instantiates a new ObservabilityConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityConfigurationWithDefaults instantiates a new ObservabilityConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityProviderProviderTestPost200Response instantiates a new ObservabilityProviderProviderTestPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityProviderProviderTestPost200ResponseDataAnyOf instantiates a new ObservabilityProviderProviderTestPost200ResponseDataAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityProviderProviderTestPost200ResponseDataAnyOf1 instantiates a new ObservabilityProviderProviderTestPost200ResponseDataAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservabilityProviderProviderTestPost200ResponseDataAnyOf1WithDefaults instantiates a new ObservabilityProviderProviderTestPost200ResponseDataAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityProviderProviderTestPost200ResponseDataAnyOfWithDefaults instantiates a new ObservabilityProviderProviderTestPost200ResponseDataAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservabilityProviderProviderTestPost200ResponseWithDefaults instantiates a new ObservabilityProviderProviderTestPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOrganization instantiates a new Organization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOrganizationWithDefaults instantiates a new Organization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsGrantPostRequest instantiates a new PermissionsGrantPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsGrantPostRequestObjectOneOf instantiates a new PermissionsGrantPostRequestObjectOneOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsGrantPostRequestObjectOneOf1 instantiates a new PermissionsGrantPostRequestObjectOneOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsGrantPostRequestObjectOneOf1WithDefaults instantiates a new PermissionsGrantPostRequestObjectOneOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsGrantPostRequestObjectOneOf2 instantiates a new PermissionsGrantPostRequestObjectOneOf2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsGrantPostRequestObjectOneOf2WithDefaults instantiates a new PermissionsGrantPostRequestObjectOneOf2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsGrantPostRequestObjectOneOf3 instantiates a new PermissionsGrantPostRequestObjectOneOf3 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsGrantPostRequestObjectOneOf3WithDefaults instantiates a new PermissionsGrantPostRequestObjectOneOf3 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsGrantPostRequestObjectOneOfWithDefaults instantiates a new PermissionsGrantPostRequestObjectOneOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsGrantPostRequestWithDefaults instantiates a new PermissionsGrantPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsListObjectsPost200Response instantiates a new PermissionsListObjectsPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsListObjectsPost200ResponseDataInnerOneOf instantiates a new PermissionsListObjectsPost200ResponseDataInnerOneOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsListObjectsPost200ResponseDataInnerOneOf1 instantiates a new PermissionsListObjectsPost200ResponseDataInnerOneOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsListObjectsPost200ResponseDataInnerOneOf1WithDefaults instantiates a new PermissionsListObjectsPost200ResponseDataInnerOneOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsListObjectsPost200ResponseDataInnerOneOf2 instantiates a new PermissionsListObjectsPost200ResponseDataInnerOneOf2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsListObjectsPost200ResponseDataInnerOneOf2WithDefaults instantiates a new PermissionsListObjectsPost200ResponseDataInnerOneOf2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsListObjectsPost200ResponseDataInnerOneOf3 instantiates a new PermissionsListObjectsPost200ResponseDataInnerOneOf3 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsListObjectsPost200ResponseDataInnerOneOf3WithDefaults instantiates a new PermissionsListObjectsPost200ResponseDataInnerOneOf3 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsListObjectsPost200ResponseDataInnerOneOfWithDefaults instantiates a new PermissionsListObjectsPost200ResponseDataInnerOneOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsListObjectsPost200ResponseWithDefaults instantiates a new PermissionsListObjectsPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsListObjectsPostRequest instantiates a new PermissionsListObjectsPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsListObjectsPostRequestSubjectOneOf instantiates a new PermissionsListObjectsPostRequestSubjectOneOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsListObjectsPostRequestSubjectOneOf1 instantiates a new PermissionsListObjectsPostRequestSubjectOneOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsListObjectsPostRequestSubjectOneOf1WithDefaults instantiates a new PermissionsListObjectsPostRequestSubjectOneOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsListObjectsPostRequestSubjectOneOfWithDefaults instantiates a new PermissionsListObjectsPostRequestSubjectOneOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsListObjectsPostRequestWithDefaults instantiates a new PermissionsListObjectsPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsRevokePost200Response instantiates a new PermissionsRevokePost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsRevokePost200ResponseDataInnerAnyOf instantiates a new PermissionsRevokePost200ResponseDataInnerAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsRevokePost200ResponseDataInnerAnyOf1 instantiates a new PermissionsRevokePost200ResponseDataInnerAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsRevokePost200ResponseDataInnerAnyOf1WithDefaults instantiates a new PermissionsRevokePost200ResponseDataInnerAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsRevokePost200ResponseDataInnerAnyOfWithDefaults instantiates a new PermissionsRevokePost200ResponseDataInnerAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsRevokePost200ResponseDataInnerOneOf instantiates a new PermissionsRevokePost200ResponseDataInnerOneOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsRevokePost200ResponseDataInnerOneOf1 instantiates a new PermissionsRevokePost200ResponseDataInnerOneOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsRevokePost200ResponseDataInnerOneOf1WithDefaults instantiates a new PermissionsRevokePost200ResponseDataInnerOneOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsRevokePost200ResponseDataInnerOneOfWithDefaults instantiates a new PermissionsRevokePost200ResponseDataInnerOneOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsRevokePost200ResponseWithDefaults instantiates a new PermissionsRevokePost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsRevokePostRequest instantiates a new PermissionsRevokePostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsRevokePostRequestWithDefaults instantiates a new PermissionsRevokePostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPostgresOptions instantiates a new PostgresOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPostgresOptionsDatabaseOptionsAnyOf instantiates a new PostgresOptionsDatabaseOptionsAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPostgresOptionsDatabaseOptionsAnyOf1 instantiates a new PostgresOptionsDatabaseOptionsAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPostgresOptionsDatabaseOptionsAnyOf1WithDefaults instantiates a new PostgresOptionsDatabaseOptionsAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPostgresOptionsDatabaseOptionsAnyOfSshTunnelOptions instantiates a new PostgresOptionsDatabaseOptionsAnyOfSshTunnelOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPostgresOptionsDatabaseOptionsAnyOfSshTunnelOptionsWithDefaults instantiates a new PostgresOptionsDatabaseOptionsAnyOfSshTunnelOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPostgresOptionsDatabaseOptionsAnyOfSslSettings instantiates a new PostgresOptionsDatabaseOptionsAnyOfSslSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPostgresOptionsDatabaseOptionsAnyOfSslSettingsWithDefaults instantiates a new PostgresOptionsDatabaseOptionsAnyOfSslSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPostgresOptionsDatabaseOptionsAnyOfWithDefaults instantiates a new PostgresOptionsDatabaseOptionsAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPostgresOptionsWithDefaults instantiates a new PostgresOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRedshiftOptions instantiates a new RedshiftOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRedshiftOptionsDatabaseOptions instantiates a new RedshiftOptionsDatabaseOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRedshiftOptionsDatabaseOptionsSslSettings instantiates a new RedshiftOptionsDatabaseOptionsSslSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRedshiftOptionsDatabaseOptionsSslSettingsWithDefaults instantiates a new RedshiftOptionsDatabaseOptionsSslSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRedshiftOptionsDatabaseOptionsWithDefaults instantiates a new RedshiftOptionsDatabaseOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRedshiftOptionsWithDefaults instantiates a new RedshiftOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRemoveOperation instantiates a new RemoveOperation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRemoveOperationWithDefaults instantiates a new RemoveOperation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReplaceOperation instantiates a new ReplaceOperation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReplaceOperationWithDefaults instantiates a new ReplaceOperation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResource instantiates a new Resource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceConfiguration instantiates a new ResourceConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceConfigurationsConfigurationIdGet200Response instantiates a new ResourceConfigurationsConfigurationIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceConfigurationsConfigurationIdGet200ResponseWithDefaults instantiates a new ResourceConfigurationsConfigurationIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceConfigurationsGet200Response instantiates a new ResourceConfigurationsGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceConfigurationsGet200ResponseDataInner instantiates a new ResourceConfigurationsGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceConfigurationsGet200ResponseDataInnerEnvironment instantiates a new ResourceConfigurationsGet200ResponseDataInnerEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceConfigurationsGet200ResponseDataInnerEnvironmentWithDefaults instantiates a new ResourceConfigurationsGet200ResponseDataInnerEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceConfigurationsGet200ResponseDataInnerWithDefaults instantiates a new ResourceConfigurationsGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceConfigurationsGet200ResponseWithDefaults instantiates a new ResourceConfigurationsGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceConfigurationWithDefaults instantiates a new ResourceConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourcesGet200Response instantiates a new ResourcesGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourcesGet200ResponseDataInner instantiates a new ResourcesGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourcesGet200ResponseDataInnerWithDefaults instantiates a new ResourcesGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourcesGet200ResponseWithDefaults instantiates a new ResourcesGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourcesPost200Response instantiates a new ResourcesPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourcesPost200ResponseData instantiates a new ResourcesPost200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourcesPost200ResponseDataWithDefaults instantiates a new ResourcesPost200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourcesPost200ResponseWithDefaults instantiates a new ResourcesPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourcesPostRequest instantiates a new ResourcesPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourcesPostRequestWithDefaults instantiates a new ResourcesPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourcesResourceIdGet200Response instantiates a new ResourcesResourceIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourcesResourceIdGet200ResponseWithDefaults instantiates a new ResourcesResourceIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceWithDefaults instantiates a new Resource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestAPIOptions instantiates a new RestAPIOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestAPIOptionsAuthenticationOptionsAnyOf instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestAPIOptionsAuthenticationOptionsAnyOf1 instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestAPIOptionsAuthenticationOptionsAnyOf1WithDefaults instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestAPIOptionsAuthenticationOptionsAnyOf2 instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestAPIOptionsAuthenticationOptionsAnyOf2WithDefaults instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestAPIOptionsAuthenticationOptionsAnyOf3 instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf3 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestAPIOptionsAuthenticationOptionsAnyOf3WithDefaults instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf3 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestAPIOptionsAuthenticationOptionsAnyOf4 instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf4 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestAPIOptionsAuthenticationOptionsAnyOf4WithDefaults instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf4 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestAPIOptionsAuthenticationOptionsAnyOf5 instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf5 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestAPIOptionsAuthenticationOptionsAnyOf5WithDefaults instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf5 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestAPIOptionsAuthenticationOptionsAnyOf6 instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf6 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestAPIOptionsAuthenticationOptionsAnyOf6WithDefaults instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf6 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestAPIOptionsAuthenticationOptionsAnyOfWithDefaults instantiates a new RestAPIOptionsAuthenticationOptionsAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestAPIOptionsWithDefaults instantiates a new RestAPIOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnowflakeOptions instantiates a new SnowflakeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnowflakeOptionsAuthenticationOptionsAnyOf instantiates a new SnowflakeOptionsAuthenticationOptionsAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnowflakeOptionsAuthenticationOptionsAnyOf1 instantiates a new SnowflakeOptionsAuthenticationOptionsAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnowflakeOptionsAuthenticationOptionsAnyOf1WithDefaults instantiates a new SnowflakeOptionsAuthenticationOptionsAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnowflakeOptionsAuthenticationOptionsAnyOf2 instantiates a new SnowflakeOptionsAuthenticationOptionsAnyOf2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnowflakeOptionsAuthenticationOptionsAnyOf2WithDefaults instantiates a new SnowflakeOptionsAuthenticationOptionsAnyOf2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnowflakeOptionsAuthenticationOptionsAnyOfWithDefaults instantiates a new SnowflakeOptionsAuthenticationOptionsAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnowflakeOptionsDatabaseOptions instantiates a new SnowflakeOptionsDatabaseOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnowflakeOptionsDatabaseOptionsWithDefaults instantiates a new SnowflakeOptionsDatabaseOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnowflakeOptionsWithDefaults instantiates a new SnowflakeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200Response instantiates a new SourceControlConfigGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOf instantiates a new SourceControlConfigGet200ResponseDataAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOf1 instantiates a new SourceControlConfigGet200ResponseDataAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOf1Config instantiates a new SourceControlConfigGet200ResponseDataAnyOf1Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOf1ConfigWithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOf1Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataAnyOf1WithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataAnyOf2 instantiates a new SourceControlConfigGet200ResponseDataAnyOf2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOf2Config instantiates a new SourceControlConfigGet200ResponseDataAnyOf2Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOf2ConfigWithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOf2Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataAnyOf2WithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOf2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataAnyOf3 instantiates a new SourceControlConfigGet200ResponseDataAnyOf3 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOf3Config instantiates a new SourceControlConfigGet200ResponseDataAnyOf3Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOf3ConfigWithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOf3Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataAnyOf3WithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOf3 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataAnyOf4 instantiates a new SourceControlConfigGet200ResponseDataAnyOf4 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOf4Config instantiates a new SourceControlConfigGet200ResponseDataAnyOf4Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOf4ConfigWithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOf4Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataAnyOf4WithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOf4 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataAnyOfConfigAnyOf instantiates a new SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOfConfigAnyOf1 instantiates a new SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataAnyOfConfigAnyOf1WithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataAnyOfConfigAnyOfWithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataAnyOfWithDefaults instantiates a new SourceControlConfigGet200ResponseDataAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOf instantiates a new SourceControlConfigGet200ResponseDataOneOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOf1 instantiates a new SourceControlConfigGet200ResponseDataOneOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOf1Config instantiates a new SourceControlConfigGet200ResponseDataOneOf1Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOf1ConfigWithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOf1Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOf1WithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOf2 instantiates a new SourceControlConfigGet200ResponseDataOneOf2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOf2Config instantiates a new SourceControlConfigGet200ResponseDataOneOf2Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOf2ConfigWithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOf2Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOf2WithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOf2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOf3 instantiates a new SourceControlConfigGet200ResponseDataOneOf3 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOf3Config instantiates a new SourceControlConfigGet200ResponseDataOneOf3Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOf3ConfigWithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOf3Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOf3WithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOf3 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOf4 instantiates a new SourceControlConfigGet200ResponseDataOneOf4 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOf4Config instantiates a new SourceControlConfigGet200ResponseDataOneOf4Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOf4ConfigWithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOf4Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOf4WithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOf4 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOfConfigOneOf instantiates a new SourceControlConfigGet200ResponseDataOneOfConfigOneOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOfConfigOneOf1 instantiates a new SourceControlConfigGet200ResponseDataOneOfConfigOneOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigGet200ResponseDataOneOfConfigOneOf1WithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOfConfigOneOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOfConfigOneOfWithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOfConfigOneOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseDataOneOfWithDefaults instantiates a new SourceControlConfigGet200ResponseDataOneOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigGet200ResponseWithDefaults instantiates a new SourceControlConfigGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigPost200Response instantiates a new SourceControlConfigPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigPost200ResponseWithDefaults instantiates a new SourceControlConfigPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigPut200Response instantiates a new SourceControlConfigPut200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigPut200ResponseWithDefaults instantiates a new SourceControlConfigPut200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigPutRequest instantiates a new SourceControlConfigPutRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigPutRequestConfigOneOf instantiates a new SourceControlConfigPutRequestConfigOneOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigPutRequestConfigOneOfWithDefaults instantiates a new SourceControlConfigPutRequestConfigOneOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigPutRequestWithDefaults instantiates a new SourceControlConfigPutRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlConfigurationAnyOf instantiates a new SourceControlConfigurationAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlConfigurationAnyOfWithDefaults instantiates a new SourceControlConfigurationAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlDeployPost200Response instantiates a new SourceControlDeployPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlDeployPost200ResponseData instantiates a new SourceControlDeployPost200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlDeployPost200ResponseDataWithDefaults instantiates a new SourceControlDeployPost200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlDeployPost200ResponseWithDefaults instantiates a new SourceControlDeployPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlSettings instantiates a new SourceControlSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlSettingsGet200Response instantiates a new SourceControlSettingsGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlSettingsGet200ResponseData instantiates a new SourceControlSettingsGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlSettingsGet200ResponseDataWithDefaults instantiates a new SourceControlSettingsGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlSettingsGet200ResponseWithDefaults instantiates a new SourceControlSettingsGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlSettingsPut200Response instantiates a new SourceControlSettingsPut200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlSettingsPut200ResponseData instantiates a new SourceControlSettingsPut200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlSettingsPut200ResponseDataWithDefaults instantiates a new SourceControlSettingsPut200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlSettingsPut200ResponseWithDefaults instantiates a new SourceControlSettingsPut200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlSettingsPutRequest instantiates a new SourceControlSettingsPutRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlSettingsPutRequestSettings instantiates a new SourceControlSettingsPutRequestSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlSettingsPutRequestSettingsWithDefaults instantiates a new SourceControlSettingsPutRequestSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlSettingsPutRequestWithDefaults instantiates a new SourceControlSettingsPutRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlSettingsWithDefaults instantiates a new SourceControlSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlTestConnectionGet200Response instantiates a new SourceControlTestConnectionGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlTestConnectionGet200ResponseDataAnyOf instantiates a new SourceControlTestConnectionGet200ResponseDataAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlTestConnectionGet200ResponseDataAnyOf1 instantiates a new SourceControlTestConnectionGet200ResponseDataAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlTestConnectionGet200ResponseDataAnyOf1WithDefaults instantiates a new SourceControlTestConnectionGet200ResponseDataAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlTestConnectionGet200ResponseDataAnyOfWithDefaults instantiates a new SourceControlTestConnectionGet200ResponseDataAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlTestConnectionGet200ResponseWithDefaults instantiates a new SourceControlTestConnectionGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlTestDeployPost200Response instantiates a new SourceControlTestDeployPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlTestDeployPost200ResponseDataAnyOf instantiates a new SourceControlTestDeployPost200ResponseDataAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlTestDeployPost200ResponseDataAnyOf1 instantiates a new SourceControlTestDeployPost200ResponseDataAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlTestDeployPost200ResponseDataAnyOf1WithDefaults instantiates a new SourceControlTestDeployPost200ResponseDataAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlTestDeployPost200ResponseDataAnyOfWithDefaults instantiates a new SourceControlTestDeployPost200ResponseDataAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlTestDeployPost200ResponseWithDefaults instantiates a new SourceControlTestDeployPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlTestDeployPostRequest instantiates a new SourceControlTestDeployPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlTestDeployPostRequestDeployParams instantiates a new SourceControlTestDeployPostRequestDeployParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceControlTestDeployPostRequestDeployParamsWithDefaults instantiates a new SourceControlTestDeployPostRequestDeployParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceControlTestDeployPostRequestWithDefaults instantiates a new SourceControlTestDeployPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpace instantiates a new Space object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesCopyElementsPost201Response instantiates a new SpacesCopyElementsPost201Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesCopyElementsPost201ResponseData instantiates a new SpacesCopyElementsPost201ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesCopyElementsPost201ResponseDataWithDefaults instantiates a new SpacesCopyElementsPost201ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesCopyElementsPost201ResponseWithDefaults instantiates a new SpacesCopyElementsPost201Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesCopyElementsPostRequest instantiates a new SpacesCopyElementsPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesCopyElementsPostRequestWithDefaults instantiates a new SpacesCopyElementsPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesGet200Response instantiates a new SpacesGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesGet200ResponseDataInner instantiates a new SpacesGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesGet200ResponseDataInnerWithDefaults instantiates a new SpacesGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesGet200ResponseWithDefaults instantiates a new SpacesGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesPost200Response instantiates a new SpacesPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesPost200ResponseData instantiates a new SpacesPost200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesPost200ResponseDataWithDefaults instantiates a new SpacesPost200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesPost200ResponseWithDefaults instantiates a new SpacesPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesPostRequest instantiates a new SpacesPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesPostRequestOptions instantiates a new SpacesPostRequestOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesPostRequestOptionsWithDefaults instantiates a new SpacesPostRequestOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesPostRequestWithDefaults instantiates a new SpacesPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesSpaceIdGet200Response instantiates a new SpacesSpaceIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesSpaceIdGet200ResponseData instantiates a new SpacesSpaceIdGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesSpaceIdGet200ResponseDataWithDefaults instantiates a new SpacesSpaceIdGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesSpaceIdGet200ResponseWithDefaults instantiates a new SpacesSpaceIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesSpaceIdPut200Response instantiates a new SpacesSpaceIdPut200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesSpaceIdPut200ResponseData instantiates a new SpacesSpaceIdPut200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesSpaceIdPut200ResponseDataWithDefaults instantiates a new SpacesSpaceIdPut200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesSpaceIdPut200ResponseWithDefaults instantiates a new SpacesSpaceIdPut200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpacesSpaceIdPutRequest instantiates a new SpacesSpaceIdPutRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpacesSpaceIdPutRequestWithDefaults instantiates a new SpacesSpaceIdPutRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpaceWithDefaults instantiates a new Space object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSSOConfig instantiates a new SSOConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoConfigGet200Response instantiates a new SsoConfigGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoConfigGet200ResponseWithDefaults instantiates a new SsoConfigGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoConfigPost200Response instantiates a new SsoConfigPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoConfigPost200ResponseWithDefaults instantiates a new SsoConfigPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoConfigPostRequest instantiates a new SsoConfigPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoConfigPostRequestDataOneOf instantiates a new SsoConfigPostRequestDataOneOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoConfigPostRequestDataOneOf1 instantiates a new SsoConfigPostRequestDataOneOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoConfigPostRequestDataOneOf1WithDefaults instantiates a new SsoConfigPostRequestDataOneOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoConfigPostRequestDataOneOf2 instantiates a new SsoConfigPostRequestDataOneOf2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoConfigPostRequestDataOneOf2WithDefaults instantiates a new SsoConfigPostRequestDataOneOf2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoConfigPostRequestDataOneOf3 instantiates a new SsoConfigPostRequestDataOneOf3 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoConfigPostRequestDataOneOf3WithDefaults instantiates a new SsoConfigPostRequestDataOneOf3 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoConfigPostRequestDataOneOf4 instantiates a new SsoConfigPostRequestDataOneOf4 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoConfigPostRequestDataOneOf4WithDefaults instantiates a new SsoConfigPostRequestDataOneOf4 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoConfigPostRequestDataOneOfWithDefaults instantiates a new SsoConfigPostRequestDataOneOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoConfigPostRequestWithDefaults instantiates a new SsoConfigPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSSOConfigWithDefaults instantiates a new SSOConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsage instantiates a new Usage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageAppDetailsGet200Response instantiates a new UsageAppDetailsGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageAppDetailsGet200ResponseData instantiates a new UsageAppDetailsGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageAppDetailsGet200ResponseDataOverallSummaryInner instantiates a new UsageAppDetailsGet200ResponseDataOverallSummaryInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageAppDetailsGet200ResponseDataOverallSummaryInnerWithDefaults instantiates a new UsageAppDetailsGet200ResponseDataOverallSummaryInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageAppDetailsGet200ResponseDataViewerSummaryInner instantiates a new UsageAppDetailsGet200ResponseDataViewerSummaryInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageAppDetailsGet200ResponseDataViewerSummaryInnerWithDefaults instantiates a new UsageAppDetailsGet200ResponseDataViewerSummaryInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageAppDetailsGet200ResponseDataWeeklySummaryInner instantiates a new UsageAppDetailsGet200ResponseDataWeeklySummaryInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageAppDetailsGet200ResponseDataWeeklySummaryInnerWeeklyDataInner instantiates a new UsageAppDetailsGet200ResponseDataWeeklySummaryInnerWeeklyDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageAppDetailsGet200ResponseDataWeeklySummaryInnerWeeklyDataInnerWithDefaults instantiates a new UsageAppDetailsGet200ResponseDataWeeklySummaryInnerWeeklyDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageAppDetailsGet200ResponseDataWeeklySummaryInnerWithDefaults instantiates a new UsageAppDetailsGet200ResponseDataWeeklySummaryInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageAppDetailsGet200ResponseDataWithDefaults instantiates a new UsageAppDetailsGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageAppDetailsGet200ResponseWithDefaults instantiates a new UsageAppDetailsGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageAppSummaryGet200Response instantiates a new UsageAppSummaryGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageAppSummaryGet200ResponseDataInner instantiates a new UsageAppSummaryGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageAppSummaryGet200ResponseDataInnerWithDefaults instantiates a new UsageAppSummaryGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageAppSummaryGet200ResponseWithDefaults instantiates a new UsageAppSummaryGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageGet200Response instantiates a new UsageGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageGet200ResponseData instantiates a new UsageGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageGet200ResponseDataDailyT30UsageInner instantiates a new UsageGet200ResponseDataDailyT30UsageInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageGet200ResponseDataDailyT30UsageInnerWithDefaults instantiates a new UsageGet200ResponseDataDailyT30UsageInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageGet200ResponseDataWithDefaults instantiates a new UsageGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageGet200ResponseWithDefaults instantiates a new UsageGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageOrganizationsGet200Response instantiates a new UsageOrganizationsGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageOrganizationsGet200ResponseDataInner instantiates a new UsageOrganizationsGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageOrganizationsGet200ResponseDataInnerWithDefaults instantiates a new UsageOrganizationsGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageOrganizationsGet200ResponseWithDefaults instantiates a new UsageOrganizationsGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageUserDetailsGet200Response instantiates a new UsageUserDetailsGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageUserDetailsGet200ResponseData instantiates a new UsageUserDetailsGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageUserDetailsGet200ResponseDataOverallSummaryInner instantiates a new UsageUserDetailsGet200ResponseDataOverallSummaryInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageUserDetailsGet200ResponseDataOverallSummaryInnerWithDefaults instantiates a new UsageUserDetailsGet200ResponseDataOverallSummaryInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageUserDetailsGet200ResponseDataViewerSummaryInner instantiates a new UsageUserDetailsGet200ResponseDataViewerSummaryInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageUserDetailsGet200ResponseDataViewerSummaryInnerWithDefaults instantiates a new UsageUserDetailsGet200ResponseDataViewerSummaryInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageUserDetailsGet200ResponseDataWithDefaults instantiates a new UsageUserDetailsGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageUserDetailsGet200ResponseWithDefaults instantiates a new UsageUserDetailsGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageUserSummaryGet200Response instantiates a new UsageUserSummaryGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageUserSummaryGet200ResponseDataInner instantiates a new UsageUserSummaryGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsageUserSummaryGet200ResponseDataInnerWithDefaults instantiates a new UsageUserSummaryGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageUserSummaryGet200ResponseWithDefaults instantiates a new UsageUserSummaryGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsageWithDefaults instantiates a new Usage object This 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.
NewUserAttributes instantiates a new UserAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserAttributesGet200Response instantiates a new UserAttributesGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserAttributesGet200ResponseDataInner instantiates a new UserAttributesGet200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserAttributesGet200ResponseDataInnerWithDefaults instantiates a new UserAttributesGet200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserAttributesGet200ResponseWithDefaults instantiates a new UserAttributesGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserAttributesWithDefaults instantiates a new UserAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvite instantiates a new UserInvite object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesGet200Response instantiates a new UserInvitesGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesGet200ResponseWithDefaults instantiates a new UserInvitesGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitesPost200Response instantiates a new UserInvitesPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesPost200ResponseData instantiates a new UserInvitesPost200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesPost200ResponseDataWithDefaults instantiates a new UserInvitesPost200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitesPost200ResponseWithDefaults instantiates a new UserInvitesPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitesPostRequest instantiates a new UserInvitesPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesPostRequestWithDefaults instantiates a new UserInvitesPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitesUserInviteIdGet200Response instantiates a new UserInvitesUserInviteIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesUserInviteIdGet200ResponseWithDefaults instantiates a new UserInvitesUserInviteIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitesUserInviteIdUserAttributesAttributeNameDelete200Response instantiates a new UserInvitesUserInviteIdUserAttributesAttributeNameDelete200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesUserInviteIdUserAttributesAttributeNameDelete200ResponseData instantiates a new UserInvitesUserInviteIdUserAttributesAttributeNameDelete200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesUserInviteIdUserAttributesAttributeNameDelete200ResponseDataWithDefaults instantiates a new UserInvitesUserInviteIdUserAttributesAttributeNameDelete200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitesUserInviteIdUserAttributesAttributeNameDelete200ResponseWithDefaults instantiates a new UserInvitesUserInviteIdUserAttributesAttributeNameDelete200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitesUserInviteIdUserAttributesPost200Response instantiates a new UserInvitesUserInviteIdUserAttributesPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesUserInviteIdUserAttributesPost200ResponseData instantiates a new UserInvitesUserInviteIdUserAttributesPost200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesUserInviteIdUserAttributesPost200ResponseDataWithDefaults instantiates a new UserInvitesUserInviteIdUserAttributesPost200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitesUserInviteIdUserAttributesPost200ResponseWithDefaults instantiates a new UserInvitesUserInviteIdUserAttributesPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitesUserInviteIdUserAttributesPostRequest instantiates a new UserInvitesUserInviteIdUserAttributesPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitesUserInviteIdUserAttributesPostRequestWithDefaults instantiates a new UserInvitesUserInviteIdUserAttributesPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInviteWithDefaults instantiates a new UserInvite object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersGet200Response instantiates a new UsersGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersGet200ResponseWithDefaults instantiates a new UsersGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersPost200Response instantiates a new UsersPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersPost200ResponseData instantiates a new UsersPost200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersPost200ResponseDataWithDefaults instantiates a new UsersPost200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersPost200ResponseWithDefaults instantiates a new UsersPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersPostRequest instantiates a new UsersPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersPostRequestWithDefaults instantiates a new UsersPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdGet200Response instantiates a new UsersUserIdGet200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdGet200ResponseData instantiates a new UsersUserIdGet200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdGet200ResponseDataWithDefaults instantiates a new UsersUserIdGet200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdGet200ResponseWithDefaults instantiates a new UsersUserIdGet200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdPatchRequest instantiates a new UsersUserIdPatchRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdPatchRequestOperationsInnerAnyOf instantiates a new UsersUserIdPatchRequestOperationsInnerAnyOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdPatchRequestOperationsInnerAnyOf1 instantiates a new UsersUserIdPatchRequestOperationsInnerAnyOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdPatchRequestOperationsInnerAnyOf1WithDefaults instantiates a new UsersUserIdPatchRequestOperationsInnerAnyOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdPatchRequestOperationsInnerAnyOf2 instantiates a new UsersUserIdPatchRequestOperationsInnerAnyOf2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdPatchRequestOperationsInnerAnyOf2WithDefaults instantiates a new UsersUserIdPatchRequestOperationsInnerAnyOf2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdPatchRequestOperationsInnerAnyOfWithDefaults instantiates a new UsersUserIdPatchRequestOperationsInnerAnyOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdPatchRequestWithDefaults instantiates a new UsersUserIdPatchRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdUserAttributesAttributeNameDelete200Response instantiates a new UsersUserIdUserAttributesAttributeNameDelete200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdUserAttributesAttributeNameDelete200ResponseData instantiates a new UsersUserIdUserAttributesAttributeNameDelete200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdUserAttributesAttributeNameDelete200ResponseDataWithDefaults instantiates a new UsersUserIdUserAttributesAttributeNameDelete200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdUserAttributesAttributeNameDelete200ResponseWithDefaults instantiates a new UsersUserIdUserAttributesAttributeNameDelete200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdUserAttributesPost200Response instantiates a new UsersUserIdUserAttributesPost200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdUserAttributesPost200ResponseData instantiates a new UsersUserIdUserAttributesPost200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdUserAttributesPost200ResponseDataWithDefaults instantiates a new UsersUserIdUserAttributesPost200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdUserAttributesPost200ResponseWithDefaults instantiates a new UsersUserIdUserAttributesPost200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersUserIdUserAttributesPostRequest instantiates a new UsersUserIdUserAttributesPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersUserIdUserAttributesPostRequestWithDefaults instantiates a new UsersUserIdUserAttributesPostRequest object This 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.
ObservabilityConfigGet200ResponseDataInnerConfigOneOf1AsObservabilityConfigGet200ResponseDataInnerConfig is a convenience function that returns ObservabilityConfigGet200ResponseDataInnerConfigOneOf1 wrapped in ObservabilityConfigGet200ResponseDataInnerConfig.
ObservabilityConfigGet200ResponseDataInnerConfigOneOfAsObservabilityConfigGet200ResponseDataInnerConfig is a convenience function that returns ObservabilityConfigGet200ResponseDataInnerConfigOneOf wrapped in ObservabilityConfigGet200ResponseDataInnerConfig.
PermissionsGrantPostRequestObjectOneOfAsPermissionsGrantPostRequestObject is a convenience function that returns PermissionsGrantPostRequestObjectOneOf wrapped in PermissionsGrantPostRequestObject.
PermissionsListObjectsPost200ResponseDataInnerOneOfAsPermissionsListObjectsPost200ResponseDataInner is a convenience function that returns PermissionsListObjectsPost200ResponseDataInnerOneOf wrapped in PermissionsListObjectsPost200ResponseDataInner.
PermissionsListObjectsPostRequestSubjectOneOf1AsPermissionsListObjectsPostRequestSubject is a convenience function that returns PermissionsListObjectsPostRequestSubjectOneOf1 wrapped in PermissionsListObjectsPostRequestSubject.
PermissionsListObjectsPostRequestSubjectOneOfAsPermissionsListObjectsPostRequestSubject is a convenience function that returns PermissionsListObjectsPostRequestSubjectOneOf wrapped in PermissionsListObjectsPostRequestSubject.
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.
SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf1AsSourceControlConfigPutRequestConfigOneOfConfig is a convenience function that returns SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf1 wrapped in SourceControlConfigPutRequestConfigOneOfConfig.
SourceControlConfigGet200ResponseDataAnyOfConfigAnyOfAsSourceControlConfigPutRequestConfigOneOfConfig is a convenience function that returns SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf wrapped in SourceControlConfigPutRequestConfigOneOfConfig.
SourceControlConfigGet200ResponseDataOneOf1AsSourceControlConfigGet200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf1 wrapped in SourceControlConfigGet200ResponseData.
SourceControlConfigGet200ResponseDataOneOf1AsSourceControlConfigPost200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf1 wrapped in SourceControlConfigPost200ResponseData.
SourceControlConfigGet200ResponseDataOneOf1AsSourceControlConfigPut200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf1 wrapped in SourceControlConfigPut200ResponseData.
SourceControlConfigGet200ResponseDataOneOf1AsSourceControlConfigPutRequestConfig is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf1 wrapped in SourceControlConfigPutRequestConfig.
SourceControlConfigGet200ResponseDataOneOf2AsSourceControlConfigGet200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf2 wrapped in SourceControlConfigGet200ResponseData.
SourceControlConfigGet200ResponseDataOneOf2AsSourceControlConfigPost200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf2 wrapped in SourceControlConfigPost200ResponseData.
SourceControlConfigGet200ResponseDataOneOf2AsSourceControlConfigPut200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf2 wrapped in SourceControlConfigPut200ResponseData.
SourceControlConfigGet200ResponseDataOneOf2AsSourceControlConfigPutRequestConfig is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf2 wrapped in SourceControlConfigPutRequestConfig.
SourceControlConfigGet200ResponseDataOneOf3AsSourceControlConfigGet200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf3 wrapped in SourceControlConfigGet200ResponseData.
SourceControlConfigGet200ResponseDataOneOf3AsSourceControlConfigPost200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf3 wrapped in SourceControlConfigPost200ResponseData.
SourceControlConfigGet200ResponseDataOneOf3AsSourceControlConfigPut200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf3 wrapped in SourceControlConfigPut200ResponseData.
SourceControlConfigGet200ResponseDataOneOf3AsSourceControlConfigPutRequestConfig is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf3 wrapped in SourceControlConfigPutRequestConfig.
SourceControlConfigGet200ResponseDataOneOf4AsSourceControlConfigGet200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf4 wrapped in SourceControlConfigGet200ResponseData.
SourceControlConfigGet200ResponseDataOneOf4AsSourceControlConfigPost200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf4 wrapped in SourceControlConfigPost200ResponseData.
SourceControlConfigGet200ResponseDataOneOf4AsSourceControlConfigPut200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf4 wrapped in SourceControlConfigPut200ResponseData.
SourceControlConfigGet200ResponseDataOneOf4AsSourceControlConfigPutRequestConfig is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf4 wrapped in SourceControlConfigPutRequestConfig.
SourceControlConfigGet200ResponseDataOneOfAsSourceControlConfigGet200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf wrapped in SourceControlConfigGet200ResponseData.
SourceControlConfigGet200ResponseDataOneOfAsSourceControlConfigPost200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf wrapped in SourceControlConfigPost200ResponseData.
SourceControlConfigGet200ResponseDataOneOfAsSourceControlConfigPut200ResponseData is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf wrapped in SourceControlConfigPut200ResponseData.
SourceControlConfigGet200ResponseDataOneOfAsSourceControlConfigPutRequestConfig is a convenience function that returns SourceControlConfigGet200ResponseDataOneOf wrapped in SourceControlConfigPutRequestConfig.
SourceControlConfigGet200ResponseDataOneOfConfigOneOf1AsSourceControlConfigGet200ResponseDataOneOfConfig is a convenience function that returns SourceControlConfigGet200ResponseDataOneOfConfigOneOf1 wrapped in SourceControlConfigGet200ResponseDataOneOfConfig.
SourceControlConfigGet200ResponseDataOneOfConfigOneOfAsSourceControlConfigGet200ResponseDataOneOfConfig is a convenience function that returns SourceControlConfigGet200ResponseDataOneOfConfigOneOf wrapped in SourceControlConfigGet200ResponseDataOneOfConfig.
SSOConfigAsSsoConfigGet200ResponseData is a convenience function that returns SSOConfig wrapped in SsoConfigGet200ResponseData.
SSOConfigAsSsoConfigPost200ResponseData is a convenience function that returns SSOConfig wrapped in SsoConfigPost200ResponseData.
SsoConfigPostRequestDataOneOf1AsSsoConfigPostRequestData is a convenience function that returns SsoConfigPostRequestDataOneOf1 wrapped in SsoConfigPostRequestData.
SsoConfigPostRequestDataOneOf1AsSsoConfiguration is a convenience function that returns SsoConfigPostRequestDataOneOf1 wrapped in SsoConfiguration.
SsoConfigPostRequestDataOneOf2AsSsoConfigPostRequestData is a convenience function that returns SsoConfigPostRequestDataOneOf2 wrapped in SsoConfigPostRequestData.
SsoConfigPostRequestDataOneOf2AsSsoConfiguration is a convenience function that returns SsoConfigPostRequestDataOneOf2 wrapped in SsoConfiguration.
SsoConfigPostRequestDataOneOf3AsSsoConfigPostRequestData is a convenience function that returns SsoConfigPostRequestDataOneOf3 wrapped in SsoConfigPostRequestData.
SsoConfigPostRequestDataOneOf3AsSsoConfiguration is a convenience function that returns SsoConfigPostRequestDataOneOf3 wrapped in SsoConfiguration.
SsoConfigPostRequestDataOneOf4AsSsoConfigPostRequestData is a convenience function that returns SsoConfigPostRequestDataOneOf4 wrapped in SsoConfigPostRequestData.
SsoConfigPostRequestDataOneOf4AsSsoConfiguration is a convenience function that returns SsoConfigPostRequestDataOneOf4 wrapped in SsoConfiguration.
SsoConfigPostRequestDataOneOfAsSsoConfigPostRequestData is a convenience function that returns SsoConfigPostRequestDataOneOf wrapped in SsoConfigPostRequestData.
SsoConfigPostRequestDataOneOfAsSsoConfiguration is a convenience function that returns SsoConfigPostRequestDataOneOf wrapped in SsoConfiguration.

# Variables

ContextAccessToken takes a string oauth2 access token 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.
No description provided by the author
No description provided by the author

# Structs

AccessRequest Access Request.
AccessRequestsAccessRequestIdGet200Response A single access request.
AccessRequestsAccessRequestIdPatch200Response An approved or denied access request object.
AccessRequestsAccessRequestIdPatchRequest The body of a request to update an access request's status.
AccessRequestsGet200Response A paginated list of access requests.
AccessRequestsGet200ResponseDataInner Access Request.
AddOperation struct for AddOperation.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Retool API API v2.4.0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
App This object represents an app.
AppsAppIdGet200Response A single app.
AppsAppIdGet200ResponseData This object represents an app.
AppsGet200Response A dictionary with a `data` property that contains an array of groups.
AppSummary struct for AppSummary.
AppTheme This object represents an app theme.
AppThemesIdGet200Response struct for AppThemesIdGet200Response.
AppThemesIdGet200ResponseData The app theme.
AppThemesPut200Response struct for AppThemesPut200Response.
AppThemesPut200ResponseData The updated app theme.
AppThemesPutRequest This object represents an app theme.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
Configuration stores the configuration of the API client.
ConfigurationVariable struct for ConfigurationVariable.
ConfigurationVariablesGet200Response struct for ConfigurationVariablesGet200Response.
ConfigurationVariablesGet200ResponseDataInner struct for ConfigurationVariablesGet200ResponseDataInner.
ConfigurationVariablesGet200ResponseDataInnerValuesInner struct for ConfigurationVariablesGet200ResponseDataInnerValuesInner.
ConfigurationVariablesPost200Response struct for ConfigurationVariablesPost200Response.
ConfigurationVariablesPostRequest struct for ConfigurationVariablesPostRequest.
CustomComponentLibrariesGet200Response A paginated list of custom component libraries.
CustomComponentLibrariesLibraryIdGet200Response struct for CustomComponentLibrariesLibraryIdGet200Response.
CustomComponentLibrariesLibraryIdGet200ResponseData Custom Component Library.
CustomComponentLibrariesLibraryIdRevisionsGet200Response struct for CustomComponentLibrariesLibraryIdRevisionsGet200Response.
CustomComponentLibrariesLibraryIdRevisionsGet200ResponseDataInner Custom Component Library Revision.
CustomComponentLibrariesLibraryIdRevisionsPost200Response The newly created Custom Component Library Revision.
CustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200Response struct for CustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200Response.
CustomComponentLibrariesLibraryIdRevisionsRevisionIdFilesGet200ResponseDataInner Custom Component Library Revision.
CustomComponentLibrariesPost200Response The newly created Custom Component Library.
CustomComponentLibrariesPostRequest struct for CustomComponentLibrariesPostRequest.
CustomComponentLibrary Custom Component Library.
CustomComponentLibraryRevision Custom Component Library Revision.
CustomComponentLibraryRevisionFile Custom Component Library Revision.
Environment Environment.
EnvironmentsEnvironmentIdGet200Response struct for EnvironmentsEnvironmentIdGet200Response.
EnvironmentsEnvironmentIdGet200ResponseData The requested environment.
EnvironmentsGet200Response A list of environments.
Folder This object represents app, resource and workflows folders.
FoldersFolderIdDeleteRequest struct for FoldersFolderIdDeleteRequest.
FoldersFolderIdGet200Response struct for FoldersFolderIdGet200Response.
FoldersFolderIdGet200ResponseData The requested folder.
FoldersFolderIdPatch200Response struct for FoldersFolderIdPatch200Response.
FoldersFolderIdPatch200ResponseData The updated folder.
FoldersFolderIdPatchRequest struct for FoldersFolderIdPatchRequest.
FoldersFolderIdPatchRequestOperationsInner struct for FoldersFolderIdPatchRequestOperationsInner.
FoldersFolderIdPatchRequestOperationsInnerAnyOf struct for FoldersFolderIdPatchRequestOperationsInnerAnyOf.
FoldersFolderIdPatchRequestOperationsInnerAnyOf1 struct for FoldersFolderIdPatchRequestOperationsInnerAnyOf1.
FoldersFolderIdPatchRequestOperationsInnerAnyOf2 struct for FoldersFolderIdPatchRequestOperationsInnerAnyOf2.
FoldersGet200Response struct for FoldersGet200Response.
FoldersGet200ResponseDataInner Folders.
FoldersPost200Response struct for FoldersPost200Response.
FoldersPost200ResponseData The created folder.
FoldersPost409Response API error response.
FoldersPostRequest struct for FoldersPostRequest.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
Group This object represents a permission group.
GroupsGet200Response A dictionary with a `data` property that contains an array of groups.
GroupsGet200ResponseDataInner This object represents a permission group.
GroupsGroupIdGet200Response struct for GroupsGroupIdGet200Response.
GroupsGroupIdGet200ResponseData The requested group.
GroupsGroupIdGet200ResponseDataMembersInner struct for GroupsGroupIdGet200ResponseDataMembersInner.
GroupsGroupIdGet200ResponseDataUserInvitesInner User Invite.
GroupsGroupIdMembersPostRequest struct for GroupsGroupIdMembersPostRequest.
GroupsGroupIdPatchRequest The body of a request to update a group.
GroupsGroupIdPatchRequestOperationsInner struct for GroupsGroupIdPatchRequestOperationsInner.
GroupsGroupIdPut200Response struct for GroupsGroupIdPut200Response.
GroupsGroupIdPut200ResponseData The updated group.
GroupsGroupIdPutRequest struct for GroupsGroupIdPutRequest.
GroupsGroupIdPutRequestMembersInner struct for GroupsGroupIdPutRequestMembersInner.
GroupsGroupIdUserInvitesPostRequest User Invites to add to the group.
GroupsPost200Response struct for GroupsPost200Response.
GroupsPost200ResponseData The created group.
GroupsPostRequest struct for GroupsPostRequest.
MySQLOptions struct for MySQLOptions.
MySQLOptionsDatabaseOptions struct for MySQLOptionsDatabaseOptions.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ObservabilityConfigConfigIdPut200Response struct for ObservabilityConfigConfigIdPut200Response.
ObservabilityConfigConfigIdPut200ResponseData Shape of Put Observability Config Response.
ObservabilityConfigConfigIdPutRequest Shape of Put Observability Config Request.
ObservabilityConfigGet200Response struct for ObservabilityConfigGet200Response.
ObservabilityConfigGet200ResponseDataInner Shape of Get Observability Config Response.
ObservabilityConfigGet200ResponseDataInnerConfig - Provider-specific configuration.
ObservabilityConfigGet200ResponseDataInnerConfigOneOf struct for ObservabilityConfigGet200ResponseDataInnerConfigOneOf.
ObservabilityConfigGet200ResponseDataInnerConfigOneOf1 struct for ObservabilityConfigGet200ResponseDataInnerConfigOneOf1.
ObservabilityConfigPost200Response struct for ObservabilityConfigPost200Response.
ObservabilityConfigPost200ResponseData Shape of Post Observability Config Response.
ObservabilityConfigPostRequest Shape of Post Observability Config Request.
ObservabilityConfiguration Shape of external Observability provider config.
ObservabilityProviderProviderTestPost200Response struct for ObservabilityProviderProviderTestPost200Response.
ObservabilityProviderProviderTestPost200ResponseData Send test error response.
ObservabilityProviderProviderTestPost200ResponseDataAnyOf struct for ObservabilityProviderProviderTestPost200ResponseDataAnyOf.
ObservabilityProviderProviderTestPost200ResponseDataAnyOf1 struct for ObservabilityProviderProviderTestPost200ResponseDataAnyOf1.
ObservabilityProviderProviderTestPostProviderParameter The observability provider name, either \"Sentry\" or \"Datadog\".
Organization An organization in Retool.
PermissionsGrantPostRequest struct for PermissionsGrantPostRequest.
PermissionsGrantPostRequestObject - struct for PermissionsGrantPostRequestObject.
PermissionsGrantPostRequestObjectOneOf struct for PermissionsGrantPostRequestObjectOneOf.
PermissionsGrantPostRequestObjectOneOf1 struct for PermissionsGrantPostRequestObjectOneOf1.
PermissionsGrantPostRequestObjectOneOf2 struct for PermissionsGrantPostRequestObjectOneOf2.
PermissionsGrantPostRequestObjectOneOf3 struct for PermissionsGrantPostRequestObjectOneOf3.
PermissionsListObjectsPost200Response struct for PermissionsListObjectsPost200Response.
PermissionsListObjectsPost200ResponseDataInner - struct for PermissionsListObjectsPost200ResponseDataInner.
PermissionsListObjectsPost200ResponseDataInnerOneOf struct for PermissionsListObjectsPost200ResponseDataInnerOneOf.
PermissionsListObjectsPost200ResponseDataInnerOneOf1 struct for PermissionsListObjectsPost200ResponseDataInnerOneOf1.
PermissionsListObjectsPost200ResponseDataInnerOneOf2 struct for PermissionsListObjectsPost200ResponseDataInnerOneOf2.
PermissionsListObjectsPost200ResponseDataInnerOneOf2Id The uuid for the resource.
PermissionsListObjectsPost200ResponseDataInnerOneOf3 struct for PermissionsListObjectsPost200ResponseDataInnerOneOf3.
PermissionsListObjectsPostRequest struct for PermissionsListObjectsPostRequest.
PermissionsListObjectsPostRequestSubject - struct for PermissionsListObjectsPostRequestSubject.
PermissionsListObjectsPostRequestSubjectOneOf struct for PermissionsListObjectsPostRequestSubjectOneOf.
PermissionsListObjectsPostRequestSubjectOneOf1 struct for PermissionsListObjectsPostRequestSubjectOneOf1.
PermissionsRevokePost200Response struct for PermissionsRevokePost200Response.
PermissionsRevokePost200ResponseDataInner struct for PermissionsRevokePost200ResponseDataInner.
PermissionsRevokePost200ResponseDataInnerAnyOf struct for PermissionsRevokePost200ResponseDataInnerAnyOf.
PermissionsRevokePost200ResponseDataInnerAnyOf1 struct for PermissionsRevokePost200ResponseDataInnerAnyOf1.
PermissionsRevokePost200ResponseDataInnerOneOf struct for PermissionsRevokePost200ResponseDataInnerOneOf.
PermissionsRevokePost200ResponseDataInnerOneOf1 struct for PermissionsRevokePost200ResponseDataInnerOneOf1.
PermissionsRevokePostRequest struct for PermissionsRevokePostRequest.
PostgresOptions struct for PostgresOptions.
PostgresOptionsDatabaseOptions struct for PostgresOptionsDatabaseOptions.
PostgresOptionsDatabaseOptionsAnyOf struct for PostgresOptionsDatabaseOptionsAnyOf.
PostgresOptionsDatabaseOptionsAnyOf1 struct for PostgresOptionsDatabaseOptionsAnyOf1.
PostgresOptionsDatabaseOptionsAnyOfSshTunnelOptions struct for PostgresOptionsDatabaseOptionsAnyOfSshTunnelOptions.
PostgresOptionsDatabaseOptionsAnyOfSslSettings struct for PostgresOptionsDatabaseOptionsAnyOfSslSettings.
RedshiftOptions struct for RedshiftOptions.
RedshiftOptionsDatabaseOptions struct for RedshiftOptionsDatabaseOptions.
RedshiftOptionsDatabaseOptionsSslSettings struct for RedshiftOptionsDatabaseOptionsSslSettings.
RemoveOperation struct for RemoveOperation.
ReplaceOperation struct for ReplaceOperation.
Resource Resource.
ResourceConfiguration Resource Configuration.
ResourceConfigurationsConfigurationIdGet200Response Resource Configuration.
ResourceConfigurationsGet200Response struct for ResourceConfigurationsGet200Response.
ResourceConfigurationsGet200ResponseDataInner A list of resource configurations.
ResourceConfigurationsGet200ResponseDataInnerEnvironment Environment.
ResourceConfigurationsGet200ResponseDataInnerOptions struct for ResourceConfigurationsGet200ResponseDataInnerOptions.
ResourcesGet200Response A paginated list of resources.
ResourcesGet200ResponseDataInner Resource.
ResourcesGet200ResponseDataInnerId The uuid for the resource.
ResourcesPost200Response struct for ResourcesPost200Response.
ResourcesPost200ResponseData The created resource.
ResourcesPostRequest struct for ResourcesPostRequest.
ResourcesPostRequestOptions struct for ResourcesPostRequestOptions.
ResourcesResourceIdGet200Response A single resource.
RestAPIOptions struct for RestAPIOptions.
RestAPIOptionsAuthenticationOptions Note that custom auth is not yet supported.
RestAPIOptionsAuthenticationOptionsAnyOf struct for RestAPIOptionsAuthenticationOptionsAnyOf.
RestAPIOptionsAuthenticationOptionsAnyOf1 struct for RestAPIOptionsAuthenticationOptionsAnyOf1.
RestAPIOptionsAuthenticationOptionsAnyOf2 struct for RestAPIOptionsAuthenticationOptionsAnyOf2.
RestAPIOptionsAuthenticationOptionsAnyOf3 struct for RestAPIOptionsAuthenticationOptionsAnyOf3.
RestAPIOptionsAuthenticationOptionsAnyOf4 struct for RestAPIOptionsAuthenticationOptionsAnyOf4.
RestAPIOptionsAuthenticationOptionsAnyOf4Oauth1SignatureMethod struct for RestAPIOptionsAuthenticationOptionsAnyOf4Oauth1SignatureMethod.
RestAPIOptionsAuthenticationOptionsAnyOf5 struct for RestAPIOptionsAuthenticationOptionsAnyOf5.
RestAPIOptionsAuthenticationOptionsAnyOf6 struct for RestAPIOptionsAuthenticationOptionsAnyOf6.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SnowflakeOptions struct for SnowflakeOptions.
SnowflakeOptionsAuthenticationOptions struct for SnowflakeOptionsAuthenticationOptions.
SnowflakeOptionsAuthenticationOptionsAnyOf struct for SnowflakeOptionsAuthenticationOptionsAnyOf.
SnowflakeOptionsAuthenticationOptionsAnyOf1 struct for SnowflakeOptionsAuthenticationOptionsAnyOf1.
SnowflakeOptionsAuthenticationOptionsAnyOf2 struct for SnowflakeOptionsAuthenticationOptionsAnyOf2.
SnowflakeOptionsDatabaseOptions struct for SnowflakeOptionsDatabaseOptions.
SourceControlConfigGet200Response struct for SourceControlConfigGet200Response.
SourceControlConfigGet200ResponseData - Source Control Provider Config.
SourceControlConfigGet200ResponseDataAnyOf struct for SourceControlConfigGet200ResponseDataAnyOf.
SourceControlConfigGet200ResponseDataAnyOf1 struct for SourceControlConfigGet200ResponseDataAnyOf1.
SourceControlConfigGet200ResponseDataAnyOf1Config struct for SourceControlConfigGet200ResponseDataAnyOf1Config.
SourceControlConfigGet200ResponseDataAnyOf2 struct for SourceControlConfigGet200ResponseDataAnyOf2.
SourceControlConfigGet200ResponseDataAnyOf2Config struct for SourceControlConfigGet200ResponseDataAnyOf2Config.
SourceControlConfigGet200ResponseDataAnyOf3 struct for SourceControlConfigGet200ResponseDataAnyOf3.
SourceControlConfigGet200ResponseDataAnyOf3Config struct for SourceControlConfigGet200ResponseDataAnyOf3Config.
SourceControlConfigGet200ResponseDataAnyOf4 struct for SourceControlConfigGet200ResponseDataAnyOf4.
SourceControlConfigGet200ResponseDataAnyOf4Config struct for SourceControlConfigGet200ResponseDataAnyOf4Config.
SourceControlConfigGet200ResponseDataAnyOfConfig struct for SourceControlConfigGet200ResponseDataAnyOfConfig.
SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf struct for SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf.
SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf1 struct for SourceControlConfigGet200ResponseDataAnyOfConfigAnyOf1.
SourceControlConfigGet200ResponseDataOneOf struct for SourceControlConfigGet200ResponseDataOneOf.
SourceControlConfigGet200ResponseDataOneOf1 struct for SourceControlConfigGet200ResponseDataOneOf1.
SourceControlConfigGet200ResponseDataOneOf1Config struct for SourceControlConfigGet200ResponseDataOneOf1Config.
SourceControlConfigGet200ResponseDataOneOf2 struct for SourceControlConfigGet200ResponseDataOneOf2.
SourceControlConfigGet200ResponseDataOneOf2Config struct for SourceControlConfigGet200ResponseDataOneOf2Config.
SourceControlConfigGet200ResponseDataOneOf3 struct for SourceControlConfigGet200ResponseDataOneOf3.
SourceControlConfigGet200ResponseDataOneOf3Config struct for SourceControlConfigGet200ResponseDataOneOf3Config.
SourceControlConfigGet200ResponseDataOneOf4 struct for SourceControlConfigGet200ResponseDataOneOf4.
SourceControlConfigGet200ResponseDataOneOf4Config struct for SourceControlConfigGet200ResponseDataOneOf4Config.
SourceControlConfigGet200ResponseDataOneOfConfig - struct for SourceControlConfigGet200ResponseDataOneOfConfig.
SourceControlConfigGet200ResponseDataOneOfConfigOneOf struct for SourceControlConfigGet200ResponseDataOneOfConfigOneOf.
SourceControlConfigGet200ResponseDataOneOfConfigOneOf1 struct for SourceControlConfigGet200ResponseDataOneOfConfigOneOf1.
SourceControlConfigPost200Response struct for SourceControlConfigPost200Response.
SourceControlConfigPost200ResponseData - Created Source Control Provider Config.
SourceControlConfigPut200Response struct for SourceControlConfigPut200Response.
SourceControlConfigPut200ResponseData - Created or updated Source Control Provider Config.
SourceControlConfigPutRequest Shape of Source Control provider config request.
SourceControlConfigPutRequestConfig - This object represents the Source Control provider configuration for the organization or space.
SourceControlConfigPutRequestConfigOneOf struct for SourceControlConfigPutRequestConfigOneOf.
SourceControlConfigPutRequestConfigOneOfConfig - struct for SourceControlConfigPutRequestConfigOneOfConfig.
SourceControlConfiguration This object represents the Source Control provider configuration for the organization or space.
SourceControlConfigurationAnyOf struct for SourceControlConfigurationAnyOf.
SourceControlConfigurationAnyOfConfig struct for SourceControlConfigurationAnyOfConfig.
SourceControlDeployPost200Response struct for SourceControlDeployPost200Response.
SourceControlDeployPost200ResponseData Source control deploy response.
SourceControlSettings struct for SourceControlSettings.
SourceControlSettingsGet200Response struct for SourceControlSettingsGet200Response.
SourceControlSettingsGet200ResponseData Source Control Settings.
SourceControlSettingsPut200Response struct for SourceControlSettingsPut200Response.
SourceControlSettingsPut200ResponseData Result of creating Source Control Settings.
SourceControlSettingsPutRequest Shape of Source Control Settings.
SourceControlSettingsPutRequestSettings struct for SourceControlSettingsPutRequestSettings.
SourceControlTestConnectionGet200Response struct for SourceControlTestConnectionGet200Response.
SourceControlTestConnectionGet200ResponseData Test connection response.
SourceControlTestConnectionGet200ResponseDataAnyOf struct for SourceControlTestConnectionGet200ResponseDataAnyOf.
SourceControlTestConnectionGet200ResponseDataAnyOf1 struct for SourceControlTestConnectionGet200ResponseDataAnyOf1.
SourceControlTestDeployPost200Response struct for SourceControlTestDeployPost200Response.
SourceControlTestDeployPost200ResponseData Source control test deploy response.
SourceControlTestDeployPost200ResponseDataAnyOf struct for SourceControlTestDeployPost200ResponseDataAnyOf.
SourceControlTestDeployPost200ResponseDataAnyOf1 struct for SourceControlTestDeployPost200ResponseDataAnyOf1.
SourceControlTestDeployPostRequest Parameters for running a deployment.
SourceControlTestDeployPostRequestDeployParams struct for SourceControlTestDeployPostRequestDeployParams.
Space This object represents a space.
SpacesCopyElementsPost201Response Elements copied successfully.
SpacesCopyElementsPost201ResponseData The copied elements.
SpacesCopyElementsPostRequest struct for SpacesCopyElementsPostRequest.
SpacesCopyElementsPostRequestResourceIdsInner The uuid for the resource.
SpacesGet200Response struct for SpacesGet200Response.
SpacesGet200ResponseDataInner List of spaces.
SpacesPost200Response struct for SpacesPost200Response.
SpacesPost200ResponseData The created space.
SpacesPostRequest struct for SpacesPostRequest.
SpacesPostRequestOptions struct for SpacesPostRequestOptions.
SpacesSpaceIdGet200Response struct for SpacesSpaceIdGet200Response.
SpacesSpaceIdGet200ResponseData The requested space.
SpacesSpaceIdPut200Response struct for SpacesSpaceIdPut200Response.
SpacesSpaceIdPut200ResponseData Updated space.
SpacesSpaceIdPutRequest struct for SpacesSpaceIdPutRequest.
SSOConfig struct for SSOConfig.
SsoConfigGet200Response struct for SsoConfigGet200Response.
SsoConfigGet200ResponseData - SSO configuration.
SsoConfigPost200Response struct for SsoConfigPost200Response.
SsoConfigPost200ResponseData - Result of setting SSO configuration.
SsoConfigPostRequest Shape of SSO config.
SsoConfigPostRequestData - This object represents the SSO configuration for an organization or space.
SsoConfigPostRequestDataOneOf struct for SsoConfigPostRequestDataOneOf.
SsoConfigPostRequestDataOneOf1 struct for SsoConfigPostRequestDataOneOf1.
SsoConfigPostRequestDataOneOf2 struct for SsoConfigPostRequestDataOneOf2.
SsoConfigPostRequestDataOneOf3 struct for SsoConfigPostRequestDataOneOf3.
SsoConfigPostRequestDataOneOf4 struct for SsoConfigPostRequestDataOneOf4.
SsoConfiguration - This object represents the SSO configuration for an organization or space.
Usage struct for Usage.
UsageAppDetailsGet200Response The details about the app usage, such as edits and views, for the organizations.
UsageAppDetailsGet200ResponseData struct for UsageAppDetailsGet200ResponseData.
UsageAppDetailsGet200ResponseDataOverallSummaryInner struct for UsageAppDetailsGet200ResponseDataOverallSummaryInner.
UsageAppDetailsGet200ResponseDataViewerSummaryInner struct for UsageAppDetailsGet200ResponseDataViewerSummaryInner.
UsageAppDetailsGet200ResponseDataWeeklySummaryInner struct for UsageAppDetailsGet200ResponseDataWeeklySummaryInner.
UsageAppDetailsGet200ResponseDataWeeklySummaryInnerWeeklyDataInner struct for UsageAppDetailsGet200ResponseDataWeeklySummaryInnerWeeklyDataInner.
UsageAppSummaryGet200Response The app summaries for the organizations.
UsageAppSummaryGet200ResponseDataInner struct for UsageAppSummaryGet200ResponseDataInner.
UsageGet200Response The usage information for the organizations.
UsageGet200ResponseData struct for UsageGet200ResponseData.
UsageGet200ResponseDataDailyT30UsageInner struct for UsageGet200ResponseDataDailyT30UsageInner.
UsageOrganizationsGet200Response A list of organizations in this deployment.
UsageOrganizationsGet200ResponseDataInner An organization in Retool.
UsageUserDetailsGet200Response The details about the users usage, such as edits and views on apps, for the organizations.
UsageUserDetailsGet200ResponseData struct for UsageUserDetailsGet200ResponseData.
UsageUserDetailsGet200ResponseDataOverallSummaryInner struct for UsageUserDetailsGet200ResponseDataOverallSummaryInner.
UsageUserDetailsGet200ResponseDataViewerSummaryInner struct for UsageUserDetailsGet200ResponseDataViewerSummaryInner.
UsageUserSummaryGet200Response The user summaries for the organizations.
UsageUserSummaryGet200ResponseDataInner struct for UsageUserSummaryGet200ResponseDataInner.
User This object represents a user.
UserAttributes This object represents user attributes.
UserAttributesGet200Response A list of user attributes.
UserAttributesGet200ResponseDataInner This object represents user attributes.
UserInvite User Invite.
UserInvitesGet200Response A list of user invites.
UserInvitesPost200Response struct for UserInvitesPost200Response.
UserInvitesPost200ResponseData The created user invite with an invite link.
UserInvitesPostRequest Body of request to create a user invite.
UserInvitesUserInviteIdGet200Response A single user invite.
UserInvitesUserInviteIdUserAttributesAttributeNameDelete200Response struct for UserInvitesUserInviteIdUserAttributesAttributeNameDelete200Response.
UserInvitesUserInviteIdUserAttributesAttributeNameDelete200ResponseData struct for UserInvitesUserInviteIdUserAttributesAttributeNameDelete200ResponseData.
UserInvitesUserInviteIdUserAttributesPost200Response struct for UserInvitesUserInviteIdUserAttributesPost200Response.
UserInvitesUserInviteIdUserAttributesPost200ResponseData struct for UserInvitesUserInviteIdUserAttributesPost200ResponseData.
UserInvitesUserInviteIdUserAttributesPostRequest The body of a request to add a user attribute or update an existing user attribute on a user invite.
UsersGet200Response A paginated list of users.
UsersPost200Response struct for UsersPost200Response.
UsersPost200ResponseData The created user.
UsersPostRequest Body of request to create a user.
UsersUserIdGet200Response A single user.
UsersUserIdGet200ResponseData This object represents a user.
UsersUserIdPatchRequest The body of a request to update a user.
UsersUserIdPatchRequestOperationsInner struct for UsersUserIdPatchRequestOperationsInner.
UsersUserIdPatchRequestOperationsInnerAnyOf struct for UsersUserIdPatchRequestOperationsInnerAnyOf.
UsersUserIdPatchRequestOperationsInnerAnyOf1 struct for UsersUserIdPatchRequestOperationsInnerAnyOf1.
UsersUserIdPatchRequestOperationsInnerAnyOf2 struct for UsersUserIdPatchRequestOperationsInnerAnyOf2.
UsersUserIdUserAttributesAttributeNameDelete200Response struct for UsersUserIdUserAttributesAttributeNameDelete200Response.
UsersUserIdUserAttributesAttributeNameDelete200ResponseData struct for UsersUserIdUserAttributesAttributeNameDelete200ResponseData.
UsersUserIdUserAttributesPost200Response struct for UsersUserIdUserAttributesPost200Response.
UsersUserIdUserAttributesPost200ResponseData struct for UsersUserIdUserAttributesPost200ResponseData.
UsersUserIdUserAttributesPostRequest The body of a request to add a user attribute to a user or update an existing user attribute.

# Interfaces

No description provided by the author

# Type aliases

AccessRequestAPIService AccessRequestAPI service.
AppsAPIService AppsAPI service.
AppThemesAPIService AppThemesAPI service.
ConfigurationVariablesAPIService ConfigurationVariablesAPI service.
CustomComponentLibraryAPIService CustomComponentLibraryAPI service.
EnvironmentAPIService EnvironmentAPI service.
FoldersAPIService FoldersAPI service.
GroupsAPIService GroupsAPI service.
ObservabilityAPIService ObservabilityAPI service.
PermissionsAPIService PermissionsAPI service.
ResourceConfigurationsAPIService ResourceConfigurationsAPI service.
ResourcesAPIService ResourcesAPI service.
ServerConfigurations stores multiple ServerConfiguration items.
SourceControlAPIService SourceControlAPI service.
SpacesAPIService SpacesAPI service.
SSOAPIService SSOAPI service.
UsageAPIService UsageAPI service.
UserAttributesAPIService UserAttributesAPI service.
UserInviteAPIService UserInviteAPI service.
UsersAPIService UsersAPI service.