Movatterモバイル変換


[0]ホーム

URL:


area120tables

package
v0.257.0Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 2, 2025 License:BSD-3-ClauseImports:18Imported by:0

Details

Repository

github.com/googleapis/google-api-go-client

Links

Documentation

Overview

Package area120tables provides access to the Area120 Tables API.

For product documentation, see:https://support.google.com/area120-tables/answer/10011390

Library status

These client libraries are officially supported by Google. However, thislibrary is considered complete and is in maintenance mode. This meansthat we will address critical bugs and security issues but will not addany new features.

When possible, we recommend using our newer[Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go)that are still actively being worked and iterated on.

Creating a client

Usage example:

import "google.golang.org/api/area120tables/v1alpha1"...ctx := context.Background()area120tablesService, err := area120tables.NewService(ctx)

In this example, Google Application Default Credentials are used forauthentication. For information on how to create and obtain ApplicationDefault Credentials, seehttps://developers.google.com/identity/protocols/application-default-credentials.

Other authentication options

By default, all available scopes (see "Constants") are used to authenticate.To restrict scopes, usegoogle.golang.org/api/option.WithScopes:

area120tablesService, err := area120tables.NewService(ctx, option.WithScopes(area120tables.TablesScope))

To use an API key for authentication (note: some APIs do not support APIkeys), usegoogle.golang.org/api/option.WithAPIKey:

area120tablesService, err := area120tables.NewService(ctx, option.WithAPIKey("AIza..."))

