As of January 1, 2020 this library no longer supports Python 2 on the latest released version. Library versions released prior to that date will continue to be available. For more information please visit Python 2 support on Google Cloud.

TablesService

class google.area120.tables_v1alpha1.services.tables_service.TablesServiceAsyncClient(*, credentials: typing.Optional[google.auth.credentials.Credentials] = None, transport: typing.Union[str, google.area120.tables_v1alpha1.services.tables_service.transports.base.TablesServiceTransport] = 'grpc_asyncio', client_options: typing.Optional[google.api_core.client_options.ClientOptions] = None, client_info: google.api_core.gapic_v1.client_info.ClientInfo = <google.api_core.gapic_v1.client_info.ClientInfo object>)[source]

The Tables Service provides an API for reading and updating tables. It defines the following resource model:

  • The API has a collection of [Table][google.area120.tables.v1alpha1.Table] resources, named tables/*

  • Each Table has a collection of [Row][google.area120.tables.v1alpha1.Row] resources, named tables/*/rows/*

  • The API has a collection of [Workspace][google.area120.tables.v1alpha1.Workspace] resources, named workspaces/*.

Instantiates the tables service async client.

Parameters
  • credentials (Optional[google.auth.credentials.Credentials]) – The authorization credentials to attach to requests. These credentials identify the application to the service; if none are specified, the client will attempt to ascertain the credentials from the environment.

  • transport (Union[str, TablesServiceTransport]) – The transport to use. If set to None, a transport is chosen automatically.

  • client_options (Optional[Union[google.api_core.client_options.ClientOptions, dict]]) –

    Custom options for the client.

    1. The api_endpoint property can be used to override the default endpoint provided by the client when transport is not explicitly provided. Only if this property is not set and transport was not explicitly provided, the endpoint is determined by the GOOGLE_API_USE_MTLS_ENDPOINT environment variable, which have one of the following values: “always” (always use the default mTLS endpoint), “never” (always use the default regular endpoint) and “auto” (auto-switch to the default mTLS endpoint if client certificate is present; this is the default value).

    2. If the GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is “true”, then the client_cert_source property can be used to provide a client certificate for mTLS transport. If not provided, the default SSL client certificate will be used if present. If GOOGLE_API_USE_CLIENT_CERTIFICATE is “false” or not set, no client certificate will be used.

    3. The universe_domain property can be used to override the default “googleapis.com” universe. Note that api_endpoint property still takes precedence; and universe_domain is currently not supported for mTLS.

  • client_info (google.api_core.gapic_v1.client_info.ClientInfo) – The client info used to send a user-agent string along with API requests. If None, then default info will be used. Generally, you only need to set this if you’re developing your own client library.

Raises

google.auth.exceptions.MutualTlsChannelError – If mutual TLS transport creation failed for any reason.

property api_endpoint

Return the API endpoint used by the client instance.

Returns

The API endpoint used by the client instance.

Return type

str

async batch_create_rows(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.BatchCreateRowsRequest, dict]] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.BatchCreateRowsResponse[source]

Creates multiple rows.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_batch_create_rows():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    requests = tables_v1alpha1.CreateRowRequest()
    requests.parent = "parent_value"

    request = tables_v1alpha1.BatchCreateRowsRequest(
        parent="parent_value",
        requests=requests,
    )

    # Make the request
    response = await client.batch_create_rows(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.BatchCreateRowsRequest, dict]]) – The request object. Request message for TablesService.BatchCreateRows.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for TablesService.BatchCreateRows.

Return type

google.area120.tables_v1alpha1.types.BatchCreateRowsResponse

async batch_delete_rows(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.BatchDeleteRowsRequest, dict]] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) None[source]

Deletes multiple rows.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_batch_delete_rows():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.BatchDeleteRowsRequest(
        parent="parent_value",
        names=['names_value1', 'names_value2'],
    )

    # Make the request
    await client.batch_delete_rows(request=request)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.BatchDeleteRowsRequest, dict]]) – The request object. Request message for TablesService.BatchDeleteRows

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

async batch_update_rows(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.BatchUpdateRowsRequest, dict]] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.BatchUpdateRowsResponse[source]

Updates multiple rows.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_batch_update_rows():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.BatchUpdateRowsRequest(
        parent="parent_value",
    )

    # Make the request
    response = await client.batch_update_rows(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.BatchUpdateRowsRequest, dict]]) – The request object. Request message for TablesService.BatchUpdateRows.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for TablesService.BatchUpdateRows.

Return type

google.area120.tables_v1alpha1.types.BatchUpdateRowsResponse

static common_billing_account_path(billing_account: str) str

Returns a fully-qualified billing_account string.

static common_folder_path(folder: str) str

Returns a fully-qualified folder string.

static common_location_path(project: str, location: str) str

Returns a fully-qualified location string.

static common_organization_path(organization: str) str

Returns a fully-qualified organization string.

static common_project_path(project: str) str

Returns a fully-qualified project string.

async create_row(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.CreateRowRequest, dict]] = None, *, parent: Optional[str] = None, row: Optional[google.area120.tables_v1alpha1.types.tables.Row] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.Row[source]

Creates a row.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_create_row():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.CreateRowRequest(
        parent="parent_value",
    )

    # Make the request
    response = await client.create_row(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.CreateRowRequest, dict]]) – The request object. Request message for TablesService.CreateRow.

  • parent (str) –

    Required. The parent table where this row will be created. Format: tables/{table}

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • row (google.area120.tables_v1alpha1.types.Row) – Required. The row to create. This corresponds to the row field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A single row in a table.

Return type

google.area120.tables_v1alpha1.types.Row

async delete_row(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.DeleteRowRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) None[source]

Deletes a row.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_delete_row():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.DeleteRowRequest(
        name="name_value",
    )

    # Make the request
    await client.delete_row(request=request)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.DeleteRowRequest, dict]]) – The request object. Request message for TablesService.DeleteRow

  • name (str) –

    Required. The name of the row to delete. Format: tables/{table}/rows/{row}

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

classmethod from_service_account_file(filename: str, *args, **kwargs)[source]
Creates an instance of this client using the provided credentials

file.

Parameters
  • filename (str) – The path to the service account private key json file.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

TablesServiceAsyncClient

classmethod from_service_account_info(info: dict, *args, **kwargs)[source]
Creates an instance of this client using the provided credentials

info.

Parameters
  • info (dict) – The service account private key info.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

TablesServiceAsyncClient

classmethod from_service_account_json(filename: str, *args, **kwargs)
Creates an instance of this client using the provided credentials

file.

Parameters
  • filename (str) – The path to the service account private key json file.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

TablesServiceAsyncClient

classmethod get_mtls_endpoint_and_cert_source(client_options: Optional[google.api_core.client_options.ClientOptions] = None)[source]

Return the API endpoint and client cert source for mutual TLS.

The client cert source is determined in the following order: (1) if GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is not “true”, the client cert source is None. (2) if client_options.client_cert_source is provided, use the provided one; if the default client cert source exists, use the default one; otherwise the client cert source is None.

The API endpoint is determined in the following order: (1) if client_options.api_endpoint if provided, use the provided one. (2) if GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is “always”, use the default mTLS endpoint; if the environment variable is “never”, use the default API endpoint; otherwise if client cert source exists, use the default mTLS endpoint, otherwise use the default API endpoint.

More details can be found at https://google.aip.dev/auth/4114.

Parameters

client_options (google.api_core.client_options.ClientOptions) – Custom options for the client. Only the api_endpoint and client_cert_source properties may be used in this method.

Returns

returns the API endpoint and the

client cert source to use.

Return type

Tuple[str, Callable[[], Tuple[bytes, bytes]]]

Raises

google.auth.exceptions.MutualTLSChannelError – If any errors happen.

async get_row(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.GetRowRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.Row[source]

Gets a row. Returns NOT_FOUND if the row does not exist in the table.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_get_row():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.GetRowRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_row(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.GetRowRequest, dict]]) – The request object. Request message for TablesService.GetRow.

  • name (str) –

    Required. The name of the row to retrieve. Format: tables/{table}/rows/{row}

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A single row in a table.

Return type

google.area120.tables_v1alpha1.types.Row

async get_table(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.GetTableRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.Table[source]

Gets a table. Returns NOT_FOUND if the table does not exist.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_get_table():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.GetTableRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_table(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.GetTableRequest, dict]]) – The request object. Request message for TablesService.GetTable.

  • name (str) –

    Required. The name of the table to retrieve. Format: tables/{table}

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A single table.

Return type

google.area120.tables_v1alpha1.types.Table

get_transport_class() Type[google.area120.tables_v1alpha1.services.tables_service.transports.base.TablesServiceTransport]

Returns an appropriate transport class.

Parameters

label – The name of the desired transport. If none is provided, then the first transport in the registry is used.

Returns

The transport class to use.

async get_workspace(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.GetWorkspaceRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.Workspace[source]

Gets a workspace. Returns NOT_FOUND if the workspace does not exist.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_get_workspace():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.GetWorkspaceRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_workspace(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.GetWorkspaceRequest, dict]]) – The request object. Request message for TablesService.GetWorkspace.

  • name (str) –

    Required. The name of the workspace to retrieve. Format: workspaces/{workspace}

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A single workspace.

Return type

google.area120.tables_v1alpha1.types.Workspace

async list_rows(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.ListRowsRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.services.tables_service.pagers.ListRowsAsyncPager[source]

Lists rows in a table. Returns NOT_FOUND if the table does not exist.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_list_rows():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.ListRowsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_rows(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.ListRowsRequest, dict]]) – The request object. Request message for TablesService.ListRows.

  • parent (str) –

    Required. The parent table. Format: tables/{table}

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for TablesService.ListRows. Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.area120.tables_v1alpha1.services.tables_service.pagers.ListRowsAsyncPager

async list_tables(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.ListTablesRequest, dict]] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.services.tables_service.pagers.ListTablesAsyncPager[source]

Lists tables for the user.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_list_tables():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.ListTablesRequest(
    )

    # Make the request
    page_result = client.list_tables(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.ListTablesRequest, dict]]) – The request object. Request message for TablesService.ListTables.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for TablesService.ListTables. Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.area120.tables_v1alpha1.services.tables_service.pagers.ListTablesAsyncPager

async list_workspaces(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.ListWorkspacesRequest, dict]] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.services.tables_service.pagers.ListWorkspacesAsyncPager[source]

Lists workspaces for the user.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_list_workspaces():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.ListWorkspacesRequest(
    )

    # Make the request
    page_result = client.list_workspaces(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.ListWorkspacesRequest, dict]]) – The request object. Request message for TablesService.ListWorkspaces.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for TablesService.ListWorkspaces. Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.area120.tables_v1alpha1.services.tables_service.pagers.ListWorkspacesAsyncPager

static parse_common_billing_account_path(path: str) Dict[str, str]

Parse a billing_account path into its component segments.

static parse_common_folder_path(path: str) Dict[str, str]

Parse a folder path into its component segments.

static parse_common_location_path(path: str) Dict[str, str]

Parse a location path into its component segments.

static parse_common_organization_path(path: str) Dict[str, str]

Parse a organization path into its component segments.

static parse_common_project_path(path: str) Dict[str, str]

Parse a project path into its component segments.

static parse_row_path(path: str) Dict[str, str]

Parses a row path into its component segments.

static parse_table_path(path: str) Dict[str, str]

Parses a table path into its component segments.

static parse_workspace_path(path: str) Dict[str, str]

Parses a workspace path into its component segments.

static row_path(table: str, row: str) str

Returns a fully-qualified row string.

static table_path(table: str) str

Returns a fully-qualified table string.

property transport: google.area120.tables_v1alpha1.services.tables_service.transports.base.TablesServiceTransport

Returns the transport used by the client instance.

Returns

The transport used by the client instance.

Return type

TablesServiceTransport

property universe_domain: str

Return the universe domain used by the client instance.

Returns

The universe domain used

by the client instance.

Return type

str

async update_row(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.UpdateRowRequest, dict]] = None, *, row: Optional[google.area120.tables_v1alpha1.types.tables.Row] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.Row[source]

Updates a row.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

async def sample_update_row():
    # Create a client
    client = tables_v1alpha1.TablesServiceAsyncClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.UpdateRowRequest(
    )

    # Make the request
    response = await client.update_row(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.area120.tables_v1alpha1.types.UpdateRowRequest, dict]]) – The request object. Request message for TablesService.UpdateRow.

  • row (google.area120.tables_v1alpha1.types.Row) – Required. The row to update. This corresponds to the row field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) – The list of fields to update. This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A single row in a table.

Return type

google.area120.tables_v1alpha1.types.Row

static workspace_path(workspace: str) str

Returns a fully-qualified workspace string.

class google.area120.tables_v1alpha1.services.tables_service.TablesServiceClient(*, credentials: typing.Optional[google.auth.credentials.Credentials] = None, transport: typing.Optional[typing.Union[str, google.area120.tables_v1alpha1.services.tables_service.transports.base.TablesServiceTransport]] = None, client_options: typing.Optional[typing.Union[google.api_core.client_options.ClientOptions, dict]] = None, client_info: google.api_core.gapic_v1.client_info.ClientInfo = <google.api_core.gapic_v1.client_info.ClientInfo object>)[source]

The Tables Service provides an API for reading and updating tables. It defines the following resource model:

  • The API has a collection of [Table][google.area120.tables.v1alpha1.Table] resources, named tables/*

  • Each Table has a collection of [Row][google.area120.tables.v1alpha1.Row] resources, named tables/*/rows/*

  • The API has a collection of [Workspace][google.area120.tables.v1alpha1.Workspace] resources, named workspaces/*.

Instantiates the tables service client.

Parameters
  • credentials (Optional[google.auth.credentials.Credentials]) – The authorization credentials to attach to requests. These credentials identify the application to the service; if none are specified, the client will attempt to ascertain the credentials from the environment.

  • transport (Union[str, TablesServiceTransport]) – The transport to use. If set to None, a transport is chosen automatically.

  • client_options (Optional[Union[google.api_core.client_options.ClientOptions, dict]]) –

    Custom options for the client.

    1. The api_endpoint property can be used to override the default endpoint provided by the client when transport is not explicitly provided. Only if this property is not set and transport was not explicitly provided, the endpoint is determined by the GOOGLE_API_USE_MTLS_ENDPOINT environment variable, which have one of the following values: “always” (always use the default mTLS endpoint), “never” (always use the default regular endpoint) and “auto” (auto-switch to the default mTLS endpoint if client certificate is present; this is the default value).

    2. If the GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is “true”, then the client_cert_source property can be used to provide a client certificate for mTLS transport. If not provided, the default SSL client certificate will be used if present. If GOOGLE_API_USE_CLIENT_CERTIFICATE is “false” or not set, no client certificate will be used.

    3. The universe_domain property can be used to override the default “googleapis.com” universe. Note that the api_endpoint property still takes precedence; and universe_domain is currently not supported for mTLS.

  • client_info (google.api_core.gapic_v1.client_info.ClientInfo) – The client info used to send a user-agent string along with API requests. If None, then default info will be used. Generally, you only need to set this if you’re developing your own client library.

Raises

google.auth.exceptions.MutualTLSChannelError – If mutual TLS transport creation failed for any reason.

__exit__(type, value, traceback)[source]

Releases underlying transport’s resources.

Warning

ONLY use as a context manager if the transport is NOT shared with other clients! Exiting the with block will CLOSE the transport and may cause errors in other clients!

property api_endpoint

Return the API endpoint used by the client instance.

Returns

The API endpoint used by the client instance.

Return type

str

batch_create_rows(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.BatchCreateRowsRequest, dict]] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.BatchCreateRowsResponse[source]

Creates multiple rows.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_batch_create_rows():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    requests = tables_v1alpha1.CreateRowRequest()
    requests.parent = "parent_value"

    request = tables_v1alpha1.BatchCreateRowsRequest(
        parent="parent_value",
        requests=requests,
    )

    # Make the request
    response = client.batch_create_rows(request=request)

    # Handle the response
    print(response)
Parameters
Returns

Response message for TablesService.BatchCreateRows.

Return type

google.area120.tables_v1alpha1.types.BatchCreateRowsResponse

batch_delete_rows(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.BatchDeleteRowsRequest, dict]] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) None[source]

Deletes multiple rows.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_batch_delete_rows():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.BatchDeleteRowsRequest(
        parent="parent_value",
        names=['names_value1', 'names_value2'],
    )

    # Make the request
    client.batch_delete_rows(request=request)
Parameters
batch_update_rows(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.BatchUpdateRowsRequest, dict]] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.BatchUpdateRowsResponse[source]

Updates multiple rows.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_batch_update_rows():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.BatchUpdateRowsRequest(
        parent="parent_value",
    )

    # Make the request
    response = client.batch_update_rows(request=request)

    # Handle the response
    print(response)
Parameters
Returns

Response message for TablesService.BatchUpdateRows.

Return type

google.area120.tables_v1alpha1.types.BatchUpdateRowsResponse

static common_billing_account_path(billing_account: str) str[source]

Returns a fully-qualified billing_account string.

static common_folder_path(folder: str) str[source]

Returns a fully-qualified folder string.

static common_location_path(project: str, location: str) str[source]

Returns a fully-qualified location string.

static common_organization_path(organization: str) str[source]

Returns a fully-qualified organization string.

static common_project_path(project: str) str[source]

Returns a fully-qualified project string.

create_row(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.CreateRowRequest, dict]] = None, *, parent: Optional[str] = None, row: Optional[google.area120.tables_v1alpha1.types.tables.Row] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.Row[source]

Creates a row.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_create_row():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.CreateRowRequest(
        parent="parent_value",
    )

    # Make the request
    response = client.create_row(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.area120.tables_v1alpha1.types.CreateRowRequest, dict]) – The request object. Request message for TablesService.CreateRow.

  • parent (str) –

    Required. The parent table where this row will be created. Format: tables/{table}

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • row (google.area120.tables_v1alpha1.types.Row) – Required. The row to create. This corresponds to the row field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A single row in a table.

Return type

google.area120.tables_v1alpha1.types.Row

delete_row(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.DeleteRowRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) None[source]

Deletes a row.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_delete_row():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.DeleteRowRequest(
        name="name_value",
    )

    # Make the request
    client.delete_row(request=request)
Parameters
  • request (Union[google.area120.tables_v1alpha1.types.DeleteRowRequest, dict]) – The request object. Request message for TablesService.DeleteRow

  • name (str) –

    Required. The name of the row to delete. Format: tables/{table}/rows/{row}

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

classmethod from_service_account_file(filename: str, *args, **kwargs)[source]
Creates an instance of this client using the provided credentials

file.

Parameters
  • filename (str) – The path to the service account private key json file.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

TablesServiceClient

classmethod from_service_account_info(info: dict, *args, **kwargs)[source]
Creates an instance of this client using the provided credentials

info.

Parameters
  • info (dict) – The service account private key info.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

TablesServiceClient

classmethod from_service_account_json(filename: str, *args, **kwargs)
Creates an instance of this client using the provided credentials

file.

Parameters
  • filename (str) – The path to the service account private key json file.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

TablesServiceClient

classmethod get_mtls_endpoint_and_cert_source(client_options: Optional[google.api_core.client_options.ClientOptions] = None)[source]

Deprecated. Return the API endpoint and client cert source for mutual TLS.

The client cert source is determined in the following order: (1) if GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is not “true”, the client cert source is None. (2) if client_options.client_cert_source is provided, use the provided one; if the default client cert source exists, use the default one; otherwise the client cert source is None.

The API endpoint is determined in the following order: (1) if client_options.api_endpoint if provided, use the provided one. (2) if GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is “always”, use the default mTLS endpoint; if the environment variable is “never”, use the default API endpoint; otherwise if client cert source exists, use the default mTLS endpoint, otherwise use the default API endpoint.

More details can be found at https://google.aip.dev/auth/4114.

Parameters

client_options (google.api_core.client_options.ClientOptions) – Custom options for the client. Only the api_endpoint and client_cert_source properties may be used in this method.

Returns

returns the API endpoint and the

client cert source to use.

Return type

Tuple[str, Callable[[], Tuple[bytes, bytes]]]

Raises

google.auth.exceptions.MutualTLSChannelError – If any errors happen.

get_row(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.GetRowRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.Row[source]

Gets a row. Returns NOT_FOUND if the row does not exist in the table.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_get_row():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.GetRowRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_row(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.area120.tables_v1alpha1.types.GetRowRequest, dict]) – The request object. Request message for TablesService.GetRow.

  • name (str) –

    Required. The name of the row to retrieve. Format: tables/{table}/rows/{row}

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A single row in a table.

Return type

google.area120.tables_v1alpha1.types.Row

get_table(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.GetTableRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.Table[source]

Gets a table. Returns NOT_FOUND if the table does not exist.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_get_table():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.GetTableRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_table(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.area120.tables_v1alpha1.types.GetTableRequest, dict]) – The request object. Request message for TablesService.GetTable.

  • name (str) –

    Required. The name of the table to retrieve. Format: tables/{table}

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A single table.

Return type

google.area120.tables_v1alpha1.types.Table

get_workspace(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.GetWorkspaceRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.Workspace[source]

Gets a workspace. Returns NOT_FOUND if the workspace does not exist.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_get_workspace():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.GetWorkspaceRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_workspace(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.area120.tables_v1alpha1.types.GetWorkspaceRequest, dict]) – The request object. Request message for TablesService.GetWorkspace.

  • name (str) –

    Required. The name of the workspace to retrieve. Format: workspaces/{workspace}

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A single workspace.

Return type

google.area120.tables_v1alpha1.types.Workspace

list_rows(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.ListRowsRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.services.tables_service.pagers.ListRowsPager[source]

Lists rows in a table. Returns NOT_FOUND if the table does not exist.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_list_rows():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.ListRowsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_rows(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
  • request (Union[google.area120.tables_v1alpha1.types.ListRowsRequest, dict]) – The request object. Request message for TablesService.ListRows.

  • parent (str) –

    Required. The parent table. Format: tables/{table}

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for TablesService.ListRows. Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.area120.tables_v1alpha1.services.tables_service.pagers.ListRowsPager

list_tables(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.ListTablesRequest, dict]] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.services.tables_service.pagers.ListTablesPager[source]

Lists tables for the user.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_list_tables():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.ListTablesRequest(
    )

    # Make the request
    page_result = client.list_tables(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
Returns

Response message for TablesService.ListTables. Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.area120.tables_v1alpha1.services.tables_service.pagers.ListTablesPager

list_workspaces(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.ListWorkspacesRequest, dict]] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.services.tables_service.pagers.ListWorkspacesPager[source]

Lists workspaces for the user.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_list_workspaces():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.ListWorkspacesRequest(
    )

    # Make the request
    page_result = client.list_workspaces(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
Returns

Response message for TablesService.ListWorkspaces. Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.area120.tables_v1alpha1.services.tables_service.pagers.ListWorkspacesPager

static parse_common_billing_account_path(path: str) Dict[str, str][source]

Parse a billing_account path into its component segments.

static parse_common_folder_path(path: str) Dict[str, str][source]

Parse a folder path into its component segments.

static parse_common_location_path(path: str) Dict[str, str][source]

Parse a location path into its component segments.

static parse_common_organization_path(path: str) Dict[str, str][source]

Parse a organization path into its component segments.

static parse_common_project_path(path: str) Dict[str, str][source]

Parse a project path into its component segments.

static parse_row_path(path: str) Dict[str, str][source]

Parses a row path into its component segments.

static parse_table_path(path: str) Dict[str, str][source]

Parses a table path into its component segments.

static parse_workspace_path(path: str) Dict[str, str][source]

Parses a workspace path into its component segments.

static row_path(table: str, row: str) str[source]

Returns a fully-qualified row string.

static table_path(table: str) str[source]

Returns a fully-qualified table string.

property transport: google.area120.tables_v1alpha1.services.tables_service.transports.base.TablesServiceTransport

Returns the transport used by the client instance.

Returns

The transport used by the client

instance.

Return type

TablesServiceTransport

property universe_domain: str

Return the universe domain used by the client instance.

Returns

The universe domain used by the client instance.

Return type

str

update_row(request: Optional[Union[google.area120.tables_v1alpha1.types.tables.UpdateRowRequest, dict]] = None, *, row: Optional[google.area120.tables_v1alpha1.types.tables.Row] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.area120.tables_v1alpha1.types.tables.Row[source]

Updates a row.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.area120 import tables_v1alpha1

def sample_update_row():
    # Create a client
    client = tables_v1alpha1.TablesServiceClient()

    # Initialize request argument(s)
    request = tables_v1alpha1.UpdateRowRequest(
    )

    # Make the request
    response = client.update_row(request=request)

    # Handle the response
    print(response)
Parameters
Returns

A single row in a table.

Return type

google.area120.tables_v1alpha1.types.Row

static workspace_path(workspace: str) str[source]

Returns a fully-qualified workspace string.

class google.area120.tables_v1alpha1.services.tables_service.pagers.ListRowsAsyncPager(method: Callable[[...], Awaitable[google.area120.tables_v1alpha1.types.tables.ListRowsResponse]], request: google.area120.tables_v1alpha1.types.tables.ListRowsRequest, response: google.area120.tables_v1alpha1.types.tables.ListRowsResponse, *, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_rows requests.

This class thinly wraps an initial google.area120.tables_v1alpha1.types.ListRowsResponse object, and provides an __aiter__ method to iterate through its rows field.

If there are more pages, the __aiter__ method will make additional ListRows requests and continue to iterate through the rows field on the corresponding responses.

All the usual google.area120.tables_v1alpha1.types.ListRowsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.area120.tables_v1alpha1.services.tables_service.pagers.ListRowsPager(method: Callable[[...], google.area120.tables_v1alpha1.types.tables.ListRowsResponse], request: google.area120.tables_v1alpha1.types.tables.ListRowsRequest, response: google.area120.tables_v1alpha1.types.tables.ListRowsResponse, *, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_rows requests.

This class thinly wraps an initial google.area120.tables_v1alpha1.types.ListRowsResponse object, and provides an __iter__ method to iterate through its rows field.

If there are more pages, the __iter__ method will make additional ListRows requests and continue to iterate through the rows field on the corresponding responses.

All the usual google.area120.tables_v1alpha1.types.ListRowsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters
class google.area120.tables_v1alpha1.services.tables_service.pagers.ListTablesAsyncPager(method: Callable[[...], Awaitable[google.area120.tables_v1alpha1.types.tables.ListTablesResponse]], request: google.area120.tables_v1alpha1.types.tables.ListTablesRequest, response: google.area120.tables_v1alpha1.types.tables.ListTablesResponse, *, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_tables requests.

This class thinly wraps an initial google.area120.tables_v1alpha1.types.ListTablesResponse object, and provides an __aiter__ method to iterate through its tables field.

If there are more pages, the __aiter__ method will make additional ListTables requests and continue to iterate through the tables field on the corresponding responses.

All the usual google.area120.tables_v1alpha1.types.ListTablesResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.area120.tables_v1alpha1.services.tables_service.pagers.ListTablesPager(method: Callable[[...], google.area120.tables_v1alpha1.types.tables.ListTablesResponse], request: google.area120.tables_v1alpha1.types.tables.ListTablesRequest, response: google.area120.tables_v1alpha1.types.tables.ListTablesResponse, *, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_tables requests.

This class thinly wraps an initial google.area120.tables_v1alpha1.types.ListTablesResponse object, and provides an __iter__ method to iterate through its tables field.

If there are more pages, the __iter__ method will make additional ListTables requests and continue to iterate through the tables field on the corresponding responses.

All the usual google.area120.tables_v1alpha1.types.ListTablesResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters
class google.area120.tables_v1alpha1.services.tables_service.pagers.ListWorkspacesAsyncPager(method: Callable[[...], Awaitable[google.area120.tables_v1alpha1.types.tables.ListWorkspacesResponse]], request: google.area120.tables_v1alpha1.types.tables.ListWorkspacesRequest, response: google.area120.tables_v1alpha1.types.tables.ListWorkspacesResponse, *, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_workspaces requests.

This class thinly wraps an initial google.area120.tables_v1alpha1.types.ListWorkspacesResponse object, and provides an __aiter__ method to iterate through its workspaces field.

If there are more pages, the __aiter__ method will make additional ListWorkspaces requests and continue to iterate through the workspaces field on the corresponding responses.

All the usual google.area120.tables_v1alpha1.types.ListWorkspacesResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.area120.tables_v1alpha1.services.tables_service.pagers.ListWorkspacesPager(method: Callable[[...], google.area120.tables_v1alpha1.types.tables.ListWorkspacesResponse], request: google.area120.tables_v1alpha1.types.tables.ListWorkspacesRequest, response: google.area120.tables_v1alpha1.types.tables.ListWorkspacesResponse, *, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_workspaces requests.

This class thinly wraps an initial google.area120.tables_v1alpha1.types.ListWorkspacesResponse object, and provides an __iter__ method to iterate through its workspaces field.

If there are more pages, the __iter__ method will make additional ListWorkspaces requests and continue to iterate through the workspaces field on the corresponding responses.

All the usual google.area120.tables_v1alpha1.types.ListWorkspacesResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters