package
0.26.0
Repository: https://github.com/rockset/rockset-go-client.git
Documentation: pkg.go.dev

# README

Go API client for openapi

Rockset's REST API allows for creating and managing all resources in Rockset. Each supported endpoint is documented below.

All requests must be authorized with a Rockset API key, which can be created in the Rockset console. The API key must be provided as ApiKey <api_key> in the Authorization request header. For example:

Authorization: ApiKey aB35kDjg93J5nsf4GjwMeErAVd832F7ad4vhsW1S02kfZiab42sTsfW5Sxt25asT

All endpoints are only accessible via https.

Build something awesome!

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: v1
  • Package version: 0.25.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 openapi "github.com/rockset/rockset-go-client"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

Templated Server URL

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://api.use1a1.rockset.com

ClassMethodHTTP requestDescription
APIKeysApiCreateApiKeyPost /v1/orgs/self/users/self/apikeysCreate API Key
APIKeysApiDeleteApiKeyDelete /v1/orgs/self/users/{user}/apikeys/{name}Delete API Key
APIKeysApiGetApiKeyGet /v1/orgs/self/users/{user}/apikeys/{name}Retrieve API Key
APIKeysApiListApiKeysGet /v1/orgs/self/users/{user}/apikeysList API Keys
APIKeysApiUpdateApiKeyPost /v1/orgs/self/users/{user}/apikeys/{name}Update API Key State
AliasesApiCreateAliasPost /v1/orgs/self/ws/{workspace}/aliasesCreate Alias
AliasesApiDeleteAliasDelete /v1/orgs/self/ws/{workspace}/aliases/{alias}Delete Alias
AliasesApiGetAliasGet /v1/orgs/self/ws/{workspace}/aliases/{alias}Retrieve Alias
AliasesApiListAliasesGet /v1/orgs/self/aliasesList Aliases
AliasesApiUpdateAliasPost /v1/orgs/self/ws/{workspace}/aliases/{alias}Update Alias
AliasesApiWorkspaceAliasesGet /v1/orgs/self/ws/{workspace}/aliasesList Aliases in Workspace
CollectionsApiCreateCollectionPost /v1/orgs/self/ws/{workspace}/collectionsCreate Collection
CollectionsApiDeleteCollectionDelete /v1/orgs/self/ws/{workspace}/collections/{collection}Delete Collection
CollectionsApiGetCollectionGet /v1/orgs/self/ws/{workspace}/collections/{collection}Retrieve Collection
CollectionsApiGetCollectionOffsetsPost /v1/orgs/self/ws/{workspace}/collections/{collection}/offsets/commitGet Collection Commit
CollectionsApiListCollectionsGet /v1/orgs/self/collectionsList Collections
CollectionsApiUpdateCollectionPut /v1/orgs/self/ws/{workspace}/collections/{collection}Update Collection
CollectionsApiWorkspaceCollectionsGet /v1/orgs/self/ws/{workspace}/collectionsList Collections in Workspace
CustomRolesApiCreateRolePost /v1/orgs/self/rolesCreate a Role
CustomRolesApiDeleteRoleDelete /v1/orgs/self/roles/{roleName}Delete a Role
CustomRolesApiGetRoleGet /v1/orgs/self/roles/{roleName}Retrieve role
CustomRolesApiListRolesGet /v1/orgs/self/rolesList Roles
CustomRolesApiUpdateRolePost /v1/orgs/self/roles/{roleName}Update a Role
DeploymentSettingsApiGetDeploymentSettingsGet /v1/orgs/self/deploymentsettingsRetrieve Deployment Settings
DeploymentSettingsApiUpdateDeploymentSettingsPut /v1/orgs/self/deploymentsettingsUpdate Deployment Settings
DocumentsApiAddDocumentsPost /v1/orgs/self/ws/{workspace}/collections/{collection}/docsAdd Documents
DocumentsApiDeleteDocumentsDelete /v1/orgs/self/ws/{workspace}/collections/{collection}/docsDelete Documents
DocumentsApiPatchDocumentsPatch /v1/orgs/self/ws/{workspace}/collections/{collection}/docsPatch Documents
IntegrationsApiCreateIntegrationPost /v1/orgs/self/integrationsCreate Integration
IntegrationsApiDeleteIntegrationDelete /v1/orgs/self/integrations/{integration}Delete Integration
IntegrationsApiGetIntegrationGet /v1/orgs/self/integrations/{integration}Retrieve Integration
IntegrationsApiListIntegrationsGet /v1/orgs/self/integrationsList Integrations
IntegrationsApiUpdateIntegrationPut /v1/orgs/self/integrations/{integration}Update Integration
OrganizationsApiGetOrganizationGet /v1/orgs/selfGet Organization
QueriesApiCancelQueryDelete /v1/orgs/self/queries/{queryId}Cancel Query
QueriesApiGetQueryGet /v1/orgs/self/queries/{queryId}Retrieve Query
QueriesApiGetQueryResultsGet /v1/orgs/self/queries/{queryId}/pagesRetrieve Query Results Page
QueriesApiListActiveQueriesGet /v1/orgs/self/queriesList Queries
QueriesApiQueryPost /v1/orgs/self/queriesExecute SQL Query
QueriesApiValidatePost /v1/orgs/self/queries/validationsValidate Query
QueryLambdasApiCreateQueryLambdaPost /v1/orgs/self/ws/{workspace}/lambdasCreate Query Lambda
QueryLambdasApiCreateQueryLambdaTagPost /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}/tagsCreate Query Lambda Tag
QueryLambdasApiDeleteQueryLambdaDelete /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}Delete Query Lambda
QueryLambdasApiDeleteQueryLambdaTagDelete /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}/tags/{tag}Delete Query Lambda Tag Version
QueryLambdasApiDeleteQueryLambdaVersionDelete /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}/version/{version}Delete Query Lambda Version
QueryLambdasApiExecuteQueryLambdaPost /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}/versions/{version}Execute Query Lambda By Version
QueryLambdasApiExecuteQueryLambdaByTagPost /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}/tags/{tag}Execute Query Lambda By Tag
QueryLambdasApiGetQueryLambdaTagVersionGet /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}/tags/{tag}Retrieve Query Lambda Tag
QueryLambdasApiGetQueryLambdaVersionGet /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}/versions/{version}Retrieve Query Lambda Version
QueryLambdasApiListAllQueryLambdasGet /v1/orgs/self/lambdasList Query Lambdas
QueryLambdasApiListQueryLambdaTagsGet /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}/tagsList Query Lambda Tags
QueryLambdasApiListQueryLambdaVersionsGet /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}/versionsList Query Lambda Versions
QueryLambdasApiListQueryLambdasInWorkspaceGet /v1/orgs/self/ws/{workspace}/lambdasList Query Lambdas in Workspace
QueryLambdasApiUpdateQueryLambdaPost /v1/orgs/self/ws/{workspace}/lambdas/{queryLambda}/versionsUpdate Query Lambda
ScheduledLambdasApiCreateScheduledLambdaPost /v1/orgs/self/ws/{workspace}/scheduled_lambdasCreate a Scheduled Lambda mapping
ScheduledLambdasApiDeleteScheduledLambdaDelete /v1/orgs/self/ws/{workspace}/scheduled_lambdas/{scheduledLambdaId}Delete a Scheduled Lambda mapping
ScheduledLambdasApiGetScheduledLambdaGet /v1/orgs/self/ws/{workspace}/scheduled_lambdas/{scheduledLambdaId}Retrieve a Scheduled Lambda mapping
ScheduledLambdasApiUpdateScheduledLambdaPost /v1/orgs/self/ws/{workspace}/scheduled_lambdas/{scheduledLambdaId}Update a Scheduled Lambda mapping
SharedLambdasApiExecutePublicQueryLambdaWithParamsPost /v1/public/shared_lambdas/{public_access_id}Execute a Public Query Lambda
SourcesApiCreateSourcePost /v1/orgs/self/ws/{workspace}/collections/{collection}/sourcesCreate a source
SourcesApiDeleteSourceDelete /v1/orgs/self/ws/{workspace}/collections/{collection}/sources/{source}Delete Collection source
SourcesApiGetSourceGet /v1/orgs/self/ws/{workspace}/collections/{collection}/sources/{source}Retrieve source
SourcesApiListCollectionSourcesGet /v1/orgs/self/ws/{workspace}/collections/{collection}/sourcesList sources in collection
SourcesApiResumeSourcePost /v1/orgs/self/ws/{workspace}/collections/{collection}/sources/{source}/resumeResume source ingest
SourcesApiSuspendSourcePost /v1/orgs/self/ws/{workspace}/collections/{collection}/sources/{source}/suspendSuspend source ingest
SourcesApiUpdateSourcePut /v1/orgs/self/ws/{workspace}/collections/{collection}/sources/{source}Update a collection source
UsersApiCreateUserPost /v1/orgs/self/usersCreate User
UsersApiDeleteUserDelete /v1/orgs/self/users/{user}Delete User
UsersApiGetCurrentUserGet /v1/orgs/self/users/selfRetrieve Current User
UsersApiGetUserGet /v1/orgs/self/users/{user}Retrieve User
UsersApiListUnsubscribePreferencesGet /v1/orgs/self/users/self/preferencesRetrieve Notification Preferences
UsersApiListUsersGet /v1/orgs/self/usersList Users
UsersApiUpdateUnsubscribePreferencesPost /v1/orgs/self/users/self/preferencesUpdate Notification Preferences
UsersApiUpdateUserPost /v1/orgs/self/users/{user}Update User
ViewsApiCreateViewPost /v1/orgs/self/ws/{workspace}/viewsCreate View
ViewsApiDeleteViewDelete /v1/orgs/self/ws/{workspace}/views/{view}Delete View
ViewsApiGetViewGet /v1/orgs/self/ws/{workspace}/views/{view}Retrieve View
ViewsApiListViewsGet /v1/orgs/self/viewsList Views
ViewsApiUpdateViewPost /v1/orgs/self/ws/{workspace}/views/{view}Update View
ViewsApiWorkspaceViewsGet /v1/orgs/self/ws/{workspace}/viewsList Views in Workspace
VirtualInstancesApiCreateVirtualInstancePost /v1/orgs/self/virtualinstancesCreate Virtual Instance
VirtualInstancesApiDeleteVirtualInstanceDelete /v1/orgs/self/virtualinstances/{virtualInstanceId}Delete Virtual Instance
VirtualInstancesApiGetCollectionMountGet /v1/orgs/self/virtualinstances/{virtualInstanceId}/mounts/{collectionPath}Get Collection Mount
VirtualInstancesApiGetMountOffsetsPost /v1/orgs/self/virtualinstances/{virtualInstanceId}/mounts/{collectionPath}/offsets/commitGet Collection Commit
VirtualInstancesApiGetVirtualInstanceGet /v1/orgs/self/virtualinstances/{virtualInstanceId}Retrieve Virtual Instance
VirtualInstancesApiGetVirtualInstanceQueriesGet /v1/orgs/self/virtualinstances/{virtualInstanceId}/queriesList Queries
VirtualInstancesApiListCollectionMountsGet /v1/orgs/self/virtualinstances/{virtualInstanceId}/mountsList Collection Mounts
VirtualInstancesApiListVirtualInstancesGet /v1/orgs/self/virtualinstancesList Virtual Instances
VirtualInstancesApiMountCollectionPost /v1/orgs/self/virtualinstances/{virtualInstanceId}/mountsMount Collections
VirtualInstancesApiQueryVirtualInstancePost /v1/orgs/self/virtualinstances/{virtualInstanceId}/queriesExecute SQL Query on a specific Virtual Instance
VirtualInstancesApiResumeVirtualInstancePost /v1/orgs/self/virtualinstances/{virtualInstanceId}/resumeResume Virtual Instance
VirtualInstancesApiSetVirtualInstancePost /v1/orgs/self/virtualinstances/{virtualInstanceId}Update Virtual Instance
VirtualInstancesApiSuspendVirtualInstancePost /v1/orgs/self/virtualinstances/{virtualInstanceId}/suspendSuspend Virtual Instance
VirtualInstancesApiUnmountCollectionDelete /v1/orgs/self/virtualinstances/{virtualInstanceId}/mounts/{collectionPath}Unmount Collection
WorkspacesApiCreateWorkspacePost /v1/orgs/self/wsCreate Workspace
WorkspacesApiDeleteWorkspaceDelete /v1/orgs/self/ws/{workspace}Delete Workspace
WorkspacesApiGetWorkspaceGet /v1/orgs/self/ws/{workspace}Retrieve Workspace
WorkspacesApiListWorkspacesGet /v1/orgs/self/wsList Workspaces

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

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.
NewAddDocumentsRequest instantiates a new AddDocumentsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddDocumentsRequestWithDefaults instantiates a new AddDocumentsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddDocumentsResponse instantiates a new AddDocumentsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddDocumentsResponseWithDefaults instantiates a new AddDocumentsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlias instantiates a new Alias object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAliasWithDefaults instantiates a new Alias object This 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.
NewApiKey instantiates a new ApiKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApiKeyWithDefaults instantiates a new ApiKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewAsyncQueryOptions instantiates a new AsyncQueryOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAsyncQueryOptionsWithDefaults instantiates a new AsyncQueryOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAutoScalingPolicy instantiates a new AutoScalingPolicy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAutoScalingPolicyWithDefaults instantiates a new AutoScalingPolicy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAwsAccessKey instantiates a new AwsAccessKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAwsAccessKeyWithDefaults instantiates a new AwsAccessKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAwsRole instantiates a new AwsRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAwsRoleWithDefaults instantiates a new AwsRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureBlobStorageIntegration instantiates a new AzureBlobStorageIntegration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureBlobStorageIntegrationWithDefaults instantiates a new AzureBlobStorageIntegration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureEventHubsIntegration instantiates a new AzureEventHubsIntegration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureEventHubsIntegrationWithDefaults instantiates a new AzureEventHubsIntegration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureServiceBusIntegration instantiates a new AzureServiceBusIntegration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureServiceBusIntegrationWithDefaults instantiates a new AzureServiceBusIntegration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBulkStats instantiates a new BulkStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBulkStatsWithDefaults instantiates a new BulkStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCancelQueryResponse instantiates a new CancelQueryResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCancelQueryResponseWithDefaults instantiates a new CancelQueryResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCluster instantiates a new Cluster object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClusterWithDefaults instantiates a new Cluster object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCollection instantiates a new Collection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCollectionMount instantiates a new CollectionMount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCollectionMountResponse instantiates a new CollectionMountResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCollectionMountResponseWithDefaults instantiates a new CollectionMountResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCollectionMountStats instantiates a new CollectionMountStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCollectionMountStatsWithDefaults instantiates a new CollectionMountStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCollectionMountWithDefaults instantiates a new CollectionMount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCollectionStats instantiates a new CollectionStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCollectionStatsWithDefaults instantiates a new CollectionStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCollectionWithDefaults instantiates a new Collection object This 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.
NewCreateAliasRequest instantiates a new CreateAliasRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAliasRequestWithDefaults instantiates a new CreateAliasRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAliasResponse instantiates a new CreateAliasResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAliasResponseWithDefaults instantiates a new CreateAliasResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateApiKeyRequest instantiates a new CreateApiKeyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateApiKeyRequestWithDefaults instantiates a new CreateApiKeyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateApiKeyResponse instantiates a new CreateApiKeyResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateApiKeyResponseWithDefaults instantiates a new CreateApiKeyResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCollectionMountRequest instantiates a new CreateCollectionMountRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCollectionMountRequestWithDefaults instantiates a new CreateCollectionMountRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCollectionMountsResponse instantiates a new CreateCollectionMountsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCollectionMountsResponseWithDefaults instantiates a new CreateCollectionMountsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCollectionRequest instantiates a new CreateCollectionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCollectionRequestWithDefaults instantiates a new CreateCollectionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCollectionResponse instantiates a new CreateCollectionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCollectionResponseWithDefaults instantiates a new CreateCollectionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateIntegrationRequest instantiates a new CreateIntegrationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateIntegrationRequestWithDefaults instantiates a new CreateIntegrationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateIntegrationResponse instantiates a new CreateIntegrationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateIntegrationResponseWithDefaults instantiates a new CreateIntegrationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateQueryLambdaRequest instantiates a new CreateQueryLambdaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateQueryLambdaRequestWithDefaults instantiates a new CreateQueryLambdaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateQueryLambdaTagRequest instantiates a new CreateQueryLambdaTagRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateQueryLambdaTagRequestWithDefaults instantiates a new CreateQueryLambdaTagRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateRoleRequest instantiates a new CreateRoleRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateRoleRequestWithDefaults instantiates a new CreateRoleRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateScheduledLambdaRequest instantiates a new CreateScheduledLambdaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateScheduledLambdaRequestWithDefaults instantiates a new CreateScheduledLambdaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateUserRequest instantiates a new CreateUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateUserRequestWithDefaults instantiates a new CreateUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateUserResponse instantiates a new CreateUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateUserResponseWithDefaults instantiates a new CreateUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateViewRequest instantiates a new CreateViewRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateViewRequestWithDefaults instantiates a new CreateViewRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateViewResponse instantiates a new CreateViewResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateViewResponseWithDefaults instantiates a new CreateViewResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateVirtualInstanceRequest instantiates a new CreateVirtualInstanceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateVirtualInstanceRequestWithDefaults instantiates a new CreateVirtualInstanceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateVirtualInstanceResponse instantiates a new CreateVirtualInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateVirtualInstanceResponseWithDefaults instantiates a new CreateVirtualInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateWorkspaceRequest instantiates a new CreateWorkspaceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateWorkspaceRequestWithDefaults instantiates a new CreateWorkspaceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateWorkspaceResponse instantiates a new CreateWorkspaceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateWorkspaceResponseWithDefaults instantiates a new CreateWorkspaceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCsvParams instantiates a new CsvParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCsvParamsWithDefaults instantiates a new CsvParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAliasResponse instantiates a new DeleteAliasResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAliasResponseWithDefaults instantiates a new DeleteAliasResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteApiKeyResponse instantiates a new DeleteApiKeyResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteApiKeyResponseWithDefaults instantiates a new DeleteApiKeyResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteCollectionResponse instantiates a new DeleteCollectionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteCollectionResponseWithDefaults instantiates a new DeleteCollectionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteDocumentsRequest instantiates a new DeleteDocumentsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteDocumentsRequestData instantiates a new DeleteDocumentsRequestData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteDocumentsRequestDataWithDefaults instantiates a new DeleteDocumentsRequestData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteDocumentsRequestWithDefaults instantiates a new DeleteDocumentsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteDocumentsResponse instantiates a new DeleteDocumentsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteDocumentsResponseWithDefaults instantiates a new DeleteDocumentsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteIntegrationResponse instantiates a new DeleteIntegrationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteIntegrationResponseWithDefaults instantiates a new DeleteIntegrationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteQueryLambdaResponse instantiates a new DeleteQueryLambdaResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteQueryLambdaResponseWithDefaults instantiates a new DeleteQueryLambdaResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteSourceResponse instantiates a new DeleteSourceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteSourceResponseWithDefaults instantiates a new DeleteSourceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteUserResponse instantiates a new DeleteUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteUserResponseWithDefaults instantiates a new DeleteUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteViewResponse instantiates a new DeleteViewResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteViewResponseWithDefaults instantiates a new DeleteViewResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteVirtualInstanceResponse instantiates a new DeleteVirtualInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteVirtualInstanceResponseWithDefaults instantiates a new DeleteVirtualInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteWorkspaceResponse instantiates a new DeleteWorkspaceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteWorkspaceResponseWithDefaults instantiates a new DeleteWorkspaceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentSettings instantiates a new DeploymentSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentSettingsResponse instantiates a new DeploymentSettingsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentSettingsResponseWithDefaults instantiates a new DeploymentSettingsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentSettingsWithDefaults instantiates a new DeploymentSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDocumentStatus instantiates a new DocumentStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDocumentStatusWithDefaults instantiates a new DocumentStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDynamodbIntegration instantiates a new DynamodbIntegration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDynamodbIntegrationWithDefaults instantiates a new DynamodbIntegration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewErrorModel instantiates a new ErrorModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewErrorModelWithDefaults instantiates a new ErrorModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventTimeInfo instantiates a new EventTimeInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventTimeInfoWithDefaults instantiates a new EventTimeInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecutePublicQueryLambdaRequest instantiates a new ExecutePublicQueryLambdaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecutePublicQueryLambdaRequestWithDefaults instantiates a new ExecutePublicQueryLambdaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteQueryLambdaRequest instantiates a new ExecuteQueryLambdaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteQueryLambdaRequestWithDefaults instantiates a new ExecuteQueryLambdaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecutionStatus instantiates a new ExecutionStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecutionStatusWithDefaults instantiates a new ExecutionStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFieldMappingQuery instantiates a new FieldMappingQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFieldMappingQueryWithDefaults instantiates a new FieldMappingQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFieldMappingV2 instantiates a new FieldMappingV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFieldMappingV2WithDefaults instantiates a new FieldMappingV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFieldPartition instantiates a new FieldPartition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFieldPartitionWithDefaults instantiates a new FieldPartition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFormatParams instantiates a new FormatParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFormatParamsWithDefaults instantiates a new FormatParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGcpServiceAccount instantiates a new GcpServiceAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGcpServiceAccountWithDefaults instantiates a new GcpServiceAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGcsIntegration instantiates a new GcsIntegration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGcsIntegrationWithDefaults instantiates a new GcsIntegration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAliasResponse instantiates a new GetAliasResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAliasResponseWithDefaults instantiates a new GetAliasResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetApiKeyResponse instantiates a new GetApiKeyResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetApiKeyResponseWithDefaults instantiates a new GetApiKeyResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetCollectionCommit instantiates a new GetCollectionCommit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetCollectionCommitData instantiates a new GetCollectionCommitData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetCollectionCommitDataWithDefaults instantiates a new GetCollectionCommitData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetCollectionCommitRequest instantiates a new GetCollectionCommitRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetCollectionCommitRequestWithDefaults instantiates a new GetCollectionCommitRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetCollectionCommitWithDefaults instantiates a new GetCollectionCommit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetCollectionResponse instantiates a new GetCollectionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetCollectionResponseWithDefaults instantiates a new GetCollectionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetIntegrationResponse instantiates a new GetIntegrationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetIntegrationResponseWithDefaults instantiates a new GetIntegrationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetQueryResponse instantiates a new GetQueryResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetQueryResponseWithDefaults instantiates a new GetQueryResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetSourceResponse instantiates a new GetSourceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetSourceResponseWithDefaults instantiates a new GetSourceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetViewResponse instantiates a new GetViewResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetViewResponseWithDefaults instantiates a new GetViewResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetVirtualInstanceResponse instantiates a new GetVirtualInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetVirtualInstanceResponseWithDefaults instantiates a new GetVirtualInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWorkspaceResponse instantiates a new GetWorkspaceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWorkspaceResponseWithDefaults instantiates a new GetWorkspaceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInputField instantiates a new InputField object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInputFieldWithDefaults instantiates a new InputField object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIntegration instantiates a new Integration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIntegrationWithDefaults instantiates a new Integration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKafkaIntegration instantiates a new KafkaIntegration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKafkaIntegrationWithDefaults instantiates a new KafkaIntegration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKafkaV3SecurityConfig instantiates a new KafkaV3SecurityConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKafkaV3SecurityConfigWithDefaults instantiates a new KafkaV3SecurityConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKinesisIntegration instantiates a new KinesisIntegration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKinesisIntegrationWithDefaults instantiates a new KinesisIntegration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAliasesResponse instantiates a new ListAliasesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAliasesResponseWithDefaults instantiates a new ListAliasesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListApiKeysResponse instantiates a new ListApiKeysResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListApiKeysResponseWithDefaults instantiates a new ListApiKeysResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListCollectionMountsResponse instantiates a new ListCollectionMountsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListCollectionMountsResponseWithDefaults instantiates a new ListCollectionMountsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListCollectionsResponse instantiates a new ListCollectionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListCollectionsResponseWithDefaults instantiates a new ListCollectionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListIntegrationsResponse instantiates a new ListIntegrationsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListIntegrationsResponseWithDefaults instantiates a new ListIntegrationsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListQueriesResponse instantiates a new ListQueriesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListQueriesResponseWithDefaults instantiates a new ListQueriesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListQueryLambdasResponse instantiates a new ListQueryLambdasResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListQueryLambdasResponseWithDefaults instantiates a new ListQueryLambdasResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListQueryLambdaTagsResponse instantiates a new ListQueryLambdaTagsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListQueryLambdaTagsResponseWithDefaults instantiates a new ListQueryLambdaTagsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListQueryLambdaVersionsResponse instantiates a new ListQueryLambdaVersionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListQueryLambdaVersionsResponseWithDefaults instantiates a new ListQueryLambdaVersionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListRolesResponse instantiates a new ListRolesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListRolesResponseWithDefaults instantiates a new ListRolesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSourcesResponse instantiates a new ListSourcesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSourcesResponseWithDefaults instantiates a new ListSourcesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnsubscribePreferencesResponse instantiates a new ListUnsubscribePreferencesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnsubscribePreferencesResponseWithDefaults instantiates a new ListUnsubscribePreferencesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUsersResponse instantiates a new ListUsersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUsersResponseWithDefaults instantiates a new ListUsersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListViewsResponse instantiates a new ListViewsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListViewsResponseWithDefaults instantiates a new ListViewsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListVirtualInstancesResponse instantiates a new ListVirtualInstancesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListVirtualInstancesResponseWithDefaults instantiates a new ListVirtualInstancesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWorkspacesResponse instantiates a new ListWorkspacesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWorkspacesResponseWithDefaults instantiates a new ListWorkspacesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMongoDbIntegration instantiates a new MongoDbIntegration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMongoDbIntegrationWithDefaults instantiates a new MongoDbIntegration object This 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
NewOffsets instantiates a new Offsets object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOffsetsWithDefaults instantiates a new Offsets object This 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.
NewOrganizationResponse instantiates a new OrganizationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOrganizationResponseWithDefaults instantiates a new OrganizationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewOutputField instantiates a new OutputField object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOutputFieldWithDefaults instantiates a new OutputField object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPagination instantiates a new Pagination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginationInfo instantiates a new PaginationInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginationInfoWithDefaults instantiates a new PaginationInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginationWithDefaults instantiates a new Pagination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchDocument instantiates a new PatchDocument object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchDocumentsRequest instantiates a new PatchDocumentsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchDocumentsRequestWithDefaults instantiates a new PatchDocumentsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchDocumentsResponse instantiates a new PatchDocumentsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchDocumentsResponseWithDefaults instantiates a new PatchDocumentsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchDocumentWithDefaults instantiates a new PatchDocument object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchOperation instantiates a new PatchOperation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchOperationWithDefaults instantiates a new PatchOperation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrivilege instantiates a new Privilege object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrivilegeWithDefaults instantiates a new Privilege object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryError instantiates a new QueryError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryErrorWithDefaults instantiates a new QueryError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryFieldType instantiates a new QueryFieldType object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryFieldTypeWithDefaults instantiates a new QueryFieldType object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryInfo instantiates a new QueryInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryInfoWithDefaults instantiates a new QueryInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryLambda instantiates a new QueryLambda object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryLambdaSql instantiates a new QueryLambdaSql object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryLambdaSqlWithDefaults instantiates a new QueryLambdaSql object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryLambdaStats instantiates a new QueryLambdaStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryLambdaStatsWithDefaults instantiates a new QueryLambdaStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryLambdaTag instantiates a new QueryLambdaTag object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryLambdaTagResponse instantiates a new QueryLambdaTagResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryLambdaTagResponseWithDefaults instantiates a new QueryLambdaTagResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryLambdaTagWithDefaults instantiates a new QueryLambdaTag object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryLambdaVersion instantiates a new QueryLambdaVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryLambdaVersionResponse instantiates a new QueryLambdaVersionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryLambdaVersionResponseWithDefaults instantiates a new QueryLambdaVersionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryLambdaVersionWithDefaults instantiates a new QueryLambdaVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryLambdaWithDefaults instantiates a new QueryLambda object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryPaginationResponse instantiates a new QueryPaginationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryPaginationResponseWithDefaults instantiates a new QueryPaginationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryParameter instantiates a new QueryParameter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryParameterWithDefaults instantiates a new QueryParameter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryRequest instantiates a new QueryRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryRequestSql instantiates a new QueryRequestSql object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryRequestSqlWithDefaults instantiates a new QueryRequestSql object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryRequestWithDefaults instantiates a new QueryRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryResponse instantiates a new QueryResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryResponseStats instantiates a new QueryResponseStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryResponseStatsWithDefaults instantiates a new QueryResponseStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryResponseWithDefaults instantiates a new QueryResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResumeVirtualInstanceResponse instantiates a new ResumeVirtualInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResumeVirtualInstanceResponseWithDefaults instantiates a new ResumeVirtualInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRole instantiates a new Role object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleResponse instantiates a new RoleResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleResponseWithDefaults instantiates a new RoleResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleWithDefaults instantiates a new Role object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewS3Integration instantiates a new S3Integration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewS3IntegrationWithDefaults instantiates a new S3Integration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScheduledLambda instantiates a new ScheduledLambda object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScheduledLambdaResponse instantiates a new ScheduledLambdaResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScheduledLambdaResponseWithDefaults instantiates a new ScheduledLambdaResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScheduledLambdaWithDefaults instantiates a new ScheduledLambda object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSchemaRegistryConfig instantiates a new SchemaRegistryConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSchemaRegistryConfigWithDefaults instantiates a new SchemaRegistryConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnowflakeIntegration instantiates a new SnowflakeIntegration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnowflakeIntegrationWithDefaults instantiates a new SnowflakeIntegration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSource instantiates a new Source object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceAzBlobStorageBase instantiates a new SourceAzBlobStorageBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceAzBlobStorageBaseWithDefaults instantiates a new SourceAzBlobStorageBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceAzBlobStorageSettings instantiates a new SourceAzBlobStorageSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceAzBlobStorageSettingsWithDefaults instantiates a new SourceAzBlobStorageSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceAzureBlobStorage instantiates a new SourceAzureBlobStorage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceAzureBlobStorageWithDefaults instantiates a new SourceAzureBlobStorage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceAzureEventHubs instantiates a new SourceAzureEventHubs object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceAzureEventHubsWithDefaults instantiates a new SourceAzureEventHubs object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceAzureServiceBus instantiates a new SourceAzureServiceBus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceAzureServiceBusWithDefaults instantiates a new SourceAzureServiceBus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceBase instantiates a new SourceBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceBaseWithDefaults instantiates a new SourceBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceDynamoDb instantiates a new SourceDynamoDb object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceDynamoDbBase instantiates a new SourceDynamoDbBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceDynamoDbBaseWithDefaults instantiates a new SourceDynamoDbBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceDynamoDbSettings instantiates a new SourceDynamoDbSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceDynamoDbSettingsWithDefaults instantiates a new SourceDynamoDbSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceDynamoDbWithDefaults instantiates a new SourceDynamoDb object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceFileUpload instantiates a new SourceFileUpload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceFileUploadWithDefaults instantiates a new SourceFileUpload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceGcs instantiates a new SourceGcs object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceGcsBase instantiates a new SourceGcsBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceGcsBaseWithDefaults instantiates a new SourceGcsBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceGcsSettings instantiates a new SourceGcsSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceGcsSettingsWithDefaults instantiates a new SourceGcsSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceGcsWithDefaults instantiates a new SourceGcs object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceKafka instantiates a new SourceKafka object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceKafkaWithDefaults instantiates a new SourceKafka object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceKinesis instantiates a new SourceKinesis object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceKinesisWithDefaults instantiates a new SourceKinesis object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceMongoDb instantiates a new SourceMongoDb object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceMongoDbWithDefaults instantiates a new SourceMongoDb object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceS3 instantiates a new SourceS3 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceS3Base instantiates a new SourceS3Base object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceS3BaseWithDefaults instantiates a new SourceS3Base object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceS3Settings instantiates a new SourceS3Settings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceS3SettingsWithDefaults instantiates a new SourceS3Settings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceS3WithDefaults instantiates a new SourceS3 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceSnapshot instantiates a new SourceSnapshot object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceSnapshotWithDefaults instantiates a new SourceSnapshot object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceSnowflake instantiates a new SourceSnowflake object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceSnowflakeWithDefaults instantiates a new SourceSnowflake object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceSystem instantiates a new SourceSystem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceSystemWithDefaults instantiates a new SourceSystem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceWithDefaults instantiates a new Source object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSqlExpression instantiates a new SqlExpression object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSqlExpressionWithDefaults instantiates a new SqlExpression object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStats instantiates a new Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatsWithDefaults instantiates a new Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatus instantiates a new Status object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusAzureEventHubs instantiates a new StatusAzureEventHubs object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusAzureEventHubsPartition instantiates a new StatusAzureEventHubsPartition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusAzureEventHubsPartitionWithDefaults instantiates a new StatusAzureEventHubsPartition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusAzureEventHubsWithDefaults instantiates a new StatusAzureEventHubs object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusAzureServiceBus instantiates a new StatusAzureServiceBus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusAzureServiceBusSession instantiates a new StatusAzureServiceBusSession object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusAzureServiceBusSessionWithDefaults instantiates a new StatusAzureServiceBusSession object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusAzureServiceBusWithDefaults instantiates a new StatusAzureServiceBus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusDynamoDb instantiates a new StatusDynamoDb object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusDynamoDbV2 instantiates a new StatusDynamoDbV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusDynamoDbV2WithDefaults instantiates a new StatusDynamoDbV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusDynamoDbWithDefaults instantiates a new StatusDynamoDb object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusKafka instantiates a new StatusKafka object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusKafkaPartition instantiates a new StatusKafkaPartition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusKafkaPartitionWithDefaults instantiates a new StatusKafkaPartition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusKafkaWithDefaults instantiates a new StatusKafka object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusMongoDb instantiates a new StatusMongoDb object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusMongoDbWithDefaults instantiates a new StatusMongoDb object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusSnowflake instantiates a new StatusSnowflake object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusSnowflakeWithDefaults instantiates a new StatusSnowflake object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusWithDefaults instantiates a new Status object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSuspendSourceRequest instantiates a new SuspendSourceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSuspendSourceRequestWithDefaults instantiates a new SuspendSourceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSuspendVirtualInstanceResponse instantiates a new SuspendVirtualInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSuspendVirtualInstanceResponseWithDefaults instantiates a new SuspendVirtualInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTLSConfig instantiates a new TLSConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTLSConfigWithDefaults instantiates a new TLSConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnsubscribePreference instantiates a new UnsubscribePreference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnsubscribePreferenceWithDefaults instantiates a new UnsubscribePreference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAliasRequest instantiates a new UpdateAliasRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAliasRequestWithDefaults instantiates a new UpdateAliasRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateApiKeyRequest instantiates a new UpdateApiKeyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateApiKeyRequestWithDefaults instantiates a new UpdateApiKeyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateApiKeyResponse instantiates a new UpdateApiKeyResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateApiKeyResponseWithDefaults instantiates a new UpdateApiKeyResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateCollectionRequest instantiates a new UpdateCollectionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateCollectionRequestWithDefaults instantiates a new UpdateCollectionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateDeploymentSettingsRequest instantiates a new UpdateDeploymentSettingsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateDeploymentSettingsRequestWithDefaults instantiates a new UpdateDeploymentSettingsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateIntegrationRequest instantiates a new UpdateIntegrationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateIntegrationRequestWithDefaults instantiates a new UpdateIntegrationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateIntegrationResponse instantiates a new UpdateIntegrationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateIntegrationResponseWithDefaults instantiates a new UpdateIntegrationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateQueryLambdaRequest instantiates a new UpdateQueryLambdaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateQueryLambdaRequestWithDefaults instantiates a new UpdateQueryLambdaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRoleRequest instantiates a new UpdateRoleRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRoleRequestWithDefaults instantiates a new UpdateRoleRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateScheduledLambdaRequest instantiates a new UpdateScheduledLambdaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateScheduledLambdaRequestWithDefaults instantiates a new UpdateScheduledLambdaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateUnsubscribePreferencesRequest instantiates a new UpdateUnsubscribePreferencesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateUnsubscribePreferencesRequestWithDefaults instantiates a new UpdateUnsubscribePreferencesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateUnsubscribePreferencesResponse instantiates a new UpdateUnsubscribePreferencesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateUnsubscribePreferencesResponseWithDefaults instantiates a new UpdateUnsubscribePreferencesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateUserRequest instantiates a new UpdateUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateUserRequestWithDefaults instantiates a new UpdateUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateViewRequest instantiates a new UpdateViewRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateViewRequestWithDefaults instantiates a new UpdateViewRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateViewResponse instantiates a new UpdateViewResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateViewResponseWithDefaults instantiates a new UpdateViewResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateVirtualInstanceRequest instantiates a new UpdateVirtualInstanceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateVirtualInstanceRequestWithDefaults instantiates a new UpdateVirtualInstanceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateVirtualInstanceResponse instantiates a new UpdateVirtualInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateVirtualInstanceResponseWithDefaults instantiates a new UpdateVirtualInstanceResponse object This 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.
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.
NewValidateQueryResponse instantiates a new ValidateQueryResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateQueryResponseWithDefaults instantiates a new ValidateQueryResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewView instantiates a new View object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewViewWithDefaults instantiates a new View object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVirtualInstance instantiates a new VirtualInstance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVirtualInstanceStats instantiates a new VirtualInstanceStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVirtualInstanceStatsWithDefaults instantiates a new VirtualInstanceStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVirtualInstanceWithDefaults instantiates a new VirtualInstance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkspace instantiates a new Workspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceWithDefaults instantiates a new Workspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXmlParams instantiates a new XmlParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXmlParamsWithDefaults instantiates a new XmlParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Variables

ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AddDocumentsRequest struct for AddDocumentsRequest.
AddDocumentsResponse struct for AddDocumentsResponse.
Alias struct for Alias.
No description provided by the author
No description provided by the author
APIClient manages communication with the REST API API vv1 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
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
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 API keys are used to authenticate requests to Rockset's API.
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
No description provided by the author
No description provided by the author
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
AsyncQueryOptions struct for AsyncQueryOptions.
AutoScalingPolicy struct for AutoScalingPolicy.
AwsAccessKey struct for AwsAccessKey.
AwsRole struct for AwsRole.
AzureBlobStorageIntegration struct for AzureBlobStorageIntegration.
AzureEventHubsIntegration struct for AzureEventHubsIntegration.
AzureServiceBusIntegration struct for AzureServiceBusIntegration.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BulkStats struct for BulkStats.
CancelQueryResponse struct for CancelQueryResponse.
Cluster struct for Cluster.
Collection struct for Collection.
CollectionMount struct for CollectionMount.
CollectionMountResponse struct for CollectionMountResponse.
CollectionMountStats struct for CollectionMountStats.
CollectionStats struct for CollectionStats.
Configuration stores the configuration of the API client.
CreateAliasRequest struct for CreateAliasRequest.
CreateAliasResponse struct for CreateAliasResponse.
CreateApiKeyRequest struct for CreateApiKeyRequest.
CreateApiKeyResponse struct for CreateApiKeyResponse.
CreateCollectionMountRequest struct for CreateCollectionMountRequest.
CreateCollectionMountsResponse struct for CreateCollectionMountsResponse.
CreateCollectionRequest struct for CreateCollectionRequest.
CreateCollectionResponse struct for CreateCollectionResponse.
CreateIntegrationRequest struct for CreateIntegrationRequest.
CreateIntegrationResponse struct for CreateIntegrationResponse.
CreateQueryLambdaRequest struct for CreateQueryLambdaRequest.
CreateQueryLambdaTagRequest struct for CreateQueryLambdaTagRequest.
CreateRoleRequest struct for CreateRoleRequest.
CreateScheduledLambdaRequest struct for CreateScheduledLambdaRequest.
CreateUserRequest struct for CreateUserRequest.
CreateUserResponse struct for CreateUserResponse.
CreateViewRequest struct for CreateViewRequest.
CreateViewResponse struct for CreateViewResponse.
CreateVirtualInstanceRequest struct for CreateVirtualInstanceRequest.
CreateVirtualInstanceResponse struct for CreateVirtualInstanceResponse.
CreateWorkspaceRequest struct for CreateWorkspaceRequest.
CreateWorkspaceResponse struct for CreateWorkspaceResponse.
CsvParams struct for CsvParams.
DeleteAliasResponse struct for DeleteAliasResponse.
DeleteApiKeyResponse struct for DeleteApiKeyResponse.
DeleteCollectionResponse struct for DeleteCollectionResponse.
DeleteDocumentsRequest struct for DeleteDocumentsRequest.
DeleteDocumentsRequestData struct for DeleteDocumentsRequestData.
DeleteDocumentsResponse struct for DeleteDocumentsResponse.
DeleteIntegrationResponse struct for DeleteIntegrationResponse.
DeleteQueryLambdaResponse struct for DeleteQueryLambdaResponse.
DeleteSourceResponse struct for DeleteSourceResponse.
DeleteUserResponse struct for DeleteUserResponse.
DeleteViewResponse struct for DeleteViewResponse.
DeleteVirtualInstanceResponse struct for DeleteVirtualInstanceResponse.
DeleteWorkspaceResponse struct for DeleteWorkspaceResponse.
DeploymentSettings struct for DeploymentSettings.
DeploymentSettingsResponse struct for DeploymentSettingsResponse.
DocumentStatus struct for DocumentStatus.
DynamodbIntegration struct for DynamodbIntegration.
ErrorModel Describes details about an error.
EventTimeInfo struct for EventTimeInfo.
ExecutePublicQueryLambdaRequest struct for ExecutePublicQueryLambdaRequest.
ExecuteQueryLambdaRequest struct for ExecuteQueryLambdaRequest.
ExecutionStatus struct for ExecutionStatus.
FieldMappingQuery struct for FieldMappingQuery.
FieldMappingV2 struct for FieldMappingV2.
FieldPartition struct for FieldPartition.
FormatParams struct for FormatParams.
GcpServiceAccount struct for GcpServiceAccount.
GcsIntegration struct for GcsIntegration.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GetAliasResponse struct for GetAliasResponse.
GetApiKeyResponse struct for GetApiKeyResponse.
GetCollectionCommit struct for GetCollectionCommit.
GetCollectionCommitData struct for GetCollectionCommitData.
GetCollectionCommitRequest struct for GetCollectionCommitRequest.
GetCollectionResponse struct for GetCollectionResponse.
GetIntegrationResponse struct for GetIntegrationResponse.
GetQueryResponse struct for GetQueryResponse.
GetSourceResponse struct for GetSourceResponse.
GetViewResponse struct for GetViewResponse.
GetVirtualInstanceResponse struct for GetVirtualInstanceResponse.
GetWorkspaceResponse struct for GetWorkspaceResponse.
InputField struct for InputField.
Integration Integrations that can be associated with data sources to create collections.
KafkaIntegration struct for KafkaIntegration.
KafkaV3SecurityConfig struct for KafkaV3SecurityConfig.
KinesisIntegration struct for KinesisIntegration.
ListAliasesResponse struct for ListAliasesResponse.
ListApiKeysResponse struct for ListApiKeysResponse.
ListCollectionMountsResponse struct for ListCollectionMountsResponse.
ListCollectionsResponse struct for ListCollectionsResponse.
ListIntegrationsResponse struct for ListIntegrationsResponse.
ListQueriesResponse struct for ListQueriesResponse.
ListQueryLambdasResponse struct for ListQueryLambdasResponse.
ListQueryLambdaTagsResponse struct for ListQueryLambdaTagsResponse.
ListQueryLambdaVersionsResponse struct for ListQueryLambdaVersionsResponse.
ListRolesResponse struct for ListRolesResponse.
ListSourcesResponse struct for ListSourcesResponse.
ListUnsubscribePreferencesResponse struct for ListUnsubscribePreferencesResponse.
ListUsersResponse struct for ListUsersResponse.
ListViewsResponse struct for ListViewsResponse.
ListVirtualInstancesResponse struct for ListVirtualInstancesResponse.
ListWorkspacesResponse struct for ListWorkspacesResponse.
MongoDbIntegration struct for MongoDbIntegration.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Offsets struct for Offsets.
Organization An organization in Rockset is a container for users and collections.
OrganizationResponse struct for OrganizationResponse.
OutputField struct for OutputField.
Pagination struct for Pagination.
PaginationInfo struct for PaginationInfo.
PatchDocument struct for PatchDocument.
PatchDocumentsRequest struct for PatchDocumentsRequest.
PatchDocumentsResponse struct for PatchDocumentsResponse.
PatchOperation struct for PatchOperation.
Privilege struct for Privilege.
QueryError struct for QueryError.
QueryFieldType struct for QueryFieldType.
QueryInfo struct for QueryInfo.
QueryLambda struct for QueryLambda.
QueryLambdaSql struct for QueryLambdaSql.
QueryLambdaStats struct for QueryLambdaStats.
QueryLambdaTag struct for QueryLambdaTag.
QueryLambdaTagResponse struct for QueryLambdaTagResponse.
QueryLambdaVersion struct for QueryLambdaVersion.
QueryLambdaVersionResponse struct for QueryLambdaVersionResponse.
QueryPaginationResponse struct for QueryPaginationResponse.
QueryParameter struct for QueryParameter.
QueryRequest struct for QueryRequest.
QueryRequestSql struct for QueryRequestSql.
QueryResponse struct for QueryResponse.
QueryResponseStats struct for QueryResponseStats.
ResumeVirtualInstanceResponse struct for ResumeVirtualInstanceResponse.
Role struct for Role.
RoleResponse struct for RoleResponse.
S3Integration struct for S3Integration.
ScheduledLambda struct for ScheduledLambda.
ScheduledLambdaResponse struct for ScheduledLambdaResponse.
SchemaRegistryConfig struct for SchemaRegistryConfig.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SnowflakeIntegration struct for SnowflakeIntegration.
Source Details about the data source for the given collection.
SourceAzBlobStorageBase struct for SourceAzBlobStorageBase.
SourceAzBlobStorageSettings struct for SourceAzBlobStorageSettings.
SourceAzureBlobStorage struct for SourceAzureBlobStorage.
SourceAzureEventHubs struct for SourceAzureEventHubs.
SourceAzureServiceBus struct for SourceAzureServiceBus.
SourceBase struct for SourceBase.
SourceDynamoDb struct for SourceDynamoDb.
SourceDynamoDbBase struct for SourceDynamoDbBase.
SourceDynamoDbSettings struct for SourceDynamoDbSettings.
SourceFileUpload struct for SourceFileUpload.
SourceGcs struct for SourceGcs.
SourceGcsBase struct for SourceGcsBase.
SourceGcsSettings struct for SourceGcsSettings.
SourceKafka struct for SourceKafka.
SourceKinesis struct for SourceKinesis.
SourceMongoDb struct for SourceMongoDb.
SourceS3 struct for SourceS3.
SourceS3Base struct for SourceS3Base.
SourceS3Settings struct for SourceS3Settings.
SourceSnapshot struct for SourceSnapshot.
SourceSnowflake struct for SourceSnowflake.
SourceSystem struct for SourceSystem.
SqlExpression struct for SqlExpression.
Stats struct for Stats.
Status struct for Status.
StatusAzureEventHubs struct for StatusAzureEventHubs.
StatusAzureEventHubsPartition struct for StatusAzureEventHubsPartition.
StatusAzureServiceBus struct for StatusAzureServiceBus.
StatusAzureServiceBusSession struct for StatusAzureServiceBusSession.
StatusDynamoDb struct for StatusDynamoDb.
StatusDynamoDbV2 struct for StatusDynamoDbV2.
StatusKafka struct for StatusKafka.
StatusKafkaPartition struct for StatusKafkaPartition.
StatusMongoDb struct for StatusMongoDb.
StatusSnowflake struct for StatusSnowflake.
SuspendSourceRequest struct for SuspendSourceRequest.
SuspendVirtualInstanceResponse struct for SuspendVirtualInstanceResponse.
TLSConfig struct for TLSConfig.
UnsubscribePreference Notification preferences for the user.
UpdateAliasRequest struct for UpdateAliasRequest.
UpdateApiKeyRequest struct for UpdateApiKeyRequest.
UpdateApiKeyResponse struct for UpdateApiKeyResponse.
UpdateCollectionRequest struct for UpdateCollectionRequest.
UpdateDeploymentSettingsRequest struct for UpdateDeploymentSettingsRequest.
UpdateIntegrationRequest struct for UpdateIntegrationRequest.
UpdateIntegrationResponse struct for UpdateIntegrationResponse.
UpdateQueryLambdaRequest struct for UpdateQueryLambdaRequest.
UpdateRoleRequest struct for UpdateRoleRequest.
UpdateScheduledLambdaRequest struct for UpdateScheduledLambdaRequest.
UpdateUnsubscribePreferencesRequest struct for UpdateUnsubscribePreferencesRequest.
UpdateUnsubscribePreferencesResponse struct for UpdateUnsubscribePreferencesResponse.
UpdateUserRequest struct for UpdateUserRequest.
UpdateViewRequest struct for UpdateViewRequest.
UpdateViewResponse struct for UpdateViewResponse.
UpdateVirtualInstanceRequest struct for UpdateVirtualInstanceRequest.
UpdateVirtualInstanceResponse struct for UpdateVirtualInstanceResponse.
User struct for User.
ValidateQueryResponse struct for ValidateQueryResponse.
View struct for View.
VirtualInstance struct for VirtualInstance.
VirtualInstanceStats struct for VirtualInstanceStats.
Workspace Workspaces are organizational containers for collections.
XmlParams struct for XmlParams.

# Interfaces

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

AliasesApiService AliasesApi service.
APIKeysApiService APIKeysApi service.
CollectionsApiService CollectionsApi service.
CustomRolesApiService CustomRolesApi service.
DeploymentSettingsApiService DeploymentSettingsApi service.
DocumentsApiService DocumentsApi service.
IntegrationsApiService IntegrationsApi service.
OrganizationsApiService OrganizationsApi service.
QueriesApiService QueriesApi service.
QueryLambdasApiService QueryLambdasApi service.
ScheduledLambdasApiService ScheduledLambdasApi service.
ServerConfigurations stores multiple ServerConfiguration items.
SharedLambdasApiService SharedLambdasApi service.
SourcesApiService SourcesApi service.
UsersApiService UsersApi service.
ViewsApiService ViewsApi service.
VirtualInstancesApiService VirtualInstancesApi service.
WorkspacesApiService WorkspacesApi service.