To use an OAuth token (e.g., a user token obtained via a three-legged OAuthflow, usegoogle.golang.org/api/option.WithTokenSource:

config := &oauth2.Config{...}// ...token, err := config.Exchange(ctx, ...)area120tablesService, err := area120tables.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))

Seegoogle.golang.org/api/option.ClientOption for details on options.

Index

Constants

View Source
const (// See, edit, create, and delete all of your Google Drive filesDriveScope = "https://www.googleapis.com/auth/drive"// See, edit, create, and delete only the specific Google Drive files you use// with this appDriveFileScope = "https://www.googleapis.com/auth/drive.file"// See and download all your Google Drive filesDriveReadonlyScope = "https://www.googleapis.com/auth/drive.readonly"// See, edit, create, and delete all your Google Sheets spreadsheetsSpreadsheetsScope = "https://www.googleapis.com/auth/spreadsheets"// See all your Google Sheets spreadsheetsSpreadsheetsReadonlyScope = "https://www.googleapis.com/auth/spreadsheets.readonly"// See, edit, create, and delete your tables in Tables by Area 120TablesScope = "https://www.googleapis.com/auth/tables")

OAuth2 scopes used by this API.

Variables

This section is empty.

Functions

This section is empty.

Types

typeBatchCreateRowsRequest

type BatchCreateRowsRequest struct {// Requests: Required. The request message specifying the rows to create. A// maximum of 500 rows can be created in a single batch.Requests []*CreateRowRequest `json:"requests,omitempty"`// ForceSendFields is a list of field names (e.g. "Requests") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Requests") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

BatchCreateRowsRequest: Request message for TablesService.BatchCreateRows.

func (BatchCreateRowsRequest)MarshalJSON

func (sBatchCreateRowsRequest) MarshalJSON() ([]byte,error)

typeBatchCreateRowsResponse

type BatchCreateRowsResponse struct {// Rows: The created rows.Rows []*Row `json:"rows,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Rows") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Rows") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

BatchCreateRowsResponse: Response message for TablesService.BatchCreateRows.

func (BatchCreateRowsResponse)MarshalJSON

func (sBatchCreateRowsResponse) MarshalJSON() ([]byte,error)

typeBatchDeleteRowsRequestadded inv0.37.0

type BatchDeleteRowsRequest struct {// Names: Required. The names of the rows to delete. All rows must belong to// the parent table or else the entire batch will fail. A maximum of 500 rows// can be deleted in a batch. Format: tables/{table}/rows/{row}Names []string `json:"names,omitempty"`// ForceSendFields is a list of field names (e.g. "Names") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Names") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

BatchDeleteRowsRequest: Request message for TablesService.BatchDeleteRows

func (BatchDeleteRowsRequest)MarshalJSONadded inv0.37.0

func (sBatchDeleteRowsRequest) MarshalJSON() ([]byte,error)

typeBatchUpdateRowsRequest

type BatchUpdateRowsRequest struct {// Requests: Required. The request messages specifying the rows to update. A// maximum of 500 rows can be modified in a single batch.Requests []*UpdateRowRequest `json:"requests,omitempty"`// ForceSendFields is a list of field names (e.g. "Requests") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Requests") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

BatchUpdateRowsRequest: Request message for TablesService.BatchUpdateRows.

func (BatchUpdateRowsRequest)MarshalJSON

func (sBatchUpdateRowsRequest) MarshalJSON() ([]byte,error)

typeBatchUpdateRowsResponse

type BatchUpdateRowsResponse struct {// Rows: The updated rows.Rows []*Row `json:"rows,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Rows") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Rows") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

BatchUpdateRowsResponse: Response message for TablesService.BatchUpdateRows.

func (BatchUpdateRowsResponse)MarshalJSON

func (sBatchUpdateRowsResponse) MarshalJSON() ([]byte,error)

typeColumnDescription

type ColumnDescription struct {// DataType: Data type of the column Supported types are auto_id, boolean,// boolean_list, creator, create_timestamp, date, dropdown, location, integer,// integer_list, number, number_list, person, person_list, tags, check_list,// text, text_list, update_timestamp, updater, relationship,// file_attachment_list. These types directly map to the column types supported// on Tables website.DataTypestring `json:"dataType,omitempty"`// DateDetails: Optional. Additional details about a date column.DateDetails *DateDetails `json:"dateDetails,omitempty"`// Id: Internal id for a column.Idstring `json:"id,omitempty"`// Labels: Optional. Range of labeled values for the column. Some columns like// tags and drop-downs limit the values to a set of possible values. We return// the range of values in such cases to help clients implement better user data// validation.Labels []*LabeledItem `json:"labels,omitempty"`// LookupDetails: Optional. Indicates that this is a lookup column whose value// is derived from the relationship column specified in the details. Lookup// columns can not be updated directly. To change the value you must update the// associated relationship column.LookupDetails *LookupDetails `json:"lookupDetails,omitempty"`// MultipleValuesDisallowed: Optional. Indicates whether or not multiple values// are allowed for array types where such a restriction is possible.MultipleValuesDisallowedbool `json:"multipleValuesDisallowed,omitempty"`// Name: column nameNamestring `json:"name,omitempty"`// Readonly: Optional. Indicates that values for the column cannot be set by// the user.Readonlybool `json:"readonly,omitempty"`// RelationshipDetails: Optional. Additional details about a relationship// column. Specified when data_type is relationship.RelationshipDetails *RelationshipDetails `json:"relationshipDetails,omitempty"`// ForceSendFields is a list of field names (e.g. "DataType") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataType") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ColumnDescription: Details on a column in the table.

func (ColumnDescription)MarshalJSON

func (sColumnDescription) MarshalJSON() ([]byte,error)

typeCreateRowRequest

type CreateRowRequest struct {// Parent: Required. The parent table where this row will be created. Format:// tables/{table}Parentstring `json:"parent,omitempty"`// Row: Required. The row to create.Row *Row `json:"row,omitempty"`// View: Optional. Column key to use for values in the row. Defaults to user// entered name.//// Possible values://   "VIEW_UNSPECIFIED" - Defaults to user entered text.//   "COLUMN_ID_VIEW" - Uses internally generated column id to identify values.Viewstring `json:"view,omitempty"`// ForceSendFields is a list of field names (e.g. "Parent") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Parent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

CreateRowRequest: Request message for TablesService.CreateRow.

func (CreateRowRequest)MarshalJSON

func (sCreateRowRequest) MarshalJSON() ([]byte,error)

typeDateDetailsadded inv0.59.0

type DateDetails struct {// HasTime: Whether the date column includes time.HasTimebool `json:"hasTime,omitempty"`// ForceSendFields is a list of field names (e.g. "HasTime") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "HasTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

DateDetails: Details about a date column.

func (DateDetails)MarshalJSONadded inv0.59.0

func (sDateDetails) MarshalJSON() ([]byte,error)

typeEmpty

type Empty struct {// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`}

Empty: A generic empty message that you can re-use to avoid definingduplicated empty messages in your APIs. A typical example is to use it asthe request or the response type of an API method. For instance: service Foo{ rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }

typeLabeledItem

type LabeledItem struct {// Id: Internal id associated with the item.Idstring `json:"id,omitempty"`// Name: Display string as entered by user.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Id") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Id") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

LabeledItem: A single item in a labeled column.

func (LabeledItem)MarshalJSON

func (sLabeledItem) MarshalJSON() ([]byte,error)

typeListRowsResponse

type ListRowsResponse struct {// NextPageToken: A token, which can be sent as `page_token` to retrieve the// next page. If this field is empty, there are no subsequent pages.NextPageTokenstring `json:"nextPageToken,omitempty"`// Rows: The rows from the specified table.Rows []*Row `json:"rows,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListRowsResponse: Response message for TablesService.ListRows.

func (ListRowsResponse)MarshalJSON

func (sListRowsResponse) MarshalJSON() ([]byte,error)

typeListTablesResponse

type ListTablesResponse struct {// NextPageToken: A token, which can be sent as `page_token` to retrieve the// next page. If this field is empty, there are no subsequent pages.NextPageTokenstring `json:"nextPageToken,omitempty"`// Tables: The list of tables.Tables []*Table `json:"tables,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListTablesResponse: Response message for TablesService.ListTables.

func (ListTablesResponse)MarshalJSON

func (sListTablesResponse) MarshalJSON() ([]byte,error)

typeListWorkspacesResponseadded inv0.35.0

type ListWorkspacesResponse struct {// NextPageToken: A token, which can be sent as `page_token` to retrieve the// next page. If this field is empty, there are no subsequent pages.NextPageTokenstring `json:"nextPageToken,omitempty"`// Workspaces: The list of workspaces.Workspaces []*Workspace `json:"workspaces,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListWorkspacesResponse: Response message for TablesService.ListWorkspaces.

func (ListWorkspacesResponse)MarshalJSONadded inv0.35.0

func (sListWorkspacesResponse) MarshalJSON() ([]byte,error)

typeLookupDetails

type LookupDetails struct {// RelationshipColumn: The name of the relationship column associated with the// lookup.RelationshipColumnstring `json:"relationshipColumn,omitempty"`// RelationshipColumnId: The id of the relationship column.RelationshipColumnIdstring `json:"relationshipColumnId,omitempty"`// ForceSendFields is a list of field names (e.g. "RelationshipColumn") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "RelationshipColumn") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

LookupDetails: Details about a lookup column whose value comes from theassociated relationship.

func (LookupDetails)MarshalJSON

func (sLookupDetails) MarshalJSON() ([]byte,error)

typeRelationshipDetails

type RelationshipDetails struct {// LinkedTable: The name of the table this relationship is linked to.LinkedTablestring `json:"linkedTable,omitempty"`// ForceSendFields is a list of field names (e.g. "LinkedTable") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LinkedTable") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

RelationshipDetails: Details about a relationship column.

func (RelationshipDetails)MarshalJSON

func (sRelationshipDetails) MarshalJSON() ([]byte,error)

typeRow

type Row struct {// CreateTime: Time when the row was created.CreateTimestring `json:"createTime,omitempty"`// Name: The resource name of the row. Row names have the form// `tables/{table}/rows/{row}`. The name is ignored when creating a row.Namestring `json:"name,omitempty"`// UpdateTime: Time when the row was last updated.UpdateTimestring `json:"updateTime,omitempty"`// Values: The values of the row. This is a map of column key to value. Key is// user entered name(default) or the internal column id based on the view in// the request.Valuesgoogleapi.RawMessage `json:"values,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Row: A single row in a table.

func (Row)MarshalJSON

func (sRow) MarshalJSON() ([]byte,error)

typeSavedViewadded inv0.46.0

type SavedView struct {// Id: Internal id associated with the saved view.Idstring `json:"id,omitempty"`// Name: Display name of the saved view.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Id") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Id") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

SavedView: A saved view of a table. NextId: 3

func (SavedView)MarshalJSONadded inv0.46.0

func (sSavedView) MarshalJSON() ([]byte,error)

typeService

type Service struct {BasePathstring// API endpoint base URLUserAgentstring// optional additional User-Agent fragmentTables *TablesServiceWorkspaces *WorkspacesService// contains filtered or unexported fields}

funcNewdeprecated

func New(client *http.Client) (*Service,error)

New creates a new Service. It uses the provided http.Client for requests.

Deprecated: please use NewService instead.To provide a custom HTTP client, use option.WithHTTPClient.If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.

funcNewService

func NewService(ctxcontext.Context, opts ...option.ClientOption) (*Service,error)

NewService creates a new Service.

typeTable

type Table struct {// Columns: List of columns in this table. Order of columns matches the display// order.Columns []*ColumnDescription `json:"columns,omitempty"`// CreateTime: Time when the table was created.CreateTimestring `json:"createTime,omitempty"`// DisplayName: The human readable title of the table.DisplayNamestring `json:"displayName,omitempty"`// Name: The resource name of the table. Table names have the form// `tables/{table}`.Namestring `json:"name,omitempty"`// SavedViews: Saved views for this table.SavedViews []*SavedView `json:"savedViews,omitempty"`// TimeZone: The time zone of the table. IANA Time Zone Database time zone,// e.g. "America/New_York".TimeZonestring `json:"timeZone,omitempty"`// UpdateTime: Time when the table was last updated excluding updates to// individual rowsUpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Columns") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Columns") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Table: A single table. NextId: 8

func (Table)MarshalJSON

func (sTable) MarshalJSON() ([]byte,error)

typeTablesGetCall

type TablesGetCall struct {// contains filtered or unexported fields}

func (*TablesGetCall)Context

Context sets the context to be used in this call's Do method.

func (*TablesGetCall)Do

func (c *TablesGetCall) Do(opts ...googleapi.CallOption) (*Table,error)

Do executes the "area120tables.tables.get" call.Any non-2xx status code is an error. Response headers are in either*Table.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*TablesGetCall)Fields

func (c *TablesGetCall) Fields(s ...googleapi.Field) *TablesGetCall

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TablesGetCall)Header

func (c *TablesGetCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*TablesGetCall)IfNoneMatch

func (c *TablesGetCall) IfNoneMatch(entityTagstring) *TablesGetCall

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeTablesListCall

type TablesListCall struct {// contains filtered or unexported fields}

func (*TablesListCall)Context

Context sets the context to be used in this call's Do method.

func (*TablesListCall)Do

Do executes the "area120tables.tables.list" call.Any non-2xx status code is an error. Response headers are in either*ListTablesResponse.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*TablesListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TablesListCall)Header

func (c *TablesListCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*TablesListCall)IfNoneMatch

func (c *TablesListCall) IfNoneMatch(entityTagstring) *TablesListCall

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*TablesListCall)OrderByadded inv0.46.0

func (c *TablesListCall) OrderBy(orderBystring) *TablesListCall

OrderBy sets the optional parameter "orderBy": Sorting order for the list oftables on createTime/updateTime.

func (*TablesListCall)PageSize

func (c *TablesListCall) PageSize(pageSizeint64) *TablesListCall

PageSize sets the optional parameter "pageSize": The maximum number oftables to return. The service may return fewer than this value. Ifunspecified, at most 20 tables are returned. The maximum value is 100;values above 100 are coerced to 100.

func (*TablesListCall)PageToken

func (c *TablesListCall) PageToken(pageTokenstring) *TablesListCall

PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListTables` call. Provide this to retrieve the subsequentpage. When paginating, all other parameters provided to `ListTables` mustmatch the call that provided the page token.

func (*TablesListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeTablesRowsBatchCreateCall

type TablesRowsBatchCreateCall struct {// contains filtered or unexported fields}

func (*TablesRowsBatchCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*TablesRowsBatchCreateCall)Do

Do executes the "area120tables.tables.rows.batchCreate" call.Any non-2xx status code is an error. Response headers are in either*BatchCreateRowsResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*TablesRowsBatchCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TablesRowsBatchCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeTablesRowsBatchDeleteCalladded inv0.37.0

type TablesRowsBatchDeleteCall struct {// contains filtered or unexported fields}

func (*TablesRowsBatchDeleteCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*TablesRowsBatchDeleteCall)Doadded inv0.37.0

Do executes the "area120tables.tables.rows.batchDelete" call.Any non-2xx status code is an error. Response headers are in either*Empty.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*TablesRowsBatchDeleteCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TablesRowsBatchDeleteCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeTablesRowsBatchUpdateCall

type TablesRowsBatchUpdateCall struct {// contains filtered or unexported fields}

func (*TablesRowsBatchUpdateCall)Context

Context sets the context to be used in this call's Do method.

func (*TablesRowsBatchUpdateCall)Do

Do executes the "area120tables.tables.rows.batchUpdate" call.Any non-2xx status code is an error. Response headers are in either*BatchUpdateRowsResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*TablesRowsBatchUpdateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TablesRowsBatchUpdateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeTablesRowsCreateCall

type TablesRowsCreateCall struct {// contains filtered or unexported fields}

func (*TablesRowsCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*TablesRowsCreateCall)Do

Do executes the "area120tables.tables.rows.create" call.Any non-2xx status code is an error. Response headers are in either*Row.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*TablesRowsCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TablesRowsCreateCall)Header

func (c *TablesRowsCreateCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*TablesRowsCreateCall)View

View sets the optional parameter "view": Column key to use for values in therow. Defaults to user entered name.

Possible values:

"VIEW_UNSPECIFIED" - Defaults to user entered text."COLUMN_ID_VIEW" - Uses internally generated column id to identify values.

typeTablesRowsDeleteCall

type TablesRowsDeleteCall struct {// contains filtered or unexported fields}

func (*TablesRowsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*TablesRowsDeleteCall)Do

Do executes the "area120tables.tables.rows.delete" call.Any non-2xx status code is an error. Response headers are in either*Empty.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*TablesRowsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TablesRowsDeleteCall)Header

func (c *TablesRowsDeleteCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeTablesRowsGetCall

type TablesRowsGetCall struct {// contains filtered or unexported fields}

func (*TablesRowsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*TablesRowsGetCall)Do

Do executes the "area120tables.tables.rows.get" call.Any non-2xx status code is an error. Response headers are in either*Row.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*TablesRowsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TablesRowsGetCall)Header

func (c *TablesRowsGetCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*TablesRowsGetCall)IfNoneMatch

func (c *TablesRowsGetCall) IfNoneMatch(entityTagstring) *TablesRowsGetCall

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*TablesRowsGetCall)View

View sets the optional parameter "view": Column key to use for values in therow. Defaults to user entered name.

Possible values:

"VIEW_UNSPECIFIED" - Defaults to user entered text."COLUMN_ID_VIEW" - Uses internally generated column id to identify values.

typeTablesRowsListCall

type TablesRowsListCall struct {// contains filtered or unexported fields}

func (*TablesRowsListCall)Context

Context sets the context to be used in this call's Do method.

func (*TablesRowsListCall)Do

Do executes the "area120tables.tables.rows.list" call.Any non-2xx status code is an error. Response headers are in either*ListRowsResponse.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*TablesRowsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TablesRowsListCall)Filteradded inv0.41.0

Filter sets the optional parameter "filter": Filter to only includeresources matching the requirements. For more information, see Filteringlist results (https://support.google.com/area120-tables/answer/10503371).

func (*TablesRowsListCall)Header

func (c *TablesRowsListCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*TablesRowsListCall)IfNoneMatch

func (c *TablesRowsListCall) IfNoneMatch(entityTagstring) *TablesRowsListCall

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*TablesRowsListCall)OrderByadded inv0.46.0

func (c *TablesRowsListCall) OrderBy(orderBystring) *TablesRowsListCall

OrderBy sets the optional parameter "orderBy": Sorting order for the list ofrows on createTime/updateTime.

func (*TablesRowsListCall)PageSize

func (c *TablesRowsListCall) PageSize(pageSizeint64) *TablesRowsListCall

PageSize sets the optional parameter "pageSize": The maximum number of rowsto return. The service may return fewer than this value. If unspecified, atmost 50 rows are returned. The maximum value is 1,000; values above 1,000are coerced to 1,000.

func (*TablesRowsListCall)PageToken

func (c *TablesRowsListCall) PageToken(pageTokenstring) *TablesRowsListCall

PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListRows` call. Provide this to retrieve the subsequentpage. When paginating, all other parameters provided to `ListRows` mustmatch the call that provided the page token.

func (*TablesRowsListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

func (*TablesRowsListCall)View

View sets the optional parameter "view": Column key to use for values in therow. Defaults to user entered name.

Possible values:

"VIEW_UNSPECIFIED" - Defaults to user entered text."COLUMN_ID_VIEW" - Uses internally generated column id to identify values.

typeTablesRowsPatchCall

type TablesRowsPatchCall struct {// contains filtered or unexported fields}

func (*TablesRowsPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*TablesRowsPatchCall)Do

Do executes the "area120tables.tables.rows.patch" call.Any non-2xx status code is an error. Response headers are in either*Row.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*TablesRowsPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TablesRowsPatchCall)Header

func (c *TablesRowsPatchCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*TablesRowsPatchCall)UpdateMask

func (c *TablesRowsPatchCall) UpdateMask(updateMaskstring) *TablesRowsPatchCall

UpdateMask sets the optional parameter "updateMask": The list of fields toupdate.

func (*TablesRowsPatchCall)View

View sets the optional parameter "view": Column key to use for values in therow. Defaults to user entered name.

Possible values:

"VIEW_UNSPECIFIED" - Defaults to user entered text."COLUMN_ID_VIEW" - Uses internally generated column id to identify values.

typeTablesRowsService

type TablesRowsService struct {// contains filtered or unexported fields}

funcNewTablesRowsService

func NewTablesRowsService(s *Service) *TablesRowsService

func (*TablesRowsService)BatchCreate

func (r *TablesRowsService) BatchCreate(parentstring, batchcreaterowsrequest *BatchCreateRowsRequest) *TablesRowsBatchCreateCall

BatchCreate: Creates multiple rows.

  • parent: The parent table where the rows will be created. Format:tables/{table}.

func (*TablesRowsService)BatchDeleteadded inv0.37.0

func (r *TablesRowsService) BatchDelete(parentstring, batchdeleterowsrequest *BatchDeleteRowsRequest) *TablesRowsBatchDeleteCall

BatchDelete: Deletes multiple rows.

  • parent: The parent table shared by all rows being deleted. Format:tables/{table}.

func (*TablesRowsService)BatchUpdate

func (r *TablesRowsService) BatchUpdate(parentstring, batchupdaterowsrequest *BatchUpdateRowsRequest) *TablesRowsBatchUpdateCall

BatchUpdate: Updates multiple rows.

  • parent: The parent table shared by all rows being updated. Format:tables/{table}.

func (*TablesRowsService)Create

func (r *TablesRowsService) Create(parentstring, row *Row) *TablesRowsCreateCall

Create: Creates a row.

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

func (*TablesRowsService)Delete

Delete: Deletes a row.

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

func (*TablesRowsService)Get

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

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

func (*TablesRowsService)List

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

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

func (*TablesRowsService)Patch

func (r *TablesRowsService) Patch(namestring, row *Row) *TablesRowsPatchCall

Patch: Updates a row.

  • name: The resource name of the row. Row names have the form`tables/{table}/rows/{row}`. The name is ignored when creating a row.

typeTablesService

type TablesService struct {Rows *TablesRowsService// contains filtered or unexported fields}

funcNewTablesService

func NewTablesService(s *Service) *TablesService

func (*TablesService)Get

func (r *TablesService) Get(namestring) *TablesGetCall

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

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

func (*TablesService)List

func (r *TablesService) List() *TablesListCall

List: Lists tables for the user.

typeUpdateRowRequest

type UpdateRowRequest struct {// Row: Required. The row to update.Row *Row `json:"row,omitempty"`// UpdateMask: The list of fields to update.UpdateMaskstring `json:"updateMask,omitempty"`// View: Optional. Column key to use for values in the row. Defaults to user// entered name.//// Possible values://   "VIEW_UNSPECIFIED" - Defaults to user entered text.//   "COLUMN_ID_VIEW" - Uses internally generated column id to identify values.Viewstring `json:"view,omitempty"`// ForceSendFields is a list of field names (e.g. "Row") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Row") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

UpdateRowRequest: Request message for TablesService.UpdateRow.

func (UpdateRowRequest)MarshalJSON

func (sUpdateRowRequest) MarshalJSON() ([]byte,error)

typeWorkspaceadded inv0.35.0

type Workspace struct {// CreateTime: Time when the workspace was created.CreateTimestring `json:"createTime,omitempty"`// DisplayName: The human readable title of the workspace.DisplayNamestring `json:"displayName,omitempty"`// Name: The resource name of the workspace. Workspace names have the form// `workspaces/{workspace}`.Namestring `json:"name,omitempty"`// Tables: The list of tables in the workspace.Tables []*Table `json:"tables,omitempty"`// UpdateTime: Time when the workspace was last updated.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Workspace: A single workspace.

func (Workspace)MarshalJSONadded inv0.35.0

func (sWorkspace) MarshalJSON() ([]byte,error)

typeWorkspacesGetCalladded inv0.35.0

type WorkspacesGetCall struct {// contains filtered or unexported fields}

func (*WorkspacesGetCall)Contextadded inv0.35.0

Context sets the context to be used in this call's Do method.

func (*WorkspacesGetCall)Doadded inv0.35.0

Do executes the "area120tables.workspaces.get" call.Any non-2xx status code is an error. Response headers are in either*Workspace.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*WorkspacesGetCall)Fieldsadded inv0.35.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*WorkspacesGetCall)Headeradded inv0.35.0

func (c *WorkspacesGetCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*WorkspacesGetCall)IfNoneMatchadded inv0.35.0

func (c *WorkspacesGetCall) IfNoneMatch(entityTagstring) *WorkspacesGetCall

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeWorkspacesListCalladded inv0.35.0

type WorkspacesListCall struct {// contains filtered or unexported fields}

func (*WorkspacesListCall)Contextadded inv0.35.0

Context sets the context to be used in this call's Do method.

func (*WorkspacesListCall)Doadded inv0.35.0

Do executes the "area120tables.workspaces.list" call.Any non-2xx status code is an error. Response headers are in either*ListWorkspacesResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*WorkspacesListCall)Fieldsadded inv0.35.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*WorkspacesListCall)Headeradded inv0.35.0

func (c *WorkspacesListCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*WorkspacesListCall)IfNoneMatchadded inv0.35.0

func (c *WorkspacesListCall) IfNoneMatch(entityTagstring) *WorkspacesListCall

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*WorkspacesListCall)PageSizeadded inv0.35.0

func (c *WorkspacesListCall) PageSize(pageSizeint64) *WorkspacesListCall

PageSize sets the optional parameter "pageSize": The maximum number ofworkspaces to return. The service may return fewer than this value. Ifunspecified, at most 10 workspaces are returned. The maximum value is 25;values above 25 are coerced to 25.

func (*WorkspacesListCall)PageTokenadded inv0.35.0

func (c *WorkspacesListCall) PageToken(pageTokenstring) *WorkspacesListCall

PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListWorkspaces` call. Provide this to retrieve thesubsequent page. When paginating, all other parameters provided to`ListWorkspaces` must match the call that provided the page token.

func (*WorkspacesListCall)Pagesadded inv0.35.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeWorkspacesServiceadded inv0.35.0

type WorkspacesService struct {// contains filtered or unexported fields}

funcNewWorkspacesServiceadded inv0.35.0

func NewWorkspacesService(s *Service) *WorkspacesService

func (*WorkspacesService)Getadded inv0.35.0

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

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

func (*WorkspacesService)Listadded inv0.35.0

List: Lists workspaces for the user.

Source Files

View all Source files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f orF : Jump to
y orY : Canonical URL
go.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic.Learn more.

[8]ページ先頭

©2009-2025 Movatter.jp