google_api_bigtable_admin v0.5.0 GoogleApi.BigtableAdmin.V2.Api.Projects View Source
API calls for all endpoints tagged Projects
.
Link to this section Summary
Functions
Creates an app profile within an instance.
Deletes an app profile from an instance.
Gets information about an app profile.
Lists information about app profiles in an instance.
Updates an app profile within an instance.
Gets the access control policy for a Table or Backup resource. Returns an empty policy if the resource exists but does not have a policy set.
Sets the access control policy on a Table or Backup resource. Replaces any existing policy.
Returns permissions that the caller has on the specified table resource.
Creates a cluster within an instance.
Deletes a cluster from an instance.
Gets information about a cluster.
Lists information about clusters in an instance.
Updates a cluster within an instance.
Create an instance within a project.
Delete an instance from a project.
Gets information about an instance.
Gets the access control policy for an instance resource. Returns an empty policy if an instance exists but does not have a policy set.
Lists information about instances in a project.
Partially updates an instance within a project. This method can modify all fields of an Instance and is the preferred way to update an Instance.
Sets the access control policy on an instance resource. Replaces any existing policy.
Checks replication consistency based on a consistency token, that is, if replication has caught up based on the conditions specified in the token and the check request.
Creates a new table in the specified instance. The table can be created with a full set of initial column families, specified in the request.
Permanently deletes a specified table and all of its data.
Permanently drop/delete a row range from a specified table. The request can specify whether to delete all rows in a table, or only those that match a particular prefix.
Generates a consistency token for a Table, which can be used in CheckConsistency to check whether mutations to the table that finished before this call started have been replicated. The tokens will be available for 90 days.
Gets metadata information about the specified table.
Gets the access control policy for a Table or Backup resource. Returns an empty policy if the resource exists but does not have a policy set.
Lists all tables served from a specified instance.
Performs a series of column family modifications on the specified table. Either all or none of the modifications will occur before this method returns, but data requests received prior to that point may see a table where only some modifications have taken effect.
Sets the access control policy on a Table or Backup resource. Replaces any existing policy.
Returns permissions that the caller has on the specified table resource.
Returns permissions that the caller has on the specified instance resource.
Updates an instance within a project. This method updates only the display name and type for an Instance. To update other Instance properties, such as labels, use PartialUpdateInstance.
Gets information about a location.
Lists information about the supported locations for this service.
Link to this section Functions
bigtableadmin_projects_instances_app_profiles_create(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_app_profiles_create( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.AppProfile.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Creates an app profile within an instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofparent
. Required. The unique name of the instance in which to create the new app profile. Values are of the formprojects/{project}/instances/{instance}
.instances_id
(type:String.t
) - Part ofparent
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:appProfileId
(type:String.t
) - Required. The ID to be used when referring to the new app profile within its instance, e.g., justmyprofile
rather thanprojects/myproject/instances/myinstance/appProfiles/myprofile
.:ignoreWarnings
(type:boolean()
) - If true, ignore safety checks when creating the app profile.:body
(type:GoogleApi.BigtableAdmin.V2.Model.AppProfile.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.AppProfile{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_app_profiles_delete(connection, projects_id, instances_id, app_profiles_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_app_profiles_delete( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Empty.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Deletes an app profile from an instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the app profile to be deleted. Values are of the formprojects/{project}/instances/{instance}/appProfiles/{app_profile}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.app_profiles_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:ignoreWarnings
(type:boolean()
) - Required. If true, ignore safety checks when deleting the app profile.
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Empty{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_app_profiles_get(connection, projects_id, instances_id, app_profiles_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_app_profiles_get( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.AppProfile.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Gets information about an app profile.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the requested app profile. Values are of the formprojects/{project}/instances/{instance}/appProfiles/{app_profile}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.app_profiles_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.AppProfile{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_app_profiles_list(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_app_profiles_list( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.ListAppProfilesResponse.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Lists information about app profiles in an instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofparent
. Required. The unique name of the instance for which a list of app profiles is requested. Values are of the formprojects/{project}/instances/{instance}
. Use{instance} = '-'
to list AppProfiles for all Instances in a project, e.g.,projects/myproject/instances/-
.instances_id
(type:String.t
) - Part ofparent
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:pageSize
(type:integer()
) - Maximum number of results per page.A page_size of zero lets the server choose the number of items to return. A page_size which is strictly positive will return at most that many items. A negative page_size will cause an error.
Following the first request, subsequent paginated calls are not required to pass a page_size. If a page_size is set in subsequent calls, it must match the page_size given in the first request.
:pageToken
(type:String.t
) - The value ofnext_page_token
returned by a previous call.
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.ListAppProfilesResponse{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_app_profiles_patch(connection, projects_id, instances_id, app_profiles_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_app_profiles_patch( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Operation.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Updates an app profile within an instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofappProfile.name
. (OutputOnly
) The unique name of the app profile. Values are of the formprojects/<project>/instances/<instance>/appProfiles/_a-zA-Z0-9*
.instances_id
(type:String.t
) - Part ofappProfile.name
. See documentation ofprojectsId
.app_profiles_id
(type:String.t
) - Part ofappProfile.name
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:ignoreWarnings
(type:boolean()
) - If true, ignore safety checks when updating the app profile.:updateMask
(type:String.t
) - Required. The subset of app profile fields which should be replaced. If unset, all fields will be replaced.:body
(type:GoogleApi.BigtableAdmin.V2.Model.AppProfile.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Operation{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_clusters_backups_get_iam_policy(connection, projects_id, instances_id, clusters_id, backups_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_clusters_backups_get_iam_policy( Tesla.Env.client(), String.t(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Policy.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Gets the access control policy for a Table or Backup resource. Returns an empty policy if the resource exists but does not have a policy set.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofresource
. REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.instances_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.clusters_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.backups_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.GetIamPolicyRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Policy{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_clusters_backups_set_iam_policy(connection, projects_id, instances_id, clusters_id, backups_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_clusters_backups_set_iam_policy( Tesla.Env.client(), String.t(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Policy.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Sets the access control policy on a Table or Backup resource. Replaces any existing policy.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofresource
. REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.instances_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.clusters_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.backups_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.SetIamPolicyRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Policy{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_clusters_backups_test_iam_permissions(connection, projects_id, instances_id, clusters_id, backups_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_clusters_backups_test_iam_permissions( Tesla.Env.client(), String.t(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.TestIamPermissionsResponse.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Returns permissions that the caller has on the specified table resource.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofresource
. REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.instances_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.clusters_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.backups_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.TestIamPermissionsRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.TestIamPermissionsResponse{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_clusters_create(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_clusters_create( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Operation.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Creates a cluster within an instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofparent
. Required. The unique name of the instance in which to create the new cluster. Values are of the formprojects/{project}/instances/{instance}
.instances_id
(type:String.t
) - Part ofparent
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:clusterId
(type:String.t
) - Required. The ID to be used when referring to the new cluster within its instance, e.g., justmycluster
rather thanprojects/myproject/instances/myinstance/clusters/mycluster
.:body
(type:GoogleApi.BigtableAdmin.V2.Model.Cluster.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Operation{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_clusters_delete(connection, projects_id, instances_id, clusters_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_clusters_delete( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Empty.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Deletes a cluster from an instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the cluster to be deleted. Values are of the formprojects/{project}/instances/{instance}/clusters/{cluster}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.clusters_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Empty{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_clusters_get(connection, projects_id, instances_id, clusters_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_clusters_get( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Cluster.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Gets information about a cluster.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the requested cluster. Values are of the formprojects/{project}/instances/{instance}/clusters/{cluster}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.clusters_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Cluster{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_clusters_list(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_clusters_list( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.ListClustersResponse.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Lists information about clusters in an instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofparent
. Required. The unique name of the instance for which a list of clusters is requested. Values are of the formprojects/{project}/instances/{instance}
. Use{instance} = '-'
to list Clusters for all Instances in a project, e.g.,projects/myproject/instances/-
.instances_id
(type:String.t
) - Part ofparent
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:pageToken
(type:String.t
) - DEPRECATED: This field is unused and ignored.
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.ListClustersResponse{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_clusters_update(connection, projects_id, instances_id, clusters_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_clusters_update( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Operation.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Updates a cluster within an instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. (OutputOnly
) The unique name of the cluster. Values are of the formprojects/{project}/instances/{instance}/clusters/a-z*
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.clusters_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.Cluster.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Operation{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_create(connection, projects_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_create( Tesla.Env.client(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Operation.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Create an instance within a project.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofparent
. Required. The unique name of the project in which to create the new instance. Values are of the formprojects/{project}
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.CreateInstanceRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Operation{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_delete(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_delete( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Empty.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Delete an instance from a project.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the instance to be deleted. Values are of the formprojects/{project}/instances/{instance}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Empty{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_get(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_get( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Instance.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Gets information about an instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the requested instance. Values are of the formprojects/{project}/instances/{instance}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Instance{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_get_iam_policy(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_get_iam_policy( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Policy.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Gets the access control policy for an instance resource. Returns an empty policy if an instance exists but does not have a policy set.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofresource
. REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.instances_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.GetIamPolicyRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Policy{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_list(connection, projects_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_list( Tesla.Env.client(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.ListInstancesResponse.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Lists information about instances in a project.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofparent
. Required. The unique name of the project for which a list of instances is requested. Values are of the formprojects/{project}
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:pageToken
(type:String.t
) - DEPRECATED: This field is unused and ignored.
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.ListInstancesResponse{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_partial_update_instance(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_partial_update_instance( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Operation.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Partially updates an instance within a project. This method can modify all fields of an Instance and is the preferred way to update an Instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofinstance.name
. Required. (OutputOnly
) The unique name of the instance. Values are of the formprojects/{project}/instances/a-z+[a-z0-9]
.instances_id
(type:String.t
) - Part ofinstance.name
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:updateMask
(type:String.t
) - Required. The subset of Instance fields which should be replaced. Must be explicitly set.:body
(type:GoogleApi.BigtableAdmin.V2.Model.Instance.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Operation{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_set_iam_policy(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_set_iam_policy( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Policy.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Sets the access control policy on an instance resource. Replaces any existing policy.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofresource
. REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.instances_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.SetIamPolicyRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Policy{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_check_consistency(connection, projects_id, instances_id, tables_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_check_consistency( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.CheckConsistencyResponse.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Checks replication consistency based on a consistency token, that is, if replication has caught up based on the conditions specified in the token and the check request.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the Table for which to check replication consistency. Values are of the formprojects/{project}/instances/{instance}/tables/{table}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.tables_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.CheckConsistencyRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.CheckConsistencyResponse{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_create(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_create( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Table.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Creates a new table in the specified instance. The table can be created with a full set of initial column families, specified in the request.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofparent
. Required. The unique name of the instance in which to create the table. Values are of the formprojects/{project}/instances/{instance}
.instances_id
(type:String.t
) - Part ofparent
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.CreateTableRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Table{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_delete(connection, projects_id, instances_id, tables_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_delete( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Empty.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Permanently deletes a specified table and all of its data.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the table to be deleted. Values are of the formprojects/{project}/instances/{instance}/tables/{table}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.tables_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Empty{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_drop_row_range(connection, projects_id, instances_id, tables_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_drop_row_range( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Empty.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Permanently drop/delete a row range from a specified table. The request can specify whether to delete all rows in a table, or only those that match a particular prefix.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the table on which to drop a range of rows. Values are of the formprojects/{project}/instances/{instance}/tables/{table}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.tables_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.DropRowRangeRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Empty{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_generate_consistency_token(connection, projects_id, instances_id, tables_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_generate_consistency_token( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.GenerateConsistencyTokenResponse.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Generates a consistency token for a Table, which can be used in CheckConsistency to check whether mutations to the table that finished before this call started have been replicated. The tokens will be available for 90 days.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the Table for which to create a consistency token. Values are of the formprojects/{project}/instances/{instance}/tables/{table}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.tables_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.GenerateConsistencyTokenRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.GenerateConsistencyTokenResponse{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_get(connection, projects_id, instances_id, tables_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_get( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Table.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Gets metadata information about the specified table.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the requested table. Values are of the formprojects/{project}/instances/{instance}/tables/{table}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.tables_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:view
(type:String.t
) - The view to be applied to the returned table's fields. Defaults toSCHEMA_VIEW
if unspecified.
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Table{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_get_iam_policy(connection, projects_id, instances_id, tables_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_get_iam_policy( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Policy.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Gets the access control policy for a Table or Backup resource. Returns an empty policy if the resource exists but does not have a policy set.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofresource
. REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.instances_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.tables_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.GetIamPolicyRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Policy{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_list(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_list( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.ListTablesResponse.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Lists all tables served from a specified instance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofparent
. Required. The unique name of the instance for which tables should be listed. Values are of the formprojects/{project}/instances/{instance}
.instances_id
(type:String.t
) - Part ofparent
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:pageSize
(type:integer()
) - Maximum number of results per page.A page_size of zero lets the server choose the number of items to return. A page_size which is strictly positive will return at most that many items. A negative page_size will cause an error.
Following the first request, subsequent paginated calls are not required to pass a page_size. If a page_size is set in subsequent calls, it must match the page_size given in the first request.
:pageToken
(type:String.t
) - The value ofnext_page_token
returned by a previous call.:view
(type:String.t
) - The view to be applied to the returned tables' fields. Only NAME_ONLY view (default) and REPLICATION_VIEW are supported.
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.ListTablesResponse{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_modify_column_families(connection, projects_id, instances_id, tables_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_modify_column_families( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Table.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Performs a series of column family modifications on the specified table. Either all or none of the modifications will occur before this method returns, but data requests received prior to that point may see a table where only some modifications have taken effect.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. The unique name of the table whose families should be modified. Values are of the formprojects/{project}/instances/{instance}/tables/{table}
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.tables_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.ModifyColumnFamiliesRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Table{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_set_iam_policy(connection, projects_id, instances_id, tables_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_set_iam_policy( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Policy.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Sets the access control policy on a Table or Backup resource. Replaces any existing policy.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofresource
. REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.instances_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.tables_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.SetIamPolicyRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Policy{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_tables_test_iam_permissions(connection, projects_id, instances_id, tables_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_tables_test_iam_permissions( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.TestIamPermissionsResponse.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Returns permissions that the caller has on the specified table resource.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofresource
. REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.instances_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.tables_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.TestIamPermissionsRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.TestIamPermissionsResponse{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_test_iam_permissions(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_test_iam_permissions( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.TestIamPermissionsResponse.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Returns permissions that the caller has on the specified instance resource.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofresource
. REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.instances_id
(type:String.t
) - Part ofresource
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.TestIamPermissionsRequest.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.TestIamPermissionsResponse{}}
on success{:error, info}
on failure
bigtableadmin_projects_instances_update(connection, projects_id, instances_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_instances_update( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Instance.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Updates an instance within a project. This method updates only the display name and type for an Instance. To update other Instance properties, such as labels, use PartialUpdateInstance.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Required. (OutputOnly
) The unique name of the instance. Values are of the formprojects/{project}/instances/a-z+[a-z0-9]
.instances_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:body
(type:GoogleApi.BigtableAdmin.V2.Model.Instance.t
) -
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Instance{}}
on success{:error, info}
on failure
bigtableadmin_projects_locations_get(connection, projects_id, locations_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_locations_get( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.Location.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Gets information about a location.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. Resource name for the location.locations_id
(type:String.t
) - Part ofname
. See documentation ofprojectsId
.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.Location{}}
on success{:error, info}
on failure
bigtableadmin_projects_locations_list(connection, projects_id, optional_params \\ [], opts \\ [])
View Sourcebigtableadmin_projects_locations_list( Tesla.Env.client(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.BigtableAdmin.V2.Model.ListLocationsResponse.t()} | {:ok, Tesla.Env.t()} | {:error, Tesla.Env.t()}
Lists information about the supported locations for this service.
Parameters
connection
(type:GoogleApi.BigtableAdmin.V2.Connection.t
) - Connection to serverprojects_id
(type:String.t
) - Part ofname
. The resource that owns the locations collection, if applicable.optional_params
(type:keyword()
) - Optional parameters:"$.xgafv"
(type:String.t
) - V1 error format.:access_token
(type:String.t
) - OAuth access token.:alt
(type:String.t
) - Data format for response.:callback
(type:String.t
) - JSONP:fields
(type:String.t
) - Selector specifying which fields to include in a partial response.:key
(type:String.t
) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.:oauth_token
(type:String.t
) - OAuth 2.0 token for the current user.:prettyPrint
(type:boolean()
) - Returns response with indentations and line breaks.:quotaUser
(type:String.t
) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.:uploadType
(type:String.t
) - Legacy upload protocol for media (e.g. "media", "multipart").:upload_protocol
(type:String.t
) - Upload protocol for media (e.g. "raw", "multipart").:filter
(type:String.t
) - The standard list filter.:pageSize
(type:integer()
) - The standard list page size.:pageToken
(type:String.t
) - The standard list page token.
opts
(type:keyword()
) - Call options
Returns
{:ok, %GoogleApi.BigtableAdmin.V2.Model.ListLocationsResponse{}}
on success{:error, info}
on failure